diff --git a/app/Helpers/helpers.php b/app/Helpers/helpers.php index 3a1a5280..afdb327b 100644 --- a/app/Helpers/helpers.php +++ b/app/Helpers/helpers.php @@ -8,11 +8,35 @@ if (!function_exists('money')) { * @param \App\Models\Currency $currency * @return string */ - function money($amount, \App\Models\Currency $currency) + function money($amount, \App\Models\Currency $currency = null) { + if(!$currency){ + return number_format($amount,0,'.',','); + } return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point, $currency->thousand_point) . $currency->symbol_right; } } +if(!function_exists('main_categories')){ + /** + * return main categories + * @return mixed + */ + function main_categories(){ + return \App\Models\Category::main()->pluck(trans('Category.category_title'),'id'); + } +} + +if(! function_exists('sub_categories')){ + /** + * return sub categoreies + */ + + function sub_categories(){ + return \App\Models\Category::sub() + ->select(trans('Category.category_title'),'id','parent_id') + ->get(); + } +} diff --git a/app/Helpers/macros.php b/app/Helpers/macros.php index bbd33df2..0463f7ec 100644 --- a/app/Helpers/macros.php +++ b/app/Helpers/macros.php @@ -81,3 +81,27 @@ HTML::macro('sortable_link', Blade::directive('money', function ($expression) { return ""; }); + +Form::macro('subSelect', function($name, $list = array(), $selected = null, $options = array()) +{ + $selected = $this->getValueAttribute($name, $selected); + $options['id'] = $this->getIdAttribute($name, $options); + + if ( ! isset($options['name'])) $options['name'] = $name; + + $html = array(''); + //dd($list); + foreach ($list as $list_el) + { + $selectedAttribute = $this->getSelectedValue($list_el['id'], $selected); +// dd($selectedAttribute); + $option_attr = array('value' => e($list_el['id']), 'selected' => $selectedAttribute, 'parent' => $list_el['parent_id']); + $html[] = 'html->attributes($option_attr).'>'.e($list_el[trans('Category.category_title')]).''; + } + + $options = $this->html->attributes($options); + + $list = implode('', $html); + + return "{$list}"; +}); \ No newline at end of file diff --git a/app/Http/Controllers/Admin/CategoryCrudController.php b/app/Http/Controllers/Admin/CategoryCrudController.php index 08d51fbc..07dc16b3 100644 --- a/app/Http/Controllers/Admin/CategoryCrudController.php +++ b/app/Http/Controllers/Admin/CategoryCrudController.php @@ -33,8 +33,19 @@ class CategoryCrudController extends CrudController */ // TODO: remove setFromDb() and manually define Fields and Columns - $this->crud->setFromDb(); - + //$this->crud->setFromDb(); + $this->crud->addColumns([ + ['name'=>'id','type'=>'text','label'=>'Id'], + ['name'=>'title_tm','type'=>'text','label'=>'Title tm'], + ['name'=>'title_ru','type'=>'text','label'=>'Title ru'], + ['name'=>'parent_id','type'=>'text','label'=>'Parent'], + ]); + $this->crud->addFields([ + ['name'=>'title_tm','type'=>'text','label'=>'Title tm'], + ['name'=>'title_ru','type'=>'text','label'=>'Title ru'], + ]); + $this->crud->enableReorder('title_tm', 2); + $this->crud->allowAccess('reorder'); // add asterisk for fields that are required in CategoryRequest $this->crud->setRequiredFields(StoreRequest::class, 'create'); $this->crud->setRequiredFields(UpdateRequest::class, 'edit'); diff --git a/app/Http/Controllers/EventAccessCodesController.php b/app/Http/Controllers/EventAccessCodesController.php index bb817e00..36b9f532 100644 --- a/app/Http/Controllers/EventAccessCodesController.php +++ b/app/Http/Controllers/EventAccessCodesController.php @@ -22,7 +22,9 @@ class EventAccessCodesController extends MyBaseController */ public function show($event_id) { - $event = Event::scope()->findOrFail($event_id); + $event = Auth::user()->is_admin ? + Event::findOrFail($event_id) : + Event::scope()->findOrFail($event_id); return view('ManageEvent.AccessCodes', [ 'event' => $event, ]); @@ -34,8 +36,12 @@ class EventAccessCodesController extends MyBaseController */ public function showCreate($event_id) { + $event = Auth::user()->is_admin ? + Event::find($event_id) : + Event::scope()->find($event_id); + return view('ManageEvent.Modals.CreateAccessCode', [ - 'event' => Event::scope()->find($event_id), + 'event' => $event, ]); } @@ -92,7 +98,9 @@ class EventAccessCodesController extends MyBaseController public function postDelete($event_id, $access_code_id) { /** @var Event $event */ - $event = Event::scope()->findOrFail($event_id); + $event = Auth::user()->is_admin ? + Event::findOrFail($event_id) : + Event::scope()->findOrFail($event_id); if ($event->hasAccessCode($access_code_id)) { /** @var EventAccessCodes $accessCode */ diff --git a/app/Http/Controllers/EventViewController.php b/app/Http/Controllers/EventViewController.php index e71cacd1..903d56bf 100644 --- a/app/Http/Controllers/EventViewController.php +++ b/app/Http/Controllers/EventViewController.php @@ -66,7 +66,7 @@ class EventViewController extends Controller } } - return view('Public.ViewEvent.EventPage', $data); + return view('Bilettm.ViewEvent.EventPage', $data); } /** diff --git a/app/Http/Controllers/ManageAccountController.php b/app/Http/Controllers/ManageAccountController.php index a4435cbb..e7fdcfa7 100644 --- a/app/Http/Controllers/ManageAccountController.php +++ b/app/Http/Controllers/ManageAccountController.php @@ -25,14 +25,16 @@ class ManageAccountController extends MyBaseController * @param Request $request * @return mixed */ - public function showEditAccount(Request $request) + public function showEditAccount(Request $request,$account_id = null) { + if(empty($account_id)) + $account_id = Auth::user()->account_id; $data = [ - 'account' => Account::find(Auth::user()->account_id), + 'account' => Account::find($account_id), 'timezones' => Timezone::pluck('location', 'id'), 'currencies' => Currency::pluck('title', 'id'), 'payment_gateways' => PaymentGateway::pluck('provider_name', 'id'), - 'account_payment_gateways' => AccountPaymentGateway::scope()->get(), +// 'account_payment_gateways' => AccountPaymentGateway::scope()->get(), 'version_info' => $this->getVersionInfo(), ]; diff --git a/app/Http/Controllers/MyBaseController.php b/app/Http/Controllers/MyBaseController.php index 07f53b2e..d2e0a4a4 100644 --- a/app/Http/Controllers/MyBaseController.php +++ b/app/Http/Controllers/MyBaseController.php @@ -34,7 +34,8 @@ class MyBaseController extends Controller /* * Share the organizers across all views */ - View::share('organisers', Organiser::scope()->get()); + $organizers = Auth::user()->is_admin ? Organiser::all():Organiser::scope()->get(); + View::share('organisers', $organizers); } /** diff --git a/app/Http/Controllers/PublicController.php b/app/Http/Controllers/PublicController.php index 40bd6b79..ad537ab8 100644 --- a/app/Http/Controllers/PublicController.php +++ b/app/Http/Controllers/PublicController.php @@ -26,7 +26,7 @@ class PublicController extends Controller ->take(10) ->get(); $this->data['events'] = $events; - return view('Public.HomePage', $this->data); + return view('Bilettm.Public.HomePage', $this->data); } public function showCategoryEvents($category_id){ diff --git a/app/Http/Middleware/CheckIfAdmin.php b/app/Http/Middleware/CheckIfAdmin.php index f39a48e5..c901281e 100644 --- a/app/Http/Middleware/CheckIfAdmin.php +++ b/app/Http/Middleware/CheckIfAdmin.php @@ -22,8 +22,8 @@ class CheckIfAdmin */ private function checkIfUserIsAdmin($user) { - // return ($user->is_admin == 1); - return true; + return ($user->is_admin == 1); +// return true; } /** diff --git a/app/Http/Middleware/FirstRunMiddleware.php b/app/Http/Middleware/FirstRunMiddleware.php index 61b7a152..5ec3f872 100644 --- a/app/Http/Middleware/FirstRunMiddleware.php +++ b/app/Http/Middleware/FirstRunMiddleware.php @@ -4,6 +4,7 @@ namespace app\Http\Middleware; use App\Models\Organiser; use Closure; +use Illuminate\Support\Facades\Auth; class FirstRunMiddleware { @@ -21,6 +22,9 @@ class FirstRunMiddleware * If there are no organisers then redirect the user to create one * else - if there's only one organiser bring the user straight there. */ + if(Auth::user()->is_admin) + return $next($request); + if (Organiser::scope()->count() === 0 && !($request->route()->getName() == 'showCreateOrganiser') && !($request->route()->getName() == 'postCreateOrganiser')) { return redirect(route('showCreateOrganiser', [ 'first_run' => '1', diff --git a/app/Models/Category.php b/app/Models/Category.php index a3ab8675..407b1a56 100644 --- a/app/Models/Category.php +++ b/app/Models/Category.php @@ -9,8 +9,7 @@ namespace App\Models; -class Category extends \Illuminate\Database\Eloquent\Model -{ +class Category extends \Illuminate\Database\Eloquent\Model{ use \Backpack\CRUD\CrudTrait; /** * Indicates whether the model should be timestamped. @@ -30,14 +29,24 @@ class Category extends \Illuminate\Database\Eloquent\Model * @var bool $softDelete */ protected $softDelete = false; - + protected $fillable = ['title','lft','rgt','parent_id','depth']; /** - * The event associated with the currency. + * The events associated with the category. * - * @return \Illuminate\Database\Eloquent\Relations\BelongsTo + * @return \Illuminate\Database\Eloquent\Relations\HasMany */ - public function event() - { - return $this->belongsTo(\App\Models\Event::class); + public function events(){ + return $this->hasMany(\App\Models\Event::class); + } + + public function scopeMain($query){ + return $query->where('depth',1); + } + public function scopeSub($query){ + return $query->where('depth',2); + } + + public function getChildren($parent_id){ + return $this->where('parent_id',$parent_id); } } \ No newline at end of file diff --git a/app/Models/Event.php b/app/Models/Event.php index b68ae225..5dc480e1 100644 --- a/app/Models/Event.php +++ b/app/Models/Event.php @@ -177,6 +177,30 @@ class Event extends MyBaseModel return $this->belongsTo(\App\Models\Organiser::class); } + /** + * Tags associated with the event + * @return \Illuminate\Database\Eloquent\Relations\HasMany + */ + public function tags(){ + return $this->belongsToMany(\App\Models\Tag::class); + } + + /** + * Category associated with the event + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo + */ + public function mainCategory(){ + return $this->belongsTo(Category::class,'category_id'); + } + + /** + * Sub category associated with the event + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo + */ + public function subCategory(){ + return $this->belongsTo(Category::class,'sub_category_id'); + } + /** * Get the embed url. * diff --git a/composer.json b/composer.json index 3d2b8c3a..671ba7fc 100755 --- a/composer.json +++ b/composer.json @@ -38,7 +38,7 @@ "php-http/message": "^1.6", "predis/predis": "~1.1", "vinelab/http": "~1.5", - "laravel/tinker": "^1.0" + "laravel/tinker": "^1.0", "backpack/crud": "^3.5", "barryvdh/laravel-elfinder": "^0.4.1", "backpack/backupmanager": "^1.4", diff --git a/public/assets/500x450/img1.jpg b/public/assets/500x450/img1.jpg deleted file mode 100644 index 8337d48a..00000000 Binary files a/public/assets/500x450/img1.jpg and /dev/null differ diff --git a/public/assets/500x450/img2.jpg b/public/assets/500x450/img2.jpg deleted file mode 100644 index 3bbda48c..00000000 Binary files a/public/assets/500x450/img2.jpg and /dev/null differ diff --git a/public/assets/500x450/img3.jpg b/public/assets/500x450/img3.jpg deleted file mode 100644 index 992aa1fd..00000000 Binary files a/public/assets/500x450/img3.jpg and /dev/null differ diff --git a/public/assets/900x400/img1.jpg b/public/assets/900x400/img1.jpg deleted file mode 100644 index d29b1190..00000000 Binary files a/public/assets/900x400/img1.jpg and /dev/null differ diff --git a/public/assets/900x400/img2.jpg b/public/assets/900x400/img2.jpg deleted file mode 100644 index d8d8c190..00000000 Binary files a/public/assets/900x400/img2.jpg and /dev/null differ diff --git a/public/assets/900x400/img3.jpg b/public/assets/900x400/img3.jpg deleted file mode 100644 index c1c5159b..00000000 Binary files a/public/assets/900x400/img3.jpg and /dev/null differ diff --git a/public/assets/900x400/img4.jpg b/public/assets/900x400/img4.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img4.jpg and /dev/null differ diff --git a/public/assets/900x400/img5.jpg b/public/assets/900x400/img5.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img5.jpg and /dev/null differ diff --git a/public/assets/900x400/img6.jpg b/public/assets/900x400/img6.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img6.jpg and /dev/null differ diff --git a/public/assets/900x400/img7.jpg b/public/assets/900x400/img7.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img7.jpg and /dev/null differ diff --git a/public/assets/900x400/img8.jpg b/public/assets/900x400/img8.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img8.jpg and /dev/null differ diff --git a/public/assets/900x400/img9.jpg b/public/assets/900x400/img9.jpg deleted file mode 100644 index e9e15fe6..00000000 Binary files a/public/assets/900x400/img9.jpg and /dev/null differ diff --git a/public/assets/css/styles.op-agency.css b/public/assets/css/styles.op-agency.css deleted file mode 100644 index 4b9e1e45..00000000 --- a/public/assets/css/styles.op-agency.css +++ /dev/null @@ -1,48849 +0,0 @@ -@charset "UTF-8"; -/*------------------------------------ - Default Styles -------------------------------------*/ -html { - font-size: 14px; -} - -body { - font-weight: 400; - font-size: 1rem; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - line-height: 1.6; - color: #a49da6; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-font-feature-settings: "liga", "kern"; - text-rendering: optimizelegibility; - background-color: #fff; -} - -a { - color: #e74c3c; - outline: none; -} - -a:focus, -a:hover { - color: #e43725; -} - -.nav-link { - color: #a49da6; -} - -.nav-link:focus, -.nav-link:hover { - color: #a49da6; -} - -figure { - margin-bottom: 0; -} - -/*------------------------------------ - Headings -------------------------------------*/ -.h1, .h2, .h3, .h4, .h5, .h6, .h7, -h1, h2, h3, h4, h5, h6 { - line-height: 1.4; -} - -.h7 { - font-size: .75rem; -} - -/*------------------------------------ - Displays -------------------------------------*/ -.display-5 { - font-size: 3rem; - font-weight: 300; - line-height: 1.1; -} - -/*------------------------------------ - Highlight Color -------------------------------------*/ -::-moz-selection { - color: #fff; - background-color: #e74c3c; -} - -::selection { - color: #fff; - background-color: #e74c3c; -} - -.g-bg-primary ::-moz-selection { - color: #e74c3c; - background-color: #fff; -} - -.g-bg-primary ::selection { - color: #e74c3c; - background-color: #fff; -} - -/*------------------------------------ - Components -------------------------------------*/ -/*------------------------------------ - Alerts -------------------------------------*/ -/* Alert Close Button */ -.u-alert-close--light { - font-weight: 300; - color: #000; - opacity: .7; - text-shadow: none; - -webkit-transition: color .3s; - -o-transition: color .3s; - transition: color .3s; - font-size: 18px; - cursor: pointer; -} - -.u-alert-close--light:hover { - opacity: 1; -} - -.u-alert-close--light:focus, .u-alert-close--light:active:focus { - outline: 0 none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Alert Lists */ -.u-alert-list { - margin-left: -20px; -} - -/* Alert Lists with Font Awesome Icons */ -.alert__icon { - margin-left: 20px; -} - -.alert__icon-list { - font-size: 12px; - line-height: 1.5; -} - -/*------------------------------------ - Arrows -------------------------------------*/ -.u-arrow-v1::before { - display: inline-block; - position: relative; - top: 50%; - left: 50%; - vertical-align: top; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.u-arrow-v1[class*="abs"]::before { - position: absolute; -} - -.u-arrow-custom-v1 .u-arrow-icon { - display: block; -} - -.u-arrow-custom-v1 .u-arrow-text { - position: absolute; - top: 50%; - -webkit-transition: -webkit-transform .3s; - transition: -webkit-transform .3s; - -o-transition: transform .3s; - transition: transform .3s; - transition: transform .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v1.js-prev .u-arrow-text { - -webkit-transform: translateY(-50%) translateX(-100%); - -ms-transform: translateY(-50%) translateX(-100%); - transform: translateY(-50%) translateX(-100%); -} - -.u-arrow-custom-v1.js-next .u-arrow-text { - -webkit-transform: translateY(-50%) translateX(100%); - -ms-transform: translateY(-50%) translateX(100%); - transform: translateY(-50%) translateX(100%); -} - -.u-arrow-custom-v1:hover .u-arrow-text { - -webkit-transform: translateY(-50%) translateX(0); - -ms-transform: translateY(-50%) translateX(0); - transform: translateY(-50%) translateX(0); -} - -.u-arrow-custom-v2 { - overflow: hidden; - -webkit-transition: background-color 0.3s; - -o-transition: background-color 0.3s; - transition: background-color 0.3s; -} - -.u-arrow-custom-v2 .u-arrow-icon { - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - -o-transition: transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; -} - -.u-arrow-custom-v2 .u-arrow-img { - width: 100%; - height: 100%; - opacity: 0; - -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; - transition: opacity 0.3s, -webkit-transform 0.3s; - -o-transition: opacity 0.3s, transform 0.3s; - transition: opacity 0.3s, transform 0.3s; - transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; -} - -.u-arrow-custom-v2.js-prev .u-arrow-icon { - -webkit-transform: translateY(-50%) translateX(10px); - -ms-transform: translateY(-50%) translateX(10px); - transform: translateY(-50%) translateX(10px); -} - -.u-arrow-custom-v2.js-prev .u-arrow-img { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v2.js-next .u-arrow-icon { - -webkit-transform: translateY(-50%) translateX(-10px); - -ms-transform: translateY(-50%) translateX(-10px); - transform: translateY(-50%) translateX(-10px); -} - -.u-arrow-custom-v2.js-next .u-arrow-img { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v2:hover .u-arrow-icon { - -webkit-transform: translateY(-50%) translateX(0); - -ms-transform: translateY(-50%) translateX(0); - transform: translateY(-50%) translateX(0); -} - -.u-arrow-custom-v2:hover .u-arrow-img { - opacity: .6; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-arrow-custom-v3 .u-arrow-helper { - content: ""; - opacity: 0; - -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; - transition: opacity 0.3s, -webkit-transform 0.3s; - -o-transition: transform 0.3s, opacity 0.3s; - transition: transform 0.3s, opacity 0.3s; - transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s; - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.u-arrow-custom-v3 .u-arrow-icon { - display: block; -} - -.u-arrow-custom-v3 .u-arrow-icon-before, .u-arrow-custom-v3 .u-arrow-icon-after { - position: absolute; - left: 25%; - -webkit-transition: background-color 0.3s, -webkit-transform 0.3s; - transition: background-color 0.3s, -webkit-transform 0.3s; - -o-transition: transform 0.3s, background-color 0.3s; - transition: transform 0.3s, background-color 0.3s; - transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-arrow-custom-v3 .u-arrow-icon-before { - -webkit-transform: translateX(-50%) rotate(30deg); - -ms-transform: translateX(-50%) rotate(30deg); - transform: translateX(-50%) rotate(30deg); - -webkit-transform-origin: 0 100%; - -ms-transform-origin: 0 100%; - transform-origin: 0 100%; -} - -.u-arrow-custom-v3 .u-arrow-icon-after { - top: 50%; - -webkit-transform: translateX(-50%) rotate(-30deg); - -ms-transform: translateX(-50%) rotate(-30deg); - transform: translateX(-50%) rotate(-30deg); - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; -} - -.u-arrow-custom-v3.js-next .u-arrow-icon { - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} - -.u-arrow-custom-v3:hover .u-arrow-helper { - background-color: #fff; - opacity: 1; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.u-arrow-custom-v3:hover .u-arrow-icon-before, .u-arrow-custom-v3:hover .u-arrow-icon-after { - background-color: #e74c3c; -} - -.u-arrow-custom-v3:hover .u-arrow-icon-before { - -webkit-transform: translateX(-50%) rotate(45deg); - -ms-transform: translateX(-50%) rotate(45deg); - transform: translateX(-50%) rotate(45deg); -} - -.u-arrow-custom-v3:hover .u-arrow-icon-after { - -webkit-transform: translateX(-50%) rotate(-45deg); - -ms-transform: translateX(-50%) rotate(-45deg); - transform: translateX(-50%) rotate(-45deg); -} - -.u-arrow-custom-v4 { - width: 62px; - height: 62px; - -webkit-transition: width 0.3s, background-color 0.3s; - -o-transition: width 0.3s, background-color 0.3s; - transition: width 0.3s, background-color 0.3s; -} - -.u-arrow-custom-v4 h4 { - opacity: 0; - -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; - transition: opacity 0.3s, -webkit-transform 0.3s; - -o-transition: opacity 0.3s, transform 0.3s; - transition: opacity 0.3s, transform 0.3s; - transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; -} - -.u-arrow-custom-v4.js-prev h4 { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v4.js-next h4 { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v4:hover { - width: 200px; -} - -.u-arrow-custom-v4:hover .u-arrow-icon { - color: #e74c3c; -} - -.u-arrow-custom-v4:hover h4 { - opacity: 1; - -webkit-transition-delay: 0.1s; - -o-transition-delay: 0.1s; - transition-delay: 0.1s; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-arrow-custom-v5 .u-arrow-icon::before { - -webkit-transition: -webkit-transform .3s .3s; - transition: -webkit-transform .3s .3s; - -o-transition: transform .3s .3s; - transition: transform .3s .3s; - transition: transform .3s .3s, -webkit-transform .3s .3s; -} - -.u-arrow-custom-v5 .u-arrow-text { - -webkit-transition: -webkit-transform .3s .3s; - transition: -webkit-transform .3s .3s; - -o-transition: transform .3s .3s; - transition: transform .3s .3s; - transition: transform .3s .3s, -webkit-transform .3s .3s; - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.u-arrow-custom-v5 .u-arrow-title { - position: absolute; - top: 100%; - width: 100%; - height: 30%; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - -o-transition: transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; - -webkit-transform: rotateX(-90deg); - transform: rotateX(-90deg); - margin: 0; -} - -.u-arrow-custom-v5 .u-arrow-img { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.u-arrow-custom-v5.js-prev .u-arrow-text { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v5.js-next .u-arrow-text { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v5:hover .u-arrow-text { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-arrow-custom-v5:hover .u-arrow-title { - -webkit-transition-delay: .6s; - -o-transition-delay: .6s; - transition-delay: .6s; - -webkit-transform: rotateX(0deg); - transform: rotateX(0deg); -} - -.u-arrow-custom-v5:hover .u-arrow-icon::before { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v5:hover.js-prev .u-arrow-icon::before { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v5:hover.js-next .u-arrow-icon::before { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v6 { - overflow: hidden; - width: 40px; - -webkit-transition: width .4s, background-color .4s, z-index .4s; - -o-transition: width .4s, background-color .4s, z-index .4s; - transition: width .4s, background-color .4s, z-index .4s; - -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); - -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); - transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); -} - -.u-arrow-custom-v6 .u-arrow-text { - width: 400px; -} - -.u-arrow-custom-v6:hover { - width: 400px; - z-index: 11; -} - -.u-arrow-custom-v7 { - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.u-arrow-custom-v7 .u-arrow-icon::before { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.u-arrow-custom-v7 .u-arrow-img { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - -o-transition: transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; -} - -.u-arrow-custom-v7.js-prev { - -webkit-perspective-origin: 100% 50%; - perspective-origin: 100% 50%; -} - -.u-arrow-custom-v7.js-prev .u-arrow-img { - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; - -webkit-transform: rotateY(90deg); - transform: rotateY(90deg); -} - -.u-arrow-custom-v7.js-next { - -webkit-perspective-origin: 0 50%; - perspective-origin: 0 50%; -} - -.u-arrow-custom-v7.js-next .u-arrow-img { - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; - -webkit-transform: rotateY(-90deg); - transform: rotateY(-90deg); -} - -.u-arrow-custom-v7:hover .u-arrow-icon { - color: #e74c3c; -} - -.u-arrow-custom-v7:hover .u-arrow-img { - -webkit-transform: rotateY(0deg); - transform: rotateY(0deg); -} - -.u-arrow-custom-v8 { - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.u-arrow-custom-v8 .u-arrow-icon::before { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.u-arrow-custom-v8 .u-arrow-title, -.u-arrow-custom-v8 .u-arrow-img { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-arrow-custom-v8 .u-arrow-title { - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - -o-transition: transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; -} - -.u-arrow-custom-v8 .u-arrow-text { - -webkit-transition: -webkit-transform 0.3s 0.3s; - transition: -webkit-transform 0.3s 0.3s; - -o-transition: transform 0.3s 0.3s; - transition: transform 0.3s 0.3s; - transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s; - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; -} - -.u-arrow-custom-v8.js-prev { - -webkit-perspective-origin: 100% 50%; - perspective-origin: 100% 50%; -} - -.u-arrow-custom-v8.js-prev .u-arrow-text, -.u-arrow-custom-v8.js-prev .u-arrow-title { - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; - -webkit-transform: rotateY(90deg); - transform: rotateY(90deg); -} - -.u-arrow-custom-v8.js-next { - -webkit-perspective-origin: 0 50%; - perspective-origin: 0 50%; -} - -.u-arrow-custom-v8.js-next .u-arrow-text, -.u-arrow-custom-v8.js-next .u-arrow-title { - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; - -webkit-transform: rotateY(-90deg); - transform: rotateY(-90deg); -} - -.u-arrow-custom-v8:hover .u-arrow-icon { - color: #e74c3c; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v8:hover .u-arrow-icon::before { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v8:hover .u-arrow-text, -.u-arrow-custom-v8:hover .u-arrow-title { - -webkit-transform: rotateY(0deg); - transform: rotateY(0deg); -} - -.u-arrow-custom-v8:hover .u-arrow-text { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v8:hover .u-arrow-title { - -webkit-transition-delay: .3s; - -o-transition-delay: .3s; - transition-delay: .3s; -} - -.u-arrow-custom-v9 { - width: 60px; -} - -.u-arrow-custom-v9 .u-arrow-icon::after { - content: ""; - position: absolute; - top: 50%; - width: 20px; - height: 1px; - background: #fff; - -webkit-transition: width .3s .2s; - -o-transition: width .3s .2s; - transition: width .3s .2s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-arrow-custom-v9 .u-arrow-text::after { - content: attr(data-title); - position: absolute; - top: 100%; - left: 0; - width: 100%; - color: #fff; - text-transform: uppercase; - opacity: 0; - -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; - transition: opacity 0.3s, -webkit-transform 0.3s; - -o-transition: transform 0.3s, opacity 0.3s; - transition: transform 0.3s, opacity 0.3s; - transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s; - margin: 20px 5px 0; -} - -.u-arrow-custom-v9 .u-arrow-img { - opacity: 0; - -webkit-box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff; - box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff; - -webkit-transition: opacity .3s, -webkit-transform .3s; - transition: opacity .3s, -webkit-transform .3s; - -o-transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s, -webkit-transform .3s; - -webkit-transform: scale(0.3); - -ms-transform: scale(0.3); - transform: scale(0.3); -} - -.u-arrow-custom-v9.js-prev .u-arrow-icon::after { - left: calc(100% - 25px); -} - -.u-arrow-custom-v9.js-next .u-arrow-icon::after { - right: calc(100% - 25px); -} - -.u-arrow-custom-v9.js-next .u-arrow-text::after { - text-align: right; -} - -.u-arrow-custom-v9:hover { - width: 200px; -} - -.u-arrow-custom-v9:hover .u-arrow-icon::after { - width: 200px; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v9:hover .u-arrow-text { - pointer-events: auto; -} - -.u-arrow-custom-v9:hover .u-arrow-text::after { - opacity: 1; - -webkit-transition-delay: .2s; - -o-transition-delay: .2s; - transition-delay: .2s; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); -} - -.u-arrow-custom-v9:hover .u-arrow-img { - opacity: 1; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.u-arrow-custom-v9:hover .u-arrow-img:first-child { - -webkit-transition-delay: 0.3s; - -o-transition-delay: 0.3s; - transition-delay: 0.3s; -} - -.u-arrow-custom-v9:hover .u-arrow-img:nth-child(2) { - -webkit-transition-delay: 0.35s; - -o-transition-delay: 0.35s; - transition-delay: 0.35s; -} - -.u-arrow-custom-v9:hover .u-arrow-img:nth-child(3) { - -webkit-transition-delay: 0.4s; - -o-transition-delay: 0.4s; - transition-delay: 0.4s; -} - -.u-arrow-custom-v10 .u-arrow-text { - opacity: 0; - overflow: hidden; - -webkit-transform: scale(0.7); - -ms-transform: scale(0.7); - transform: scale(0.7); - -webkit-transition: opacity .3s, background-color .1s 0s, -webkit-transform .3s; - transition: opacity .3s, background-color .1s 0s, -webkit-transform .3s; - -o-transition: transform .3s, opacity .3s, background-color .1s 0s; - transition: transform .3s, opacity .3s, background-color .1s 0s; - transition: transform .3s, opacity .3s, background-color .1s 0s, -webkit-transform .3s; -} - -.u-arrow-custom-v10 .u-arrow-img { - -webkit-transition: -webkit-transform .3s; - transition: -webkit-transform .3s; - -o-transition: transform .3s; - transition: transform .3s; - transition: transform .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v10.js-prev .u-arrow-img { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v10.js-next .u-arrow-img { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v10:hover .u-arrow-text { - opacity: 1; - background-color: transparent; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - -webkit-transition: opacity .3s, background-color .1s .2s, -webkit-transform .3s; - transition: opacity .3s, background-color .1s .2s, -webkit-transform .3s; - -o-transition: transform .3s, opacity .3s, background-color .1s .2s; - transition: transform .3s, opacity .3s, background-color .1s .2s; - transition: transform .3s, opacity .3s, background-color .1s .2s, -webkit-transform .3s; -} - -.u-arrow-custom-v10:hover .u-arrow-img { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-arrow-custom-v11 .u-arrow-icon { - border-width: 0; - -webkit-transition: border-width .3s .15s; - -o-transition: border-width .3s .15s; - transition: border-width .3s .15s; -} - -.u-arrow-custom-v11 .u-arrow-text { - opacity: 0; - -webkit-transition: opacity .3s, -webkit-transform .3s; - transition: opacity .3s, -webkit-transform .3s; - -o-transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v11.js-prev .u-arrow-text { - -webkit-transform: translateY(-50%) translateX(-100%) scale(0.75); - -ms-transform: translateY(-50%) translateX(-100%) scale(0.75); - transform: translateY(-50%) translateX(-100%) scale(0.75); -} - -.u-arrow-custom-v11.js-next .u-arrow-text { - -webkit-transform: translateY(-50%) translateX(100%) scale(0.75); - -ms-transform: translateY(-50%) translateX(100%) scale(0.75); - transform: translateY(-50%) translateX(100%) scale(0.75); -} - -.u-arrow-custom-v11:hover .u-arrow-icon { - border-top-width: 40px; - border-bottom-width: 40px; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v11:hover .u-arrow-text { - opacity: 1; - -webkit-transition-delay: .3s; - -o-transition-delay: .3s; - transition-delay: .3s; - -webkit-transform: translateY(-50%) translateX(0) scale(1); - -ms-transform: translateY(-50%) translateX(0) scale(1); - transform: translateY(-50%) translateX(0) scale(1); -} - -.u-arrow-custom-v12 .u-arrow-icon { - position: relative; - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-arrow-custom-v12 .u-arrow-icon::before { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.u-arrow-custom-v12 .u-arrow-text { - overflow: hidden; - -webkit-transition: -webkit-transform .3s; - transition: -webkit-transform .3s; - -o-transition: transform .3s; - transition: transform .3s; - transition: transform .3s, -webkit-transform .3s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transform: scale(0.6); - -ms-transform: scale(0.6); - transform: scale(0.6); -} - -.u-arrow-custom-v12 .u-arrow-img { - opacity: 0; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: opacity .3s, -webkit-transform .3s; - transition: opacity .3s, -webkit-transform .3s; - -o-transition: opacity .3s, transform .3s; - transition: opacity .3s, transform .3s; - transition: opacity .3s, transform .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v12:hover .u-arrow-img { - opacity: .8; -} - -.u-arrow-custom-v12.js-prev .u-arrow-img { - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2); - -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2); - transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2); -} - -.u-arrow-custom-v12.js-prev:hover .u-arrow-text { - -webkit-transform: scale(1) rotate(-45deg); - -ms-transform: scale(1) rotate(-45deg); - transform: scale(1) rotate(-45deg); -} - -.u-arrow-custom-v12.js-prev:hover .u-arrow-img { - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1); - -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1); - transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1); -} - -.u-arrow-custom-v12.js-next .u-arrow-img { - -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2); - -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2); - transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2); -} - -.u-arrow-custom-v12.js-next:hover .u-arrow-text { - -webkit-transform: scale(1) rotate(45deg); - -ms-transform: scale(1) rotate(45deg); - transform: scale(1) rotate(45deg); -} - -.u-arrow-custom-v12.js-next:hover .u-arrow-img { - -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1); - -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1); - transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1); -} - -.u-arrow-custom-v13 .u-arrow-icon { - overflow: hidden; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-arrow-custom-v13 .u-arrow-icon::before { - position: relative; - z-index: 2; -} - -.u-arrow-custom-v13 .u-arrow-icon::after { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 110%; - background: #fff; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: -webkit-transform .3s .3s; - transition: -webkit-transform .3s .3s; - -o-transition: transform .3s .3s; - transition: transform .3s .3s; - transition: transform .3s .3s, -webkit-transform .3s .3s; -} - -.u-arrow-custom-v13 .u-arrow-text { - -webkit-transition: -webkit-transform .3s; - transition: -webkit-transform .3s; - -o-transition: transform .3s; - transition: transform .3s; - transition: transform .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v13.js-prev .u-arrow-icon::after { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v13.js-prev .u-arrow-text { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-arrow-custom-v13.js-next .u-arrow-icon::after { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v13.js-next .u-arrow-text { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-arrow-custom-v13:hover .u-arrow-icon::after { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-arrow-custom-v13:hover .u-arrow-text { - -webkit-transition-delay: .3s; - -o-transition-delay: .3s; - transition-delay: .3s; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-arrow-custom-v14::before, .u-arrow-custom-v14::after, -.u-arrow-custom-v14 .u-arrow-icon::before, -.u-arrow-custom-v14 .u-arrow-icon::after { - content: ""; - position: absolute; - left: 50%; - width: 3px; - height: 50%; - background: #e74c3c; - -webkit-transition: -webkit-transform .3s; - transition: -webkit-transform .3s; - -o-transition: transform .3s; - transition: transform .3s; - transition: transform .3s, -webkit-transform .3s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-arrow-custom-v14::before, -.u-arrow-custom-v14 .u-arrow-icon::before { - top: 50%; - -webkit-transform: translateX(-50%) rotate(-135deg); - -ms-transform: translateX(-50%) rotate(-135deg); - transform: translateX(-50%) rotate(-135deg); - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -.u-arrow-custom-v14::after, -.u-arrow-custom-v14 .u-arrow-icon::after { - top: 50%; - -webkit-transform: translateX(-50%) rotate(-45deg); - -ms-transform: translateX(-50%) rotate(-45deg); - transform: translateX(-50%) rotate(-45deg); - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; -} - -.u-arrow-custom-v14 .u-arrow-icon::before, .u-arrow-custom-v14 .u-arrow-icon::after { - z-index: 2; - height: 0; - background: #fff; - -webkit-transition: height .3s, -webkit-transform .3s; - transition: height .3s, -webkit-transform .3s; - -o-transition: height .3s, transform .3s; - transition: height .3s, transform .3s; - transition: height .3s, transform .3s, -webkit-transform .3s; -} - -.u-arrow-custom-v14 .u-arrow-title { - position: absolute; - top: 50%; - opacity: 0; - -webkit-transition: opacity .3s, -webkit-transform .3s; - transition: opacity .3s, -webkit-transform .3s; - -o-transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s; - transition: transform .3s, opacity .3s, -webkit-transform .3s; - margin: 0; -} - -.u-arrow-custom-v14.js-prev .u-arrow-title { - left: 100%; - -webkit-transform: translateY(-50%) translateX(-50%); - -ms-transform: translateY(-50%) translateX(-50%); - transform: translateY(-50%) translateX(-50%); -} - -.u-arrow-custom-v14.js-next::before, -.u-arrow-custom-v14.js-next .u-arrow-icon::before { - -webkit-transform: translateX(-50%) rotate(135deg); - -ms-transform: translateX(-50%) rotate(135deg); - transform: translateX(-50%) rotate(135deg); - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -.u-arrow-custom-v14.js-next::after, -.u-arrow-custom-v14.js-next .u-arrow-icon::after { - -webkit-transform: translateX(-50%) rotate(45deg); - -ms-transform: translateX(-50%) rotate(45deg); - transform: translateX(-50%) rotate(45deg); - -webkit-transform-origin: 100% 0; - -ms-transform-origin: 100% 0; - transform-origin: 100% 0; -} - -.u-arrow-custom-v14.js-next .u-arrow-title { - right: 100%; - text-align: right; - -webkit-transform: translateY(-50%) translateX(50%); - -ms-transform: translateY(-50%) translateX(50%); - transform: translateY(-50%) translateX(50%); -} - -.u-arrow-custom-v14:hover::before, -.u-arrow-custom-v14:hover .u-arrow-icon::before { - -webkit-transform: translateX(-50%) rotate(-125deg); - -ms-transform: translateX(-50%) rotate(-125deg); - transform: translateX(-50%) rotate(-125deg); -} - -.u-arrow-custom-v14:hover::after, -.u-arrow-custom-v14:hover .u-arrow-icon::after { - -webkit-transform: translateX(-50%) rotate(-55deg); - -ms-transform: translateX(-50%) rotate(-55deg); - transform: translateX(-50%) rotate(-55deg); -} - -.u-arrow-custom-v14:hover .u-arrow-icon::before, .u-arrow-custom-v14:hover .u-arrow-icon::after { - height: 50%; -} - -.u-arrow-custom-v14:hover .u-arrow-title { - opacity: 1; - -webkit-transform: translateY(-50%) translateX(0); - -ms-transform: translateY(-50%) translateX(0); - transform: translateY(-50%) translateX(0); -} - -.u-arrow-custom-v14:hover.js-next::before, -.u-arrow-custom-v14:hover.js-next .u-arrow-icon::before { - -webkit-transform: translateX(-50%) rotate(125deg); - -ms-transform: translateX(-50%) rotate(125deg); - transform: translateX(-50%) rotate(125deg); -} - -.u-arrow-custom-v14:hover.js-next::after, -.u-arrow-custom-v14:hover.js-next .u-arrow-icon::after { - -webkit-transform: translateX(-50%) rotate(55deg); - -ms-transform: translateX(-50%) rotate(55deg); - transform: translateX(-50%) rotate(55deg); -} - -/*------------------------------------ - Badges -------------------------------------*/ -[class*="u-badge"] { - position: absolute; - display: inline-block; - text-align: center; - font-size: 0.92857rem; - color: #a49da6; - z-index: 3; -} - -[class*="u-badge"]:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) { - top: 0; - right: 0; - -webkit-transform: translate(50%, -50%); - -ms-transform: translate(50%, -50%); - transform: translate(50%, -50%); -} - -.u-badge--top-left { - top: 0; - left: 0; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-badge--bottom-left { - bottom: 0; - left: 0; - -webkit-transform: translate(-50%, 50%); - -ms-transform: translate(-50%, 50%); - transform: translate(-50%, 50%); -} - -.u-badge--bottom-right { - bottom: 0; - right: 0; - -webkit-transform: translate(50%, 50%); - -ms-transform: translate(50%, 50%); - transform: translate(50%, 50%); -} - -/*------------------------------------ - Badges v1 -------------------------------------*/ -[class*="u-badge-v1"] { - background-color: #ddd; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -.u-badge-v1 { - min-width: 1.28571rem; - min-height: 1.28571rem; - line-height: 1.28571rem; - padding: 0.21429rem; -} - -.u-badge-v1.g-brd-around { - line-height: 1.14286rem; -} - -.u-badge-v1--xs { - min-width: 1rem; - min-height: 1rem; - line-height: 1rem; - font-size: 0.71429rem; - padding: 0.14286rem; -} - -.u-badge-v1--xs.g-brd-around { - line-height: 0.85714rem; -} - -.u-badge-v1--sm { - min-width: 1.14286rem; - min-height: 1.14286rem; - line-height: 1.14286rem; - font-size: 0.78571rem; - padding: 0.14286rem; -} - -.u-badge-v1--sm.g-brd-around { - line-height: 1rem; -} - -.u-badge-v1--md { - min-width: 1.28571rem; - min-height: 1.28571rem; - line-height: 1.28571rem; - font-size: 0.92857rem; - padding: 0.21429rem; -} - -.u-badge-v1--md.g-brd-around { - line-height: 1.14286rem; -} - -.u-badge-v1--lg { - min-width: 1.42857rem; - min-height: 1.42857rem; - line-height: 1.42857rem; - font-size: 1.07143rem; - padding: 0.21429rem; -} - -.u-badge-v1--lg.g-brd-around { - line-height: 1.28571rem; -} - -.u-badge-v1--xl { - min-width: 1.85714rem; - min-height: 1.85714rem; - line-height: 1.85714rem; - font-size: 1.21429rem; - padding: 0.21429rem; -} - -.u-badge-v1--xl.g-brd-around { - line-height: 1.71429rem; -} - -/*------------------------------------ - Badges v2 -------------------------------------*/ -[class*="u-badge-v2"] { - background-color: #e74c3c; - border-radius: 50%; -} - -.u-badge-v2 { - width: 14px; - height: 14px; -} - -.u-badge-v2--xs { - width: 8px; - height: 8px; -} - -.u-badge-v2--sm { - width: 12px; - height: 12px; -} - -.u-badge-v2--md { - width: 14px; - height: 14px; -} - -.u-badge-v2--lg { - width: 16px; - height: 16px; -} - -.u-badge-v2--xl { - width: 18px; - height: 18px; -} - -/*------------------------------------ - Badges v3 -------------------------------------*/ -[class*="u-badge-v3"] { - line-height: 1; - color: #fff; - text-shadow: 0 1px 1px #a49da6, 0 -1px 1px #a49da6, 1px 0 1px #a49da6, -1px 0 1px #a49da6; -} - -.u-badge-v3 { - font-size: 1rem; -} - -.u-badge-v3--xs { - font-size: 0.71429rem; -} - -.u-badge-v3--sm { - font-size: 0.85714rem; -} - -.u-badge-v3--md { - font-size: 1rem; -} - -.u-badge-v3--lg { - font-size: 1.14286rem; -} - -.u-badge-v3--xl { - font-size: 1.14286rem; -} - -hr { - margin-top: 2rem; - margin-bottom: 2rem; -} - -/* Solid Divider */ -.u-divider-solid { - border-top-style: solid; -} - -/* Dotted Divider */ -.u-divider-dotted { - border-top-style: dotted; -} - -/* Dashed Divider */ -.u-divider-dashed { - border-top-style: dashed; -} - -/* Double Solid Divider */ -.u-divider-db-solid { - height: 5px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; -} - -/* Double Dashed Divider */ -.u-divider-db-dashed { - height: 5px; - border-top: 1px dashed transparent; - border-bottom: 1px dashed transparent; -} - -/* Double Dotted Divider */ -.u-divider-db-dotted { - height: 5px; - border-top: 1px dotted transparent; - border-bottom: 1px dotted transparent; -} - -/* Linear Gradient Divider */ -.u-divider-linear-gradient { - height: 1px; - border: none; -} - -.u-divider-linear-gradient--gray-light-v2 { - background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#ccc), to(transparent)); - background-image: -webkit-linear-gradient(left, transparent, #ccc, transparent); - background-image: -o-linear-gradient(left, transparent, #ccc, transparent); - background-image: linear-gradient(to right, transparent, #ccc, transparent); -} - -.u-divider-linear-gradient--gray-light-v3 { - background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#ddd), to(transparent)); - background-image: -webkit-linear-gradient(left, transparent, #ddd, transparent); - background-image: -o-linear-gradient(left, transparent, #ddd, transparent); - background-image: linear-gradient(to right, transparent, #ddd, transparent); -} - -.u-divider { - position: relative; - border-top-width: 1px; -} - -.u-divider__icon { - position: absolute; - top: -1.42857rem; - width: 2.85714rem; - height: 2.85714rem; - font-size: 1.28571rem; - line-height: 2.85714rem; - text-align: center; - font-style: normal; -} - -.u-divider__icon--indented { - -webkit-box-shadow: 0 0 0 15px #fff; - box-shadow: 0 0 0 15px #fff; -} - -.u-divider-center { - text-align: center; -} - -.u-divider-right { - text-align: right; -} - -.u-divider-center .u-divider__icon { - left: auto; - right: auto; - margin-left: -1.42857rem; -} - -.u-divider-right .u-divider__icon { - left: auto; - right: 0; -} - -/*------------------------------------ - Go To v1 -------------------------------------*/ -[class*="u-go-to"] { - display: none; -} - -.u-go-to-v1 { - width: 3.57143rem; - height: 3.57143rem; - display: block; - background-color: rgba(255, 255, 255, 0.7); - color: #a49da6; - border-radius: 50%; - -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); - box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; - z-index: 11; -} - -.u-go-to-v1 i { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-go-to-v1:hover, .u-go-to-v1:focus:hover { - text-decoration: none; - color: #fff; - background-color: #e74c3c; -} - -.u-go-to-v1:focus { - text-decoration: none; - color: #a49da6; - background-color: rgba(255, 255, 255, 0.7); -} - -@media (max-width: 575px) { - .u-go-to-v1 { - -webkit-transform: scale(0.8, 0.8); - -ms-transform: scale(0.8, 0.8); - transform: scale(0.8, 0.8); - } -} - -/*------------------------------------ - Go To v2 -------------------------------------*/ -[class*="u-go-to"] { - display: none; -} - -.u-go-to-v2 { - display: block; - background-color: rgba(0, 0, 0, 0.3); - color: #fff; - border-radius: 3px; - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; - z-index: 11; -} - -.u-go-to-v2 i { - width: 2.85714rem; - height: 2.85714rem; - display: block; - text-align: center; - line-height: 2.85714rem; -} - -.u-go-to-v2:hover, .u-go-to-v2:focus:hover { - text-decoration: none; - color: #fff; - background-color: #e74c3c; -} - -.u-go-to-v2:focus { - text-decoration: none; - color: #fff; - background-color: rgba(0, 0, 0, 0.3); -} - -@media (max-width: 575px) { - .u-go-to-v2 { - -webkit-transform: scale(0.8, 0.8); - -ms-transform: scale(0.8, 0.8); - transform: scale(0.8, 0.8); - } -} - -/*------------------------------------ - Go To v3 -------------------------------------*/ -[class*="u-go-to"] { - display: none; -} - -.u-go-to-v3 { - padding: 5px; - display: block; - background-color: rgba(255, 255, 255, 0.7); - color: #a49da6; - border-radius: 50%; - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; - z-index: 11; -} - -.u-go-to-v3 i { - width: 3.57143rem; - height: 3.57143rem; - display: block; - text-align: center; - border-radius: 50%; - font-size: 1.14286rem; - line-height: 3.28571rem; - border: solid 1px #a49da6; - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; -} - -.u-go-to-v3:hover, .u-go-to-v3:focus:hover { - text-decoration: none; - color: #e74c3c; - background-color: white; -} - -.u-go-to-v3:hover i, .u-go-to-v3:focus:hover i { - border-color: #e74c3c; -} - -.u-go-to-v3:focus { - text-decoration: none; - color: #a49da6; - background-color: rgba(255, 255, 255, 0.7); -} - -.u-go-to-v3:focus i { - border-color: #a49da6; -} - -@media (max-width: 575px) { - .u-go-to-v3 { - -webkit-transform: scale(0.8, 0.8); - -ms-transform: scale(0.8, 0.8); - transform: scale(0.8, 0.8); - } -} - -/*------------------------------------ - Go To v4 -------------------------------------*/ -.u-go-to-v4 { - position: relative; - width: 22px; - height: 35px; - border: 2px solid #e74c3c; - border-radius: 15px; -} - -.u-go-to-v4::before { - width: 7px; - height: 7px; - background-color: #fff; - border-radius: 50%; - content: " "; - position: absolute !important; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; - -webkit-animation-duration: 2s; - animation-duration: 2s; - -webkit-animation-name: u-go-to-v4; - animation-name: u-go-to-v4; - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - -webkit-animation-direction: alternate; - animation-direction: alternate; -} - -@-webkit-keyframes u-go-to-v4 { - 0% { - top: 20%; - bottom: 0; - } - 50% { - top: 50%; - bottom: 0; - } - 100% { - top: 20%; - bottom: 100%; - } -} - -@keyframes u-go-to-v4 { - 0% { - top: 20%; - bottom: 0; - } - 50% { - top: 50%; - bottom: 0; - } - 100% { - top: 20%; - bottom: 100%; - } -} - -/*------------------------------------ - Headers -------------------------------------*/ -.u-header { - position: relative; - left: 0; - right: 0; - width: 100%; - font-size: 0.92857rem; - z-index: 101; -} - -.u-header [aria-labelledby] { - opacity: 0; -} - -.u-header [aria-labelledby][role="tabpanel"] { - opacity: 1; -} - -.u-header [aria-labelledby].u-dropdown--css-animation, -.u-header [aria-labelledby].u-dropdown--jquery-slide { - opacity: 1; -} - -.u-header--abs-top, .u-header--abs-bottom, .u-header--abs-top-2nd-screen { - position: absolute; -} - -.u-header--abs-top-2nd-screen { - top: 100%; - bottom: auto; -} - -.u-header--abs-top { - top: 0; - bottom: auto; -} - -.u-header--abs-bottom { - top: auto; - bottom: 0; -} - -.u-header--abs-bottom .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: .125rem; -} - -.u-header--sticky-top, .u-header--sticky-bottom { - position: fixed; -} - -.u-header--sticky-top { - bottom: auto; - top: 0; -} - -.u-header--sticky-bottom { - top: auto; - bottom: 0; -} - -.u-header--sticky-bottom .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: .125rem; -} - -.u-header--invisible { - display: none; -} - -.u-header--moved-up { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); -} - -.u-header--faded { - opacity: 0; - visibility: hidden; -} - -.u-header--untransitioned { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -.u-header__section--hidden { - position: relative; -} - -.u-header--floating { - position: absolute; - left: 0; - right: 0; -} - -.u-header--floating.js-header-fix-moment { - margin-top: 0 !important; -} - -.u-header--floating.js-header-fix-moment .navbar { - padding-left: 0; - padding-right: 0; -} - -.u-header[data-header-fix-effect] { - -webkit-transition: .3s ease; - -o-transition: .3s ease; - transition: .3s ease; -} - -.u-header-reduced--shift.js-header-change-moment { - padding-top: 0 !important; - padding-bottom: 0 !important; -} - -.u-header.js-header-fix-moment { - position: fixed; - top: 0; - bottom: auto; -} - -.u-header__section { - position: relative; - z-index: 1; -} - -.u-header__section:nth-child(1) { - z-index: 5; -} - -.u-header__section:nth-child(2) { - z-index: 4; -} - -.u-header__section:nth-child(3) { - z-index: 3; -} - -.u-header__section:nth-child(4) { - z-index: 2; -} - -.u-header__section:nth-child(5) { - z-index: 1; -} - -.u-header__sections-container { - position: relative; - z-index: 2; -} - -.u-header__logo { - position: relative; - z-index: 1; -} - -.u-header__logo-img { - top: 0; - left: 0; - /*transition: .3s ease;*/ -} - -.u-header__logo-img:not(.u-header__logo-img--main) { - position: absolute; - opacity: 0; -} - -.dropdown-menu.u-dropdown--reverse-position { - left: auto; - right: 0; -} - -.js-header-change-moment.g-bg-white--shift { - background-color: #fff; -} - -.js-header-change-moment.g-bg-light-semi-transparent--shift { - background-color: rgba(255, 255, 255, 0.9); -} - -.js-header-change-moment.g-bg-black--shift { - background-color: #000; -} - -.js-header-change-moment.g-bg-dark-semi-transparent--shift { - background-color: rgba(0, 0, 0, 0.9); -} - -.js-header-change-moment.g-bg-primary--shift { - background-color: #e74c3c; -} - -.js-header-change-moment.g-bg-primary-semi-transparent--shift { - background-color: rgba(231, 76, 60, 0.9); -} - -.u-header__section--light .navbar-brand, -.u-header__section--light .navbar-toggler, -.u-header__section--light--shift.js-header-change-moment .navbar-brand, -.u-header__section--light--shift.js-header-change-moment .navbar-toggler { - color: #a49da6; -} - -.u-header__section--light .navbar-brand:focus, -.u-header__section--light .navbar-brand:hover, -.u-header__section--light .navbar-toggler:focus, -.u-header__section--light .navbar-toggler:hover, -.u-header__section--light--shift.js-header-change-moment .navbar-brand:focus, -.u-header__section--light--shift.js-header-change-moment .navbar-brand:hover, -.u-header__section--light--shift.js-header-change-moment .navbar-toggler:focus, -.u-header__section--light--shift.js-header-change-moment .navbar-toggler:hover { - color: #a49da6; -} - -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link { - color: #a49da6; -} - -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover { - color: #a49da6; -} - -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled { - color: rgba(164, 157, 166, 0.5); -} - -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active { - color: #e74c3c; -} - -.u-header__section--light .navbar-toggler, -.u-header__section--light--shift.js-header-change-moment .navbar-toggler { - border-color: rgba(164, 157, 166, 0.3); -} - -.u-header__section--light .navbar-toggler-icon, -.u-header__section--light--shift.js-header-change-moment .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-main, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); -} - -.u-header__section--light .navbar-text, -.u-header__section--light--shift.js-header-change-moment .navbar-text { - color: rgba(164, 157, 166, 0.7); -} - -.u-header__section--dark .navbar-brand, -.u-header__section--dark .navbar-toggler, -.u-header__section--dark--shift.js-header-change-moment .navbar-brand, -.u-header__section--dark--shift.js-header-change-moment .navbar-toggler, -.u-header__section--primary .navbar-brand, -.u-header__section--primary .navbar-toggler, -.u-header__section--primary--shift.js-header-change-moment .navbar-brand, -.u-header__section--primary--shift.js-header-change-moment .navbar-toggler { - color: #fff; -} - -.u-header__section--dark .navbar-brand:focus, -.u-header__section--dark .navbar-brand:hover, -.u-header__section--dark .navbar-toggler:focus, -.u-header__section--dark .navbar-toggler:hover, -.u-header__section--dark--shift.js-header-change-moment .navbar-brand:focus, -.u-header__section--dark--shift.js-header-change-moment .navbar-brand:hover, -.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:focus, -.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:hover, -.u-header__section--primary .navbar-brand:focus, -.u-header__section--primary .navbar-brand:hover, -.u-header__section--primary .navbar-toggler:focus, -.u-header__section--primary .navbar-toggler:hover, -.u-header__section--primary--shift.js-header-change-moment .navbar-brand:focus, -.u-header__section--primary--shift.js-header-change-moment .navbar-brand:hover, -.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:focus, -.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:hover { - color: #fff; -} - -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link { - color: rgba(255, 255, 255, 0.8); -} - -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover { - color: #fff; -} - -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled { - color: rgba(255, 255, 255, 0.5); -} - -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open, -.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active { - color: #fff; -} - -.u-header__section--dark .navbar-toggler, -.u-header__section--dark--shift.js-header-change-moment .navbar-toggler, -.u-header__section--primary .navbar-toggler, -.u-header__section--primary--shift.js-header-change-moment .navbar-toggler { - border-color: rgba(255, 255, 255, 0.3); -} - -.u-header__section--dark .navbar-toggler-icon, -.u-header__section--dark--shift.js-header-change-moment .navbar-toggler-icon, -.u-header__section--primary .navbar-toggler-icon, -.u-header__section--primary--shift.js-header-change-moment .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-white, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); -} - -.u-header__section--dark .navbar-text, -.u-header__section--dark--shift.js-header-change-moment .navbar-text, -.u-header__section--primary .navbar-text, -.u-header__section--primary--shift.js-header-change-moment .navbar-text { - color: rgba(255, 255, 255, 0.7); -} - -.navbar > .container { - position: relative; -} - -@media all and (min-width: 576px) { - .u-header--abs-top--sm, .u-header--abs-bottom--sm, .u-header--abs-top-2nd-screen--sm { - position: absolute; - } - .u-header--abs-top-2nd-screen--sm { - top: 100%; - } - .u-header--abs-top--sm { - bottom: auto; - top: 0; - } - .u-header--abs-bottom--sm { - top: auto; - bottom: 0; - } - .u-header--sticky-top--sm, .u-header--sticky-bottom--sm { - position: fixed; - } - .u-header--sticky-top--sm { - bottom: auto; - top: 0; - } - .u-header--sticky-bottom--sm { - top: auto; - bottom: 0; - } - .u-header--floating--sm { - position: absolute; - left: 0; - right: 0; - } - .u-header--floating--sm.js-header-fix-moment { - margin-top: 0 !important; - } - .u-header--floating--sm.js-header-fix-moment .navbar { - padding-left: 0; - padding-right: 0; - } -} - -@media all and (min-width: 768px) { - .u-header--abs-top--md, .u-header--abs-bottom--md, .u-header--abs-top-2nd-screen--md { - position: absolute; - } - .u-header--abs-top-2nd-screen--md { - top: 100%; - } - .u-header--abs-top--md { - bottom: auto; - top: 0; - } - .u-header--abs-bottom--md { - top: auto; - bottom: 0; - } - .u-header--sticky-top--md, .u-header--sticky-bottom--md { - position: fixed; - } - .u-header--sticky-top--md { - bottom: auto; - top: 0; - } - .u-header--sticky-bottom--md { - top: auto; - bottom: 0; - } - .u-header--floating--md { - position: absolute; - left: 0; - right: 0; - } - .u-header--floating--md.js-header-fix-moment { - margin-top: 0 !important; - } - .u-header--floating--md.js-header-fix-moment .navbar { - padding-left: 0; - padding-right: 0; - } -} - -@media all and (min-width: 992px) { - .u-header--abs-top--lg, .u-header--abs-bottom--lg, .u-header--abs-top-2nd-screen--lg { - position: absolute; - } - .u-header--abs-top-2nd-screen--lg { - top: 100%; - } - .u-header--abs-top--lg { - bottom: auto; - top: 0; - } - .u-header--abs-bottom--lg { - top: auto; - bottom: 0; - } - .u-header--sticky-top--lg, .u-header--sticky-bottom--lg { - position: fixed; - } - .u-header--sticky-top--lg { - bottom: auto; - top: 0; - } - .u-header--sticky-bottom--lg { - top: auto; - bottom: 0; - } - .u-header--floating--lg { - position: absolute; - left: 0; - right: 0; - } - .u-header--floating--lg.js-header-fix-moment { - margin-top: 0 !important; - } - .u-header--floating--lg.js-header-fix-moment .navbar { - padding-left: 0; - padding-right: 0; - } -} - -@media all and (min-width: 1200px) { - .u-header--abs-top--xl, .u-header--abs-bottom--xl, .u-header--abs-top-2nd-screen--xl { - position: absolute; - } - .u-header--abs-top-2nd-screen--xl { - top: 100%; - } - .u-header--abs-top--xl { - bottom: auto; - top: 0; - } - .u-header--abs-bottom--xl { - top: auto; - bottom: 0; - } - .u-header--sticky-top--xl, .u-header--sticky-bottom--xl { - position: fixed; - } - .u-header--sticky-top--xl { - bottom: auto; - top: 0; - } - .u-header--sticky-bottom--xl { - top: auto; - bottom: 0; - } - .u-header--floating--xl { - position: absolute; - left: 0; - right: 0; - } - .u-header--floating--xl.js-header-fix-moment { - margin-top: 0 !important; - } - .u-header--floating--xl.js-header-fix-moment .navbar { - padding-left: 0; - padding-right: 0; - } -} - -@media all and (max-width: 1199px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-collapse { - width: 100%; - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } -} - -@media all and (max-width: 991px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-collapse { - width: 100%; - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } -} - -@media all and (max-width: 767px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-collapse { - width: 100%; - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } -} - -@media all and (max-width: 575px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-collapse { - width: 100%; - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } -} - -/*------------------------------------ - Header Togglers -------------------------------------*/ -.u-header-toggler { - display: block; - width: 5rem; - height: 3.57143rem; - z-index: 102; - /* Hamburgers */ -} - -.u-header-toggler .hamburger { - line-height: 1; -} - -/* Toggler Positioning */ -@media all and (min-width: 0) { - .u-header-toggler--top-right, .u-header-toggler--top-right.btn, .u-header-toggler--top-left, .u-header-toggler--top-left.btn, .u-header-toggler--bottom-right, .u-header-toggler--bottom-right.btn, .u-header-toggler--bottom-left, .u-header-toggler--bottom-left.btn { - position: fixed; - } - .u-header-toggler--top-right, .u-header-toggler--top-right.btn, .u-header-toggler--top-left, .u-header-toggler--top-left.btn { - top: 1.42857rem; - } - .u-header-toggler--bottom-right, .u-header-toggler--bottom-right.btn, .u-header-toggler--bottom-left, .u-header-toggler--bottom-left.btn { - bottom: 1.42857rem; - } - .u-header-toggler--top-left, .u-header-toggler--bottom-left { - left: 1.42857rem; - } - .u-header-toggler--top-right, .u-header-toggler--bottom-right { - right: 1.42857rem; - } -} - -/* Toggler Positioning (sm) */ -@media all and (min-width: 576px) { - .u-header-toggler--top-right--sm, .u-header-toggler--top-right--sm.btn, .u-header-toggler--top-left--sm, .u-header-toggler--top-left--sm.btn, .u-header-toggler--bottom-right--sm, .u-header-toggler--bottom-right--sm.btn, .u-header-toggler--bottom-left--sm, .u-header-toggler--bottom-left--sm.btn { - position: fixed; - } - .u-header-toggler--top-right--sm, .u-header-toggler--top-right--sm.btn, .u-header-toggler--top-left--sm, .u-header-toggler--top-left--sm.btn { - top: 1.42857rem; - } - .u-header-toggler--bottom-right--sm, .u-header-toggler--bottom-right--sm.btn, .u-header-toggler--bottom-left--sm, .u-header-toggler--bottom-left--sm.btn { - bottom: 1.42857rem; - } - .u-header-toggler--top-left--sm, .u-header-toggler--bottom-left--sm { - left: 1.42857rem; - } - .u-header-toggler--top-right--sm, .u-header-toggler--bottom-right--sm { - right: 1.42857rem; - } -} - -/* Toggler Positioning (md) */ -@media all and (min-width: 768px) { - .u-header-toggler--top-right--md, .u-header-toggler--top-right--md.btn, .u-header-toggler--top-left--md, .u-header-toggler--top-left--md.btn, .u-header-toggler--bottom-right--md, .u-header-toggler--bottom-right--md.btn, .u-header-toggler--bottom-left--md, .u-header-toggler--bottom-left--md.btn { - position: fixed; - } - .u-header-toggler--top-right--md, .u-header-toggler--top-right--md.btn, .u-header-toggler--top-left--md, .u-header-toggler--top-left--md.btn { - top: 1.42857rem; - } - .u-header-toggler--bottom-right--md, .u-header-toggler--bottom-right--md.btn, .u-header-toggler--bottom-left--md, .u-header-toggler--bottom-left--md.btn { - bottom: 1.42857rem; - } - .u-header-toggler--top-left--md, .u-header-toggler--bottom-left--md { - left: 1.42857rem; - } - .u-header-toggler--top-right--md, .u-header-toggler--bottom-right--md { - right: 1.42857rem; - } -} - -/* Toggler Positioning (lg) */ -@media all and (min-width: 992px) { - .u-header-toggler--top-right--lg, .u-header-toggler--top-right--lg.btn, .u-header-toggler--top-left--lg, .u-header-toggler--top-left--lg.btn, .u-header-toggler--bottom-right--lg, .u-header-toggler--bottom-right--lg.btn, .u-header-toggler--bottom-left--lg, .u-header-toggler--bottom-left--lg.btn { - position: fixed; - } - .u-header-toggler--top-right--lg, .u-header-toggler--top-right--lg.btn, .u-header-toggler--top-left--lg, .u-header-toggler--top-left--lg.btn { - top: 1.42857rem; - } - .u-header-toggler--bottom-right--lg, .u-header-toggler--bottom-right--lg.btn, .u-header-toggler--bottom-left--lg, .u-header-toggler--bottom-left--lg.btn { - bottom: 1.42857rem; - } - .u-header-toggler--top-left--lg, .u-header-toggler--bottom-left--lg { - left: 1.42857rem; - } - .u-header-toggler--top-right--lg, .u-header-toggler--bottom-right--lg { - right: 1.42857rem; - } -} - -/* Toggler Positioning (xl) */ -@media all and (min-width: 1200px) { - .u-header-toggler--top-right--xl, .u-header-toggler--top-right--xl.btn, .u-header-toggler--top-left--xl, .u-header-toggler--top-left--xl.btn, .u-header-toggler--bottom-right--xl, .u-header-toggler--bottom-right--xl.btn, .u-header-toggler--bottom-left--xl, .u-header-toggler--bottom-left--xl.btn { - position: fixed; - } - .u-header-toggler--top-right--xl, .u-header-toggler--top-right--xl.btn, .u-header-toggler--top-left--xl, .u-header-toggler--top-left--xl.btn { - top: 1.42857rem; - } - .u-header-toggler--bottom-right--xl, .u-header-toggler--bottom-right--xl.btn, .u-header-toggler--bottom-left--xl, .u-header-toggler--bottom-left--xl.btn { - bottom: 1.42857rem; - } - .u-header-toggler--top-left--xl, .u-header-toggler--bottom-left--xl { - left: 1.42857rem; - } - .u-header-toggler--top-right--xl, .u-header-toggler--bottom-right--xl { - right: 1.42857rem; - } -} - -/*------------------------------------ - Fullscreen Header -------------------------------------*/ -[class*="u-header--fullscreen"] { - text-align: center; - visibility: hidden; -} - -[class*="u-header--fullscreen"] .u-header__sections-container { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 100%; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - opacity: 0; - visibility: hidden; - -webkit-transition: opacity .5s ease, visibility .5s ease; - -o-transition: opacity .5s ease, visibility .5s ease; - transition: opacity .5s ease, visibility .5s ease; -} - -[class*="u-header--fullscreen"] .mCustomScrollBox { - width: 100%; - height: auto; -} - -[class*="u-header--fullscreen"] .u-header__section { - width: 100%; -} - -[class*="u-header--fullscreen"] .navbar-nav[class*="u-main-nav-v"] > li > a { - display: inline-block; -} - -[class*="u-header--fullscreen"] .u-header__overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: none; - opacity: 0; - visibility: hidden; - border-radius: 50%; - -webkit-transition: opacity .5s ease, visibility .5s ease, -webkit-transform .5s ease; - transition: opacity .5s ease, visibility .5s ease, -webkit-transform .5s ease; - -o-transition: transform .5s ease, opacity .5s ease, visibility .5s ease; - transition: transform .5s ease, opacity .5s ease, visibility .5s ease; - transition: transform .5s ease, opacity .5s ease, visibility .5s ease, -webkit-transform .5s ease; -} - -.u-header.u-header--fullscreen--top-left, .u-header.u-header--fullscreen--top-right, .u-header.u-header--fullscreen--bottom-left, .u-header.u-header--fullscreen--bottom-right { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -.u-header.u-header--fullscreen--top-left .u-header__overlay, .u-header.u-header--fullscreen--top-right .u-header__overlay, .u-header.u-header--fullscreen--bottom-left .u-header__overlay, .u-header.u-header--fullscreen--bottom-right .u-header__overlay { - display: block; -} - -.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed { - visibility: visible; -} - -.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay, -.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay, -.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay, -.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay, -.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container { - opacity: 1; - visibility: visible; -} - -.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container { - -webkit-transition-delay: .5s; - -o-transition-delay: .5s; - transition-delay: .5s; -} - -.u-header.u-header--fullscreen--top-left .container, .u-header.u-header--fullscreen--top-right .container, .u-header.u-header--fullscreen--bottom-left .container, .u-header.u-header--fullscreen--bottom-right .container { - width: 100%; -} - -.u-header.u-header--fullscreen--top-left .navbar, .u-header.u-header--fullscreen--top-right .navbar, .u-header.u-header--fullscreen--bottom-left .navbar, .u-header.u-header--fullscreen--bottom-right .navbar { - min-width: 22.85714rem; - width: 50%; - margin-left: auto; - margin-right: auto; -} - -.u-header.u-header--fullscreen--top-left .dropdown-menu, .u-header.u-header--fullscreen--top-right .dropdown-menu, .u-header.u-header--fullscreen--bottom-left .dropdown-menu, .u-header.u-header--fullscreen--bottom-right .dropdown-menu { - text-align: inherit; - position: static; - width: 100%; -} - -.u-header.u-header--fullscreen--top-left .u-header__overlay { - -webkit-transform-origin: 0% 0%; - -ms-transform-origin: 0% 0%; - transform-origin: 0% 0%; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, -20%, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, -20%, 0); -} - -.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay { - -webkit-transform: scale3d(1, 1, 1) translate3d(-20%, -20%, 0); - transform: scale3d(1, 1, 1) translate3d(-20%, -20%, 0); -} - -.u-header.u-header--fullscreen--top-right .u-header__overlay { - left: auto; - -webkit-transform-origin: 100% 0%; - -ms-transform-origin: 100% 0%; - transform-origin: 100% 0%; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, -20%, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, -20%, 0); -} - -.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay { - -webkit-transform: scale3d(1, 1, 1) translate3d(20%, -20%, 0); - transform: scale3d(1, 1, 1) translate3d(20%, -20%, 0); -} - -.u-header.u-header--fullscreen--bottom-left .u-header__overlay { - top: auto; - -webkit-transform-origin: 0% 100%; - -ms-transform-origin: 0% 100%; - transform-origin: 0% 100%; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, 20%, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, 20%, 0); -} - -.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay { - -webkit-transform: scale3d(1, 1, 1) translate3d(-20%, 20%, 0); - transform: scale3d(1, 1, 1) translate3d(-20%, 20%, 0); -} - -.u-header.u-header--fullscreen--bottom-right .u-header__overlay { - top: auto; - left: auto; - -webkit-transform-origin: 100% 100%; - -ms-transform-origin: 100% 100%; - transform-origin: 100% 100%; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, 20%, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, 20%, 0); -} - -.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay { - -webkit-transform: scale3d(1, 1, 1) translate3d(20%, 20%, 0); - transform: scale3d(1, 1, 1) translate3d(20%, 20%, 0); -} - -/*------------------------------------ - Side Header -------------------------------------*/ -/* Common styles of Side Header */ -body[class*="u-body--header-side"] .u-header.u-header--side { - position: fixed; - top: 0; - height: 100%; - width: 21.42857rem; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .navbar { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .navbar .container { - width: 100%; - padding-left: 0; - padding-right: 0; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .navbar .navbar-collapse { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .navbar .navbar-nav { - width: 100%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-left: 0 !important; - margin-right: 0 !important; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .u-header__sections-container { - height: 100%; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .dropdown-menu { - top: 0; -} - -body[class*="u-body--header-side"] .u-header.u-header--side .mCSB_container, -body[class*="u-body--header-side"] .u-header.u-header--side .mCustomScrollBox { - overflow: visible; -} - -/* Overlay */ -.u-header--side .u-header__overlay { - position: absolute; - top: 0; - height: 100%; - width: 2000%; - opacity: 0; - visibility: hidden; -} - -body[class*="u-body--header-side"].u-body--header-side-opened .u-header__overlay { - opacity: 1; - visibility: visible; -} - -.u-body--header-side-static-left .u-header--side .dropdown-menu, .u-body--header-side-overlay-left .u-header--side .dropdown-menu, .u-body--header-side-push-left .u-header--side .dropdown-menu { - left: 100%; - margin-left: 1.07143rem; -} - -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu { - margin-left: 1.07143rem; -} - -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu { - margin-left: 0; -} - -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu { - margin-left: 0; - margin-right: 1.07143rem; -} - -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu { - margin-left: 0; - margin-right: 0; -} - -.u-body--header-side-static-left { - margin-left: 21.42857rem; -} - -.u-body--header-side-static-left .u-header--side { - right: auto; - left: 0; -} - -.u-body--header-side-static-right { - margin-right: 21.42857rem; -} - -.u-body--header-side-static-right .u-header--side { - left: auto; - right: 0; -} - -.u-body--header-side-overlay-left .u-header--side, .u-body--header-side-push-left .u-header--side { - right: auto; - left: -21.42857rem; -} - -.u-body--header-side-overlay-left .u-header--side .u-header__overlay, .u-body--header-side-push-left .u-header--side .u-header__overlay { - left: 100%; -} - -.u-body--header-side-overlay-left.u-body--header-side-opened .u-header--side, .u-body--header-side-push-left.u-body--header-side-opened .u-header--side { - left: 0; -} - -.u-body--header-side-push-left.u-body--header-side-opened { - margin-left: 21.42857rem; -} - -.u-body--header-side-overlay-right .u-header--side, .u-body--header-side-push-right .u-header--side { - left: auto; - right: -21.42857rem; -} - -.u-body--header-side-overlay-right .u-header--side .u-header__overlay, .u-body--header-side-push-right .u-header--side .u-header__overlay { - right: 100%; -} - -.u-body--header-side-overlay-right.u-body--header-side-opened .u-header--side, .u-body--header-side-push-right.u-body--header-side-opened .u-header--side { - right: 0; -} - -.u-body--header-side-push-right.u-body--header-side-opened { - margin-right: 21.42857rem; -} - -.u-body--header-side-static-right .u-header--side .dropdown-menu, .u-body--header-side-overlay-right .u-header--side .dropdown-menu, .u-body--header-side-push-right .u-header--side .dropdown-menu { - left: auto; - right: 100%; - margin-right: 1.07143rem; -} - -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu { - left: auto; - right: 100%; - margin-right: 1.07143rem; -} - -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu { - margin-right: 0; -} - -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu { - margin-right: 0; - margin-left: 1.07143rem; -} - -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu, -.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu { - margin-left: 0; - margin-right: 0; -} - -/* Button Styles -------------------------------------*/ -/* General Button Styles */ -.btn { - position: relative; - -webkit-transition: .2s ease; - -o-transition: .2s ease; - transition: .2s ease; - cursor: pointer; -} - -.btn:focus, .btn:active:focus, .btn.active:focus { - outline: 0 none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Button Content -------------------------------------*/ -.u-btn-content { - white-space: normal; -} - -/* Buttons Only Icon (O) -------------------------------------*/ -.u-btn-only-icon { - position: relative; -} - -.u-btn-only-icon i { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -/* Button Sizes -------------------------------------*/ -/* Extra Small */ -.btn-xs { - line-height: 1.4; - padding: 0.14286rem 0.5rem; - font-size: 0.78571rem; -} - -/* Medium */ -.btn-md { - line-height: 1.4; - padding: 0.57143rem 1.42857rem; - font-size: 1.07143rem; -} - -/* Extra Large */ -.btn-xl { - line-height: 1.4; - padding: 0.92857rem 1.85714rem; - font-size: 1.28571rem; -} - -/* Extramly Large */ -.btn-xxl { - line-height: 1.4; - padding: 1.07143rem 2.14286rem; - font-size: 1.5rem; -} - -/* Button Types -------------------------------------*/ -/* Inset Buttons */ -.u-btn-inset { - position: relative; -} - -.u-btn-inset::before { - position: absolute; - top: 0.14286rem; - right: 0.14286rem; - bottom: 0.14286rem; - left: 0.14286rem; - content: ""; - border: solid 1px #fff; - border-radius: 1px; -} - -.u-btn-inset--rounded::before { - border-radius: 50px; -} - -/* 3d Buttons */ -.u-btn-3d { - border-bottom: solid 3px rgba(0, 0, 0, 0.2); -} - -.u-btn-3d:hover { - border-bottom-color: rgba(0, 0, 0, 0.3); -} - -/* Skew Button */ -.u-btn-skew { - -webkit-transform: skewX(-20deg); - -ms-transform: skewX(-20deg); - transform: skewX(-20deg); -} - -.u-btn-skew__inner { - -webkit-transform: skewX(20deg); - -ms-transform: skewX(20deg); - transform: skewX(20deg); - display: block; -} - -/* Button Hovers -------------------------------------*/ -[class*="u-btn-hover"] { - z-index: 1; -} - -[class*="u-btn-hover"]:hover { - text-decoration: none; -} - -[class*="u-btn-hover"]:focus { - text-decoration: none; -} - -[class*="u-btn-hover"]::after { - position: absolute; - content: ""; - z-index: -1; - -webkit-transition: all .3s; - -o-transition: all .3s; - transition: all .3s; -} - -/* Hover v1-1 */ -.u-btn-hover-v1-1::after { - top: 0; - left: 0; - height: 0; - width: 100%; -} - -.u-btn-hover-v1-1:hover::after { - height: 100%; -} - -/* Hover v1-2 */ -.u-btn-hover-v1-2::after { - top: 0; - right: 0; - width: 0; - height: 100%; -} - -.u-btn-hover-v1-2:hover::after { - width: 100%; -} - -/* Hover v1-3 */ -.u-btn-hover-v1-3::after { - bottom: 0; - left: 0; - height: 0; - width: 100%; -} - -.u-btn-hover-v1-3:hover::after { - height: 100%; -} - -/* Hover v1-4 */ -.u-btn-hover-v1-4::after { - top: 0; - left: 0; - width: 0; - height: 100%; -} - -.u-btn-hover-v1-4:hover::after { - width: 100%; -} - -/* Hover v2-1 */ -.u-btn-hover-v2-1::after { - top: 0; - right: 0; - width: 0; - height: 100%; -} - -.u-btn-hover-v2-1:hover::after { - left: 0; - width: 100%; -} - -/* Hover v2-2 */ -.u-btn-hover-v2-2::after { - left: 0; - bottom: 0; - height: 0; - width: 100%; -} - -.u-btn-hover-v2-2:hover::after { - top: 0; - height: 100%; -} - -/* Button Primary */ -.u-btn-primary { - color: #fff; - background-color: #e74c3c; -} - -.u-btn-primary:hover, .u-btn-primary.active { - border-color: #ed7669; - background-color: #ed7669; -} - -.u-btn-primary:hover, .u-btn-primary:focus, .u-btn-primary.active { - color: #fff; -} - -.u-btn-primary.g-btn-hover-reset:hover, .u-btn-primary.g-btn-hover-reset.active { - background-color: #e74c3c; - border-color: #e74c3c; -} - -.u-btn-primary.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-1::after, .u-btn-primary.u-btn-hover-v1-1:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v1-1:hover { - background-color: #e74c3c; - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-2::after, .u-btn-primary.u-btn-hover-v1-2:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v1-2:hover { - background-color: #e74c3c; - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-3::after, .u-btn-primary.u-btn-hover-v1-3:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v1-3:hover { - background-color: #e74c3c; - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v1-4::after, .u-btn-primary.u-btn-hover-v1-4:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v1-4:hover { - background-color: #e74c3c; - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v2-1::after, .u-btn-primary.u-btn-hover-v2-1:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v2-1:hover { - background-color: #e74c3c; - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-primary.u-btn-hover-v2-2::after, .u-btn-primary.u-btn-hover-v2-2:hover::after { - background-color: #ea6153; -} - -.u-btn-primary.u-btn-hover-v2-2:hover { - background-color: #e74c3c; - overflow: hidden; -} - -/* Button White */ -.u-btn-white { - color: #555; - background-color: #fff; -} - -.u-btn-white:hover, .u-btn-white.active { - border-color: white; - background-color: white; -} - -.u-btn-white:hover, .u-btn-white:focus, .u-btn-white.active { - color: #555; -} - -.u-btn-white.g-btn-hover-reset:hover, .u-btn-white.g-btn-hover-reset.active { - background-color: #fff; - border-color: #fff; -} - -.u-btn-white.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-1::after, .u-btn-white.u-btn-hover-v1-1:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v1-1:hover { - background-color: #fff; - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-2::after, .u-btn-white.u-btn-hover-v1-2:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v1-2:hover { - background-color: #fff; - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-3::after, .u-btn-white.u-btn-hover-v1-3:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v1-3:hover { - background-color: #fff; - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v1-4::after, .u-btn-white.u-btn-hover-v1-4:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v1-4:hover { - background-color: #fff; - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v2-1::after, .u-btn-white.u-btn-hover-v2-1:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-white.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-white.u-btn-hover-v2-2::after, .u-btn-white.u-btn-hover-v2-2:hover::after { - background-color: white; -} - -.u-btn-white.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Button Black */ -.u-btn-black { - color: #fff; - background-color: #000; -} - -.u-btn-black:hover, .u-btn-black.active { - border-color: #1a1a1a; - background-color: #1a1a1a; -} - -.u-btn-black:hover, .u-btn-black:focus, .u-btn-black.active { - color: #fff; -} - -.u-btn-black.g-btn-hover-reset:hover, .u-btn-black.g-btn-hover-reset.active { - background-color: #000; - border-color: #000; -} - -.u-btn-black.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-1::after, .u-btn-black.u-btn-hover-v1-1:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v1-1:hover { - background-color: #000; - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-2::after, .u-btn-black.u-btn-hover-v1-2:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v1-2:hover { - background-color: #000; - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-3::after, .u-btn-black.u-btn-hover-v1-3:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v1-3:hover { - background-color: #000; - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v1-4::after, .u-btn-black.u-btn-hover-v1-4:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v1-4:hover { - background-color: #000; - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v2-1::after, .u-btn-black.u-btn-hover-v2-1:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-black.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-black.u-btn-hover-v2-2::after, .u-btn-black.u-btn-hover-v2-2:hover::after { - background-color: #0d0d0d; -} - -.u-btn-black.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Button Dark Gray */ -.u-btn-darkgray { - color: #fff; - background-color: #333; -} - -.u-btn-darkgray:hover, .u-btn-darkgray.active { - border-color: #4d4d4d; - background-color: #4d4d4d; -} - -.u-btn-darkgray:hover, .u-btn-darkgray:focus, .u-btn-darkgray.active { - color: #fff; -} - -.u-btn-darkgray.g-btn-hover-reset:hover, .u-btn-darkgray.g-btn-hover-reset.active { - background-color: #333; - border-color: #333; -} - -.u-btn-darkgray.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-1::after, .u-btn-darkgray.u-btn-hover-v1-1:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v1-1:hover { - background-color: #333; - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-2::after, .u-btn-darkgray.u-btn-hover-v1-2:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v1-2:hover { - background-color: #333; - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-3::after, .u-btn-darkgray.u-btn-hover-v1-3:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v1-3:hover { - background-color: #333; - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v1-4::after, .u-btn-darkgray.u-btn-hover-v1-4:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v1-4:hover { - background-color: #333; - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v2-1::after, .u-btn-darkgray.u-btn-hover-v2-1:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v2-1:hover { - background-color: #333; - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-darkgray.u-btn-hover-v2-2::after, .u-btn-darkgray.u-btn-hover-v2-2:hover::after { - background-color: #404040; -} - -.u-btn-darkgray.u-btn-hover-v2-2:hover { - background-color: #333; - overflow: hidden; -} - -/* Button Red */ -.u-btn-red { - color: #fff; - background-color: #f00; -} - -.u-btn-red:hover, .u-btn-red.active { - border-color: #ff3333; - background-color: #ff3333; -} - -.u-btn-red:hover, .u-btn-red:focus, .u-btn-red.active { - color: #fff; -} - -.u-btn-red.g-btn-hover-reset:hover, .u-btn-red.g-btn-hover-reset.active { - background-color: #f00; - border-color: #f00; -} - -.u-btn-red.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-1::after, .u-btn-red.u-btn-hover-v1-1:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v1-1:hover { - background-color: #f00; - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-2::after, .u-btn-red.u-btn-hover-v1-2:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v1-2:hover { - background-color: #f00; - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-3::after, .u-btn-red.u-btn-hover-v1-3:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v1-3:hover { - background-color: #f00; - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v1-4::after, .u-btn-red.u-btn-hover-v1-4:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v1-4:hover { - background-color: #f00; - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v2-1::after, .u-btn-red.u-btn-hover-v2-1:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v2-1:hover { - background-color: #f00; - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-red.u-btn-hover-v2-2::after, .u-btn-red.u-btn-hover-v2-2:hover::after { - background-color: #ff1a1a; -} - -.u-btn-red.u-btn-hover-v2-2:hover { - background-color: #f00; - overflow: hidden; -} - -/* Button Red Tomato */ -.u-btn-lightred { - color: #fff; - background-color: #e64b3b; -} - -.u-btn-lightred:hover, .u-btn-lightred.active { - border-color: #ec7568; - background-color: #ec7568; -} - -.u-btn-lightred:hover, .u-btn-lightred:focus, .u-btn-lightred.active { - color: #fff; -} - -.u-btn-lightred.g-btn-hover-reset:hover, .u-btn-lightred.g-btn-hover-reset.active { - background-color: #e64b3b; - border-color: #e64b3b; -} - -.u-btn-lightred.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-1::after, .u-btn-lightred.u-btn-hover-v1-1:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v1-1:hover { - background-color: #e64b3b; - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-2::after, .u-btn-lightred.u-btn-hover-v1-2:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v1-2:hover { - background-color: #e64b3b; - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-3::after, .u-btn-lightred.u-btn-hover-v1-3:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v1-3:hover { - background-color: #e64b3b; - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v1-4::after, .u-btn-lightred.u-btn-hover-v1-4:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v1-4:hover { - background-color: #e64b3b; - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v2-1::after, .u-btn-lightred.u-btn-hover-v2-1:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v2-1:hover { - background-color: #e64b3b; - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-lightred.u-btn-hover-v2-2::after, .u-btn-lightred.u-btn-hover-v2-2:hover::after { - background-color: #e96052; -} - -.u-btn-lightred.u-btn-hover-v2-2:hover { - background-color: #e64b3b; - overflow: hidden; -} - -/* Button Dark Red */ -.u-btn-darkred { - color: #fff; - background-color: #a10f2b; -} - -.u-btn-darkred:hover, .u-btn-darkred.active { - border-color: #d01337; - background-color: #d01337; -} - -.u-btn-darkred:hover, .u-btn-darkred:focus, .u-btn-darkred.active { - color: #fff; -} - -.u-btn-darkred.g-btn-hover-reset:hover, .u-btn-darkred.g-btn-hover-reset.active { - background-color: #a10f2b; - border-color: #a10f2b; -} - -.u-btn-darkred.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-1::after, .u-btn-darkred.u-btn-hover-v1-1:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v1-1:hover { - background-color: #a10f2b; - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-2::after, .u-btn-darkred.u-btn-hover-v1-2:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v1-2:hover { - background-color: #a10f2b; - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-3::after, .u-btn-darkred.u-btn-hover-v1-3:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v1-3:hover { - background-color: #a10f2b; - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v1-4::after, .u-btn-darkred.u-btn-hover-v1-4:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v1-4:hover { - background-color: #a10f2b; - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v2-1::after, .u-btn-darkred.u-btn-hover-v2-1:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v2-1:hover { - background-color: #a10f2b; - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-darkred.u-btn-hover-v2-2::after, .u-btn-darkred.u-btn-hover-v2-2:hover::after { - background-color: #b81131; -} - -.u-btn-darkred.u-btn-hover-v2-2:hover { - background-color: #a10f2b; - overflow: hidden; -} - -/* Button Blue */ -.u-btn-blue { - color: #fff; - background-color: #3398dc; -} - -.u-btn-blue:hover, .u-btn-blue.active { - border-color: #5faee3; - background-color: #5faee3; -} - -.u-btn-blue:hover, .u-btn-blue:focus, .u-btn-blue.active { - color: #fff; -} - -.u-btn-blue.g-btn-hover-reset:hover, .u-btn-blue.g-btn-hover-reset.active { - background-color: #3398dc; - border-color: #3398dc; -} - -.u-btn-blue.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-1::after, .u-btn-blue.u-btn-hover-v1-1:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v1-1:hover { - background-color: #3398dc; - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-2::after, .u-btn-blue.u-btn-hover-v1-2:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v1-2:hover { - background-color: #3398dc; - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-3::after, .u-btn-blue.u-btn-hover-v1-3:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v1-3:hover { - background-color: #3398dc; - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v1-4::after, .u-btn-blue.u-btn-hover-v1-4:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v1-4:hover { - background-color: #3398dc; - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v2-1::after, .u-btn-blue.u-btn-hover-v2-1:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v2-1:hover { - background-color: #3398dc; - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-blue.u-btn-hover-v2-2::after, .u-btn-blue.u-btn-hover-v2-2:hover::after { - background-color: #49a3e0; -} - -.u-btn-blue.u-btn-hover-v2-2:hover { - background-color: #3398dc; - overflow: hidden; -} - -/* Button Indigo */ -.u-btn-indigo { - color: #fff; - background-color: #4263a3; -} - -.u-btn-indigo:hover, .u-btn-indigo.active { - border-color: #5b7cbd; - background-color: #5b7cbd; -} - -.u-btn-indigo:hover, .u-btn-indigo:focus, .u-btn-indigo.active { - color: #fff; -} - -.u-btn-indigo.g-btn-hover-reset:hover, .u-btn-indigo.g-btn-hover-reset.active { - background-color: #4263a3; - border-color: #4263a3; -} - -.u-btn-indigo.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-1::after, .u-btn-indigo.u-btn-hover-v1-1:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v1-1:hover { - background-color: #4263a3; - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-2::after, .u-btn-indigo.u-btn-hover-v1-2:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v1-2:hover { - background-color: #4263a3; - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-3::after, .u-btn-indigo.u-btn-hover-v1-3:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v1-3:hover { - background-color: #4263a3; - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v1-4::after, .u-btn-indigo.u-btn-hover-v1-4:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v1-4:hover { - background-color: #4263a3; - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v2-1::after, .u-btn-indigo.u-btn-hover-v2-1:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v2-1:hover { - background-color: #4263a3; - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-indigo.u-btn-hover-v2-2::after, .u-btn-indigo.u-btn-hover-v2-2:hover::after { - background-color: #496eb5; -} - -.u-btn-indigo.u-btn-hover-v2-2:hover { - background-color: #4263a3; - overflow: hidden; -} - -/* Button Purple */ -.u-btn-purple { - color: #fff; - background-color: #9a69cb; -} - -.u-btn-purple:hover, .u-btn-purple.active { - border-color: #b48fd8; - background-color: #b48fd8; -} - -.u-btn-purple:hover, .u-btn-purple:focus, .u-btn-purple.active { - color: #fff; -} - -.u-btn-purple.g-btn-hover-reset:hover, .u-btn-purple.g-btn-hover-reset.active { - background-color: #9a69cb; - border-color: #9a69cb; -} - -.u-btn-purple.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-1::after, .u-btn-purple.u-btn-hover-v1-1:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v1-1:hover { - background-color: #9a69cb; - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-2::after, .u-btn-purple.u-btn-hover-v1-2:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v1-2:hover { - background-color: #9a69cb; - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-3::after, .u-btn-purple.u-btn-hover-v1-3:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v1-3:hover { - background-color: #9a69cb; - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v1-4::after, .u-btn-purple.u-btn-hover-v1-4:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v1-4:hover { - background-color: #9a69cb; - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v2-1::after, .u-btn-purple.u-btn-hover-v2-1:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v2-1:hover { - background-color: #9a69cb; - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-purple.u-btn-hover-v2-2::after, .u-btn-purple.u-btn-hover-v2-2:hover::after { - background-color: #a77cd2; -} - -.u-btn-purple.u-btn-hover-v2-2:hover { - background-color: #9a69cb; - overflow: hidden; -} - -/* Button Dark Purple */ -.u-btn-darkpurple { - color: #fff; - background-color: #6639b6; -} - -.u-btn-darkpurple:hover, .u-btn-darkpurple.active { - border-color: #8157cb; - background-color: #8157cb; -} - -.u-btn-darkpurple:hover, .u-btn-darkpurple:focus, .u-btn-darkpurple.active { - color: #fff; -} - -.u-btn-darkpurple.g-btn-hover-reset:hover, .u-btn-darkpurple.g-btn-hover-reset.active { - background-color: #6639b6; - border-color: #6639b6; -} - -.u-btn-darkpurple.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-1::after, .u-btn-darkpurple.u-btn-hover-v1-1:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v1-1:hover { - background-color: #6639b6; - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-2::after, .u-btn-darkpurple.u-btn-hover-v1-2:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v1-2:hover { - background-color: #6639b6; - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-3::after, .u-btn-darkpurple.u-btn-hover-v1-3:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v1-3:hover { - background-color: #6639b6; - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v1-4::after, .u-btn-darkpurple.u-btn-hover-v1-4:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v1-4:hover { - background-color: #6639b6; - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v2-1::after, .u-btn-darkpurple.u-btn-hover-v2-1:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v2-1:hover { - background-color: #6639b6; - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-darkpurple.u-btn-hover-v2-2::after, .u-btn-darkpurple.u-btn-hover-v2-2:hover::after { - background-color: #7244c4; -} - -.u-btn-darkpurple.u-btn-hover-v2-2:hover { - background-color: #6639b6; - overflow: hidden; -} - -/* Button Pink */ -.u-btn-pink { - color: #fff; - background-color: #e81c62; -} - -.u-btn-pink:hover, .u-btn-pink.active { - border-color: #ed4a82; - background-color: #ed4a82; -} - -.u-btn-pink:hover, .u-btn-pink:focus, .u-btn-pink.active { - color: #fff; -} - -.u-btn-pink.g-btn-hover-reset:hover, .u-btn-pink.g-btn-hover-reset.active { - background-color: #e81c62; - border-color: #e81c62; -} - -.u-btn-pink.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-1::after, .u-btn-pink.u-btn-hover-v1-1:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v1-1:hover { - background-color: #e81c62; - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-2::after, .u-btn-pink.u-btn-hover-v1-2:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v1-2:hover { - background-color: #e81c62; - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-3::after, .u-btn-pink.u-btn-hover-v1-3:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v1-3:hover { - background-color: #e81c62; - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v1-4::after, .u-btn-pink.u-btn-hover-v1-4:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v1-4:hover { - background-color: #e81c62; - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v2-1::after, .u-btn-pink.u-btn-hover-v2-1:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v2-1:hover { - background-color: #e81c62; - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-pink.u-btn-hover-v2-2::after, .u-btn-pink.u-btn-hover-v2-2:hover::after { - background-color: #ea3372; -} - -.u-btn-pink.u-btn-hover-v2-2:hover { - background-color: #e81c62; - overflow: hidden; -} - -/* Button Orange */ -.u-btn-orange { - color: #fff; - background-color: #e57d20; -} - -.u-btn-orange:hover, .u-btn-orange.active { - border-color: #ea984e; - background-color: #ea984e; -} - -.u-btn-orange:hover, .u-btn-orange:focus, .u-btn-orange.active { - color: #fff; -} - -.u-btn-orange.g-btn-hover-reset:hover, .u-btn-orange.g-btn-hover-reset.active { - background-color: #e57d20; - border-color: #e57d20; -} - -.u-btn-orange.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-1::after, .u-btn-orange.u-btn-hover-v1-1:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v1-1:hover { - background-color: #e57d20; - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-2::after, .u-btn-orange.u-btn-hover-v1-2:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v1-2:hover { - background-color: #e57d20; - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-3::after, .u-btn-orange.u-btn-hover-v1-3:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v1-3:hover { - background-color: #e57d20; - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v1-4::after, .u-btn-orange.u-btn-hover-v1-4:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v1-4:hover { - background-color: #e57d20; - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v2-1::after, .u-btn-orange.u-btn-hover-v2-1:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v2-1:hover { - background-color: #e57d20; - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-orange.u-btn-hover-v2-2::after, .u-btn-orange.u-btn-hover-v2-2:hover::after { - background-color: #e88a37; -} - -.u-btn-orange.u-btn-hover-v2-2:hover { - background-color: #e57d20; - overflow: hidden; -} - -/* Button Deep Orange */ -.u-btn-deeporange { - color: #fff; - background-color: #fe541e; -} - -.u-btn-deeporange:hover, .u-btn-deeporange.active { - border-color: #fe7b51; - background-color: #fe7b51; -} - -.u-btn-deeporange:hover, .u-btn-deeporange:focus, .u-btn-deeporange.active { - color: #fff; -} - -.u-btn-deeporange.g-btn-hover-reset:hover, .u-btn-deeporange.g-btn-hover-reset.active { - background-color: #fe541e; - border-color: #fe541e; -} - -.u-btn-deeporange.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-1::after, .u-btn-deeporange.u-btn-hover-v1-1:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v1-1:hover { - background-color: #fe541e; - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-2::after, .u-btn-deeporange.u-btn-hover-v1-2:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v1-2:hover { - background-color: #fe541e; - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-3::after, .u-btn-deeporange.u-btn-hover-v1-3:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v1-3:hover { - background-color: #fe541e; - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v1-4::after, .u-btn-deeporange.u-btn-hover-v1-4:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v1-4:hover { - background-color: #fe541e; - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v2-1::after, .u-btn-deeporange.u-btn-hover-v2-1:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v2-1:hover { - background-color: #fe541e; - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-deeporange.u-btn-hover-v2-2::after, .u-btn-deeporange.u-btn-hover-v2-2:hover::after { - background-color: #fe6737; -} - -.u-btn-deeporange.u-btn-hover-v2-2:hover { - background-color: #fe541e; - overflow: hidden; -} - -/* Button Yellow */ -.u-btn-yellow { - color: #fff; - background-color: #ebc71d; -} - -.u-btn-yellow:hover, .u-btn-yellow.active { - border-color: #efd34c; - background-color: #efd34c; -} - -.u-btn-yellow:hover, .u-btn-yellow:focus, .u-btn-yellow.active { - color: #fff; -} - -.u-btn-yellow.g-btn-hover-reset:hover, .u-btn-yellow.g-btn-hover-reset.active { - background-color: #ebc71d; - border-color: #ebc71d; -} - -.u-btn-yellow.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-1::after, .u-btn-yellow.u-btn-hover-v1-1:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v1-1:hover { - background-color: #ebc71d; - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-2::after, .u-btn-yellow.u-btn-hover-v1-2:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v1-2:hover { - background-color: #ebc71d; - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-3::after, .u-btn-yellow.u-btn-hover-v1-3:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v1-3:hover { - background-color: #ebc71d; - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v1-4::after, .u-btn-yellow.u-btn-hover-v1-4:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v1-4:hover { - background-color: #ebc71d; - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v2-1::after, .u-btn-yellow.u-btn-hover-v2-1:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v2-1:hover { - background-color: #ebc71d; - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-yellow.u-btn-hover-v2-2::after, .u-btn-yellow.u-btn-hover-v2-2:hover::after { - background-color: #edcd34; -} - -.u-btn-yellow.u-btn-hover-v2-2:hover { - background-color: #ebc71d; - overflow: hidden; -} - -/* Button Aqua */ -.u-btn-aqua { - color: #fff; - background-color: #29d6e6; -} - -.u-btn-aqua:hover, .u-btn-aqua.active { - border-color: #57dfeb; - background-color: #57dfeb; -} - -.u-btn-aqua:hover, .u-btn-aqua:focus, .u-btn-aqua.active { - color: #fff; -} - -.u-btn-aqua.g-btn-hover-reset:hover, .u-btn-aqua.g-btn-hover-reset.active { - background-color: #29d6e6; - border-color: #29d6e6; -} - -.u-btn-aqua.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-1::after, .u-btn-aqua.u-btn-hover-v1-1:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v1-1:hover { - background-color: #29d6e6; - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-2::after, .u-btn-aqua.u-btn-hover-v1-2:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v1-2:hover { - background-color: #29d6e6; - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-3::after, .u-btn-aqua.u-btn-hover-v1-3:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v1-3:hover { - background-color: #29d6e6; - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v1-4::after, .u-btn-aqua.u-btn-hover-v1-4:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v1-4:hover { - background-color: #29d6e6; - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v2-1::after, .u-btn-aqua.u-btn-hover-v2-1:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v2-1:hover { - background-color: #29d6e6; - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-aqua.u-btn-hover-v2-2::after, .u-btn-aqua.u-btn-hover-v2-2:hover::after { - background-color: #40dae9; -} - -.u-btn-aqua.u-btn-hover-v2-2:hover { - background-color: #29d6e6; - overflow: hidden; -} - -/* Button Cyan */ -.u-btn-cyan { - color: #fff; - background-color: #00bed6; -} - -.u-btn-cyan:hover, .u-btn-cyan.active { - border-color: #0ae4ff; - background-color: #0ae4ff; -} - -.u-btn-cyan:hover, .u-btn-cyan:focus, .u-btn-cyan.active { - color: #fff; -} - -.u-btn-cyan.g-btn-hover-reset:hover, .u-btn-cyan.g-btn-hover-reset.active { - background-color: #00bed6; - border-color: #00bed6; -} - -.u-btn-cyan.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-1::after, .u-btn-cyan.u-btn-hover-v1-1:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v1-1:hover { - background-color: #00bed6; - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-2::after, .u-btn-cyan.u-btn-hover-v1-2:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v1-2:hover { - background-color: #00bed6; - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-3::after, .u-btn-cyan.u-btn-hover-v1-3:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v1-3:hover { - background-color: #00bed6; - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v1-4::after, .u-btn-cyan.u-btn-hover-v1-4:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v1-4:hover { - background-color: #00bed6; - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v2-1::after, .u-btn-cyan.u-btn-hover-v2-1:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v2-1:hover { - background-color: #00bed6; - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-cyan.u-btn-hover-v2-2::after, .u-btn-cyan.u-btn-hover-v2-2:hover::after { - background-color: #00d5f0; -} - -.u-btn-cyan.u-btn-hover-v2-2:hover { - background-color: #00bed6; - overflow: hidden; -} - -/* Button Teal */ -.u-btn-teal { - color: #fff; - background-color: #18ba9b; -} - -.u-btn-teal:hover, .u-btn-teal.active { - border-color: #22e3be; - background-color: #22e3be; -} - -.u-btn-teal:hover, .u-btn-teal:focus, .u-btn-teal.active { - color: #fff; -} - -.u-btn-teal.g-btn-hover-reset:hover, .u-btn-teal.g-btn-hover-reset.active { - background-color: #18ba9b; - border-color: #18ba9b; -} - -.u-btn-teal.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-1::after, .u-btn-teal.u-btn-hover-v1-1:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v1-1:hover { - background-color: #18ba9b; - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-2::after, .u-btn-teal.u-btn-hover-v1-2:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v1-2:hover { - background-color: #18ba9b; - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-3::after, .u-btn-teal.u-btn-hover-v1-3:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v1-3:hover { - background-color: #18ba9b; - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v1-4::after, .u-btn-teal.u-btn-hover-v1-4:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v1-4:hover { - background-color: #18ba9b; - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v2-1::after, .u-btn-teal.u-btn-hover-v2-1:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v2-1:hover { - background-color: #18ba9b; - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-teal.u-btn-hover-v2-2::after, .u-btn-teal.u-btn-hover-v2-2:hover::after { - background-color: #1bd1ae; -} - -.u-btn-teal.u-btn-hover-v2-2:hover { - background-color: #18ba9b; - overflow: hidden; -} - -/* Button Brown */ -.u-btn-brown { - color: #fff; - background-color: #9c8061; -} - -.u-btn-brown:hover, .u-btn-brown.active { - border-color: #b09980; - background-color: #b09980; -} - -.u-btn-brown:hover, .u-btn-brown:focus, .u-btn-brown.active { - color: #fff; -} - -.u-btn-brown.g-btn-hover-reset:hover, .u-btn-brown.g-btn-hover-reset.active { - background-color: #9c8061; - border-color: #9c8061; -} - -.u-btn-brown.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-1::after, .u-btn-brown.u-btn-hover-v1-1:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v1-1:hover { - background-color: #9c8061; - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-2::after, .u-btn-brown.u-btn-hover-v1-2:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v1-2:hover { - background-color: #9c8061; - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-3::after, .u-btn-brown.u-btn-hover-v1-3:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v1-3:hover { - background-color: #9c8061; - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v1-4::after, .u-btn-brown.u-btn-hover-v1-4:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v1-4:hover { - background-color: #9c8061; - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v2-1::after, .u-btn-brown.u-btn-hover-v2-1:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v2-1:hover { - background-color: #9c8061; - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-brown.u-btn-hover-v2-2::after, .u-btn-brown.u-btn-hover-v2-2:hover::after { - background-color: #a68d70; -} - -.u-btn-brown.u-btn-hover-v2-2:hover { - background-color: #9c8061; - overflow: hidden; -} - -/* Button Bluegrey */ -.u-btn-bluegray { - color: #fff; - background-color: #585f69; -} - -.u-btn-bluegray:hover, .u-btn-bluegray.active { - border-color: #6f7885; - background-color: #6f7885; -} - -.u-btn-bluegray:hover, .u-btn-bluegray:focus, .u-btn-bluegray.active { - color: #fff; -} - -.u-btn-bluegray.g-btn-hover-reset:hover, .u-btn-bluegray.g-btn-hover-reset.active { - background-color: #585f69; - border-color: #585f69; -} - -.u-btn-bluegray.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-1::after, .u-btn-bluegray.u-btn-hover-v1-1:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v1-1:hover { - background-color: #585f69; - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-2::after, .u-btn-bluegray.u-btn-hover-v1-2:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v1-2:hover { - background-color: #585f69; - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-3::after, .u-btn-bluegray.u-btn-hover-v1-3:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v1-3:hover { - background-color: #585f69; - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v1-4::after, .u-btn-bluegray.u-btn-hover-v1-4:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v1-4:hover { - background-color: #585f69; - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v2-1::after, .u-btn-bluegray.u-btn-hover-v2-1:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v2-1:hover { - background-color: #585f69; - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-bluegray.u-btn-hover-v2-2::after, .u-btn-bluegray.u-btn-hover-v2-2:hover::after { - background-color: #646c77; -} - -.u-btn-bluegray.u-btn-hover-v2-2:hover { - background-color: #585f69; - overflow: hidden; -} - -/* Button Facebook */ -.u-btn-facebook { - color: #fff; - background-color: #3b5998; -} - -.u-btn-facebook:hover, .u-btn-facebook.active { - border-color: #4c70ba; - background-color: #4c70ba; -} - -.u-btn-facebook:hover, .u-btn-facebook:focus, .u-btn-facebook.active { - color: #fff; -} - -.u-btn-facebook.g-btn-hover-reset:hover, .u-btn-facebook.g-btn-hover-reset.active { - background-color: #3b5998; - border-color: #3b5998; -} - -/* Button Twitter */ -.u-btn-twitter { - color: #fff; - background-color: #00acee; -} - -.u-btn-twitter:hover, .u-btn-twitter.active { - border-color: #22c2ff; - background-color: #22c2ff; -} - -.u-btn-twitter:hover, .u-btn-twitter:focus, .u-btn-twitter.active { - color: #fff; -} - -.u-btn-twitter.g-btn-hover-reset:hover, .u-btn-twitter.g-btn-hover-reset.active { - background-color: #00acee; - border-color: #00acee; -} - -/* Button Instagram */ -.u-btn-instagram { - color: #fff; - background-color: #3f729b; -} - -.u-btn-instagram:hover, .u-btn-instagram.active { - border-color: #548cb9; - background-color: #548cb9; -} - -.u-btn-instagram:hover, .u-btn-instagram:focus, .u-btn-instagram.active { - color: #fff; -} - -.u-btn-instagram.g-btn-hover-reset:hover, .u-btn-instagram.g-btn-hover-reset.active { - background-color: #3f729b; - border-color: #3f729b; -} - -/* Button VK */ -.u-btn-vk { - color: #fff; - background-color: #2b587a; -} - -.u-btn-vk:hover, .u-btn-vk.active { - border-color: #3873a0; - background-color: #3873a0; -} - -.u-btn-vk:hover, .u-btn-vk:focus, .u-btn-vk.active { - color: #fff; -} - -.u-btn-vk.g-btn-hover-reset:hover, .u-btn-vk.g-btn-hover-reset.active { - background-color: #2b587a; - border-color: #2b587a; -} - -/* Button Google Plus */ -.u-btn-google-plus { - color: #fff; - background-color: #dd4b39; -} - -.u-btn-google-plus:hover, .u-btn-google-plus.active { - border-color: #e47365; - background-color: #e47365; -} - -.u-btn-google-plus:hover, .u-btn-google-plus:focus, .u-btn-google-plus.active { - color: #fff; -} - -.u-btn-google-plus.g-btn-hover-reset:hover, .u-btn-google-plus.g-btn-hover-reset.active { - background-color: #dd4b39; - border-color: #dd4b39; -} - -/* Outline Button Primary */ -.u-btn-outline-primary { - color: #e74c3c; - border-color: #e74c3c; - background-color: transparent; -} - -.u-btn-outline-primary:focus, .u-btn-outline-primary.active { - color: #fff; - background-color: #e74c3c; -} - -.u-btn-outline-primary:hover { - color: #fff; - background-color: #e74c3c; -} - -.u-btn-outline-primary.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v1-1::after, .u-btn-outline-primary.u-btn-hover-v1-1:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v1-2::after, .u-btn-outline-primary.u-btn-hover-v1-2:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v1-3::after, .u-btn-outline-primary.u-btn-hover-v1-3:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v1-4::after, .u-btn-outline-primary.u-btn-hover-v1-4:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v2-1::after, .u-btn-outline-primary.u-btn-hover-v2-1:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v2-2::after, .u-btn-outline-primary.u-btn-hover-v2-2:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-primary.u-btn-hover-v3-1 { - overflow: hidden; -} - -.u-btn-outline-primary.u-btn-hover-v3-1::after, .u-btn-outline-primary.u-btn-hover-v3-1:hover::after { - background-color: #ea6153; -} - -.u-btn-outline-primary.u-btn-hover-v3-1:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button White */ -.u-btn-outline-white { - color: #fff; - border-color: #fff; - background-color: transparent; -} - -.u-btn-outline-white:focus, .u-btn-outline-white.active { - color: #555; - background-color: #fff; -} - -.u-btn-outline-white:hover { - color: #555; - background-color: #fff; -} - -.u-btn-outline-white.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v1-1::after, .u-btn-outline-white.u-btn-hover-v1-1:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-white.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v1-2::after, .u-btn-outline-white.u-btn-hover-v1-2:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-white.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v1-3::after, .u-btn-outline-white.u-btn-hover-v1-3:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-white.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v1-4::after, .u-btn-outline-white.u-btn-hover-v1-4:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-white.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v2-1::after, .u-btn-outline-white.u-btn-hover-v2-1:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-white.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-white.u-btn-hover-v2-2::after, .u-btn-outline-white.u-btn-hover-v2-2:hover::after { - background-color: white; -} - -.u-btn-outline-white.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Black */ -.u-btn-outline-black { - color: #000; - border-color: #000; - background-color: transparent; -} - -.u-btn-outline-black:focus, .u-btn-outline-black.active { - color: #fff; - background-color: #000; -} - -.u-btn-outline-black:hover { - color: #fff; - background-color: #000; -} - -.u-btn-outline-black.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v1-1::after, .u-btn-outline-black.u-btn-hover-v1-1:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-black.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v1-2::after, .u-btn-outline-black.u-btn-hover-v1-2:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-black.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v1-3::after, .u-btn-outline-black.u-btn-hover-v1-3:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-black.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v1-4::after, .u-btn-outline-black.u-btn-hover-v1-4:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-black.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v2-1::after, .u-btn-outline-black.u-btn-hover-v2-1:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-black.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-black.u-btn-hover-v2-2::after, .u-btn-outline-black.u-btn-hover-v2-2:hover::after { - background-color: #0d0d0d; -} - -.u-btn-outline-black.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Dark Gray */ -.u-btn-outline-darkgray { - color: #ff4159; - border-color: #333; - background-color: transparent; -} - -.u-btn-outline-darkgray:focus, .u-btn-outline-darkgray.active { - color: #fff; - background-color: #333; -} - -.u-btn-outline-darkgray:hover { - color: #fff; - background-color: #ff4159; - border-color: #ff4159; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-1::after, .u-btn-outline-darkgray.u-btn-hover-v1-1:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-2::after, .u-btn-outline-darkgray.u-btn-hover-v1-2:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-3::after, .u-btn-outline-darkgray.u-btn-hover-v1-3:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-4::after, .u-btn-outline-darkgray.u-btn-hover-v1-4:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-1::after, .u-btn-outline-darkgray.u-btn-hover-v2-1:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-2::after, .u-btn-outline-darkgray.u-btn-hover-v2-2:hover::after { - background-color: #404040; -} - -.u-btn-outline-darkgray.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Light Gray */ -.u-btn-outline-lightgray { - color: #a49da6; - border-color: #eee; - background-color: transparent; -} - -.u-btn-outline-lightgray:focus, .u-btn-outline-lightgray.active { - color: #a49da6; - background-color: #eee; -} - -.u-btn-outline-lightgray:hover { - color: #a49da6; - background-color: #eee; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-1::after, .u-btn-outline-lightgray.u-btn-hover-v1-1:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-2::after, .u-btn-outline-lightgray.u-btn-hover-v1-2:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-3::after, .u-btn-outline-lightgray.u-btn-hover-v1-3:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-4::after, .u-btn-outline-lightgray.u-btn-hover-v1-4:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-1::after, .u-btn-outline-lightgray.u-btn-hover-v2-1:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-2::after, .u-btn-outline-lightgray.u-btn-hover-v2-2:hover::after { - background-color: #fbfbfb; -} - -.u-btn-outline-lightgray.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Button Outline Red */ -.u-btn-outline-red { - color: #f00; - border-color: #f00; - background-color: transparent; -} - -.u-btn-outline-red:focus, .u-btn-outline-red.active { - color: #fff; - background-color: #f00; -} - -.u-btn-outline-red:hover { - color: #fff; - background-color: #f00; -} - -.u-btn-outline-red.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v1-1::after, .u-btn-outline-red.u-btn-hover-v1-1:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-red.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v1-2::after, .u-btn-outline-red.u-btn-hover-v1-2:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-red.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v1-3::after, .u-btn-outline-red.u-btn-hover-v1-3:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-red.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v1-4::after, .u-btn-outline-red.u-btn-hover-v1-4:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-red.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v2-1::after, .u-btn-outline-red.u-btn-hover-v2-1:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-red.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-red.u-btn-hover-v2-2::after, .u-btn-outline-red.u-btn-hover-v2-2:hover::after { - background-color: #ff1a1a; -} - -.u-btn-outline-red.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Button Outline Red Tomato */ -.u-btn-outline-lightred { - color: #e64b3b; - border-color: #e64b3b; - background-color: transparent; -} - -.u-btn-outline-lightred:focus, .u-btn-outline-lightred.active { - color: #fff; - background-color: #e64b3b; -} - -.u-btn-outline-lightred:hover { - color: #fff; - background-color: #e64b3b; -} - -.u-btn-outline-lightred.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v1-1::after, .u-btn-outline-lightred.u-btn-hover-v1-1:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightred.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v1-2::after, .u-btn-outline-lightred.u-btn-hover-v1-2:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightred.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v1-3::after, .u-btn-outline-lightred.u-btn-hover-v1-3:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightred.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v1-4::after, .u-btn-outline-lightred.u-btn-hover-v1-4:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightred.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v2-1::after, .u-btn-outline-lightred.u-btn-hover-v2-1:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-lightred.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-lightred.u-btn-hover-v2-2::after, .u-btn-outline-lightred.u-btn-hover-v2-2:hover::after { - background-color: #e96052; -} - -.u-btn-outline-lightred.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Dark Red */ -.u-btn-outline-darkred { - color: #a10f2b; - border-color: #a10f2b; - background-color: transparent; -} - -.u-btn-outline-darkred:focus, .u-btn-outline-darkred.active { - color: #fff; - background-color: #a10f2b; -} - -.u-btn-outline-darkred:hover { - color: #fff; - background-color: #a10f2b; -} - -.u-btn-outline-darkred.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v1-1::after, .u-btn-outline-darkred.u-btn-hover-v1-1:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkred.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v1-2::after, .u-btn-outline-darkred.u-btn-hover-v1-2:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkred.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v1-3::after, .u-btn-outline-darkred.u-btn-hover-v1-3:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkred.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v1-4::after, .u-btn-outline-darkred.u-btn-hover-v1-4:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkred.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v2-1::after, .u-btn-outline-darkred.u-btn-hover-v2-1:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkred.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-darkred.u-btn-hover-v2-2::after, .u-btn-outline-darkred.u-btn-hover-v2-2:hover::after { - background-color: #b81131; -} - -.u-btn-outline-darkred.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Blue */ -.u-btn-outline-blue { - color: #3398dc; - border-color: #3398dc; - background-color: transparent; -} - -.u-btn-outline-blue:focus, .u-btn-outline-blue.active { - color: #fff; - background-color: #3398dc; -} - -.u-btn-outline-blue:hover { - color: #fff; - background-color: #3398dc; -} - -.u-btn-outline-blue.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v1-1::after, .u-btn-outline-blue.u-btn-hover-v1-1:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-blue.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v1-2::after, .u-btn-outline-blue.u-btn-hover-v1-2:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-blue.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v1-3::after, .u-btn-outline-blue.u-btn-hover-v1-3:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-blue.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v1-4::after, .u-btn-outline-blue.u-btn-hover-v1-4:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-blue.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v2-1::after, .u-btn-outline-blue.u-btn-hover-v2-1:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-blue.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-blue.u-btn-hover-v2-2::after, .u-btn-outline-blue.u-btn-hover-v2-2:hover::after { - background-color: #49a3e0; -} - -.u-btn-outline-blue.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Indigo */ -.u-btn-outline-indigo { - color: #4263a3; - border-color: #4263a3; - background-color: transparent; -} - -.u-btn-outline-indigo:focus, .u-btn-outline-indigo.active { - color: #fff; - background-color: #4263a3; -} - -.u-btn-outline-indigo:hover { - color: #fff; - background-color: #4263a3; -} - -.u-btn-outline-indigo.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v1-1::after, .u-btn-outline-indigo.u-btn-hover-v1-1:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-indigo.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v1-2::after, .u-btn-outline-indigo.u-btn-hover-v1-2:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-indigo.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v1-3::after, .u-btn-outline-indigo.u-btn-hover-v1-3:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-indigo.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v1-4::after, .u-btn-outline-indigo.u-btn-hover-v1-4:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-indigo.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v2-1::after, .u-btn-outline-indigo.u-btn-hover-v2-1:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-indigo.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-indigo.u-btn-hover-v2-2::after, .u-btn-outline-indigo.u-btn-hover-v2-2:hover::after { - background-color: #496eb5; -} - -.u-btn-outline-indigo.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Purple */ -.u-btn-outline-purple { - color: #9a69cb; - border-color: #9a69cb; - background-color: transparent; -} - -.u-btn-outline-purple:focus, .u-btn-outline-purple.active { - color: #fff; - background-color: #9a69cb; -} - -.u-btn-outline-purple:hover { - color: #fff; - background-color: #9a69cb; -} - -.u-btn-outline-purple.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v1-1::after, .u-btn-outline-purple.u-btn-hover-v1-1:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-purple.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v1-2::after, .u-btn-outline-purple.u-btn-hover-v1-2:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-purple.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v1-3::after, .u-btn-outline-purple.u-btn-hover-v1-3:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-purple.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v1-4::after, .u-btn-outline-purple.u-btn-hover-v1-4:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-purple.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v2-1::after, .u-btn-outline-purple.u-btn-hover-v2-1:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-purple.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-purple.u-btn-hover-v2-2::after, .u-btn-outline-purple.u-btn-hover-v2-2:hover::after { - background-color: #a77cd2; -} - -.u-btn-outline-purple.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Dark Purple */ -.u-btn-outline-darkpurple { - color: #6639b6; - border-color: #6639b6; - background-color: transparent; -} - -.u-btn-outline-darkpurple:focus, .u-btn-outline-darkpurple.active { - color: #fff; - background-color: #6639b6; -} - -.u-btn-outline-darkpurple:hover { - color: #fff; - background-color: #6639b6; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-1::after, .u-btn-outline-darkpurple.u-btn-hover-v1-1:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-2::after, .u-btn-outline-darkpurple.u-btn-hover-v1-2:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-3::after, .u-btn-outline-darkpurple.u-btn-hover-v1-3:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-4::after, .u-btn-outline-darkpurple.u-btn-hover-v1-4:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-1::after, .u-btn-outline-darkpurple.u-btn-hover-v2-1:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-2::after, .u-btn-outline-darkpurple.u-btn-hover-v2-2:hover::after { - background-color: #7244c4; -} - -.u-btn-outline-darkpurple.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Pink */ -.u-btn-outline-pink { - color: #e81c62; - border-color: #e81c62; - background-color: transparent; -} - -.u-btn-outline-pink:focus, .u-btn-outline-pink.active { - color: #fff; - background-color: #e81c62; -} - -.u-btn-outline-pink:hover { - color: #fff; - background-color: #e81c62; -} - -.u-btn-outline-pink.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v1-1::after, .u-btn-outline-pink.u-btn-hover-v1-1:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-pink.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v1-2::after, .u-btn-outline-pink.u-btn-hover-v1-2:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-pink.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v1-3::after, .u-btn-outline-pink.u-btn-hover-v1-3:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-pink.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v1-4::after, .u-btn-outline-pink.u-btn-hover-v1-4:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-pink.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v2-1::after, .u-btn-outline-pink.u-btn-hover-v2-1:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-pink.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-pink.u-btn-hover-v2-2::after, .u-btn-outline-pink.u-btn-hover-v2-2:hover::after { - background-color: #ea3372; -} - -.u-btn-outline-pink.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Orange */ -.u-btn-outline-orange { - color: #e57d20; - border-color: #e57d20; - background-color: transparent; -} - -.u-btn-outline-orange:focus, .u-btn-outline-orange.active { - color: #fff; - background-color: #e57d20; -} - -.u-btn-outline-orange:hover { - color: #fff; - background-color: #e57d20; -} - -.u-btn-outline-orange.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v1-1::after, .u-btn-outline-orange.u-btn-hover-v1-1:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-orange.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v1-2::after, .u-btn-outline-orange.u-btn-hover-v1-2:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-orange.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v1-3::after, .u-btn-outline-orange.u-btn-hover-v1-3:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-orange.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v1-4::after, .u-btn-outline-orange.u-btn-hover-v1-4:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-orange.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v2-1::after, .u-btn-outline-orange.u-btn-hover-v2-1:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-orange.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-orange.u-btn-hover-v2-2::after, .u-btn-outline-orange.u-btn-hover-v2-2:hover::after { - background-color: #e88a37; -} - -.u-btn-outline-orange.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Deep Orange */ -.u-btn-outline-deeporange { - color: #fe541e; - border-color: #fe541e; - background-color: transparent; -} - -.u-btn-outline-deeporange:focus, .u-btn-outline-deeporange.active { - color: #fff; - background-color: #fe541e; -} - -.u-btn-outline-deeporange:hover { - color: #fff; - background-color: #fe541e; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-1::after, .u-btn-outline-deeporange.u-btn-hover-v1-1:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-2::after, .u-btn-outline-deeporange.u-btn-hover-v1-2:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-3::after, .u-btn-outline-deeporange.u-btn-hover-v1-3:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-4::after, .u-btn-outline-deeporange.u-btn-hover-v1-4:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-1::after, .u-btn-outline-deeporange.u-btn-hover-v2-1:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-2::after, .u-btn-outline-deeporange.u-btn-hover-v2-2:hover::after { - background-color: #fe6737; -} - -.u-btn-outline-deeporange.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Yellow */ -.u-btn-outline-yellow { - color: #555; - border-color: #ebc71d; - background-color: transparent; -} - -.u-btn-outline-yellow:focus, .u-btn-outline-yellow.active { - color: #555; - background-color: #ebc71d; -} - -.u-btn-outline-yellow:hover { - color: #555; - background-color: #ebc71d; -} - -.u-btn-outline-yellow.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v1-1::after, .u-btn-outline-yellow.u-btn-hover-v1-1:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-yellow.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v1-2::after, .u-btn-outline-yellow.u-btn-hover-v1-2:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-yellow.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v1-3::after, .u-btn-outline-yellow.u-btn-hover-v1-3:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-yellow.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v1-4::after, .u-btn-outline-yellow.u-btn-hover-v1-4:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-yellow.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v2-1::after, .u-btn-outline-yellow.u-btn-hover-v2-1:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-yellow.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-yellow.u-btn-hover-v2-2::after, .u-btn-outline-yellow.u-btn-hover-v2-2:hover::after { - background-color: #edcd34; -} - -.u-btn-outline-yellow.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Aqua */ -.u-btn-outline-aqua { - color: #29d6e6; - border-color: #29d6e6; - background-color: transparent; -} - -.u-btn-outline-aqua:focus, .u-btn-outline-aqua.active { - color: #fff; - background-color: #29d6e6; -} - -.u-btn-outline-aqua:hover { - color: #fff; - background-color: #29d6e6; -} - -.u-btn-outline-aqua.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v1-1::after, .u-btn-outline-aqua.u-btn-hover-v1-1:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-aqua.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v1-2::after, .u-btn-outline-aqua.u-btn-hover-v1-2:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-aqua.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v1-3::after, .u-btn-outline-aqua.u-btn-hover-v1-3:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-aqua.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v1-4::after, .u-btn-outline-aqua.u-btn-hover-v1-4:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-aqua.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v2-1::after, .u-btn-outline-aqua.u-btn-hover-v2-1:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-aqua.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-aqua.u-btn-hover-v2-2::after, .u-btn-outline-aqua.u-btn-hover-v2-2:hover::after { - background-color: #40dae9; -} - -.u-btn-outline-aqua.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Cyan */ -.u-btn-outline-cyan { - color: #00bed6; - border-color: #00bed6; - background-color: transparent; -} - -.u-btn-outline-cyan:focus, .u-btn-outline-cyan.active { - color: #fff; - background-color: #00bed6; -} - -.u-btn-outline-cyan:hover { - color: #fff; - background-color: #00bed6; -} - -.u-btn-outline-cyan.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v1-1::after, .u-btn-outline-cyan.u-btn-hover-v1-1:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-cyan.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v1-2::after, .u-btn-outline-cyan.u-btn-hover-v1-2:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-cyan.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v1-3::after, .u-btn-outline-cyan.u-btn-hover-v1-3:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-cyan.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v1-4::after, .u-btn-outline-cyan.u-btn-hover-v1-4:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-cyan.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v2-1::after, .u-btn-outline-cyan.u-btn-hover-v2-1:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-cyan.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-cyan.u-btn-hover-v2-2::after, .u-btn-outline-cyan.u-btn-hover-v2-2:hover::after { - background-color: #00d5f0; -} - -.u-btn-outline-cyan.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Teal */ -.u-btn-outline-teal { - color: #18ba9b; - border-color: #18ba9b; - background-color: transparent; -} - -.u-btn-outline-teal:focus, .u-btn-outline-teal.active { - color: #fff; - background-color: #18ba9b; -} - -.u-btn-outline-teal:hover { - color: #fff; - background-color: #18ba9b; -} - -.u-btn-outline-teal.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v1-1::after, .u-btn-outline-teal.u-btn-hover-v1-1:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-teal.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v1-2::after, .u-btn-outline-teal.u-btn-hover-v1-2:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-teal.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v1-3::after, .u-btn-outline-teal.u-btn-hover-v1-3:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-teal.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v1-4::after, .u-btn-outline-teal.u-btn-hover-v1-4:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-teal.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v2-1::after, .u-btn-outline-teal.u-btn-hover-v2-1:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-teal.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-teal.u-btn-hover-v2-2::after, .u-btn-outline-teal.u-btn-hover-v2-2:hover::after { - background-color: #1bd1ae; -} - -.u-btn-outline-teal.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Brown */ -.u-btn-outline-brown { - color: #9c8061; - border-color: #9c8061; - background-color: transparent; -} - -.u-btn-outline-brown:focus, .u-btn-outline-brown.active { - color: #fff; - background-color: #9c8061; -} - -.u-btn-outline-brown:hover { - color: #fff; - background-color: #9c8061; -} - -.u-btn-outline-brown.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v1-1::after, .u-btn-outline-brown.u-btn-hover-v1-1:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-brown.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v1-2::after, .u-btn-outline-brown.u-btn-hover-v1-2:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-brown.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v1-3::after, .u-btn-outline-brown.u-btn-hover-v1-3:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-brown.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v1-4::after, .u-btn-outline-brown.u-btn-hover-v1-4:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-brown.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v2-1::after, .u-btn-outline-brown.u-btn-hover-v2-1:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-brown.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-brown.u-btn-hover-v2-2::after, .u-btn-outline-brown.u-btn-hover-v2-2:hover::after { - background-color: #a68d70; -} - -.u-btn-outline-brown.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Outline Button Bluegrey */ -.u-btn-outline-bluegray { - color: #585f69; - border-color: #585f69; - background-color: transparent; -} - -.u-btn-outline-bluegray:focus, .u-btn-outline-bluegray.active { - color: #fff; - background-color: #585f69; -} - -.u-btn-outline-bluegray:hover { - color: #fff; - background-color: #585f69; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-1 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-1::after, .u-btn-outline-bluegray.u-btn-hover-v1-1:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-2 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-2::after, .u-btn-outline-bluegray.u-btn-hover-v1-2:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-2:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-3 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-3::after, .u-btn-outline-bluegray.u-btn-hover-v1-3:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-3:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-4 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-4::after, .u-btn-outline-bluegray.u-btn-hover-v1-4:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v1-4:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-1 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-1::after, .u-btn-outline-bluegray.u-btn-hover-v2-1:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-1:hover { - overflow: hidden; - background-color: transparent; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-2 { - overflow: hidden; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-2::after, .u-btn-outline-bluegray.u-btn-hover-v2-2:hover::after { - background-color: #646c77; -} - -.u-btn-outline-bluegray.u-btn-hover-v2-2:hover { - overflow: hidden; - background-color: transparent; -} - -/* Button Facebook */ -.u-btn-outline-facebook { - color: #3b5998; - border-color: #3b5998; - background-color: transparent; -} - -.u-btn-outline-facebook:focus, .u-btn-outline-facebook.active { - color: #fff; - background-color: #3b5998; -} - -.u-btn-outline-facebook:hover { - color: #fff; - background-color: #3b5998; -} - -/* Button Twitter */ -.u-btn-outline-twitter { - color: #00acee; - border-color: #00acee; - background-color: transparent; -} - -.u-btn-outline-twitter:focus, .u-btn-outline-twitter.active { - color: #fff; - background-color: #00acee; -} - -.u-btn-outline-twitter:hover { - color: #fff; - background-color: #00acee; -} - -/* Button Dribbble */ -.u-btn-outline-dribbble { - color: #ea4c89; - border-color: #ea4c89; - background-color: transparent; -} - -.u-btn-outline-dribbble:focus, .u-btn-outline-dribbble.active { - color: #fff; - background-color: #ea4c89; -} - -.u-btn-outline-dribbble:hover { - color: #fff; - background-color: #ea4c89; -} - -/* Gradient Style v1 */ -.u-btn-gradient-v1 { - color: #fff; - background: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)) !important; - background: -webkit-linear-gradient(left, #4776E6 0%, #8E54E9 100%) !important; - background: -o-linear-gradient(left, #4776E6 0%, #8E54E9 100%) !important; - background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%) !important; - -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)); - -webkit-border-image: -webkit-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - -o-border-image: -o-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - border-image: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)); - border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%); - border-image-slice: 1; -} - -.u-btn-gradient-v1:hover, .u-btn-gradient-v1:focus, .u-btn-gradient-v1.active { - opacity: .9; - color: #fff; -} - -/* Gradient Style v2 */ -.u-btn-gradient-v2 { - color: #fff; - background: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)) !important; - background: -webkit-linear-gradient(left, #E040FB 0%, #00BCD4 100%) !important; - background: -o-linear-gradient(left, #E040FB 0%, #00BCD4 100%) !important; - background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%) !important; - -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)); - -webkit-border-image: -webkit-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - -o-border-image: -o-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - border-image: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)); - border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%); - border-image-slice: 1; -} - -.u-btn-gradient-v2:hover, .u-btn-gradient-v2:focus, .u-btn-gradient-v2.active { - opacity: .9; - color: #fff; -} - -/* Gradient Style v1 */ -.u-btn-outline-gradient-v1 { - color: #555; - background: transparent; - -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)); - -webkit-border-image: -webkit-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - -o-border-image: -o-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - border-image: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)); - border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%); - border-image-slice: 1; -} - -.u-btn-outline-gradient-v1:hover, .u-btn-outline-gradient-v1:focus, .u-btn-outline-gradient-v1.active { - background: -webkit-gradient(linear, left top, right top, from(#4776E6), to(#8E54E9)); - background: -webkit-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - background: -o-linear-gradient(left, #4776E6 0%, #8E54E9 100%); - background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%); - color: #fff; -} - -/* Gradient Style v2 */ -.u-btn-outline-gradient-v2 { - color: #555; - background: transparent; - -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)); - -webkit-border-image: -webkit-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - -o-border-image: -o-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - border-image: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)); - border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%); - border-image-slice: 1; -} - -.u-btn-outline-gradient-v2:hover, .u-btn-outline-gradient-v2:focus, .u-btn-outline-gradient-v2.active { - background: -webkit-gradient(linear, left top, right top, from(#E040FB), to(#00BCD4)); - background: -webkit-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - background: -o-linear-gradient(left, #E040FB 0%, #00BCD4 100%); - background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%); - color: #fff; -} - -/* Material Styles -------------------------------------*/ -.u-btn-raised, -.u-btn-raised:active:focus, -.u-btn-raised:focus { - -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} - -/*------------------------------------ - Material: Floating -------------------------------------*/ -.u-btn-floating { - width: 2.85714rem; - height: 2.85714rem; - padding: 0; - border-radius: 50%; - vertical-align: middle; - overflow: hidden; - line-height: 2.85714rem; -} - -.u-btn-floating i { - font-size: 1.6rem; - line-height: 2.71429rem; -} - -.u-btn-floating.u-halfway-fab { - position: absolute; - right: 1.71429rem; - bottom: -1.42857rem; -} - -.u-btn-floating.u-halfway-fab--left { - right: auto; - left: 1.71429rem; -} - -.u-btn-floating--large { - width: 4rem; - height: 4rem; - line-height: 4rem; -} - -.u-btn-floating--large i { - font-size: 1.6rem; - line-height: 3.85714rem; -} - -.u-btn-floating--large.u-halfway-fab { - bottom: -2rem; -} - -button.u-btn-floating { - border: none; -} - -/*------------------------------------ - Material: Flat -------------------------------------*/ -.u-btn-flat { - color: #555; - background-color: transparent; -} - -.u-btn-flat:hover { - background-color: rgba(221, 221, 221, 0.4); -} - -.u-btn-flat:hover, .u-btn-flat:focus { - color: #555; -} - -/*------------------------------------ - Icons Styles -------------------------------------*/ -.u-icon-v1, -.u-icon-v2, -.u-icon-v3, -.u-icon-v4 { - position: relative; - display: inline-block; - text-align: center; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.u-icon-v1:hover, -.u-icon-v2:hover, -.u-icon-v3:hover, -.u-icon-v4:hover { - text-decoration: none; -} - -.u-icon-v1::before, -.u-icon-v2::before, -.u-icon-v3::before { - display: block; -} - -.u-icon-v1 > i, -.u-icon-v2 > i, -.u-icon-v3 > i, -.u-icon-v4 > span > i { - position: relative; - top: 50%; - display: block; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - z-index: 2; -} - -[class*="u-icon-v"] .u-line-icon-pro { - -webkit-transform: translateY(-45%); - -ms-transform: translateY(-45%); - transform: translateY(-45%); -} - -.u-icon-rotation { - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); -} - -.u-icon-rotation .u-icon__elem { - -webkit-transform: rotate(-45deg) translate(15%, -30%); - -ms-transform: rotate(-45deg) translate(15%, -30%); - transform: rotate(-45deg) translate(15%, -30%); -} - -.u-icon-rotation .u-line-icon-pro { - -webkit-transform: rotate(-45deg) translate(25%, -30%); - -ms-transform: rotate(-45deg) translate(25%, -30%); - transform: rotate(-45deg) translate(25%, -30%); -} - -/*------------------------------------ - Icon-v1 -------------------------------------*/ -.u-icon-v1, -.u-icon-v1 .u-icon__elem-regular, -.u-icon-v1 .u-icon__elem-hover { - width: 2.57143rem; - height: 2.57143rem; - font-size: 1.42857rem; -} - -.u-icon-v1.u-icon-size--xs, -.u-icon-v1.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v1.u-icon-size--xs .u-icon__elem-hover { - width: 1.64286rem; - height: 1.64286rem; - font-size: 0.92857rem; -} - -.u-icon-v1.u-icon-size--sm, -.u-icon-v1.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v1.u-icon-size--sm .u-icon__elem-hover { - width: 2.28571rem; - height: 2.28571rem; - font-size: 1.28571rem; -} - -.u-icon-v1.u-icon-size--lg, -.u-icon-v1.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v1.u-icon-size--lg .u-icon__elem-hover { - width: 4.5rem; - height: 4.5rem; - font-size: 2.5rem; -} - -.u-icon-v1.u-icon-size--xl, -.u-icon-v1.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v1.u-icon-size--xl .u-icon__elem-hover { - width: 5.14286rem; - height: 5.14286rem; - font-size: 2.85714rem; -} - -.u-icon-v1.u-icon-size--2xl, -.u-icon-v1.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v1.u-icon-size--2xl .u-icon__elem-hover { - width: 5.85714rem; - height: 5.85714rem; - font-size: 3.57143rem; -} - -.u-icon-v1.u-icon-size--3xl, -.u-icon-v1.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v1.u-icon-size--3xl .u-icon__elem-hover { - width: 8rem; - height: 8rem; - font-size: 5.71429rem; -} - -/*------------------------------------ - Icon-v2 -------------------------------------*/ -.u-icon-v2, .u-icon-v2 .u-icon__elem-regular, -.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular, -.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular, -.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 { - width: 3.92857rem; - height: 3.92857rem; - font-size: 1.57143rem; -} - -.u-icon-v2.u-icon-size--xs, -.u-icon-v2.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs, -.u-icon-v3.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs { - width: 2.14286rem; - height: 2.14286rem; - font-size: 0.92857rem; -} - -.u-icon-v2.u-icon-size--sm, -.u-icon-v2.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm, -.u-icon-v3.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner, -.u-icon-v4.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm { - width: 2.85714rem; - height: 2.85714rem; - font-size: 1.28571rem; -} - -.u-icon-v2.u-icon-size--lg, -.u-icon-v2.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg, -.u-icon-v3.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner, -.u-icon-v4.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg { - width: 5rem; - height: 5rem; - font-size: 2.14286rem; -} - -.u-icon-v2.u-icon-size--xl, -.u-icon-v2.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl, -.u-icon-v3.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl { - width: 6.42857rem; - height: 6.42857rem; - font-size: 2.85714rem; -} - -.u-icon-v2.u-icon-size--2xl, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl { - width: 7.14286rem; - height: 7.14286rem; - font-size: 3.21429rem; -} - -.u-icon-v2.u-icon-size--3xl, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl { - width: 9.28571rem; - height: 9.28571rem; - font-size: 3.57143rem; -} - -.u-icon-v2 { - border-width: 1px; - border-style: solid; -} - -.u-icon-v2.u-icon-size--2xl, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover { - border-width: 1.5px; -} - -.u-icon-v2.u-icon-size--3xl, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover { - border-width: 1.5px; -} - -/*------------------------------------ - Icon-v3 -------------------------------------*/ -.u-icon-v2, .u-icon-v2 .u-icon__elem-regular, -.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular, -.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular, -.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 { - width: 3.92857rem; - height: 3.92857rem; - font-size: 1.57143rem; -} - -.u-icon-v2.u-icon-size--xs, -.u-icon-v2.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs, -.u-icon-v3.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs { - width: 2.14286rem; - height: 2.14286rem; - font-size: 0.92857rem; -} - -.u-icon-v2.u-icon-size--sm, -.u-icon-v2.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm, -.u-icon-v3.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner, -.u-icon-v4.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm { - width: 2.85714rem; - height: 2.85714rem; - font-size: 1.28571rem; -} - -.u-icon-v2.u-icon-size--lg, -.u-icon-v2.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg, -.u-icon-v3.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner, -.u-icon-v4.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg { - width: 5rem; - height: 5rem; - font-size: 2.14286rem; -} - -.u-icon-v2.u-icon-size--xl, -.u-icon-v2.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl, -.u-icon-v3.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl { - width: 6.42857rem; - height: 6.42857rem; - font-size: 2.85714rem; -} - -.u-icon-v2.u-icon-size--2xl, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl { - width: 7.14286rem; - height: 7.14286rem; - font-size: 3.21429rem; -} - -.u-icon-v2.u-icon-size--3xl, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl { - width: 9.28571rem; - height: 9.28571rem; - font-size: 3.57143rem; -} - -.u-icon-v3 { - background-color: #eee; -} - -/*------------------------------------ - Icon-v4 -------------------------------------*/ -.u-icon-v2, .u-icon-v2 .u-icon__elem-regular, -.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular, -.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular, -.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 { - width: 3.92857rem; - height: 3.92857rem; - font-size: 1.57143rem; -} - -.u-icon-v2.u-icon-size--xs, -.u-icon-v2.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs, -.u-icon-v3.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs { - width: 2.14286rem; - height: 2.14286rem; - font-size: 0.92857rem; -} - -.u-icon-v2.u-icon-size--sm, -.u-icon-v2.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm, -.u-icon-v3.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner, -.u-icon-v4.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm { - width: 2.85714rem; - height: 2.85714rem; - font-size: 1.28571rem; -} - -.u-icon-v2.u-icon-size--lg, -.u-icon-v2.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg, -.u-icon-v3.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner, -.u-icon-v4.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg { - width: 5rem; - height: 5rem; - font-size: 2.14286rem; -} - -.u-icon-v2.u-icon-size--xl, -.u-icon-v2.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl, -.u-icon-v3.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl { - width: 6.42857rem; - height: 6.42857rem; - font-size: 2.85714rem; -} - -.u-icon-v2.u-icon-size--2xl, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl { - width: 7.14286rem; - height: 7.14286rem; - font-size: 3.21429rem; -} - -.u-icon-v2.u-icon-size--3xl, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl { - width: 9.28571rem; - height: 9.28571rem; - font-size: 3.57143rem; -} - -.u-icon-v4 { - padding: 0.57143rem; - background: transparent !important; - border: solid 1px #eee; - -webkit-transition: all .1s ease-in-out; - -o-transition: all .1s ease-in-out; - transition: all .1s ease-in-out; -} - -.u-icon-v4-inner { - position: relative; - display: block; - overflow: hidden; - background-color: #eee; -} - -.u-icon-v4 .u-icon-v4-inner { - z-index: 1; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.u-icon-v4-rounded-3, -.u-icon-v4-rounded-3 .u-icon-v4-inner { - border-radius: 3px; -} - -.u-icon-v4-rounded-7, -.u-icon-v4-rounded-7 .u-icon-v4-inner { - border-radius: 7px; -} - -.u-icon-v4-rounded-10, -.u-icon-v4-rounded-10 .u-icon-v4-inner { - border-radius: 10px; -} - -.u-icon-v4-rounded-50x, -.u-icon-v4-rounded-50x .u-icon-v4-inner { - border-radius: 50%; -} - -.u-icon-v4-bg-primary { - border-color: #e74c3c; -} - -.u-icon-v4-bg-primary .u-icon-v4-inner { - background: #e74c3c; -} - -.u-icon-v4-bg-white { - border-color: #fff; -} - -.u-icon-v4-bg-white .u-icon-v4-inner { - background: #fff; -} - -.u-icon-v4-bg-gray-light-v3 { - border-color: #ddd; -} - -.u-icon-v4-bg-gray-light-v3 .u-icon-v4-inner { - background: #ddd; -} - -.u-icon-v4-bg-gray-dark-v3 { - border-color: #555; -} - -.u-icon-v4-bg-gray-dark-v3 .u-icon-v4-inner { - background: #555; -} - -.u-icon-v4-bg-black { - border-color: #000; -} - -.u-icon-v4-bg-black .u-icon-v4-inner { - background: #000; -} - -.u-icon-v4-bg-primary--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover { - border-color: #e74c3c; -} - -.u-icon-v4-bg-primary--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover .u-icon-v4-inner { - background: #e74c3c; -} - -.u-icon-v4-bg-white--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-white--hover { - border-color: #fff; -} - -.u-icon-v4-bg-white--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-white--hover .u-icon-v4-inner { - background: #fff; -} - -.u-icon-v4-bg-gray-light-v3--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover { - border-color: #ddd; -} - -.u-icon-v4-bg-gray-light-v3--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover .u-icon-v4-inner { - background: #ddd; -} - -.u-icon-v4-bg-gray-dark-v3--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover { - border-color: #555; -} - -.u-icon-v4-bg-gray-dark-v3--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover .u-icon-v4-inner { - background: #555; -} - -.u-icon-v4-bg-black--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-black--hover { - border-color: #000; -} - -.u-icon-v4-bg-black--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-black--hover .u-icon-v4-inner { - background: #000; -} - -/*------------------------------------ - Icon-v4 Additional BG colors -------------------------------------*/ -.u-icon-v4-bg-red { - border-color: #f00; -} - -.u-icon-v4-bg-red .u-icon-v4-inner { - background: #f00; -} - -.u-icon-v4-bg-lightred { - border-color: #e64b3b; -} - -.u-icon-v4-bg-lightred .u-icon-v4-inner { - background: #e64b3b; -} - -.u-icon-v4-bg-darkred { - border-color: #a10f2b; -} - -.u-icon-v4-bg-darkred .u-icon-v4-inner { - background: #a10f2b; -} - -.u-icon-v4-bg-blue { - border-color: #3398dc; -} - -.u-icon-v4-bg-blue .u-icon-v4-inner { - background: #3398dc; -} - -.u-icon-v4-bg-indigo { - border-color: #4263a3; -} - -.u-icon-v4-bg-indigo .u-icon-v4-inner { - background: #4263a3; -} - -.u-icon-v4-bg-purple { - border-color: #9a69cb; -} - -.u-icon-v4-bg-purple .u-icon-v4-inner { - background: #9a69cb; -} - -.u-icon-v4-bg-darkpurple { - border-color: #6639b6; -} - -.u-icon-v4-bg-darkpurple .u-icon-v4-inner { - background: #6639b6; -} - -.u-icon-v4-bg-pink { - border-color: #e81c62; -} - -.u-icon-v4-bg-pink .u-icon-v4-inner { - background: #e81c62; -} - -.u-icon-v4-bg-orange { - border-color: #e57d20; -} - -.u-icon-v4-bg-orange .u-icon-v4-inner { - background: #e57d20; -} - -.u-icon-v4-bg-deeporange { - border-color: #fe541e; -} - -.u-icon-v4-bg-deeporange .u-icon-v4-inner { - background: #fe541e; -} - -.u-icon-v4-bg-aqua { - border-color: #29d6e6; -} - -.u-icon-v4-bg-aqua .u-icon-v4-inner { - background: #29d6e6; -} - -.u-icon-v4-bg-yellow { - border-color: #ebc71d; -} - -.u-icon-v4-bg-yellow .u-icon-v4-inner { - background: #ebc71d; -} - -.u-icon-v4-bg-cyan { - border-color: #00bed6; -} - -.u-icon-v4-bg-cyan .u-icon-v4-inner { - background: #00bed6; -} - -.u-icon-v4-bg-teal { - border-color: #18ba9b; -} - -.u-icon-v4-bg-teal .u-icon-v4-inner { - background: #18ba9b; -} - -.u-icon-v4-bg-brown { - border-color: #9c8061; -} - -.u-icon-v4-bg-brown .u-icon-v4-inner { - background: #9c8061; -} - -.u-icon-v4-bg-bluegray { - border-color: #585f69; -} - -.u-icon-v4-bg-bluegray .u-icon-v4-inner { - background: #585f69; -} - -.u-icon-v4-bg-red--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-red--hover { - border-color: #f00; -} - -.u-icon-v4-bg-red--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-red--hover .u-icon-v4-inner { - background: #f00; -} - -.u-icon-v4-bg-lightred--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover { - border-color: #e64b3b; -} - -.u-icon-v4-bg-lightred--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover .u-icon-v4-inner { - background: #e64b3b; -} - -.u-icon-v4-bg-darkred--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover { - border-color: #a10f2b; -} - -.u-icon-v4-bg-darkred--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover .u-icon-v4-inner { - background: #a10f2b; -} - -.u-icon-v4-bg-blue--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover { - border-color: #3398dc; -} - -.u-icon-v4-bg-blue--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover .u-icon-v4-inner { - background: #3398dc; -} - -.u-icon-v4-bg-indigo--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover { - border-color: #4263a3; -} - -.u-icon-v4-bg-indigo--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover .u-icon-v4-inner { - background: #4263a3; -} - -.u-icon-v4-bg-purple--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover { - border-color: #9a69cb; -} - -.u-icon-v4-bg-purple--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover .u-icon-v4-inner { - background: #9a69cb; -} - -.u-icon-v4-bg-darkpurple--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover { - border-color: #6639b6; -} - -.u-icon-v4-bg-darkpurple--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover .u-icon-v4-inner { - background: #6639b6; -} - -.u-icon-v4-bg-pink--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover { - border-color: #e81c62; -} - -.u-icon-v4-bg-pink--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover .u-icon-v4-inner { - background: #e81c62; -} - -.u-icon-v4-bg-orange--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover { - border-color: #e57d20; -} - -.u-icon-v4-bg-orange--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover .u-icon-v4-inner { - background: #e57d20; -} - -.u-icon-v4-bg-deeporange--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover { - border-color: #fe541e; -} - -.u-icon-v4-bg-deeporange--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover .u-icon-v4-inner { - background: #fe541e; -} - -.u-icon-v4-bg-aqua--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover { - border-color: #29d6e6; -} - -.u-icon-v4-bg-aqua--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover .u-icon-v4-inner { - background: #29d6e6; -} - -.u-icon-v4-bg-yellow--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover { - border-color: #ebc71d; -} - -.u-icon-v4-bg-yellow--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover .u-icon-v4-inner { - background: #ebc71d; -} - -.u-icon-v4-bg-cyan--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover { - border-color: #00bed6; -} - -.u-icon-v4-bg-cyan--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover .u-icon-v4-inner { - background: #00bed6; -} - -.u-icon-v4-bg-teal--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover { - border-color: #18ba9b; -} - -.u-icon-v4-bg-teal--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover .u-icon-v4-inner { - background: #18ba9b; -} - -.u-icon-v4-bg-brown--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover { - border-color: #9c8061; -} - -.u-icon-v4-bg-brown--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover .u-icon-v4-inner { - background: #9c8061; -} - -.u-icon-v4-bg-bluegray--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover { - border-color: #585f69; -} - -.u-icon-v4-bg-bluegray--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover .u-icon-v4-inner { - background: #585f69; -} - -/*------------------------------------ - Icon-v4 Social BG colors -------------------------------------*/ -.u-icon-v4-bg-facebook { - border-color: #3b5998; -} - -.u-icon-v4-bg-facebook .u-icon-v4-inner { - background-color: #3b5998; -} - -.u-icon-v4-bg-twitter { - border-color: #00acee; -} - -.u-icon-v4-bg-twitter .u-icon-v4-inner { - background-color: #00acee; -} - -.u-icon-v4-bg-google-plus { - border-color: #dd4b39; -} - -.u-icon-v4-bg-google-plus .u-icon-v4-inner { - background-color: #dd4b39; -} - -.u-icon-v4-bg-vk { - border-color: #2b587a; -} - -.u-icon-v4-bg-vk .u-icon-v4-inner { - background-color: #2b587a; -} - -.u-icon-v4-bg-linkedin { - border-color: #0e76a8; -} - -.u-icon-v4-bg-linkedin .u-icon-v4-inner { - background-color: #0e76a8; -} - -.u-icon-v4-bg-instagram { - border-color: #3f729b; -} - -.u-icon-v4-bg-instagram .u-icon-v4-inner { - background-color: #3f729b; -} - -.u-icon-v4-bg-pinterest { - border-color: #c8232c; -} - -.u-icon-v4-bg-pinterest .u-icon-v4-inner { - background-color: #c8232c; -} - -.u-icon-v4-bg-vine { - border-color: #00bf8f; -} - -.u-icon-v4-bg-vine .u-icon-v4-inner { - background-color: #00bf8f; -} - -.u-icon-v4-bg-youtube { - border-color: #c4302b; -} - -.u-icon-v4-bg-youtube .u-icon-v4-inner { - background-color: #c4302b; -} - -.u-icon-v4-bg-skype { - border-color: #00aff0; -} - -.u-icon-v4-bg-skype .u-icon-v4-inner { - background-color: #00aff0; -} - -.u-icon-v4-bg-dribbble { - border-color: #ea4c89; -} - -.u-icon-v4-bg-dribbble .u-icon-v4-inner { - background-color: #ea4c89; -} - -.u-icon-v4-bg-facebook--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover { - border-color: #3b5998; -} - -.u-icon-v4-bg-facebook--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover .u-icon-v4-inner { - background: #3b5998; -} - -.u-icon-v4-bg-twitter--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover { - border-color: #00acee; -} - -.u-icon-v4-bg-twitter--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover .u-icon-v4-inner { - background: #00acee; -} - -.u-icon-v4-bg-google-plus--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover { - border-color: #dd4b39; -} - -.u-icon-v4-bg-google-plus--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover .u-icon-v4-inner { - background: #dd4b39; -} - -.u-icon-v4-bg-vk--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover { - border-color: #2b587a; -} - -.u-icon-v4-bg-vk--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover .u-icon-v4-inner { - background: #2b587a; -} - -.u-icon-v4-bg-linkedin--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover { - border-color: #0e76a8; -} - -.u-icon-v4-bg-linkedin--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover .u-icon-v4-inner { - background: #0e76a8; -} - -.u-icon-v4-bg-instagram--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover { - border-color: #3f729b; -} - -.u-icon-v4-bg-instagram--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover .u-icon-v4-inner { - background: #3f729b; -} - -.u-icon-v4-bg-pinterest--hover:hover, -.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover { - border-color: #c8232c; -} - -.u-icon-v4-bg-pinterest--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover .u-icon-v4-inner { - background: #c8232c; -} - -/*------------------------------------ - Icon-v4 Gradient BG colors -------------------------------------*/ -.u-icon-v4-bg-lightblue-radialgradient-ellipse { - border-color: #d6e2ee; -} - -.u-icon-v4-bg-lightblue-radialgradient-ellipse .u-icon-v4-inner { - background: -webkit-radial-gradient(center center, ellipse, #fff 22%, #d6e2ee 100%) repeat; - background: -o-radial-gradient(center center, ellipse, #fff 22%, #d6e2ee 100%) repeat; - background: radial-gradient(ellipse at center center, #fff 22%, #d6e2ee 100%) repeat; -} - -.u-icon-v4-bg-gray-radialgradient-ellipse { - border-color: #bbb; -} - -.u-icon-v4-bg-gray-radialgradient-ellipse .u-icon-v4-inner { - background: -webkit-radial-gradient(center center, ellipse, #ddd 22%, #bbb 100%) repeat; - background: -o-radial-gradient(center center, ellipse, #ddd 22%, #bbb 100%) repeat; - background: radial-gradient(ellipse at center center, #ddd 22%, #bbb 100%) repeat; -} - -.u-icon-v4-bg-blue-radialgradient-circle { - border-color: #275296; -} - -.u-icon-v4-bg-blue-radialgradient-circle .u-icon-v4-inner { - background: -webkit-radial-gradient(circle farthest-side at 100% 0, #2294d7, #275296) no-repeat; - background: -o-radial-gradient(circle farthest-side at 100% 0, #2294d7, #275296) no-repeat; - background: radial-gradient(circle farthest-side at 100% 0, #2294d7, #275296) no-repeat; -} - -.u-icon-v4-bg-darkgray-radialgradient-circle { - border-color: #31353e; -} - -.u-icon-v4-bg-darkgray-radialgradient-circle .u-icon-v4-inner { - background: -webkit-radial-gradient(circle farthest-side at 110% 0, #596070, #31353e) no-repeat; - background: -o-radial-gradient(circle farthest-side at 110% 0, #596070, #31353e) no-repeat; - background: radial-gradient(circle farthest-side at 110% 0, #596070, #31353e) no-repeat; -} - -/*------------------------------------ - Icon-v5 -------------------------------------*/ -.u-icon-v2, .u-icon-v2 .u-icon__elem-regular, -.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular, -.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular, -.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 { - width: 3.92857rem; - height: 3.92857rem; - font-size: 1.57143rem; -} - -.u-icon-v2.u-icon-size--xs, -.u-icon-v2.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs, -.u-icon-v3.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xs .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs { - width: 2.14286rem; - height: 2.14286rem; - font-size: 0.92857rem; -} - -.u-icon-v2.u-icon-size--sm, -.u-icon-v2.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm, -.u-icon-v3.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner, -.u-icon-v4.u-icon-size--sm .u-icon__elem-regular, -.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm { - width: 2.85714rem; - height: 2.85714rem; - font-size: 1.28571rem; -} - -.u-icon-v2.u-icon-size--lg, -.u-icon-v2.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg, -.u-icon-v3.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner, -.u-icon-v4.u-icon-size--lg .u-icon__elem-regular, -.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg { - width: 5rem; - height: 5rem; - font-size: 2.14286rem; -} - -.u-icon-v2.u-icon-size--xl, -.u-icon-v2.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl, -.u-icon-v3.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl { - width: 6.42857rem; - height: 6.42857rem; - font-size: 2.85714rem; -} - -.u-icon-v2.u-icon-size--2xl, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl { - width: 7.14286rem; - height: 7.14286rem; - font-size: 3.21429rem; -} - -.u-icon-v2.u-icon-size--3xl, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular, -.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl { - width: 9.28571rem; - height: 9.28571rem; - font-size: 3.57143rem; -} - -.u-icon-v5 { - position: relative; -} - -body .u-icon-v5 { - background: transparent !important; -} - -.u-icon-v5::after { - content: ""; - position: absolute; - top: 50%; - left: 50%; - margin: -.45em 0 0 -.4em; - width: .8em; - height: .8em; - background-color: #eee; - border-radius: 50%; - opacity: .7; -} - -.u-icon-v5 i { - position: relative; - z-index: 2; -} - -.u-icon-v5.g-bg-main::after { - background-color: #a49da6; -} - -.u-icon-v5.g-bg-primary::after { - background-color: #e74c3c; -} - -.u-icon-v5.g-bg-black::after { - background-color: #000; -} - -.u-icon-v5.g-bg-white::after { - background-color: #fff; -} - -.u-icon-v5.g-bg-gray-light-v1::after { - background-color: #bbb; -} - -.u-icon-v5.g-bg-gray-light-v2::after { - background-color: #ccc; -} - -.u-icon-v5.g-bg-gray-light-v3::after { - background-color: #ddd; -} - -.u-icon-v5.g-bg-gray-light-v4::after { - background-color: #eee; -} - -.u-icon-v5.g-bg-gray-light-v5::after { - background-color: #f7f7f7; -} - -.u-icon-v5.g-bg-gray-dark-v1::after { - background-color: #111; -} - -.u-icon-v5.g-bg-gray-dark-v2::after { - background-color: #333; -} - -.u-icon-v5.g-bg-gray-dark-v3::after { - background-color: #555; -} - -.u-icon-v5.g-bg-gray-dark-v4::after { - background-color: #777; -} - -.u-icon-v5.g-bg-gray-dark-v5::after { - background-color: #999; -} - -.u-icon-v5.g-bg-green::after { - background-color: #72c02c; -} - -.u-icon-v5.g-bg-blue::after { - background-color: #3398dc; -} - -.u-icon-v5.g-bg-lightblue::after { - background-color: #edf2f8; -} - -.u-icon-v5.g-bg-lightblue-v1::after { - background-color: #d6e2ee; -} - -.u-icon-v5.g-bg-darkblue::after { - background-color: #009; -} - -.u-icon-v5.g-bg-indigo::after { - background-color: #4263a3; -} - -.u-icon-v5.g-bg-red::after { - background-color: #f00; -} - -.u-icon-v5.g-bg-lightred::after { - background-color: #e64b3b; -} - -.u-icon-v5.g-bg-darkred::after { - background-color: #a10f2b; -} - -.u-icon-v5.g-bg-purple::after { - background-color: #9a69cb; -} - -.u-icon-v5.g-bg-darkpurple::after { - background-color: #6639b6; -} - -.u-icon-v5.g-bg-pink::after { - background-color: #e81c62; -} - -.u-icon-v5.g-bg-orange::after { - background-color: #e57d20; -} - -.u-icon-v5.g-bg-deeporange::after { - background-color: #fe541e; -} - -.u-icon-v5.g-bg-yellow::after { - background-color: #ebc71d; -} - -.u-icon-v5.g-bg-aqua::after { - background-color: #29d6e6; -} - -.u-icon-v5.g-bg-cyan::after { - background-color: #00bed6; -} - -.u-icon-v5.g-bg-teal::after { - background-color: #18ba9b; -} - -.u-icon-v5.g-bg-brown::after { - background-color: #9c8061; -} - -.u-icon-v5.g-bg-bluegray::after { - background-color: #585f69; -} - -/*------------------------------------ - Image Icons -------------------------------------*/ -.u-image-icon-size-xs, -.u-image-icon-size-sm, -.u-image-icon-size-md, -.u-image-icon-size-lg, -.u-image-icon-size-xl { - height: auto; -} - -.u-image-icon-size-xs { - width: 2.14286rem; -} - -.u-image-icon-size-sm { - width: 2.85714rem; -} - -.u-image-icon-size-md { - width: 3.92857rem; -} - -.u-image-icon-size-lg { - width: 5rem; -} - -.u-image-icon-size-xl { - width: 6.42857rem; -} - -.u-image-icon-size-2xl { - width: 7.14286rem; -} - -/*------------------------------------ - Hover Effect of Icon on Block Hover -------------------------------------*/ -.u-icon-block--hover:hover .g-opacity-0_5--hover { - opacity: .5; -} - -.u-icon-block--hover:hover .g-color-primary--hover { - color: #e74c3c; -} - -.u-icon-block--hover:hover .g-brd-primary--hover { - border-color: #e74c3c; -} - -.u-icon-block--hover:hover .g-bg-primary--hover { - background: #e74c3c; -} - -.u-icon-block--hover:hover .g-color-white--hover { - color: #fff; -} - -.u-icon-block--hover:hover .g-brd-white--hover { - border-color: #fff; -} - -.u-icon-block--hover:hover .g-bg-white--hover { - background: #fff; -} - -.u-icon-block--hover:hover .g-color-black--hover { - color: #000; -} - -.u-icon-block--hover:hover .g-brd-black--hover { - border-color: #000; -} - -.u-icon-block--hover:hover .g-bg-black--hover { - background: #000; -} - -.u-icon-block--hover:hover .g-color-gray-dark-v4--hover { - color: #777; -} - -.u-icon-block--hover:hover .g-brd-gray-dark-v4--hover { - border-color: #777; -} - -.u-icon-block--hover:hover .g-bg-gray-dark-v4--hover { - background: #777; -} - -.u-icon-block-hover:hover .g-color-facebook--hover { - color: #3b5998; -} - -.u-icon-block-hover:hover .g-brd-facebook--hover { - border-color: #3b5998; -} - -.u-icon-block-hover:hover .g-bg-facebook--hover { - background: #3b5998; -} - -.u-icon-block-hover:hover .g-color-twitter--hover { - color: #00acee; -} - -.u-icon-block-hover:hover .g-brd-twitter--hover { - border-color: #00acee; -} - -.u-icon-block-hover:hover .g-bg-twitter--hover { - background: #00acee; -} - -.u-icon-block-hover:hover .g-color-google-plus--hover { - color: #dd4b39; -} - -.u-icon-block-hover:hover .g-brd-google-plus--hover { - border-color: #dd4b39; -} - -.u-icon-block-hover:hover .g-bg-google-plus--hover { - background: #dd4b39; -} - -.u-icon-block-hover:hover .g-color-vk--hover { - color: #2b587a; -} - -.u-icon-block-hover:hover .g-brd-vk--hover { - border-color: #2b587a; -} - -.u-icon-block-hover:hover .g-bg-vk--hover { - background: #2b587a; -} - -.u-icon-block-hover:hover .g-color-linkedin--hover { - color: #0e76a8; -} - -.u-icon-block-hover:hover .g-brd-linkedin--hover { - border-color: #0e76a8; -} - -.u-icon-block-hover:hover .g-bg-linkedin--hover { - background: #0e76a8; -} - -.u-icon-block-hover:hover .g-color-instagram--hover { - color: #3f729b; -} - -.u-icon-block-hover:hover .g-brd-instagram--hover { - border-color: #3f729b; -} - -.u-icon-block-hover:hover .g-bg-instagram--hover { - background: #3f729b; -} - -.u-icon-block-hover:hover .g-color-pinterest--hover { - color: #c8232c; -} - -.u-icon-block-hover:hover .g-brd-pinterest--hover { - border-color: #c8232c; -} - -.u-icon-block-hover:hover .g-bg-pinterest--hover { - background: #c8232c; -} - -/*------------------------------------ - Scale Effect -------------------------------------*/ -.u-icon-scale-1_2--hover:hover { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -/*------------------------------------ - Shadow Effect -------------------------------------*/ -.u-icon-shadow--hover:hover, -.u-icon-block--hover:hover .u-icon-shadow--hover { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -} - -/*------------------------------------ - Slide Effect v1 -------------------------------------*/ -.u-icon-sliding--hover i::before { - display: block; -} - -.u-icon-sliding--hover:hover i::before, -.u-icon-block--hover:hover .u-icon-sliding--hover i::before { - -webkit-animation: toTopFromBottom .3s forwards; - animation: toTopFromBottom .3s forwards; -} - -@-webkit-keyframes toTopFromBottom { - 49% { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); - } - 50% { - opacity: 0; - -webkit-transform: translateY(100%); - transform: translateY(100%); - } - 51% { - opacity: 1; - } -} - -@keyframes toTopFromBottom { - 49% { - -webkit-transform: translateY(-100%); - transform: translateY(-100%); - } - 50% { - opacity: 0; - -webkit-transform: translateY(100%); - transform: translateY(100%); - } - 51% { - opacity: 1; - } -} - -/*------------------------------------ - Slide Effect v2 -------------------------------------*/ -.u-icon__elem-regular, -.u-icon__elem-hover { - position: relative; - top: 0; - left: 0; - display: block; - -webkit-transition: all .3s ease-in-out; - -o-transition: all .3s ease-in-out; - transition: all .3s ease-in-out; -} - -.u-icon__elem-hover { - position: absolute !important; -} - -.u-icon-slide-up--hover, -.u-icon-slide-down--hover, -.u-icon-slide-left--hover, -.u-icon-slide-right--hover { - overflow: hidden; -} - -.u-icon-slide-up--hover .u-icon__elem-regular { - -webkit-transform: translateY(-20%); - -ms-transform: translateY(-20%); - transform: translateY(-20%); -} - -.u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translateY(-30%); - -ms-transform: translateY(-30%); - transform: translateY(-30%); -} - -.u-icon-slide-up--hover .u-icon__elem-hover { - -webkit-transform: translateY(110%); - -ms-transform: translateY(110%); - transform: translateY(110%); -} - -.u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translateY(120%); - -ms-transform: translateY(120%); - transform: translateY(120%); -} - -.u-icon-slide-up--hover:hover .u-icon__elem-regular, -.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular { - -webkit-transform: translateY(-110%); - -ms-transform: translateY(-110%); - transform: translateY(-110%); -} - -.u-icon-slide-up--hover:hover .u-icon__elem-regular.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translateY(-120%); - -ms-transform: translateY(-120%); - transform: translateY(-120%); -} - -.u-icon-slide-up--hover:hover .u-icon__elem-hover, -.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover { - -webkit-transform: translateY(-20%); - -ms-transform: translateY(-20%); - transform: translateY(-20%); -} - -.u-icon-slide-up--hover:hover .u-icon__elem-hover.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translateY(-30%); - -ms-transform: translateY(-30%); - transform: translateY(-30%); -} - -.u-icon-slide-down--hover .u-icon__elem-regular { - -webkit-transform: translateY(-110%); - -ms-transform: translateY(-110%); - transform: translateY(-110%); -} - -.u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translateY(-120%); - -ms-transform: translateY(-120%); - transform: translateY(-120%); -} - -.u-icon-slide-down--hover .u-icon__elem-hover { - -webkit-transform: translateY(-20%); - -ms-transform: translateY(-20%); - transform: translateY(-20%); -} - -.u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translateY(-30%); - -ms-transform: translateY(-30%); - transform: translateY(-30%); -} - -.u-icon-slide-down--hover:hover .u-icon__elem-regular, -.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular { - -webkit-transform: translateY(-20%); - -ms-transform: translateY(-20%); - transform: translateY(-20%); -} - -.u-icon-slide-down--hover:hover .u-icon__elem-regular.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translateY(-30%); - -ms-transform: translateY(-30%); - transform: translateY(-30%); -} - -.u-icon-slide-down--hover:hover .u-icon__elem-hover, -.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover { - -webkit-transform: translateY(80%); - -ms-transform: translateY(80%); - transform: translateY(80%); -} - -.u-icon-slide-down--hover:hover .u-icon__elem-hover.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translateY(90%); - -ms-transform: translateY(90%); - transform: translateY(90%); -} - -.u-icon-slide-left--hover .u-icon__elem-regular { - -webkit-transform: translate(0, -20%); - -ms-transform: translate(0, -20%); - transform: translate(0, -20%); -} - -.u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translate(0, -30%); - -ms-transform: translate(0, -30%); - transform: translate(0, -30%); -} - -.u-icon-slide-left--hover .u-icon__elem-hover { - -webkit-transform: translate(110%, -20%); - -ms-transform: translate(110%, -20%); - transform: translate(110%, -20%); -} - -.u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translate(110%, -30%); - -ms-transform: translate(110%, -30%); - transform: translate(110%, -30%); -} - -.u-icon-slide-left--hover:hover .u-icon__elem-regular, -.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular { - -webkit-transform: translate(-110%, -20%); - -ms-transform: translate(-110%, -20%); - transform: translate(-110%, -20%); -} - -.u-icon-slide-left--hover:hover .u-icon__elem-regular.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translate(-110%, -30%); - -ms-transform: translate(-110%, -30%); - transform: translate(-110%, -30%); -} - -.u-icon-slide-left--hover:hover .u-icon__elem-hover, -.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover { - -webkit-transform: translate(0, -20%); - -ms-transform: translate(0, -20%); - transform: translate(0, -20%); -} - -.u-icon-slide-left--hover:hover .u-icon__elem-hover.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translate(0, -30%); - -ms-transform: translate(0, -30%); - transform: translate(0, -30%); -} - -.u-icon-slide-right--hover .u-icon__elem-regular { - -webkit-transform: translate(-110%, -20%); - -ms-transform: translate(-110%, -20%); - transform: translate(-110%, -20%); -} - -.u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translate(-110%, -30%); - -ms-transform: translate(-110%, -30%); - transform: translate(-110%, -30%); -} - -.u-icon-slide-right--hover .u-icon__elem-hover { - -webkit-transform: translate(0, -20%); - -ms-transform: translate(0, -20%); - transform: translate(0, -20%); -} - -.u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translate(0, -30%); - -ms-transform: translate(0, -30%); - transform: translate(0, -30%); -} - -.u-icon-slide-right--hover:hover .u-icon__elem-regular, -.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular { - -webkit-transform: translate(0, -20%); - -ms-transform: translate(0, -20%); - transform: translate(0, -20%); -} - -.u-icon-slide-right--hover:hover .u-icon__elem-regular.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro { - -webkit-transform: translate(0, -30%); - -ms-transform: translate(0, -30%); - transform: translate(0, -30%); -} - -.u-icon-slide-right--hover:hover .u-icon__elem-hover, -.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover { - -webkit-transform: translate(110%, -20%); - -ms-transform: translate(110%, -20%); - transform: translate(110%, -20%); -} - -.u-icon-slide-right--hover:hover .u-icon__elem-hover.u-line-icon-pro, -.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro { - -webkit-transform: translate(110%, -30%); - -ms-transform: translate(110%, -30%); - transform: translate(110%, -30%); -} - -/*------------------------------------ - Zoom Effect v1 -------------------------------------*/ -.u-icon-block--hover:hover .u-icon-scale-1_2--hover { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -.u-icon-rotation.u-icon-scale-1_2--hover:hover, -.u-icon-block--hover:hover .u-icon-rotation.u-icon-scale-1_2--hover { - -webkit-transform: scale(1.2) rotate(45deg); - -ms-transform: scale(1.2) rotate(45deg); - transform: scale(1.2) rotate(45deg); -} - -/*------------------------------------ - Changing a shape Effect -------------------------------------*/ -.u-icon-square--hover:hover, -.u-icon-v4.u-icon-square--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-square--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-square--hover .u-icon-v4-inner { - border-radius: 0; -} - -.u-icon-rounded-3--hover:hover, -.u-icon-v4.u-icon-rounded-3--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-rounded-3--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-3--hover .u-icon-v4-inner { - border-radius: 3px; -} - -.u-icon-rounded-10--hover:hover, -.u-icon-v4.u-icon-rounded-10--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-rounded-10--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-10--hover .u-icon-v4-inner { - border-radius: 10px; -} - -.u-icon-rounded-50x--hover:hover, -.u-icon-v4.u-icon-rounded-50x--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-rounded-50x--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-50x--hover .u-icon-v4-inner { - border-radius: 50%; -} - -/*------------------------------------ - Effect v1 -------------------------------------*/ -.u-icon-effect-v1-1--hover::after, -.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - border-radius: inherit; - -webkit-box-sizing: content-box; - box-sizing: content-box; - pointer-events: none; -} - -.u-icon-effect-v1-1--hover, -.u-icon-effect-v1-2--hover { - position: relative; - overflow: inherit; -} - -.u-icon-effect-v1-1--hover::after, -.u-icon-effect-v1-2--hover::after { - top: -0.5rem; - left: -0.5rem; - padding: 0.5rem; - -webkit-box-shadow: 0 0 0 1px #e74c3c; - box-shadow: 0 0 0 1px #e74c3c; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - opacity: 0; -} - -.u-icon-effect-v1-1--hover:hover, -.u-icon-effect-v1-2--hover:hover, -.u-icon-v4.u-icon-effect-v1-1--hover:hover .u-icon-v4-inner, -.u-icon-v4.u-icon-effect-v1-2--hover:hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-effect-v1-1--hover, -.u-icon-block--hover:hover .u-icon-effect-v1-2--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover .u-icon-v4-inner, -.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover .u-icon-v4-inner { - color: #fff; - border-color: #e74c3c; - background: #e74c3c !important; -} - -.u-icon-v4.u-icon-effect-v1-1--hover:hover, -.u-icon-v4.u-icon-effect-v1-2--hover:hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover, -.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover { - border-color: transparent; -} - -.u-icon-effect-v1-1--hover::after { - -webkit-transform: scale(0.8); - -ms-transform: scale(0.8); - transform: scale(0.8); -} - -.u-icon-effect-v1-1--hover:hover::after, -.u-icon-block--hover:hover .u-icon-effect-v1-1--hover::after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.u-icon-effect-v1-2--hover::after { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -.u-icon-effect-v1-2--hover:hover::after, -.u-icon-block--hover:hover .u-icon-effect-v1-2--hover::after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.u-icon-v4.u-icon-effect-v1-2--hover:hover::after, -.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover::after { - -webkit-transform: scale(0.8); - -ms-transform: scale(0.8); - transform: scale(0.8); -} - -/*------------------------------------ - Effect v2 -------------------------------------*/ -.u-icon-effect-v1-1--hover::after, -.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - border-radius: inherit; - -webkit-box-sizing: content-box; - box-sizing: content-box; - pointer-events: none; -} - -.u-icon-effect-v2--hover { - -webkit-transition: all .5s; - -o-transition: all .5s; - transition: all .5s; - overflow: inherit; -} - -.u-icon-effect-v2--hover::after { - top: -4px; - left: -4px; - padding: 4px; - z-index: -1; - -webkit-transition: all .5s; - -o-transition: all .5s; - transition: all .5s; -} - -.u-icon-effect-v2--hover:hover, -.u-icon-effect-v2--hover:hover::after { - background: #e74c3c; -} - -.u-icon-effect-v2--hover:hover::after, -.u-icon-block--hover:hover .u-icon-effect-v2--hover::after { - opacity: 0; - -webkit-transform: scale(1.5); - -ms-transform: scale(1.5); - transform: scale(1.5); -} - -/*------------------------------------ - Effect v3 -------------------------------------*/ -@-webkit-keyframes spinAround { - from { - -webkit-transform: translateY(-50%) rotate(0deg); - transform: translateY(-50%) rotate(0deg); - } - to { - -webkit-transform: translateY(-50%) rotate(360deg); - transform: translateY(-50%) rotate(360deg); - } -} -@keyframes spinAround { - from { - -webkit-transform: translateY(-50%) rotate(0deg); - transform: translateY(-50%) rotate(0deg); - } - to { - -webkit-transform: translateY(-50%) rotate(360deg); - transform: translateY(-50%) rotate(360deg); - } -} - -.u-icon-effect-v3--hover:hover i, -.u-icon-block--hover:hover .u-icon-effect-v3--hover i { - -webkit-animation: spinAround 1s linear infinite; - animation: spinAround 1s linear infinite; -} - -/*------------------------------------ - Effect v4 -------------------------------------*/ -.u-icon-effect-v1-1--hover::after, -.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - border-radius: inherit; - -webkit-box-sizing: content-box; - box-sizing: content-box; - pointer-events: none; -} - -.u-icon-effect-v4--hover { - -webkit-transition: background .2s, -webkit-transform ease-out .1s; - transition: background .2s, -webkit-transform ease-out .1s; - -o-transition: transform ease-out .1s, background .2s; - transition: transform ease-out .1s, background .2s; - transition: transform ease-out .1s, background .2s, -webkit-transform ease-out .1s; - overflow: inherit; -} - -.u-icon-effect-v4--hover::after { - top: 0; - left: 0; - padding: 0; - -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); - box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); - opacity: 0; - z-index: -1; - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.u-icon-effect-v4--hover:hover, -.u-icon-block--hover:hover .u-icon-effect-v4--hover { - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); -} - -.u-icon-rotation.u-icon-effect-v4--hover:hover, -.u-icon-block--hover:hover .u-icon-rotation.u-icon-effect-v4--hover { - -webkit-transform: scale(1.1) rotate(45deg); - -ms-transform: scale(1.1) rotate(45deg); - transform: scale(1.1) rotate(45deg); -} - -.u-icon-effect-v4--hover:hover::after { - -webkit-animation: sonarEffect-default 1.3s ease-out 75ms; - animation: sonarEffect-default 1.3s ease-out 75ms; -} - -.u-icon-effect-v4--hover.g-bg-primary:hover::after, -.u-icon-v2.u-icon-effect-v4--hover.g-color-primary:hover::after, -.u-icon-block--hover:hover .u-icon-effect-v4--hover.g-bg-primary::after, -.u-icon-block--hover:hover .u-icon-v2.u-icon-effect-v4--hover.g-color-primary::after { - -webkit-animation: sonarEffect-primary 1.3s ease-out 75ms; - animation: sonarEffect-primary 1.3s ease-out 75ms; -} - -@-webkit-keyframes sonarEffect-default { - 0% { - opacity: .3; - } - 40% { - opacity: .5; - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - } - 100% { - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - -webkit-transform: scale(1.5); - transform: scale(1.5); - opacity: 0; - } -} - -@keyframes sonarEffect-default { - 0% { - opacity: .3; - } - 40% { - opacity: .5; - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - } - 100% { - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); - -webkit-transform: scale(1.5); - transform: scale(1.5); - opacity: 0; - } -} - -@-webkit-keyframes sonarEffect-primary { - 0% { - opacity: .3; - } - 40% { - opacity: .5; - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - } - 100% { - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - -webkit-transform: scale(1.5); - transform: scale(1.5); - opacity: 0; - } -} - -@keyframes sonarEffect-primary { - 0% { - opacity: .3; - } - 40% { - opacity: .5; - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - } - 100% { - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #e74c3c, 0 0 0 10px rgba(255, 255, 255, 0.5); - -webkit-transform: scale(1.5); - transform: scale(1.5); - opacity: 0; - } -} - -/*------------------------------------ - Effect v5 -------------------------------------*/ -.u-icon-effect-v1-1--hover::after, -.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - border-radius: inherit; - -webkit-box-sizing: content-box; - box-sizing: content-box; - pointer-events: none; -} - -.u-icon-effect-v5--hover { - -webkit-transition: -webkit-box-shadow .2s; - transition: -webkit-box-shadow .2s; - -o-transition: box-shadow .2s; - transition: box-shadow .2s; - transition: box-shadow .2s, -webkit-box-shadow .2s; - overflow: inherit; -} - -.u-icon-effect-v5--hover:after { - top: 0; - left: 0; - padding: 0; - -webkit-transition: opacity .2s, -webkit-transform .2s; - transition: opacity .2s, -webkit-transform .2s; - -o-transition: transform .2s, opacity .2s; - transition: transform .2s, opacity .2s; - transition: transform .2s, opacity .2s, -webkit-transform .2s; -} - -.u-icon-v3.u-icon-effect-v5--hover:after { - -webkit-box-shadow: 0 0 0 3px #fff; - box-shadow: 0 0 0 3px #fff; -} - -.u-icon-effect-v5--hover:hover:after, -.u-icon-block--hover:hover .u-icon-effect-v5--hover:after { - -webkit-transform: scale(0.85); - -ms-transform: scale(0.85); - transform: scale(0.85); - opacity: .5; -} - -.u-icon-effect-v5--hover:hover, -.u-icon-block--hover:hover .u-icon-effect-v5--hover { - -webkit-box-shadow: 0 0 10px 10px #ddd; - box-shadow: 0 0 10px 10px #ddd; -} - -.u-icon-effect-v5--hover.g-bg-primary:hover, -.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-bg-primary, -.u-icon-effect-v5--hover.g-color-primary:hover, -.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-color-primary { - -webkit-box-shadow: 0 0 10px 10px #e74c3c; - box-shadow: 0 0 10px 10px #e74c3c; -} - -/*------------------------------------ - Box-shadows Styles -------------------------------------*/ -.u-shadow-none { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.u-shadow-none--focus:focus { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.g-parent:hover .u-shadow-none--parent-hover { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -/*------------------------------------ - Box-shadows-v1 -------------------------------------*/ -.u-shadow-v1-1 { - -webkit-box-shadow: 0 0 5px #999; - box-shadow: 0 0 5px #999; -} - -.u-shadow-v1-2 { - -webkit-box-shadow: 0 0 10px #999; - box-shadow: 0 0 10px #999; -} - -.u-shadow-v1-2--hover:hover { - -webkit-box-shadow: 0 0 10px #999; - box-shadow: 0 0 10px #999; -} - -.g-parent:hover .u-shadow-v1-2--hover-parent { - -webkit-box-shadow: 0 0 10px #999; - box-shadow: 0 0 10px #999; -} - -.u-shadow-v1-3 { - -webkit-box-shadow: 0 0 5px #ddd; - box-shadow: 0 0 5px #ddd; -} - -.u-shadow-v1-4 { - -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); - box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); -} - -.u-shadow-v1-5 { - -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-5--hover:hover { - -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -} - -*:hover > .u-shadow-v1-5--hover-parent { - -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-6 { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-6--hover:hover { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); -} - -*:hover > .u-shadow-v1-6--hover-parent { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-7 { - -webkit-box-shadow: 0 0 8px #eee; - box-shadow: 0 0 8px #eee; -} - -.u-shadow-v1-7--hover:hover { - -webkit-box-shadow: 0 0 8px #eee; - box-shadow: 0 0 8px #eee; -} - -*:hover > .u-shadow-v1-7--hover-parent { - -webkit-box-shadow: 0 0 8px #eee; - box-shadow: 0 0 8px #eee; -} - -/*------------------------------------ - Box-shadows-v2 -------------------------------------*/ -.u-shadow-v2 { - -webkit-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.2); - box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.2); -} - -/*------------------------------------ - Box-shadows-v3-v4-v5 -------------------------------------*/ -.u-shadow-v3, -.u-shadow-v4, -.u-shadow-v5 { - position: relative; -} - -.u-shadow-v3::after, -.u-shadow-v3::before, -.u-shadow-v4::before, -.u-shadow-v5::after { - content: ""; - position: absolute; - top: 80%; - left: 0.35714rem; - bottom: 1.07143rem; - width: 50%; - max-width: 21.42857rem; - background: rgba(0, 0, 0, 0.2); - z-index: -1; -} - -.u-shadow-v3::after, -.u-shadow-v3::before, -.u-shadow-v4::before, -.u-shadow-v5::after { - -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2); - -webkit-transform: rotate(-3deg); - -ms-transform: rotate(-3deg); - transform: rotate(-3deg); -} - -.u-shadow-v3::after, -.u-shadow-v5::after { - left: auto; - right: 0.35714rem; - -webkit-transform: rotate(3deg); - -ms-transform: rotate(3deg); - transform: rotate(3deg); -} - -/*------------------------------------ - Box-shadows-v6 -------------------------------------*/ -.u-shadow-v6 { - -webkit-box-shadow: 0 8px 6px -6px #555; - box-shadow: 0 8px 6px -6px #555; -} - -/*------------------------------------ - Box-shadows-v7 -------------------------------------*/ -.u-shadow-v7 { - -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); - box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); -} - -/*------------------------------------ - Box-shadows-v8 -------------------------------------*/ -.u-shadow-v8 { - -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); - box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); -} - -.u-shadow-v8--hover:hover { - -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); - box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); -} - -.u-shadow-v8-1 { - -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); - box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); -} - -/*------------------------------------ - Box-shadows-v9 -------------------------------------*/ -.u-shadow-v9 { - -webkit-box-shadow: 1px 1px 1px #eee; - box-shadow: 1px 1px 1px #eee; -} - -/*------------------------------------ - Box-shadows-v10 -------------------------------------*/ -.u-shadow-v10 { - -webkit-box-shadow: 2px 2px 2px #eee; - box-shadow: 2px 2px 2px #eee; -} - -/*------------------------------------ - Box-shadows-v11 -------------------------------------*/ -.u-shadow-v11 { - -webkit-box-shadow: 0 0 2px #ccc; - box-shadow: 0 0 2px #ccc; -} - -/*------------------------------------ - Box-shadows-v12 -------------------------------------*/ -.u-shadow-v12 { - -webkit-box-shadow: inset 2px 2px 2px 0 #ccc; - box-shadow: inset 2px 2px 2px 0 #ccc; -} - -/*------------------------------------ - Box-shadows-v13 -------------------------------------*/ -.u-shadow-v13 { - -webkit-box-shadow: inset 2px 2px 2px 0 #e74c3c; - box-shadow: inset 2px 2px 2px 0 #e74c3c; -} - -/*------------------------------------ - Box-shadows-v14 -------------------------------------*/ -.u-shadow-v14 { - -webkit-box-shadow: 2px 2px 2px 0 #eee; - box-shadow: 2px 2px 2px 0 #eee; -} - -/*------------------------------------ - Box-shadows-v15 -------------------------------------*/ -.u-shadow-v15 { - -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3); - box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3); -} - -/*------------------------------------ - Box-shadows-v16 -------------------------------------*/ -.u-shadow-v16 { - -webkit-box-shadow: inset 5px 5px 5px 0 rgba(17, 17, 17, 0.5); - box-shadow: inset 5px 5px 5px 0 rgba(17, 17, 17, 0.5); -} - -/*------------------------------------ - Box-shadows-v17 -------------------------------------*/ -.u-shadow-v17 { - -webkit-box-shadow: 3px 2px 8px 2px rgba(0, 0, 0, 0.17); - box-shadow: 3px 2px 8px 2px rgba(0, 0, 0, 0.17); -} - -/*------------------------------------ - Box-shadows-v18 -------------------------------------*/ -.u-shadow-v18 { - -webkit-box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15); - box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15); -} - -/*------------------------------------ - Box-shadows-v19 -------------------------------------*/ -.u-shadow-v19 { - -webkit-box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Box-shadows-v20 -------------------------------------*/ -.u-shadow-v20 { - -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); -} - -.u-shadow-v20--hover:hover { - -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); -} - -/*------------------------------------ - Box-shadows-v21 -------------------------------------*/ -.u-shadow-v21 { - -webkit-box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09); - box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09); - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; -} - -.u-shadow-v21--hover:hover { - -webkit-box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15); - box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15); -} - -/*------------------------------------ - Box-shadows-v22 -------------------------------------*/ -.u-shadow-v22 { - -webkit-box-shadow: 0 2px 5px #eee; - box-shadow: 0 2px 5px #eee; -} - -/*------------------------------------ - Box-shadows-v23 -------------------------------------*/ -.u-shadow-v23 { - -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2); - box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2); -} - -/*------------------------------------ - Box-shadows-v24 -------------------------------------*/ -.u-shadow-v24 { - -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); - box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); -} - -.g-parent.active .u-shadow-v24--active { - -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); - box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); -} - -/*------------------------------------ - Box-shadows-v25 -------------------------------------*/ -.u-shadow-v25 { - -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07); - box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07); -} - -/*------------------------------------ - Box-shadows-v26 -------------------------------------*/ -.u-shadow-v26 { - -webkit-box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.2); - box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.2); -} - -/*------------------------------------ - Box-shadows-v27 -------------------------------------*/ -.u-shadow-v27 { - -webkit-box-shadow: 0 0 3px #b5b5b5; - box-shadow: 0 0 3px #b5b5b5; -} - -/*------------------------------------ - Box-shadows-v28 -------------------------------------*/ -.u-shadow-v28 { - -webkit-box-shadow: 0 10px 45px -5px rgba(0, 0, 0, 0.04); - box-shadow: 0 10px 45px -5px rgba(0, 0, 0, 0.04); -} - -/*------------------------------------ - Box-shadows-v29 -------------------------------------*/ -.u-shadow-v29 { - -webkit-box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Box-shadows-v30 -------------------------------------*/ -.u-shadow-v30 { - -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} - -/*------------------------------------ - Box-shadows-v31 -------------------------------------*/ -.u-shadow-v31 { - -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.075); - box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.075); -} - -/*------------------------------------ - Box-shadows-v32 -------------------------------------*/ -.u-shadow-v32 { - -webkit-box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1); - box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Box-shadows-v33 -------------------------------------*/ -.u-shadow-v33 { - -webkit-box-shadow: 0 6px 15px -6px rgba(231, 76, 60, 0.3); - box-shadow: 0 6px 15px -6px rgba(231, 76, 60, 0.3); -} - -/*------------------------------------ - Box-shadows-v34 -------------------------------------*/ -.u-shadow-v34 { - -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Box-shadows-v35 -------------------------------------*/ -.u-shadow-v35 { - -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045); - box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045); -} - -.u-shadow-v35--active.active { - -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045); - box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045); - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; -} - -.u-shadow-v35.g-bg-teal-opacity-0_1 { - -webkit-box-shadow: 0 4px 7px 0 rgba(24, 186, 155, 0.175); - box-shadow: 0 4px 7px 0 rgba(24, 186, 155, 0.175); -} - -.u-shadow-v35.g-bg-purple-opacity-0_1 { - -webkit-box-shadow: 0 4px 7px 0 rgba(154, 105, 203, 0.175); - box-shadow: 0 4px 7px 0 rgba(154, 105, 203, 0.175); -} - -.u-shadow-v35.g-bg-blue-opacity-0_1 { - -webkit-box-shadow: 0 4px 7px 0 rgba(51, 152, 220, 0.175); - box-shadow: 0 4px 7px 0 rgba(51, 152, 220, 0.175); -} - -/*------------------------------------ - Box-shadows-v36 -------------------------------------*/ -.u-shadow-v36 { - -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.14); - box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.14); -} - -/*------------------------------------ - Box-shadows-v37 -------------------------------------*/ -.u-shadow-v37 { - -webkit-box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7); - box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7); -} - -.u-shadow-v37--hover:hover { - -webkit-box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7); - box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7); - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; -} - -/*------------------------------------ - Box-shadows-v38 -------------------------------------*/ -.u-shadow-v38 { - -webkit-box-shadow: 0 2px 35px 0 rgba(235, 237, 242, 0.7); - box-shadow: 0 2px 35px 0 rgba(235, 237, 242, 0.7); -} - -/*------------------------------------ - Box-shadows-v39 -------------------------------------*/ -.u-shadow-v39 { - -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Box-shadows-v40 -------------------------------------*/ -.u-shadow-v40 { - -webkit-box-shadow: -9px -9px 20px -9px rgba(0, 0, 0, 0.1); - box-shadow: -9px -9px 20px -9px rgba(0, 0, 0, 0.1); -} - -/*------------------------------------ - Form Elements -------------------------------------*/ -.u-form-control { - padding: .8rem 1rem .6rem; -} - -.u-form-control::-webkit-input-placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control:-ms-input-placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control::-ms-input-placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control::placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control::-moz-placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control::-webkit-input-placeholder { - color: inherit; - opacity: .3; -} - -.u-form-control-sm { - padding: .4rem .5rem .1rem; - font-size: .875rem; -} - -.u-form-control-lg { - padding: .75rem 1.5rem .55rem; - font-size: 1.25rem; -} - -.u-form-control-shadow--focus:focus { - -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); -} - -.u-textarea-expandable { - max-height: 42px; - -webkit-transition-property: max-height; - -o-transition-property: max-height; - transition-property: max-height; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-textarea-expandable:focus { - max-height: 90px; -} - -/*------------------------------------ - States -------------------------------------*/ -/*------------------------------------ - Success states -------------------------------------*/ -/*------------------------------------ - Success state v1-1 -------------------------------------*/ -.u-has-success-v1-1 .form-control, -.u-has-success-v1-1 .input-group-addon, -.u-has-success-v1-1 [class*="u-select"] { - background-color: #f0fff0; - border-color: #e74c3c; -} - -.u-has-success-v1-1 .form-control[readonly], -.u-has-success-v1-1 .input-group-addon[readonly], -.u-has-success-v1-1 [class*="u-select"][readonly] { - background-color: #f0fff0; -} - -.u-has-success-v1-1 .form-control-feedback { - color: #e74c3c; -} - -.u-has-success-v1-1 [class*="u-check-icon"] { - color: #f0fff0; - background-color: #f0fff0; -} - -.u-has-success-v1-1 [class*="u-check-icon"] i { - color: rgba(231, 76, 60, 0.2); -} - -.u-has-success-v1-1 .input-group-addon, -.u-has-success-v1-1 .input-group-addon:last-child, -.u-has-success-v1-1 .chosen-single div b { - color: #e74c3c; -} - -/*------------------------------------ - Success state v1-2 -------------------------------------*/ -.u-has-success-v1-2 { - position: relative; -} - -.u-has-success-v1-2 .form-control, -.u-has-success-v1-2 .input-group-addon, -.u-has-success-v1-2 [class*="u-select"] { - background-color: #f0fff0; - border-color: #e74c3c; -} - -.u-has-success-v1-2 .form-control[readonly], -.u-has-success-v1-2 .input-group-addon[readonly], -.u-has-success-v1-2 [class*="u-select"][readonly] { - background-color: #f0fff0; -} - -.u-has-success-v1-2 .form-control-feedback { - color: #e74c3c; -} - -.u-has-success-v1-2 [class*="u-check-icon"] { - color: #f0fff0; - background-color: #f0fff0; - border-radius: 50%; -} - -.u-has-success-v1-2 [class*="u-check-icon"] i { - color: rgba(231, 76, 60, 0.2); -} - -.u-has-success-v1-2 .input-group-addon, -.u-has-success-v1-2 .input-group-addon:last-child, -.u-has-success-v1-2 .chosen-single div b { - color: #e74c3c; -} - -.u-has-success-v1-2 .input-group-addon, -.u-has-success-v1-2 .input-group-addon:last-child { - color: #fff; - background-color: #e74c3c; -} - -.u-has-success-v1-2 .form-control-feedback::before { - content: ""; - position: absolute; - bottom: -3px; - right: 18px; - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 3px 3px 0 3px; - border-color: #e74c3c transparent transparent transparent; -} - -/*------------------------------------ - Error states -------------------------------------*/ -/*------------------------------------ - Error state v1 -------------------------------------*/ -.u-has-error-v1 .form-control, -.u-has-error-v1 .input-group-addon, -.u-has-error-v1 [class*="u-select"] { - background-color: #fff0f0; -} - -.u-has-error-v1 .form-control[readonly], -.u-has-error-v1 .input-group-addon[readonly], -.u-has-error-v1 [class*="u-select"][readonly] { - background-color: #fff0f0; -} - -.u-has-error-v1 .form-control-feedback { - color: #f00; -} - -.u-has-error-v1 [class*="u-check-icon"] { - background-color: #fff0f0; -} - -/*------------------------------------ - Error state v1-2 -------------------------------------*/ -.u-has-error-v1-2 .form-control, -.u-has-error-v1-2 .input-group-addon, -.u-has-error-v1-2 [class*="u-select"] { - background-color: #fff0f0; - border-color: #f00; -} - -.u-has-error-v1-2 .form-control[readonly], -.u-has-error-v1-2 .input-group-addon[readonly], -.u-has-error-v1-2 [class*="u-select"][readonly] { - background-color: #fff0f0; -} - -.u-has-error-v1-2 .form-control-feedback { - color: #f00; -} - -.u-has-error-v1-2 [class*="u-check-icon"] { - background-color: #fff0f0; -} - -.u-has-error-v1-2 .input-group-addon:last-child, -.u-has-error-v1-2 .chosen-single div b { - color: #f00; -} - -.u-has-error-v1-2 .error { - display: block; -} - -/*------------------------------------ - Error state v1-3 -------------------------------------*/ -.u-has-error-v1-3 { - position: relative; -} - -.u-has-error-v1-3 .form-control, -.u-has-error-v1-3 .input-group-addon, -.u-has-error-v1-3 [class*="u-select"] { - background-color: #fff0f0; - border-color: #f00; -} - -.u-has-error-v1-3 .form-control[readonly], -.u-has-error-v1-3 .input-group-addon[readonly], -.u-has-error-v1-3 [class*="u-select"][readonly] { - background-color: #fff0f0; -} - -.u-has-error-v1-3 .form-control-feedback { - color: #f00; -} - -.u-has-error-v1-3 .form-control-feedback::before { - content: ""; - position: absolute; - bottom: -3px; - right: 18px; - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 3px 3px 0 3px; - border-color: #f00 transparent transparent transparent; -} - -.u-has-error-v1-3 [class*="u-check-icon"] { - background-color: #fff0f0; -} - -.u-has-error-v1-3 .input-group-addon:last-child, -.u-has-error-v1-3 .chosen-single div b { - color: #f00; -} - -.u-has-error-v1-3 .error { - display: block; -} - -.u-has-error-v1-3 .input-group-addon, -.u-has-error-v1-3 .input-group-addon:last-child { - color: #fff; - background-color: #f00; -} - -/*------------------------------------ - Error state v2 -------------------------------------*/ -.u-has-error-v2:after { - content: '\f00d'; - position: absolute; - top: 50%; - right: 15px; - font-family: 'FontAwesome', sans-serif; - color: #f00; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-has-error-v2 input:not([type="checkbox"]):not([type="radio"]), -.u-has-error-v2 textarea { - border-color: #f00; -} - -/*------------------------------------ - Disabled states -------------------------------------*/ -/*------------------------------------ - Disabled state v1 -------------------------------------*/ -.u-has-disabled-v1 label, -.u-has-disabled-v1 .form-control, -.u-has-disabled-v1 .input-group-addon, -.u-has-disabled-v1 [class*="u-select"] { - background-color: #fff; - opacity: .5; -} - -.u-has-disabled-v1 label:disabled, -.u-has-disabled-v1 .form-control:disabled, -.u-has-disabled-v1 .input-group-addon:disabled, -.u-has-disabled-v1 [class*="u-select"]:disabled { - background-color: #fff; - opacity: .5; -} - -/*------------------------------------ - Checked state colors -------------------------------------*/ -/* White Colors */ -input[type="checkbox"]:checked + .g-color-white--checked, -input[type="radio"]:checked + .g-color-white--checked, -input[type="checkbox"]:checked + * .g-color-white--checked, -input[type="radio"]:checked + * .g-color-white--checked { - color: #fff !important; -} - -.g-color-white--checked.g-checked, -.g-checked .g-color-white--checked { - color: #fff !important; -} - -/*------------------------------------ - Focus state color -------------------------------------*/ -/* Primary Colors */ -.g-color-primary:focus { - color: #e74c3c; -} - -/* Black Colors */ -.g-color-black--focus:focus { - color: #000; -} - -/* White Colors */ -.g-color-white--focus:focus { - color: #fff !important; -} - -/* Gray Colors */ -.g-color-gray-light-v4:focus { - color: #eee !important; -} - -/*------------------------------------ - Checked state background -------------------------------------*/ -/* Primary Colors */ -input[type="checkbox"]:checked + .g-bg-primary--checked, -input[type="radio"]:checked + .g-bg-primary--checked, -input[type="checkbox"]:checked + * .g-bg-primary--checked, -input[type="radio"]:checked + * .g-bg-primary--checked { - background-color: #e74c3c !important; -} - -.g-bg-primary--checked.g-checked, -.g-checked .g-bg-primary--checked { - background-color: #e74c3c !important; -} - -/* Black Colors */ -input[type="checkbox"]:checked + .g-bg-black--checked, -input[type="radio"]:checked + .g-bg-black--checked, -input[type="checkbox"]:checked + * .g-bg-black--checked, -input[type="radio"]:checked + * .g-bg-black--checked { - background-color: #000 !important; -} - -.g-bg-black--checked.g-checked, -.g-checked .g-bg-black--checked { - background-color: #000 !important; -} - -/* White Colors */ -input[type="checkbox"]:checked + .g-bg-white--checked, -input[type="radio"]:checked + .g-bg-white--checked, -input[type="checkbox"]:checked + * .g-bg-white--checked, -input[type="radio"]:checked + * .g-bg-white--checked { - background-color: #fff !important; -} - -.g-bg-white--checked.g-checked, -.g-checked .g-bg-white--checked { - background-color: #fff !important; -} - -/* Gray Colors */ -input[type="checkbox"]:checked + .g-bg-dark-dark-v1--checked, -input[type="radio"]:checked + .g-bg-dark-dark-v1--checked, -input[type="checkbox"]:checked + * .g-bg-dark-dark-v1--checked, -input[type="radio"]:checked + * .g-bg-dark-dark-v1--checked { - background-color: #111 !important; -} - -.g-bg-dark-dark-v1--checked.g-checked, -.g-checked .g-bg-dark-dark-v1--checked { - background-color: #111 !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-dark-v2--checked, -input[type="radio"]:checked + .g-bg-dark-dark-v2--checked, -input[type="checkbox"]:checked + * .g-bg-dark-dark-v2--checked, -input[type="radio"]:checked + * .g-bg-dark-dark-v2--checked { - background-color: #333 !important; -} - -.g-bg-dark-dark-v2--checked.g-checked, -.g-checked .g-bg-dark-dark-v2--checked { - background-color: #333 !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-dark-v3--checked, -input[type="radio"]:checked + .g-bg-dark-dark-v3--checked, -input[type="checkbox"]:checked + * .g-bg-dark-dark-v3--checked, -input[type="radio"]:checked + * .g-bg-dark-dark-v3--checked { - background-color: #555 !important; -} - -.g-bg-dark-dark-v3--checked.g-checked, -.g-checked .g-bg-dark-dark-v3--checked { - background-color: #555 !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-dark-v4--checked, -input[type="radio"]:checked + .g-bg-dark-dark-v4--checked, -input[type="checkbox"]:checked + * .g-bg-dark-dark-v4--checked, -input[type="radio"]:checked + * .g-bg-dark-dark-v4--checked { - background-color: #777 !important; -} - -.g-bg-dark-dark-v4--checked.g-checked, -.g-checked .g-bg-dark-dark-v4--checked { - background-color: #777 !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-dark-v5--checked, -input[type="radio"]:checked + .g-bg-dark-dark-v5--checked, -input[type="checkbox"]:checked + * .g-bg-dark-dark-v5--checked, -input[type="radio"]:checked + * .g-bg-dark-dark-v5--checked { - background-color: #999 !important; -} - -.g-bg-dark-dark-v5--checked.g-checked, -.g-checked .g-bg-dark-dark-v5--checked { - background-color: #999 !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-light-v1--checked, -input[type="radio"]:checked + .g-bg-dark-light-v1--checked, -input[type="checkbox"]:checked + * .g-bg-dark-light-v1--checked, -input[type="radio"]:checked + * .g-bg-dark-light-v1--checked { - background-color: #bbb !important; -} - -.g-bg-dark-light-v1--checked.g-checked, -.g-checked .g-bg-dark-light-v1--checked { - background-color: #bbb !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-light-v2--checked, -input[type="radio"]:checked + .g-bg-dark-light-v2--checked, -input[type="checkbox"]:checked + * .g-bg-dark-light-v2--checked, -input[type="radio"]:checked + * .g-bg-dark-light-v2--checked { - background-color: #ccc !important; -} - -.g-bg-dark-light-v2--checked.g-checked, -.g-checked .g-bg-dark-light-v2--checked { - background-color: #ccc !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-light-v3--checked, -input[type="radio"]:checked + .g-bg-dark-light-v3--checked, -input[type="checkbox"]:checked + * .g-bg-dark-light-v3--checked, -input[type="radio"]:checked + * .g-bg-dark-light-v3--checked { - background-color: #ddd !important; -} - -.g-bg-dark-light-v3--checked.g-checked, -.g-checked .g-bg-dark-light-v3--checked { - background-color: #ddd !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-light-v4--checked, -input[type="radio"]:checked + .g-bg-dark-light-v4--checked, -input[type="checkbox"]:checked + * .g-bg-dark-light-v4--checked, -input[type="radio"]:checked + * .g-bg-dark-light-v4--checked { - background-color: #eee !important; -} - -.g-bg-dark-light-v4--checked.g-checked, -.g-checked .g-bg-dark-light-v4--checked { - background-color: #eee !important; -} - -input[type="checkbox"]:checked + .g-bg-dark-light-v5--checked, -input[type="radio"]:checked + .g-bg-dark-light-v5--checked, -input[type="checkbox"]:checked + * .g-bg-dark-light-v5--checked, -input[type="radio"]:checked + * .g-bg-dark-light-v5--checked { - background-color: #f7f7f7 !important; -} - -.g-bg-dark-light-v5--checked.g-checked, -.g-checked .g-bg-dark-light-v5--checked { - background-color: #f7f7f7 !important; -} - -/* Transparent */ -input[type="checkbox"]:checked + .g-bg-transparent--checked, -input[type="radio"]:checked + .g-bg-transparent--checked, -input[type="checkbox"]:checked + * .g-bg-transparent--checked, -input[type="radio"]:checked + * .g-bg-transparent--checked { - background-color: transparent !important; -} - -.g-bg-transparent--checked.g-checked, -.g-checked .g-bg-transparent--checked { - background-color: transparent !important; -} - -/* Color Red */ -input[type="checkbox"]:checked + .g-bg-red--checked, -input[type="radio"]:checked + .g-bg-red--checked, -input[type="checkbox"]:checked + * .g-bg-red--checked, -input[type="radio"]:checked + * .g-bg-red--checked { - background-color: #f00 !important; -} - -.g-bg-red--checked.g-checked, -.g-checked .g-bg-red--checked { - background-color: #f00 !important; -} - -/*------------------------------------ - Checked state Colors -------------------------------------*/ -/* Primary Colors */ -input[type="checkbox"]:checked + .g-color-primary--checked, -input[type="radio"]:checked + .g-color-primary--checked, -input[type="checkbox"]:checked + * .g-color-primary--checked, -input[type="radio"]:checked + * .g-color-primary--checked { - color: #e74c3c !important; -} - -.g-color-primary--checked.g-checked, -.g-checked .g-color-primary--checked { - color: #e74c3c !important; -} - -/*------------------------------------ - Focus state background -------------------------------------*/ -/* Black Colors */ -.g-bg-black--focus:focus { - background-color: #000 !important; -} - -.g-bg-black-opacity-0_2--focus:focus { - background-color: rgba(0, 0, 0, 0.2) !important; -} - -.g-bg-black-opacity-0_4--focus:focus { - background-color: rgba(0, 0, 0, 0.4) !important; -} - -/* Gray Colors */ -.g-bg-gray-dark-v1--focus:focus { - background-color: #111 !important; -} - -.g-bg-gray-dark-v2--focus:focus { - background-color: #333 !important; -} - -.g-bg-gray-dark-v3--focus:focus { - background-color: #555 !important; -} - -.g-bg-gray-light-v4--focus:focus { - background-color: #eee !important; -} - -.g-bg-gray-light-v5--focus:focus { - background-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-bg-transparent--focus:focus { - background-color: transparent; -} - -/*------------------------------------ - Checked state border -------------------------------------*/ -/* Primary Colors */ -input[type="checkbox"]:checked + .g-brd-primary--checked, -input[type="radio"]:checked + .g-brd-primary--checked, -input[type="checkbox"]:checked + * .g-brd-primary--checked, -input[type="radio"]:checked + * .g-brd-primary--checked { - border-color: #e74c3c !important; -} - -.g-brd-primary--checked.g-checked, -.g-checked .g-brd-primary--checked { - border-color: #e74c3c !important; -} - -/* Black Colors */ -input[type="checkbox"]:checked + .g-brd-black--checked, -input[type="radio"]:checked + .g-brd-black--checked, -input[type="checkbox"]:checked + * .g-brd-black--checked, -input[type="radio"]:checked + * .g-brd-black--checked { - border-color: #000 !important; -} - -.g-brd-black--checked.g-checked, -.g-checked .g-brd-black--checked { - border-color: #000 !important; -} - -/* White */ -input[type="checkbox"]:checked + .g-brd-white--checked, -input[type="radio"]:checked + .g-brd-white--checked, -input[type="checkbox"]:checked + * .g-brd-white--checked, -input[type="radio"]:checked + * .g-brd-white--checked { - border-color: #fff !important; -} - -.g-brd-white--checked.g-checked, -.g-checked .g-brd-white--checked { - border-color: #fff !important; -} - -/* Gray Colors */ -input[type="checkbox"]:checked + .g-brd-gray-dark-v1--checked, -input[type="radio"]:checked + .g-brd-gray-dark-v1--checked, -input[type="checkbox"]:checked + * .g-brd-gray-dark-v1--checked, -input[type="radio"]:checked + * .g-brd-gray-dark-v1--checked { - border-color: #111 !important; -} - -.g-brd-gray-dark-v1--checked.g-checked, -.g-checked .g-brd-gray-dark-v1--checked { - border-color: #111 !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-dark-v2--checked, -input[type="radio"]:checked + .g-brd-gray-dark-v2--checked, -input[type="checkbox"]:checked + * .g-brd-gray-dark-v2--checked, -input[type="radio"]:checked + * .g-brd-gray-dark-v2--checked { - border-color: #333 !important; -} - -.g-brd-gray-dark-v2--checked.g-checked, -.g-checked .g-brd-gray-dark-v2--checked { - border-color: #333 !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-dark-v3--checked, -input[type="radio"]:checked + .g-brd-gray-dark-v3--checked, -input[type="checkbox"]:checked + * .g-brd-gray-dark-v3--checked, -input[type="radio"]:checked + * .g-brd-gray-dark-v3--checked { - border-color: #555 !important; -} - -.g-brd-gray-dark-v3--checked.g-checked, -.g-checked .g-brd-gray-dark-v3--checked { - border-color: #555 !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-dark-v4--checked, -input[type="radio"]:checked + .g-brd-gray-dark-v4--checked, -input[type="checkbox"]:checked + * .g-brd-gray-dark-v4--checked, -input[type="radio"]:checked + * .g-brd-gray-dark-v4--checked { - border-color: #777 !important; -} - -.g-brd-gray-dark-v4--checked.g-checked, -.g-checked .g-brd-gray-dark-v4--checked { - border-color: #777 !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-dark-v5--checked, -input[type="radio"]:checked + .g-brd-gray-dark-v5--checked, -input[type="checkbox"]:checked + * .g-brd-gray-dark-v5--checked, -input[type="radio"]:checked + * .g-brd-gray-dark-v5--checked { - border-color: #999 !important; -} - -.g-brd-gray-dark-v5--checked.g-checked, -.g-checked .g-brd-gray-dark-v5--checked { - border-color: #999 !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-light-v1--checked, -input[type="radio"]:checked + .g-brd-gray-light-v1--checked, -input[type="checkbox"]:checked + * .g-brd-gray-light-v1--checked, -input[type="radio"]:checked + * .g-brd-gray-light-v1--checked { - border-color: #bbb !important; -} - -.g-brd-gray-light-v1--checked.g-checked, -.g-checked .g-brd-gray-light-v1--checked { - border-color: #bbb !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-light-v2--checked, -input[type="radio"]:checked + .g-brd-gray-light-v2--checked, -input[type="checkbox"]:checked + * .g-brd-gray-light-v2--checked, -input[type="radio"]:checked + * .g-brd-gray-light-v2--checked { - border-color: #ccc !important; -} - -.g-brd-gray-light-v2--checked.g-checked, -.g-checked .g-brd-gray-light-v2--checked { - border-color: #ccc !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-light-v3--checked, -input[type="radio"]:checked + .g-brd-gray-light-v3--checked, -input[type="checkbox"]:checked + * .g-brd-gray-light-v3--checked, -input[type="radio"]:checked + * .g-brd-gray-light-v3--checked { - border-color: #ddd !important; -} - -.g-brd-gray-light-v3--checked.g-checked, -.g-checked .g-brd-gray-light-v3--checked { - border-color: #ddd !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-light-v4--checked, -input[type="radio"]:checked + .g-brd-gray-light-v4--checked, -input[type="checkbox"]:checked + * .g-brd-gray-light-v4--checked, -input[type="radio"]:checked + * .g-brd-gray-light-v4--checked { - border-color: #eee !important; -} - -.g-brd-gray-light-v4--checked.g-checked, -.g-checked .g-brd-gray-light-v4--checked { - border-color: #eee !important; -} - -input[type="checkbox"]:checked + .g-brd-gray-light-v5--checked, -input[type="radio"]:checked + .g-brd-gray-light-v5--checked, -input[type="checkbox"]:checked + * .g-brd-gray-light-v5--checked, -input[type="radio"]:checked + * .g-brd-gray-light-v5--checked { - border-color: #f7f7f7 !important; -} - -.g-brd-gray-light-v5--checked.g-checked, -.g-checked .g-brd-gray-light-v5--checked { - border-color: #f7f7f7 !important; -} - -/* Transparent */ -input[type="checkbox"]:checked + .g-brd-transparent--checked, -input[type="radio"]:checked + .g-brd-transparent--checked, -input[type="checkbox"]:checked + * .g-brd-transparent--checked, -input[type="radio"]:checked + * .g-brd-transparent--checked { - border-color: transparent !important; -} - -.g-brd-transparent--checked.g-checked, -.g-checked .g-brd-transparent--checked { - border-color: transparent !important; -} - -/* Color Red */ -input[type="checkbox"]:checked + .g-brd-red--checked, -input[type="radio"]:checked + .g-brd-red--checked, -input[type="checkbox"]:checked + * .g-brd-red--checked, -input[type="radio"]:checked + * .g-brd-red--checked { - border-color: #f00 !important; -} - -.g-brd-red--checked.g-checked, -.g-checked .g-brd-red--checked { - border-color: #f00 !important; -} - -/*------------------------------------ - Focus state border -------------------------------------*/ -/* Primary Colors */ -.g-brd-primary--focus:focus, -.g-brd-primary--focus.g-state-focus *, -.g-brd-primary--focus.g-state-focus *:focus { - border-color: #e74c3c !important; -} - -/* Black Colors */ -.g-brd-black--focus:focus, -.g-brd-black--focus.g-state-focus *, -.g-brd-black--focus.g-state-focus *:focus { - border-color: #000 !important; -} - -/* White */ -.g-brd-white--focus:focus, -.g-brd-white--focus.g-state-focus *, -.g-brd-white--focus.g-state-focus *:focus { - border-color: #fff !important; -} - -/* Gray Colors */ -.g-brd-gray-dark-v1--focus:focus, -.g-brd-gray-dark-v1--focus.g-state-focus *, -.g-brd-gray-dark-v1--focus.g-state-focus *:focus { - border-color: #111 !important; -} - -.g-brd-gray-dark-v2--focus:focus, -.g-brd-gray-dark-v2--focus.g-state-focus *, -.g-brd-gray-dark-v2--focus.g-state-focus *:focus { - border-color: #333 !important; -} - -.g-brd-gray-dark-v3--focus:focus, -.g-brd-gray-dark-v3--focus.g-state-focus *, -.g-brd-gray-dark-v3--focus.g-state-focus *:focus { - border-color: #555 !important; -} - -.g-brd-gray-dark-v4--focus:focus, -.g-brd-gray-dark-v4--focus.g-state-focus *, -.g-brd-gray-dark-v4--focus.g-state-focus *:focus { - border-color: #777 !important; -} - -.g-brd-gray-dark-v5--focus:focus, -.g-brd-gray-dark-v5--focus.g-state-focus *, -.g-brd-gray-dark-v5--focus.g-state-focus *:focus { - border-color: #999 !important; -} - -.g-brd-gray-dark-light-v1--focus:focus, -.g-brd-gray-dark-light-v1--focus.g-state-focus *, -.g-brd-gray-dark-light-v1--focus.g-state-focus *:focus { - border-color: #bbb !important; -} - -.g-brd-gray-dark-light-v2--focus:focus, -.g-brd-gray-dark-light-v2--focus.g-state-focus *, -.g-brd-gray-dark-light-v2--focus.g-state-focus *:focus { - border-color: #ccc !important; -} - -.g-brd-gray-dark-light-v3--focus:focus, -.g-brd-gray-dark-light-v3--focus.g-state-focus *, -.g-brd-gray-dark-light-v3--focus.g-state-focus *:focus { - border-color: #ddd !important; -} - -.g-brd-gray-dark-light-v4--focus:focus, -.g-brd-gray-dark-light-v4--focus.g-state-focus *, -.g-brd-gray-dark-light-v4--focus.g-state-focus *:focus { - border-color: #eee !important; -} - -.g-brd-gray-dark-light-v5--focus:focus, -.g-brd-gray-dark-light-v5--focus.g-state-focus *, -.g-brd-gray-dark-light-v5--focus.g-state-focus *:focus { - border-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-brd-transparent--focus:focus, -.g-brd-transparent--focus.g-state-focus *, -.g-brd-transparent--focus.g-state-focus *:focus { - border-color: transparent !important; -} - -/* Color Red */ -.g-brd-red--focus:focus, -.g-brd-red--focus.g-state-focus *, -.g-brd-red--focus.g-state-focus *:focus { - border-color: #f00 !important; -} - -/*------------------------------------ - Checked state box shadow -------------------------------------*/ -input[type="checkbox"]:checked + .u-shadow-v1-5--checked, -input[type="radio"]:checked + .u-shadow-v1-5--checked, -input[type="checkbox"]:checked + * .u-shadow-v1-5--checked, -input[type="radio"]:checked + * .u-shadow-v1-5--checked { - -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-5--checked.g-checked, -.g-checked .u-shadow-v1-5--checked { - -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); -} - -input[type="checkbox"]:checked + .u-shadow-v1-v6--checked, -input[type="radio"]:checked + .u-shadow-v1-v6--checked, -input[type="checkbox"]:checked + * .u-shadow-v1-v6--checked, -input[type="radio"]:checked + * .u-shadow-v1-v6--checked { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); -} - -.u-shadow-v1-v6--checked.g-checked, -.g-checked .u-shadow-v1-v6--checked { - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); -} - -/*------------------------------------ - Checked state opacity -------------------------------------*/ -input[type="checkbox"]:checked + .g-opacity-1--checked, -input[type="radio"]:checked + .g-opacity-1--checked, -input[type="checkbox"]:checked + * .g-opacity-1--checked, -input[type="radio"]:checked + * .g-opacity-1--checked { - opacity: 1; -} - -.g-opacity-1--checked.g-checked, -.g-checked .g-opacity-1--checked { - opacity: 1; -} - -/*------------------------------------ - Checked state overlay -------------------------------------*/ -input[type="checkbox"]:checked + .g-overlay-black-0_5--checked::after, -input[type="radio"]:checked + .g-overlay-black-0_5--checked::after, -input[type="checkbox"]:checked + * > .g-overlay-black-0_5--checked::after, -input[type="radio"]:checked + * > .g-overlay-black-0_5--checked::after { - background-color: rgba(0, 0, 0, 0.5); -} - -input[type="checkbox"]:checked + .g-overlay-black-0_7--checked::after, -input[type="radio"]:checked + .g-overlay-black-0_7--checked::after, -input[type="checkbox"]:checked + * > .g-overlay-black-0_7--checked::after, -input[type="radio"]:checked + * > .g-overlay-black-0_7--checked::after { - background-color: rgba(0, 0, 0, 0.7); -} - -input[type="checkbox"]:checked + .g-overlay-black-gradient-v1--checked::after, -input[type="radio"]:checked + .g-overlay-black-gradient-v1--checked::after, -input[type="checkbox"]:checked + * > .g-overlay-black-gradient-v1--checked::after, -input[type="radio"]:checked + * > .g-overlay-black-gradient-v1--checked::after { - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), to(#000)); - background-image: -webkit-linear-gradient(top, transparent 40%, #000 100%); - background-image: -o-linear-gradient(top, transparent 40%, #000 100%); - background-image: linear-gradient(to bottom, transparent 40%, #000 100%); -} - -input[type="checkbox"]:checked + .g-overlay-primary-0_5--checked::after, -input[type="radio"]:checked + .g-overlay-primary-0_5--checked::after, -input[type="checkbox"]:checked + * .g-overlay-primary-0_5--checked::after, -input[type="radio"]:checked + * .g-overlay-primary-0_5--checked::after { - background-color: rgba(231, 76, 60, 0.5); -} - -.g-overlay-primary-0_5--checked.g-checked::after, -.g-checked .g-overlay-primary-0_5--checked::after { - background-color: rgba(231, 76, 60, 0.5); -} - -input[type="checkbox"]:checked + .g-overlay-primary-0_9--checked::after, -input[type="radio"]:checked + .g-overlay-primary-0_9--checked::after, -input[type="checkbox"]:checked + * .g-overlay-primary-0_9--checked::after, -input[type="radio"]:checked + * .g-overlay-primary-0_9--checked::after { - background-color: rgba(231, 76, 60, 0.9); -} - -.g-overlay-primary-0_9--checked.g-checked::after, -.g-checked .g-overlay-primary-0_9--checked::after { - background-color: rgba(231, 76, 60, 0.9); -} - -/*------------------------------------ - Fields -------------------------------------*/ -[data-capitalize] { - text-transform: uppercase; -} - -label.error { - color: #d9534f; - margin-top: .25rem; - margin-bottom: 0; -} - -input:not([type="checkbox"]):not([type="radio"]).error, -textarea.error, -select.error { - border-color: #d9534f !important; -} - -.js-autocomplete--ajax { - position: relative; - z-index: 10; -} - -/*------------------------------------ - Fields Group v1 -------------------------------------*/ -.u-input-group-v1 { - position: relative; -} - -.u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]), -.u-input-group-v1 textarea, -.u-input-group-v1 [class*="u-select"] { - line-height: 1.75rem; - padding: 40px 15px 10px; -} - -.u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label, -.u-input-group-v1 textarea:focus + label, -.u-input-group-v1 textarea[value] + label, -.u-input-group-v1 textarea[placeholder] + label, -.u-input-group-v1 textarea.g-state-not-empty + label, -.u-input-group-v1 [class*="u-select"]:focus + label, -.u-input-group-v1 [class*="u-select"][value] + label, -.u-input-group-v1 [class*="u-select"][placeholder] + label, -.u-input-group-v1 [class*="u-select"].g-state-not-empty + label { - top: 20px; - font-size: 90%; -} - -.u-input-group-v1 label { - position: absolute; - top: 50%; - left: 15px; - -webkit-transition-property: top, font-size; - -o-transition-property: top, font-size; - transition-property: top, font-size; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - margin-bottom: 0; -} - -/*------------------------------------ - Fields Group v2 -------------------------------------*/ -.u-input-group-v2 { - position: relative; -} - -.u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]), -.u-input-group-v2 textarea, -.u-input-group-v2 [class*="u-select"] { - line-height: 1.75rem; - padding: 10px 15px; -} - -.u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label, -.u-input-group-v2 textarea:focus + label, -.u-input-group-v2 textarea[value] + label, -.u-input-group-v2 textarea[placeholder] + label, -.u-input-group-v2 textarea.g-state-not-empty + label, -.u-input-group-v2 [class*="u-select"]:focus + label, -.u-input-group-v2 [class*="u-select"][value] + label, -.u-input-group-v2 [class*="u-select"][placeholder] + label, -.u-input-group-v2 [class*="u-select"].g-state-not-empty + label { - top: 0; - font-size: 90%; -} - -.u-input-group-v2 label { - position: absolute; - top: 50%; - left: 10px; - background-color: #fff; - padding: 0 5px; - margin-bottom: 0; - -webkit-transition-property: top, font-size; - -o-transition-property: top, font-size; - transition-property: top, font-size; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-input-group-v2 textarea + label { - top: 20px; -} - -/*------------------------------------ - Fields Group v3 -------------------------------------*/ -.u-input-group-v3 input:not([type="checkbox"]):not([type="radio"]), -.u-input-group-v3 textarea, -.u-input-group-v3 [class*="u-select"] { - margin-top: -5px; - border-color: rgba(204, 204, 204, 0.5); - border-style: solid; - border-width: 0 0 1px; - -webkit-transition: all .3s ease 0s; - -o-transition: all .3s ease 0s; - transition: all .3s ease 0s; -} - -.u-input-group-v3 input:not([type="checkbox"]):not([type="radio"]):focus, -.u-input-group-v3 textarea:focus, -.u-input-group-v3 [class*="u-select"]:focus { - border-color: rgba(231, 76, 60, 0.5); - -webkit-box-shadow: 0 1px 0 0 #e74c3c; - box-shadow: 0 1px 0 0 #e74c3c; -} - -.u-input-group-v3 label { - margin-bottom: 0; -} - -/*------------------------------------ - Fields Group v4 -------------------------------------*/ -.u-input-group-v4 { - position: relative; -} - -.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]), -.u-input-group-v4 textarea, -.u-input-group-v4 [class*="u-select"] { - background-color: transparent; - border-color: rgba(204, 204, 204, 0.5); - border-style: solid; - border-width: 0 0 1px; -} - -.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]):focus, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[value], .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[placeholder], .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty, -.u-input-group-v4 textarea:focus, -.u-input-group-v4 textarea[value], -.u-input-group-v4 textarea[placeholder], -.u-input-group-v4 textarea.g-state-not-empty, -.u-input-group-v4 [class*="u-select"]:focus, -.u-input-group-v4 [class*="u-select"][value], -.u-input-group-v4 [class*="u-select"][placeholder], -.u-input-group-v4 [class*="u-select"].g-state-not-empty { - background-color: transparent; - border-color: rgba(231, 76, 60, 0.5); - -webkit-box-shadow: 0 1px 0 0 #e74c3c; - box-shadow: 0 1px 0 0 #e74c3c; -} - -.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label, -.u-input-group-v4 textarea:focus + label, -.u-input-group-v4 textarea[value] + label, -.u-input-group-v4 textarea[placeholder] + label, -.u-input-group-v4 textarea.g-state-not-empty + label, -.u-input-group-v4 [class*="u-select"]:focus + label, -.u-input-group-v4 [class*="u-select"][value] + label, -.u-input-group-v4 [class*="u-select"][placeholder] + label, -.u-input-group-v4 [class*="u-select"].g-state-not-empty + label { - top: 0; - font-size: 90%; -} - -.u-input-group-v4 label { - position: absolute; - top: 50%; - left: 0; - margin-bottom: 0; - background-color: transparent; - color: #999; - -webkit-transition-property: top, font-size; - -o-transition-property: top, font-size; - transition-property: top, font-size; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-input-group-v4 textarea + label { - top: 20px; -} - -/*------------------------------------ - Checkboxes -------------------------------------*/ -.u-check { - position: relative; - cursor: pointer; -} - -.u-check-icon-font { - display: inline-block; - font-size: 0; - padding-left: 1px; - padding-right: 1px; -} - -.u-check-icon-font i { - font-size: 22px; - color: #ccc; -} - -.u-check-icon-font i::before { - content: attr(data-uncheck-icon); -} - -.u-check-icon-checkbox, .u-check-icon-radio { - display: inline-block; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-font i, -.u-check input[type="checkbox"]:checked + * .u-check-icon-font i, -.u-check input[type="radio"]:checked + .u-check-icon-font i, -.u-check input[type="radio"]:checked + * .u-check-icon-font i { - color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-font i::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-font i::before, -.u-check input[type="radio"]:checked + .u-check-icon-font i::before, -.u-check input[type="radio"]:checked + * .u-check-icon-font i::before { - content: attr(data-check-icon); -} - -.g-hide-check { - display: block !important; -} - -.g-checked > * .g-hide-check, -input[type="checkbox"]:checked + .g-hide-check, -input[type="radio"]:checked + .g-hide-check, -input[type="checkbox"]:checked + * .g-hide-check, -input[type="radio"]:checked + * .g-hide-check { - display: none !important; -} - -.g-show-check { - display: none !important; -} - -.g-checked > * .g-show-check, -input[type="checkbox"]:checked + .g-show-check, -input[type="radio"]:checked + .g-show-check, -input[type="checkbox"]:checked + * .g-show-check, -input[type="radio"]:checked + * .g-show-check { - display: block !important; -} - -/*------------------------------------ - Checkboxes v1 -------------------------------------*/ -.u-check-icon-checkbox-v1, .u-check-icon-radio-v1 { - background-color: #fff; - border: solid 1px #ccc; -} - -.u-check-icon-checkbox-v1 { - border-radius: 1px; -} - -.u-check-icon-radio-v1 { - border-radius: 50%; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v1, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v1, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v1, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v1 { - color: #fff; - background-color: #e74c3c; - border-color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v1::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v1::before, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v1::before, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v1::before { - content: attr(data-check-icon); - position: absolute; - top: 50%; - left: 50%; - font-size: 12px; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v1, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v1, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v1, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v1 { - border-width: 4px; - border-color: #e74c3c; -} - -/*------------------------------------ - Checkboxes v2 -------------------------------------*/ -.u-check-icon-checkbox-v2, .u-check-icon-radio-v2 { - width: 20px; - height: 20px; - border: solid 1px #e74c3c; -} - -.u-check-icon-checkbox-v2 { - border-radius: 1px; -} - -.u-check-icon-radio-v2 { - border-radius: 50%; -} - -/*------------------------------------ - Checkboxes v3 -------------------------------------*/ -.u-check-icon-checkbox-v3, .u-check-icon-radio-v3 { - width: 40px; - height: 40px; - border: solid 1px #e74c3c; - border-radius: 50%; -} - -/*------------------------------------ - Checkboxes v4 -------------------------------------*/ -.u-check-icon-checkbox-v4, .u-check-icon-radio-v4 { - width: 18px; - height: 18px; - font-size: 12px; - border: solid 1px #ccc; -} - -.u-check-icon-checkbox-v4 i::before, .u-check-icon-radio-v4 i::before { - content: attr(data-uncheck-icon); - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-check-icon-radio-v4 { - border-radius: 50%; -} - -.u-check-icon-radio-v4 i { - border-radius: 50%; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v4, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v4, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v4, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v4, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v4, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v4, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v4, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v4 { - color: #e74c3c; - border-color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v4 i::before, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v4 i::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v4 i::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v4 i::before, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v4 i::before, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v4 i::before, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v4 i::before, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v4 i::before { - content: attr(data-check-icon); -} - -/*------------------------------------ - Checkboxes v5 -------------------------------------*/ -.u-check-icon-checkbox-v5, .u-check-icon-radio-v5 { - width: 18px; - height: 18px; -} - -.u-check-icon-checkbox-v5 i, .u-check-icon-radio-v5 i { - position: absolute; - top: 50%; - left: 50%; - display: block; - width: 100%; - height: 100%; - background-color: #fff; - border: solid 1px #ccc; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-check-icon-checkbox-v5 { - border-radius: 1px; -} - -.u-check-icon-radio-v5 { - border-radius: 50%; -} - -.u-check-icon-radio-v5 i { - border-radius: 50%; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v5 i, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v5 i, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v5 i, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v5 i, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v5 i, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v5 i, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v5 i, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v5 i { - border-width: 4px; - border-color: #e74c3c; -} - -/*------------------------------------ - Checkboxes v6 -------------------------------------*/ -.u-check-icon-checkbox-v6, .u-check-icon-radio-v6 { - width: 18px; - height: 18px; - font-size: 12px; -} - -.u-check-icon-checkbox-v6 i, .u-check-icon-radio-v6 i { - position: absolute; - top: 50%; - left: 50%; - display: block; - width: 100%; - height: 100%; - border: solid 1px #ccc; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-check-icon-checkbox-v6 i::before, .u-check-icon-radio-v6 i::before { - content: attr(data-uncheck-icon); - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-check-icon-radio-v6 { - border-radius: 50%; -} - -.u-check-icon-radio-v6 i { - border-radius: 50%; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v6 i, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v6 i, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v6 i, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v6 i, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v6 i, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v6 i, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v6 i, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v6 i { - color: #fff; - background-color: #e74c3c; - border-color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v6 i::before, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v6 i::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v6 i::before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v6 i::before, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v6 i::before, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v6 i::before, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v6 i::before, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v6 i::before { - content: attr(data-check-icon); -} - -/*------------------------------------ - Checkboxes v7 -------------------------------------*/ -.u-check-icon-checkbox-v7, .u-check-icon-radio-v7 { - cursor: pointer; - display: block; - width: 43px; - height: 22px; - font-style: normal; - font-weight: 700; - font-size: 9px; - color: #ddd; - border: solid 1px #ddd; - border-radius: 12px; -} - -.u-check-icon-checkbox-v7 i::before, .u-check-icon-checkbox-v7 i::after, .u-check-icon-radio-v7 i::before, .u-check-icon-radio-v7 i::after { - content: ""; - display: block; - position: absolute; -} - -.u-check-icon-checkbox-v7 i::before, .u-check-icon-radio-v7 i::before { - content: attr(data-uncheck-icon); - top: 0; - left: 0; - width: 100%; - height: 22px; - line-height: 18px; - text-transform: uppercase; - text-align: right; - padding: 2px 7px; -} - -.u-check-icon-checkbox-v7 i::after, .u-check-icon-radio-v7 i::after { - top: 50%; - left: 4px; - width: 16px; - height: 16px; - background-color: #ddd; - border-radius: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-transition-property: left; - -o-transition-property: left; - transition-property: left; - -webkit-transition-duration: .1s; - -o-transition-duration: .1s; - transition-duration: .1s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v7, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 { - color: #fff; - background-color: #e74c3c; - border-color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7 i:before, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7 i:before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7 i:before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7 i:before, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7 i:before, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v7 i:before, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7 i:before, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 i:before { - content: attr(data-check-icon); - text-align: left; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7 i::after, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7 i::after, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7 i::after, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7 i::after, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7 i::after, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v7 i::after, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7 i::after, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 i::after { - left: calc(100% - 19px); - background-color: #fff; -} - -/*------------------------------------ - Checkboxes v7 -------------------------------------*/ -.u-check-icon-checkbox-v8, .u-check-icon-radio-v8 { - cursor: pointer; - display: block; - width: 43px; - height: 22px; - font-style: normal; - font-weight: 700; - font-size: 9px; - color: #ddd; - border: solid 1px #ddd; - border-radius: 12px; -} - -.u-check-icon-checkbox-v8 i::before, .u-check-icon-checkbox-v8 i::after, .u-check-icon-radio-v8 i::before, .u-check-icon-radio-v8 i::after { - content: ""; - display: block; - position: absolute; -} - -.u-check-icon-checkbox-v8 i::before, .u-check-icon-radio-v8 i::before { - content: attr(data-uncheck-icon); - top: 0; - left: 0; - width: 100%; - height: 22px; - line-height: 18px; - text-transform: uppercase; - text-align: right; - padding: 2px 7px; -} - -.u-check-icon-checkbox-v8 i::after, .u-check-icon-radio-v8 i::after { - top: 50%; - left: 4px; - width: 16px; - height: 16px; - background-color: #ddd; - border-radius: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-transition-property: left; - -o-transition-property: left; - transition-property: left; - -webkit-transition-duration: .1s; - -o-transition-duration: .1s; - transition-duration: .1s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v8, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 { - color: #e74c3c; - border-color: #e74c3c; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8 i:before, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8 i:before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8 i:before, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8 i:before, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8 i:before, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v8 i:before, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8 i:before, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 i:before { - content: attr(data-check-icon); - text-align: left; -} - -.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8 i::after, -.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8 i::after, -.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8 i::after, -.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8 i::after, -.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8 i::after, -.u-check input[type="radio"]:checked + .u-check-icon-radio-v8 i::after, -.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8 i::after, -.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 i::after { - left: calc(100% - 19px); - background-color: #e74c3c; -} - -/* P */ -[class*="u-checkbox-v1"] { - display: none; -} - -[class*="u-checkbox-v1"] + label { - cursor: pointer; -} - -.u-checkbox-v1--checked-color-primary:checked + label { - color: #e74c3c !important; -} - -.u-checkbox-v1--checked-brd-primary:checked + label { - border-color: #e74c3c !important; -} - -/*------------------------------------ - File Attachments -------------------------------------*/ -/*------------------------------------ - File Attachments v1 -------------------------------------*/ -.u-file-attach-v1 { - position: relative; - overflow: hidden; - cursor: pointer; -} - -.u-file-attach-v1 input[type="file"] { - position: absolute; - top: -25%; - left: -25%; - z-index: 10; - width: 150%; - height: 150%; - opacity: 0; - cursor: pointer; -} - -.u-file-attach-v1 input[readonly] { - background-color: transparent; -} - -/*------------------------------------ - File Attachments v2 -------------------------------------*/ -.u-file-attach-v2 { - position: relative; - overflow: hidden; - cursor: pointer; -} - -.u-file-attach-v2 input[type="file"] { - position: absolute; - top: -25%; - left: -25%; - z-index: 10; - width: 150%; - height: 150%; - opacity: 0; - cursor: pointer; -} - -/*------------------------------------ - File Attachments v2 -------------------------------------*/ -.u-file-attach-v3 { - cursor: pointer; - position: relative; - text-align: center; - background-color: #f7f7f7; - overflow: hidden; - border: 1px dashed #ccc; - padding: 60px; - -webkit-transition-property: background-color; - -o-transition-property: background-color; - transition-property: background-color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-file-attach-v3 input[type="file"] { - position: absolute; - top: -25%; - left: -25%; - z-index: 10; - width: 150%; - height: 150%; - opacity: 0; - cursor: pointer; -} - -.u-file-attach-v3:hover { - background-color: #eee; -} - -/*------------------------------------ - Selects -------------------------------------*/ -.input-group select { - -webkit-appearance: none; -} - -/*------------------------------------ - Selects v1 -------------------------------------*/ -.u-select-v1 { - position: relative; - max-width: 100%; - font-size: 1rem; - color: rgba(164, 157, 166, 0.3); - cursor: pointer; - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: .4rem 1rem; -} - -.u-select-v1 .chosen-single { - position: static; - height: auto; - color: inherit; - background-image: none; - background-color: transparent; - border: none; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0; - line-height: inherit; -} - -.u-select-v1 .chosen-single span { - margin-right: 0; -} - -.u-select-v1 .chosen-single span img { - position: relative; - top: -2px; - margin-right: 4px; -} - -.u-select-v1 .chosen-single div { - width: 40px; -} - -.u-select-v1 .chosen-single div b { - background: none !important; -} - -.u-select-v1 .chosen-single div b i { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-select-v1 .chosen-single div b i:first-child { - display: inline-block; -} - -.u-select-v1 .chosen-single div b i:last-child { - display: none; -} - -.u-select-v1 .chosen-single:focus { - outline: 0 none; -} - -.u-select-v1 .chosen-drop { - width: calc(100% + 2px); - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-width: 1px; - border-style: solid; - border-color: inherit; - border-radius: 0; - border-top-width: 1px; - margin-left: -1px; -} - -.u-select-v1 .chosen-results { - padding: 0; - margin: 0; -} - -.u-select-v1 .chosen-results > li { - position: relative; - font-size: inherit; - color: #999; - border-bottom-width: 1px; - border-bottom-style: solid; - border-bottom-color: #ccc; - padding: 12px 16px; -} - -.u-select-v1 .chosen-results > li img { - position: relative; - top: -2px; - margin-right: 4px; -} - -.u-select-v1 .chosen-results > li div { - position: absolute; - top: 0; - right: 0; - width: 40px; - height: 100%; -} - -.u-select-v1 .chosen-results > li div b { - display: block; - width: 100%; - height: 100%; -} - -.u-select-v1 .chosen-results > li div b i { - position: absolute; - top: 50%; - left: 50%; - display: none; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-select-v1 .chosen-results > li:last-child { - border-bottom-width: 0; -} - -.u-select-v1 .chosen-results > li.highlighted { - color: #999; - background-image: none; - background-color: rgba(231, 76, 60, 0.2); - border-bottom-color: rgba(231, 76, 60, 0.2); -} - -.u-select-v1 .chosen-results > li.highlighted.g-color-white--active { - color: #fff !important; -} - -.u-select-v1 .chosen-results > li.highlighted.g-bg-primary--active { - background-color: #e74c3c !important; -} - -.u-select-v1 .chosen-results > li.result-selected { - color: #999; - background-color: rgba(231, 76, 60, 0.2); - border-bottom-color: rgba(231, 76, 60, 0.2); -} - -.u-select-v1 .chosen-results > li.result-selected div b i { - display: inline-block; -} - -.u-select-v1.chosen-container-active .chosen-single { - background-image: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.u-select-v1.chosen-with-drop .chosen-single { - border: none; - border-radius: 0; -} - -.u-select-v1.chosen-with-drop .chosen-single div b i:first-child { - display: none; -} - -.u-select-v1.chosen-with-drop .chosen-single div b i:last-child { - display: inline-block; -} - -.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices { - background-image: none; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0; -} - -.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice { - font-size: 12px; - color: #999; - background-image: none; - background-color: #fff; - border-color: #ccc; - border-radius: 0; - padding: 5px 20px 5px 5px; -} - -.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice-close { - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field { - height: 22px; -} - -.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field input[type="text"] { - height: 22px; - margin: 0; -} - -.u-select-v1.u-select-multiple-custom .chosen-choices { - display: none; -} - -.u-select-v1.u-select-multiple-custom .chosen-drop { - width: 100%; - position: static; - top: auto; - left: auto; - z-index: 3; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - margin-left: 0; -} - -.u-select-v1.u-dropdown-sm { - padding: .1rem .5rem; - font-size: .875rem; -} - -.u-select-v1.u-dropdown-sm .chosen-results > li { - padding: 6px 8px; -} - -.u-select-v1.u-dropdown-lg { - padding: .55rem 1.5rem; - font-size: 1.25rem; -} - -.u-select-v1.u-dropdown-lg .chosen-results > li { - padding: 14px 18px; -} - -/*------------------------------------ - Sliders -------------------------------------*/ -/*------------------------------------ - Sliders v1 -------------------------------------*/ -.u-slider-v1.ui-slider, .u-slider-v1-2.ui-slider, .u-slider-v1-3.ui-slider { - position: relative; - background: #eee; - border: none; - border-radius: 0; - margin-top: 12px; - margin-left: 6px; - margin-right: 6px; -} - -.u-slider-v1.ui-slider .ui-slider-range, .u-slider-v1-2.ui-slider .ui-slider-range, .u-slider-v1-3.ui-slider .ui-slider-range { - height: 100%; -} - -.u-slider-v1.ui-slider .ui-slider-handle, .u-slider-v1-2.ui-slider .ui-slider-handle, .u-slider-v1-3.ui-slider .ui-slider-handle { - position: absolute; - top: 50%; - border-style: solid; - outline: none; - background: #fff; - border-radius: 0; - cursor: pointer; - -webkit-transition-property: border-color; - -o-transition-property: border-color; - transition-property: border-color; - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; -} - -.u-slider-v1.ui-slider.ui-slider-content, .u-slider-v1-2.ui-slider.ui-slider-content, .u-slider-v1-3.ui-slider.ui-slider-content { - border-color: #eee; -} - -.u-slider-v1.ui-slider { - height: 2px; -} - -.u-slider-v1.ui-slider .ui-slider-range { - background: #e74c3c; -} - -.u-slider-v1.ui-slider .ui-slider-handle { - width: 20px; - height: 20px; - margin-top: -10px; - margin-left: -10px; - border-width: 2px; - border-color: #e74c3c; -} - -.u-slider-v1-2.ui-slider, .u-slider-v1-3.ui-slider { - height: 4px; -} - -.u-slider-v1-2.ui-slider .ui-slider-range, .u-slider-v1-3.ui-slider .ui-slider-range { - background: #ddd; -} - -.u-slider-v1-2.ui-slider .ui-slider-handle, .u-slider-v1-3.ui-slider .ui-slider-handle { - width: 15px; - height: 15px; - margin-top: -8px; - margin-left: -8px; - border-width: 2px; - border-color: #e74c3c; -} - -.u-slider-v1-3.ui-slider .ui-slider-handle { - border-radius: 50%; -} - -/*------------------------------------ - Sliders v2 -------------------------------------*/ -.u-slider-v2.ui-slider, .u-slider-v2-2.ui-slider, .u-slider-v2-3.ui-slider { - position: relative; - background: rgba(231, 76, 60, 0.5); - border: none; - border-radius: 0; - margin-top: 12px; - margin-left: 6px; - margin-right: 6px; -} - -.u-slider-v2.ui-slider .ui-slider-range, .u-slider-v2-2.ui-slider .ui-slider-range, .u-slider-v2-3.ui-slider .ui-slider-range { - height: 100%; -} - -.u-slider-v2.ui-slider .ui-slider-handle, .u-slider-v2-2.ui-slider .ui-slider-handle, .u-slider-v2-3.ui-slider .ui-slider-handle { - position: absolute; - top: 50%; - border-style: solid; - outline: none; - background: #e74c3c; - border-radius: 0; - cursor: pointer; - -webkit-transition-property: border-color, -webkit-transform; - transition-property: border-color, -webkit-transform; - -o-transition-property: border-color, transform; - transition-property: border-color, transform; - transition-property: border-color, transform, -webkit-transform; - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; -} - -.u-slider-v2.ui-slider .ui-slider-handle.ui-state-active, .u-slider-v2-2.ui-slider .ui-slider-handle.ui-state-active, .u-slider-v2-3.ui-slider .ui-slider-handle.ui-state-active { - -webkit-transform: scale(1.5); - -ms-transform: scale(1.5); - transform: scale(1.5); -} - -.u-slider-v2.ui-slider { - height: 2px; -} - -.u-slider-v2.ui-slider .ui-slider-range { - background: #e74c3c; -} - -.u-slider-v2.ui-slider .ui-slider-handle { - width: 20px; - height: 20px; - margin-top: -10px; - margin-left: -10px; - border-width: 2px; - border-color: #e74c3c; -} - -.u-slider-v2-2.ui-slider, .u-slider-v2-3.ui-slider { - height: 4px; -} - -.u-slider-v2-2.ui-slider .ui-slider-range, .u-slider-v2-3.ui-slider .ui-slider-range { - background: #e74c3c; -} - -.u-slider-v2-2.ui-slider .ui-slider-handle, .u-slider-v2-3.ui-slider .ui-slider-handle { - width: 15px; - height: 15px; - margin-top: -8px; - margin-left: -8px; - border-width: 2px; - border-color: #e74c3c; -} - -.u-slider-v2-3.ui-slider .ui-slider-handle { - border-radius: 50%; -} - -/*------------------------------------ - Datepickers -------------------------------------*/ -/*------------------------------------ - Datepickers v1 -------------------------------------*/ -.u-datepicker-v1 { - border-width: 1px; - border-style: solid; - border-radius: 0; - z-index: 2 !important; -} - -.u-datepicker-v1.ui-datepicker-inline { - width: 100%; -} - -.u-datepicker-v1.ui-datepicker { - width: initial; - padding: initial; -} - -.u-datepicker-v1 .ui-datepicker { - width: 100%; - padding: 0; - border: none; -} - -.u-datepicker-v1 .ui-datepicker-header { - background-color: transparent; - border: none; - border-radius: 0; - border-bottom-width: 1px; - border-bottom-style: solid; - border-bottom-color: #ccc; - padding: 0; -} - -.u-datepicker-v1 .ui-datepicker-title { - height: 45px; - line-height: 45px; - font-size: 16px; - font-weight: 400; - color: #a49da6; - margin-left: 45px; - margin-right: 45px; -} - -.u-datepicker-v1 .ui-datepicker-prev, .u-datepicker-v1 .ui-datepicker-next { - width: 45px; - height: 45px; - line-height: 45px; - top: 0; - text-align: center; - border-radius: 0; - cursor: pointer; -} - -.u-datepicker-v1 .ui-datepicker-prev > span, .u-datepicker-v1 .ui-datepicker-next > span { - position: static; - top: 0; - left: 0; - display: inline-block; - width: auto; - height: auto; - font-size: 18px; - color: #a49da6; - background-image: none; - text-indent: 0; - margin-top: 0; - margin-left: 0; -} - -.u-datepicker-v1 .ui-datepicker-prev-hover, .u-datepicker-v1 .ui-datepicker-next-hover { - top: 0; - background-color: transparent; -} - -.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover, .u-datepicker-v1 .ui-datepicker-next.ui-state-hover { - border: none; -} - -.u-datepicker-v1 .ui-datepicker-prev { - left: 0; - border-right-width: 1px; - border-right-style: solid; - border-right-color: #ccc; -} - -.u-datepicker-v1 .ui-datepicker-prev-hover { - left: 0; -} - -.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover { - border-right-width: 1px; - border-right-style: solid; - border-right-color: #ccc; -} - -.u-datepicker-v1 .ui-datepicker-next { - right: 0; - border-left-width: 1px; - border-left-style: solid; - border-left-color: #ccc; -} - -.u-datepicker-v1 .ui-datepicker-next-hover { - right: 0; -} - -.u-datepicker-v1 .ui-datepicker-next.ui-state-hover { - border-left-width: 1px; - border-left-style: solid; - border-left-color: #ccc; -} - -.u-datepicker-v1 .ui-datepicker-calendar { - margin-bottom: 0; -} - -.u-datepicker-v1 .ui-datepicker-calendar th, -.u-datepicker-v1 .ui-datepicker-calendar td { - text-align: center; - padding: 3px; -} - -.u-datepicker-v1 .ui-datepicker-calendar th span, -.u-datepicker-v1 .ui-datepicker-calendar th a, -.u-datepicker-v1 .ui-datepicker-calendar td span, -.u-datepicker-v1 .ui-datepicker-calendar td a { - display: inline-block; - width: 35px; - height: 35px; - line-height: 35px; - text-align: center; - color: #555; - background-color: transparent; - border-width: 1px; - border-style: solid; - border-color: transparent; - padding: 0; -} - -.u-datepicker-v1 .ui-datepicker-calendar th a, -.u-datepicker-v1 .ui-datepicker-calendar td a { - border-radius: 50%; - -webkit-transition: all .2s; - -o-transition: all .2s; - transition: all .2s; -} - -.u-datepicker-v1 .ui-datepicker-calendar th a:hover, .u-datepicker-v1 .ui-datepicker-calendar th a.ui-state-active, -.u-datepicker-v1 .ui-datepicker-calendar td a:hover, -.u-datepicker-v1 .ui-datepicker-calendar td a.ui-state-active { - color: #fff; - background-color: #e74c3c; - border-color: #e74c3c; - -webkit-transition: all .2s; - -o-transition: all .2s; - transition: all .2s; -} - -.u-datepicker-v1 .ui-datepicker-calendar th span, -.u-datepicker-v1 .ui-datepicker-calendar th a { - font-size: 12px; - font-weight: 400; - color: #bbb; - text-transform: uppercase; -} - -.u-datepicker-v1 .ui-datepicker-calendar td span, -.u-datepicker-v1 .ui-datepicker-calendar td a { - font-size: 14px; -} - -@media (min-width: 768px) { - .u-datepicker-v1 .ui-datepicker-title { - height: 50px; - line-height: 50px; - margin-left: 50px; - margin-right: 50px; - } - .u-datepicker-v1 .ui-datepicker-prev, .u-datepicker-v1 .ui-datepicker-next { - width: 50px; - height: 50px; - line-height: 50px; - } - .u-datepicker-v1 .ui-datepicker-calendar { - border-collapse: separate; - border-spacing: 4px; - } - .u-datepicker-v1 .ui-datepicker-calendar th, - .u-datepicker-v1 .ui-datepicker-calendar td { - padding: 5px; - } - .u-datepicker-v1 .ui-datepicker-calendar th span, - .u-datepicker-v1 .ui-datepicker-calendar th a, - .u-datepicker-v1 .ui-datepicker-calendar td span, - .u-datepicker-v1 .ui-datepicker-calendar td a { - font-size: 14px; - } -} - -/*------------------------------------ - Quantity -------------------------------------*/ -.u-quantity-v1 input:not([type="checkbox"]):not([type="radio"]) { - background-color: #fff; -} - -.js-plus, -.js-minus { - cursor: pointer; -} - -/*------------------------------------ - Carousel indicators -------------------------------------*/ -[class*="u-carousel-indicators"] { - display: block; - position: absolute; - padding-left: 0; - margin-bottom: 0; -} - -[class*="u-carousel-indicators"] li { - list-style: none; -} - -[class*="u-carousel-indicators"] span { - display: block; - cursor: pointer; -} - -/*------------------------------------ - Carousel indicators v1 -------------------------------------*/ -.u-carousel-indicators-v1, -.u-carousel-indicators-v1--white { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -.u-carousel-indicators-v1 li, -.u-carousel-indicators-v1--white li { - margin: 0 5px; -} - -.u-carousel-indicators-v1 li.slick-active span, -.u-carousel-indicators-v1--white li.slick-active span { - background-color: #e74c3c; -} - -.u-carousel-indicators-v1 span, -.u-carousel-indicators-v1--white span { - width: 7px; - height: 7px; - border-radius: 50%; - background-color: #777; - opacity: 1; -} - -.u-carousel-indicators-v1 span { - background-color: #777; -} - -.u-carousel-indicators-v1--white li.slick-active span { - background-color: #fff; -} - -/*------------------------------------ - Carousel indicators v2 -------------------------------------*/ -.u-carousel-indicators-v2 li { - margin: 0 5px; -} - -.u-carousel-indicators-v2 li.slick-active span { - opacity: 1; -} - -.u-carousel-indicators-v2 span { - width: 12px; - height: 12px; - border-radius: 50%; - background-color: #fff; - opacity: .3; -} - -/*------------------------------------ - Carousel indicators v3 -------------------------------------*/ -.u-carousel-indicators-v3 li { - margin: 0 3px; -} - -.u-carousel-indicators-v3 li.slick-active span { - width: 12px; - height: 12px; - background-color: #fff; -} - -.u-carousel-indicators-v3 span { - width: 10px; - height: 10px; - border: 1px solid #fff; - border-radius: 50%; - background-color: transparent; -} - -/*------------------------------------ - Carousel indicators v4 -------------------------------------*/ -.u-carousel-indicators-v4 li { - margin: 0 7px; -} - -.u-carousel-indicators-v4 li.slick-active span { - background-color: #e74c3c; -} - -.u-carousel-indicators-v4 span { - width: 12px; - height: 12px; - border-radius: 50%; - background-color: #ccc; -} - -/*------------------------------------ - Carousel indicators v5 -------------------------------------*/ -.u-carousel-indicators-v5 { - bottom: auto; - left: auto; - right: 15px; - top: 15px; - width: auto; -} - -.u-carousel-indicators-v5 li { - margin: 0 3px; -} - -.u-carousel-indicators-v5 li.slick-active span { - width: 9px; - height: 9px; - background-color: #fff; -} - -.u-carousel-indicators-v5 span { - width: 9px; - height: 9px; - border-radius: 50%; - border: 1px solid #fff; - opacity: 1; - position: relative; -} - -/*------------------------------------ - Carousel indicators v6 -------------------------------------*/ -.u-carousel-indicators-v6 { - display: block; - left: 50%; - right: auto; - bottom: 0; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); -} - -.u-carousel-indicators-v6::before { - content: ""; - position: absolute; - top: 7px; - left: 50%; - right: 50%; - display: none; - width: calc(100% - 130px); - height: 0; - border-bottom: 1px solid #111; - -webkit-transform: translate(-50%, 0px); - -ms-transform: translate(-50%, 0px); - transform: translate(-50%, 0px); -} - -.u-carousel-indicators-v6 span { - position: relative; - display: block; - width: 10px; - height: 10px; - border-radius: 10px; - border: 1px solid #111; - background-color: #fff; - opacity: 1; - margin: 4px auto 0; -} - -.u-carousel-indicators-v6 li { - display: table-cell; - width: 1%; - font-weight: 600; - text-transform: uppercase; - font-size: 11px; - color: #111; - vertical-align: top; - cursor: pointer; - float: none; -} - -.u-carousel-indicators-v6 li.slick-active { - color: #e74c3c; -} - -.u-carousel-indicators-v6 li.slick-active span { - display: block; - width: 17px; - height: 17px; - border: 3px solid #e74c3c; - border-radius: 10px; - margin: 0 auto; -} - -.u-carousel-indicators-v6 .u-dot-title { - display: none; -} - -@media (min-width: 768px) { - .u-carousel-indicators-v6 { - top: 0; - bottom: auto; - } - .u-carousel-indicators-v6::before { - display: block; - } - .u-carousel-indicators-v6 span { - margin: 3px auto 19px; - } - .u-carousel-indicators-v6 li.slick-active span { - margin: 0 auto 15px; - } - .u-carousel-indicators-v6 .u-dot-title { - display: block; - } -} - -/*------------------------------------ - Carousel indicators v7 -------------------------------------*/ -.u-carousel-indicators-v7 { - position: absolute; - left: 0; - top: 50%; - bottom: auto; - display: block; - width: 7px; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-carousel-indicators-v7 span { - width: 7px; - height: 7px; - border-radius: 50%; - background-color: #fff; - opacity: .3; -} - -.u-carousel-indicators-v7 li { - display: block; - margin: 15px 0; - float: none; -} - -.u-carousel-indicators-v7 li.slick-active span { - opacity: 1; -} - -/*------------------------------------ - Carousel indicators v8 -------------------------------------*/ -.u-carousel-indicators-v8 { - position: absolute; - left: 0; - top: 50%; - bottom: auto; - display: block; - width: 7px; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-carousel-indicators-v8 span { - width: 7px; - height: 7px; - border-radius: 50%; - background-color: #fff; -} - -.u-carousel-indicators-v8 li { - display: block; - margin: 15px 0; -} - -.u-carousel-indicators-v8 li.slick-active span { - background-color: #e74c3c; -} - -/*------------------------------------ - Carousel indicators v9 -------------------------------------*/ -.u-carousel-indicators-v9 { - padding-left: 0; -} - -.u-carousel-indicators-v9 li { - display: block; - color: #000; - text-transform: uppercase; - background-color: #bbb; - border-top-width: 0; - border-top-style: solid; - border-top-color: #fff; - vertical-align: top; - cursor: pointer; - padding: 10px; -} - -.u-carousel-indicators-v9 li + li { - border-top-width: 1px; -} - -.u-carousel-indicators-v9 li.slick-active { - color: #fff; - background-color: #e74c3c; -} - -@media (min-width: 576px) { - .u-carousel-indicators-v9 li { - display: table-cell; - width: 1%; - border-width: 1px; - border-style: solid; - border-color: #fff; - border-left-width: 0; - border-right-width: 0; - float: none; - vertical-align: top; - cursor: pointer; - padding: 10px; - } - .u-carousel-indicators-v9 li + li { - border-left-width: 1px; - } -} - -/*------------------------------------ - Carousel indicators v10 -------------------------------------*/ -.u-carousel-indicators-v10 { - padding-left: 0; -} - -.u-carousel-indicators-v10 li { - display: block; - color: #000; - text-transform: uppercase; - background-color: #bbb; - border-top-width: 0; - border-top-style: solid; - border-top-color: #fff; - vertical-align: top; - cursor: pointer; - padding: 10px; -} - -.u-carousel-indicators-v10 li + li { - border-top-width: 1px; -} - -.u-carousel-indicators-v10 li.slick-active { - color: #fff; - background-color: #e74c3c; -} - -@media (min-width: 576px) { - .u-carousel-indicators-v10 { - position: absolute; - top: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - .u-carousel-indicators-v10 li { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*------------------------------------ - Carousel indicators v11 -------------------------------------*/ -.u-carousel-indicators-v11 span { - display: block; - width: 12px; - height: 12px; - border: 1px solid #bbb; - border-radius: 50%; - background-color: transparent; -} - -.u-carousel-indicators-v11 li { - margin: 0 3px; -} - -.u-carousel-indicators-v11 li.slick-active span { - background-color: #bbb; -} - -/*------------------------------------ - Carousel indicators v12 -------------------------------------*/ -.u-carousel-indicators-v12, -.u-carousel-indicators-v12--white { - white-space: nowrap; -} - -.u-carousel-indicators-v12 li, -.u-carousel-indicators-v12--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v12 li span, -.u-carousel-indicators-v12--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - overflow: hidden; - background-color: transparent; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: background .3s ease; - -o-transition: background .3s ease; - transition: background .3s ease; -} - -.u-carousel-indicators-v12 li span::before, .u-carousel-indicators-v12 li span::after, -.u-carousel-indicators-v12--white li span::before, -.u-carousel-indicators-v12--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v12 li span::before, -.u-carousel-indicators-v12--white li span::before { - display: block; - bottom: 0; - left: 0; - width: 100%; - height: 0; - -webkit-transition: height .3s ease; - -o-transition: height .3s ease; - transition: height .3s ease; -} - -.u-carousel-indicators-v12 li span:hover, .u-carousel-indicators-v12 li span:focus, -.u-carousel-indicators-v12--white li span:hover, -.u-carousel-indicators-v12--white li span:focus { - background-color: rgba(0, 0, 0, 0.2); -} - -.u-carousel-indicators-v12 li.slick-active span::before, -.u-carousel-indicators-v12--white li.slick-active span::before { - height: 100%; -} - -.u-carousel-indicators-v12--white li span { - -webkit-box-shadow: inset 0 0 0 2px #fff; - box-shadow: inset 0 0 0 2px #fff; -} - -.u-carousel-indicators-v12--white li span::before { - background-color: #fff; - -webkit-box-shadow: 0 0 1px #fff; - box-shadow: 0 0 1px #fff; -} - -/*------------------------------------ - Carousel indicators v13 -------------------------------------*/ -.u-carousel-indicators-v13, -.u-carousel-indicators-v13--white { - white-space: nowrap; -} - -.u-carousel-indicators-v13 li, -.u-carousel-indicators-v13--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v13 li span, -.u-carousel-indicators-v13--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: background-color .3s ease, -webkit-transform .3s ease; - transition: background-color .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, background-color .3s ease; - transition: transform .3s ease, background-color .3s ease; - transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v13 li span::before, .u-carousel-indicators-v13 li span::after, -.u-carousel-indicators-v13--white li span::before, -.u-carousel-indicators-v13--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v13 li.slick-active span, -.u-carousel-indicators-v13--white li.slick-active span { - -webkit-transform: scale(1.5); - -ms-transform: scale(1.5); - transform: scale(1.5); -} - -.u-carousel-indicators-v13--white li span { - background: rgba(255, 255, 255, 0.5); -} - -.u-carousel-indicators-v13--white li span:hover, .u-carousel-indicators-v13--white li span:focus { - background-color: #fff; -} - -.u-carousel-indicators-v13--white li.slick-active span { - background-color: #fff; -} - -/*------------------------------------ - Carousel indicators v14 -------------------------------------*/ -.u-carousel-indicators-v14, -.u-carousel-indicators-v14--white { - white-space: nowrap; -} - -.u-carousel-indicators-v14 li, -.u-carousel-indicators-v14--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v14 li span, -.u-carousel-indicators-v14--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: background-color .3s ease, -webkit-box-shadow .3s ease; - transition: background-color .3s ease, -webkit-box-shadow .3s ease; - -o-transition: box-shadow .3s ease, background-color .3s ease; - transition: box-shadow .3s ease, background-color .3s ease; - transition: box-shadow .3s ease, background-color .3s ease, -webkit-box-shadow .3s ease; -} - -.u-carousel-indicators-v14 li span::before, .u-carousel-indicators-v14 li span::after, -.u-carousel-indicators-v14--white li span::before, -.u-carousel-indicators-v14--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v14--white li span { - background: rgba(255, 255, 255, 0.5); -} - -.u-carousel-indicators-v14--white li span:hover, .u-carousel-indicators-v14--white li span:focus { - background-color: #fff; -} - -.u-carousel-indicators-v14--white li.slick-active span { - background-color: transparent; - -webkit-box-shadow: 0 0 0 2px #fff; - box-shadow: 0 0 0 2px #fff; -} - -/*------------------------------------ - Carousel indicators v15 -------------------------------------*/ -.u-carousel-indicators-v15, -.u-carousel-indicators-v15--white { - white-space: nowrap; -} - -.u-carousel-indicators-v15 li, -.u-carousel-indicators-v15--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v15 li span, -.u-carousel-indicators-v15--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: transparent; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: -webkit-box-shadow .3s ease; - transition: -webkit-box-shadow .3s ease; - -o-transition: box-shadow .3s ease; - transition: box-shadow .3s ease; - transition: box-shadow .3s ease, -webkit-box-shadow .3s ease; -} - -.u-carousel-indicators-v15 li span::before, .u-carousel-indicators-v15 li span::after, -.u-carousel-indicators-v15--white li span::before, -.u-carousel-indicators-v15--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v15--white li span { - -webkit-box-shadow: inset 0 0 0 2px #fff; - box-shadow: inset 0 0 0 2px #fff; -} - -.u-carousel-indicators-v15--white li span:hover, .u-carousel-indicators-v15--white li span:focus { - -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6); - box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6); -} - -.u-carousel-indicators-v15--white li.slick-active span { - -webkit-box-shadow: inset 0 0 0 8px #fff; - box-shadow: inset 0 0 0 8px #fff; -} - -/*------------------------------------ - Carousel indicators v16 -------------------------------------*/ -.u-carousel-indicators-v16, -.u-carousel-indicators-v16--white { - white-space: nowrap; -} - -.u-carousel-indicators-v16 li, -.u-carousel-indicators-v16--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v16 li span, -.u-carousel-indicators-v16--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: transparent; - border-radius: 50%; - overflow: hidden; - text-indent: -9999px; - -webkit-transition: opacity .3s ease; - -o-transition: opacity .3s ease; - transition: opacity .3s ease; -} - -.u-carousel-indicators-v16 li span::before, .u-carousel-indicators-v16 li span::after, -.u-carousel-indicators-v16--white li span::before, -.u-carousel-indicators-v16--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v16 li span::before, -.u-carousel-indicators-v16--white li span::before { - display: block; - position: absolute; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - -webkit-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; - -webkit-transition: -webkit-transform .3s ease; - transition: -webkit-transform .3s ease; - -o-transition: transform .3s ease; - transition: transform .3s ease; - transition: transform .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v16 li span:hover, .u-carousel-indicators-v16 li span:focus, -.u-carousel-indicators-v16--white li span:hover, -.u-carousel-indicators-v16--white li span:focus { - opacity: .7; -} - -.u-carousel-indicators-v16 li.slick-active span::before, -.u-carousel-indicators-v16--white li.slick-active span::before { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.u-carousel-indicators-v16--white li span { - -webkit-box-shadow: inset 0 0 0 2px #fff; - box-shadow: inset 0 0 0 2px #fff; -} - -.u-carousel-indicators-v16--white li span::before { - background-color: #fff; -} - -.u-carousel-indicators-v16--sm li { - width: 8px; - height: 8px; -} - -.u-carousel-indicators-v16--sm li span { - -webkit-box-shadow: inset 0 0 0 1px #fff; - box-shadow: inset 0 0 0 1px #fff; -} - -/*------------------------------------ - Carousel indicators v17 -------------------------------------*/ -.u-carousel-indicators-v17, -.u-carousel-indicators-v17--white { - white-space: nowrap; -} - -.u-carousel-indicators-v17 li, -.u-carousel-indicators-v17--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v17 li span, -.u-carousel-indicators-v17--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: -webkit-box-shadow 0.3s ease; - transition: -webkit-box-shadow 0.3s ease; - -o-transition: box-shadow 0.3s ease; - transition: box-shadow 0.3s ease; - transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease; -} - -.u-carousel-indicators-v17 li span::before, .u-carousel-indicators-v17 li span::after, -.u-carousel-indicators-v17--white li span::before, -.u-carousel-indicators-v17--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v17--white li span { - -webkit-box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.5); - box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.5); -} - -.u-carousel-indicators-v17--white li span:hover, .u-carousel-indicators-v17--white li span:focus { - -webkit-box-shadow: inset 0 0 0 8px #fff; - box-shadow: inset 0 0 0 8px #fff; -} - -.u-carousel-indicators-v17--white li.slick-active span { - -webkit-box-shadow: inset 0 0 0 2px #fff; - box-shadow: inset 0 0 0 2px #fff; -} - -/*------------------------------------ - Carousel indicators v18 -------------------------------------*/ -.u-carousel-indicators-v18, -.u-carousel-indicators-v18--white { - white-space: nowrap; -} - -.u-carousel-indicators-v18 li, -.u-carousel-indicators-v18--white li { - position: relative; - display: inline-block; - width: 18px; - height: 18px; - margin: 0 5px; -} - -.u-carousel-indicators-v18 li span, -.u-carousel-indicators-v18--white li span { - position: absolute; - top: 3px; - left: 3px; - width: 12px; - height: 12px; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: opacity .3s ease; - -o-transition: opacity .3s ease; - transition: opacity .3s ease; -} - -.u-carousel-indicators-v18 li span::before, .u-carousel-indicators-v18 li span::after, -.u-carousel-indicators-v18--white li span::before, -.u-carousel-indicators-v18--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v18 li span:hover, .u-carousel-indicators-v18 li span:focus, -.u-carousel-indicators-v18--white li span:hover, -.u-carousel-indicators-v18--white li span:focus { - opacity: .5; -} - -.u-carousel-indicators-v18 li svg, -.u-carousel-indicators-v18 li i, -.u-carousel-indicators-v18--white li svg, -.u-carousel-indicators-v18--white li i { - z-index: 10; - width: 100%; - height: 100%; -} - -.u-carousel-indicators-v18 li svg circle, -.u-carousel-indicators-v18 li svg path, -.u-carousel-indicators-v18 li svg polygon, -.u-carousel-indicators-v18 li i circle, -.u-carousel-indicators-v18 li i path, -.u-carousel-indicators-v18 li i polygon, -.u-carousel-indicators-v18--white li svg circle, -.u-carousel-indicators-v18--white li svg path, -.u-carousel-indicators-v18--white li svg polygon, -.u-carousel-indicators-v18--white li i circle, -.u-carousel-indicators-v18--white li i path, -.u-carousel-indicators-v18--white li i polygon { - opacity: 0; - fill: none; - stroke-width: 3; - stroke-linecap: round; - stroke-linejoin: round; - stroke-dasharray: 39 39; - stroke-dashoffset: 39; - -webkit-transition: stroke-dashoffset .3s, opacity .3s; - -o-transition: stroke-dashoffset .3s, opacity .3s; - transition: stroke-dashoffset .3s, opacity .3s; -} - -.u-carousel-indicators-v18 li.slick-active span, -.u-carousel-indicators-v18--white li.slick-active span { - opacity: .5; -} - -.u-carousel-indicators-v18 li.slick-active svg circle, -.u-carousel-indicators-v18 li.slick-active svg path, -.u-carousel-indicators-v18 li.slick-active svg polygon, -.u-carousel-indicators-v18 li.slick-active i circle, -.u-carousel-indicators-v18 li.slick-active i path, -.u-carousel-indicators-v18 li.slick-active i polygon, -.u-carousel-indicators-v18--white li.slick-active svg circle, -.u-carousel-indicators-v18--white li.slick-active svg path, -.u-carousel-indicators-v18--white li.slick-active svg polygon, -.u-carousel-indicators-v18--white li.slick-active i circle, -.u-carousel-indicators-v18--white li.slick-active i path, -.u-carousel-indicators-v18--white li.slick-active i polygon { - opacity: 1; - stroke-dashoffset: 0; - -webkit-transition: stroke-dashoffset .3s, opacity .15s; - -o-transition: stroke-dashoffset .3s, opacity .15s; - transition: stroke-dashoffset .3s, opacity .15s; -} - -.u-carousel-indicators-v18--white li span { - background-color: #e74c3c; -} - -.u-carousel-indicators-v18--white li svg circle, -.u-carousel-indicators-v18--white li svg path, -.u-carousel-indicators-v18--white li svg polygon, -.u-carousel-indicators-v18--white li i circle, -.u-carousel-indicators-v18--white li i path, -.u-carousel-indicators-v18--white li i polygon { - stroke: #fff; -} - -/*------------------------------------ - Carousel indicators v19 -------------------------------------*/ -.u-carousel-indicators-v19, -.u-carousel-indicators-v19--white { - white-space: nowrap; -} - -.u-carousel-indicators-v19 li, -.u-carousel-indicators-v19--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - border-radius: 50%; - margin: 0 5px; - -webkit-transition: -webkit-box-shadow .3s ease; - transition: -webkit-box-shadow .3s ease; - -o-transition: box-shadow .3s ease; - transition: box-shadow .3s ease; - transition: box-shadow .3s ease, -webkit-box-shadow .3s ease; -} - -.u-carousel-indicators-v19 li span, -.u-carousel-indicators-v19--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: background-color .3s ease, -webkit-transform .3s ease; - transition: background-color .3s ease, -webkit-transform .3s ease; - -o-transition: background-color .3s ease, transform .3s ease; - transition: background-color .3s ease, transform .3s ease; - transition: background-color .3s ease, transform .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v19 li span::before, .u-carousel-indicators-v19 li span::after, -.u-carousel-indicators-v19--white li span::before, -.u-carousel-indicators-v19--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v19 li.slick-active span, -.u-carousel-indicators-v19--white li.slick-active span { - background-color: #fff; - -webkit-transform: scale(0.4); - -ms-transform: scale(0.4); - transform: scale(0.4); -} - -.u-carousel-indicators-v19--white li { - -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); -} - -.u-carousel-indicators-v19--white li span { - background-color: rgba(255, 255, 255, 0.7); -} - -.u-carousel-indicators-v19--white li span:hover, .u-carousel-indicators-v19--white li span:focus { - background-color: #fff; -} - -.u-carousel-indicators-v19--white li.slick-active { - -webkit-box-shadow: 0 0 0 2px #fff; - box-shadow: 0 0 0 2px #fff; -} - -/*------------------------------------ - Carousel indicators v20 -------------------------------------*/ -.u-carousel-indicators-v20, -.u-carousel-indicators-v20--white { - white-space: nowrap; -} - -.u-carousel-indicators-v20 li, -.u-carousel-indicators-v20--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v20 li span, -.u-carousel-indicators-v20--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: border-color .3s ease; - -o-transition: border-color .3s ease; - transition: border-color .3s ease; -} - -.u-carousel-indicators-v20 li span::before, .u-carousel-indicators-v20 li span::after, -.u-carousel-indicators-v20--white li span::before, -.u-carousel-indicators-v20--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v20 li span::before, -.u-carousel-indicators-v20--white li span::before { - display: block; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - visibility: hidden; - opacity: 0; - -webkit-transform: scale(3); - -ms-transform: scale(3); - transform: scale(3); - -webkit-transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; - transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; - -o-transition: opacity .3s ease, transform .3s ease, visibility 0s .3s; - transition: opacity .3s ease, transform .3s ease, visibility 0s .3s; - transition: opacity .3s ease, transform .3s ease, visibility 0s .3s, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v20 li span:hover, .u-carousel-indicators-v20 li span:focus, -.u-carousel-indicators-v20--white li span:hover, -.u-carousel-indicators-v20--white li span:focus { - border-color: #e74c3c; -} - -.u-carousel-indicators-v20 li.slick-active span, -.u-carousel-indicators-v20--white li.slick-active span { - border-color: #e74c3c; -} - -.u-carousel-indicators-v20 li.slick-active span::before, -.u-carousel-indicators-v20--white li.slick-active span::before { - visibility: visible; - opacity: 1; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: opacity .3s ease, transform .3s ease; - transition: opacity .3s ease, transform .3s ease; - transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v20--white li span { - border: 2px solid #fff; -} - -.u-carousel-indicators-v20--white li span::before { - background: #e74c3c; - -webkit-box-shadow: 0 0 1px #e74c3c; - box-shadow: 0 0 1px #e74c3c; -} - -/*------------------------------------ - Carousel indicators v21 -------------------------------------*/ -.u-carousel-indicators-v21, -.u-carousel-indicators-v21--white { - white-space: nowrap; -} - -.u-carousel-indicators-v21 li, -.u-carousel-indicators-v21--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.u-carousel-indicators-v21 li span, -.u-carousel-indicators-v21--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: transparent; - border-radius: 50%; - text-indent: -9999px; - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v21 li span::before, .u-carousel-indicators-v21 li span::after, -.u-carousel-indicators-v21--white li span::before, -.u-carousel-indicators-v21--white li span::after { - content: ""; - display: block; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: 0; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.u-carousel-indicators-v21 li span::after, -.u-carousel-indicators-v21--white li span::after { - -webkit-transform: rotateY(180deg); - transform: rotateY(180deg); -} - -.u-carousel-indicators-v21 li span:hover, -.u-carousel-indicators-v21--white li span:hover { - opacity: .8; -} - -.u-carousel-indicators-v21 li.slick-active span, -.u-carousel-indicators-v21--white li.slick-active span { - -webkit-transform: rotateY(180deg); - transform: rotateY(180deg); -} - -.u-carousel-indicators-v21--white li span::before { - background-color: #fff; -} - -.u-carousel-indicators-v21--white li span::after { - background-color: #e74c3c; -} - -/*------------------------------------ - Carousel indicators v22 -------------------------------------*/ -.u-carousel-indicators-v22, -.u-carousel-indicators-v22--white { - white-space: nowrap; -} - -.u-carousel-indicators-v22 li, -.u-carousel-indicators-v22--white li { - position: relative; - display: inline-block; - z-index: 1; - width: 16px; - height: 16px; - border-radius: 50%; - cursor: pointer; - margin: 0 5px; - -webkit-transition: border-color .3s ease; - -o-transition: border-color .3s ease; - transition: border-color .3s ease; -} - -.u-carousel-indicators-v22 li span, -.u-carousel-indicators-v22--white li span { - position: absolute; - bottom: 250%; - left: 50%; - width: auto; - height: auto; - line-height: 2; - opacity: 0; - white-space: nowrap; - visibility: hidden; - border-radius: 0; - padding: 0 10px; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - -webkit-transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease, visibility 0s .3s ease; - transition: transform .3s ease, opacity .3s ease, visibility 0s .3s ease; - transition: transform .3s ease, opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v22 li span::before, .u-carousel-indicators-v22 li span::after, -.u-carousel-indicators-v22--white li span::before, -.u-carousel-indicators-v22--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v22 li span::before, -.u-carousel-indicators-v22--white li span::before { - display: block; - position: absolute; - top: 99%; - left: 50%; - width: 0; - height: 0; - margin-left: -10px; - border: 10px solid transparent; - pointer-events: none; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: opacity .3s ease; - -o-transition: opacity .3s ease; - transition: opacity .3s ease; -} - -.u-carousel-indicators-v22 li span:hover, -.u-carousel-indicators-v22--white li span:hover { - z-index: 11; - visibility: visible; - opacity: 1; - -webkit-transform: translateX(-50%) translateY(0%); - -ms-transform: translateX(-50%) translateY(0%); - transform: translateX(-50%) translateY(0%); - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v22 li.slick-active span, -.u-carousel-indicators-v22--white li.slick-active span { - z-index: 100; - visibility: visible; - opacity: 1; - -webkit-transform: translateX(-50%) translateY(0%); - -ms-transform: translateX(-50%) translateY(0%); - transform: translateX(-50%) translateY(0%); - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v22 li.slick-active:hover span, -.u-carousel-indicators-v22--white li.slick-active:hover span { - opacity: 1 !important; -} - -.u-carousel-indicators-v22 li:hover, -.u-carousel-indicators-v22--white li:hover { - z-index: 11; -} - -.u-carousel-indicators-v22:hover li.slick-active span, -.u-carousel-indicators-v22--white:hover li.slick-active span { - opacity: .2; -} - -.u-carousel-indicators-v22--white li { - border: 2px solid #fff; -} - -.u-carousel-indicators-v22--white li span { - color: #fff; - background-color: #e74c3c; -} - -.u-carousel-indicators-v22--white li span::before { - border-top-color: #e74c3c; -} - -.u-carousel-indicators-v22--white li.slick-active { - border-color: #e74c3c; -} - -/*------------------------------------ - Carousel indicators v23 -------------------------------------*/ -.u-carousel-indicators-v23, -.u-carousel-indicators-v23--white { - white-space: nowrap; -} - -.u-carousel-indicators-v23 li, -.u-carousel-indicators-v23--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v23 li span, -.u-carousel-indicators-v23--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: background-color .3s ease; - -o-transition: background-color .3s ease; - transition: background-color .3s ease; -} - -.u-carousel-indicators-v23 li span::before, .u-carousel-indicators-v23 li span::after, -.u-carousel-indicators-v23--white li span::before, -.u-carousel-indicators-v23--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v23 li.slick-active:first-child ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:first-child ~ .u-dots-helper { - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(2) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(2) ~ .u-dots-helper { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(3) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(3) ~ .u-dots-helper { - -webkit-transform: translateX(200%); - -ms-transform: translateX(200%); - transform: translateX(200%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(4) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(4) ~ .u-dots-helper { - -webkit-transform: translateX(300%); - -ms-transform: translateX(300%); - transform: translateX(300%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(5) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(5) ~ .u-dots-helper { - -webkit-transform: translateX(400%); - -ms-transform: translateX(400%); - transform: translateX(400%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(6) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(6) ~ .u-dots-helper { - -webkit-transform: translateX(500%); - -ms-transform: translateX(500%); - transform: translateX(500%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(7) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(7) ~ .u-dots-helper { - -webkit-transform: translateX(600%); - -ms-transform: translateX(600%); - transform: translateX(600%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(8) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(8) ~ .u-dots-helper { - -webkit-transform: translateX(700%); - -ms-transform: translateX(700%); - transform: translateX(700%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(9) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(9) ~ .u-dots-helper { - -webkit-transform: translateX(800%); - -ms-transform: translateX(800%); - transform: translateX(800%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(10) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(10) ~ .u-dots-helper { - -webkit-transform: translateX(900%); - -ms-transform: translateX(900%); - transform: translateX(900%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(11) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(11) ~ .u-dots-helper { - -webkit-transform: translateX(1000%); - -ms-transform: translateX(1000%); - transform: translateX(1000%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(12) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(12) ~ .u-dots-helper { - -webkit-transform: translateX(1100%); - -ms-transform: translateX(1100%); - transform: translateX(1100%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(13) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(13) ~ .u-dots-helper { - -webkit-transform: translateX(1200%); - -ms-transform: translateX(1200%); - transform: translateX(1200%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(14) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(14) ~ .u-dots-helper { - -webkit-transform: translateX(1300%); - -ms-transform: translateX(1300%); - transform: translateX(1300%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(15) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(15) ~ .u-dots-helper { - -webkit-transform: translateX(1400%); - -ms-transform: translateX(1400%); - transform: translateX(1400%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(16) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(16) ~ .u-dots-helper { - -webkit-transform: translateX(1500%); - -ms-transform: translateX(1500%); - transform: translateX(1500%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(17) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(17) ~ .u-dots-helper { - -webkit-transform: translateX(1600%); - -ms-transform: translateX(1600%); - transform: translateX(1600%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(18) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(18) ~ .u-dots-helper { - -webkit-transform: translateX(1700%); - -ms-transform: translateX(1700%); - transform: translateX(1700%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(19) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(19) ~ .u-dots-helper { - -webkit-transform: translateX(1800%); - -ms-transform: translateX(1800%); - transform: translateX(1800%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(20) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(20) ~ .u-dots-helper { - -webkit-transform: translateX(1900%); - -ms-transform: translateX(1900%); - transform: translateX(1900%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(21) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(21) ~ .u-dots-helper { - -webkit-transform: translateX(2000%); - -ms-transform: translateX(2000%); - transform: translateX(2000%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(22) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(22) ~ .u-dots-helper { - -webkit-transform: translateX(2100%); - -ms-transform: translateX(2100%); - transform: translateX(2100%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(23) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(23) ~ .u-dots-helper { - -webkit-transform: translateX(2200%); - -ms-transform: translateX(2200%); - transform: translateX(2200%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(24) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(24) ~ .u-dots-helper { - -webkit-transform: translateX(2300%); - -ms-transform: translateX(2300%); - transform: translateX(2300%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(25) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(25) ~ .u-dots-helper { - -webkit-transform: translateX(2400%); - -ms-transform: translateX(2400%); - transform: translateX(2400%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(26) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(26) ~ .u-dots-helper { - -webkit-transform: translateX(2500%); - -ms-transform: translateX(2500%); - transform: translateX(2500%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(27) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(27) ~ .u-dots-helper { - -webkit-transform: translateX(2600%); - -ms-transform: translateX(2600%); - transform: translateX(2600%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(28) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(28) ~ .u-dots-helper { - -webkit-transform: translateX(2700%); - -ms-transform: translateX(2700%); - transform: translateX(2700%); -} - -.u-carousel-indicators-v23 li.slick-active:nth-child(29) ~ .u-dots-helper, -.u-carousel-indicators-v23--white li.slick-active:nth-child(29) ~ .u-dots-helper { - -webkit-transform: translateX(2800%); - -ms-transform: translateX(2800%); - transform: translateX(2800%); -} - -.u-carousel-indicators-v23 .u-dots-helper, -.u-carousel-indicators-v23--white .u-dots-helper { - position: absolute; - left: 0; - top: 0; - width: 26px; - -webkit-transition: -webkit-transform .3s ease; - transition: -webkit-transform .3s ease; - -o-transition: transform .3s ease; - transition: transform .3s ease; - transition: transform .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v23 .u-dots-helper::before, -.u-carousel-indicators-v23--white .u-dots-helper::before { - content: ""; - position: absolute; - left: 50%; - top: 0; - width: 16px; - height: 16px; - border-radius: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); -} - -.u-carousel-indicators-v23--white li span { - background: rgba(255, 255, 255, 0.5); -} - -.u-carousel-indicators-v23--white li span:hover, .u-carousel-indicators-v23--white li span:focus { - background-color: #fff; -} - -.u-carousel-indicators-v23--white .u-dots-helper::before { - background: #e74c3c; -} - -/*------------------------------------ - Carousel indicators v24 -------------------------------------*/ -.u-carousel-indicators-v24, -.u-carousel-indicators-v24--white { - white-space: nowrap; -} - -.u-carousel-indicators-v24 li, -.u-carousel-indicators-v24--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v24 li span, -.u-carousel-indicators-v24--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: transparent; - border-radius: 50%; - text-indent: -9999px; -} - -.u-carousel-indicators-v24 li span::before, .u-carousel-indicators-v24 li span::after, -.u-carousel-indicators-v24--white li span::before, -.u-carousel-indicators-v24--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v24 li span::before, -.u-carousel-indicators-v24--white li span::before { - display: block; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - opacity: 0; - visibility: hidden; - -webkit-transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease .3s; - transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease .3s; - -o-transition: transform .3s ease .3s, opacity .3s ease, visibility 0s .3s ease; - transition: transform .3s ease .3s, opacity .3s ease, visibility 0s .3s ease; - transition: transform .3s ease .3s, opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease .3s; - -webkit-transform-origin: -200% 50%; - -ms-transform-origin: -200% 50%; - transform-origin: -200% 50%; - -webkit-transform: rotate(-100deg); - -ms-transform: rotate(-100deg); - transform: rotate(-100deg); -} - -.u-carousel-indicators-v24 li.slick-active-right span::before, -.u-carousel-indicators-v24--white li.slick-active-right span::before { - -webkit-transition: none; - -o-transition: none; - transition: none; - -webkit-transform-origin: 300% 50%; - -ms-transform-origin: 300% 50%; - transform-origin: 300% 50%; - -webkit-transform: rotate(100deg); - -ms-transform: rotate(100deg); - transform: rotate(100deg); -} - -.u-carousel-indicators-v24 li.slick-current span::before, -.u-carousel-indicators-v24--white li.slick-current span::before { - visibility: visible; - opacity: 1; - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); -} - -.u-carousel-indicators-v24--white li span { - border: 2px solid #e74c3c; -} - -.u-carousel-indicators-v24--white li span::before { - background: #fff; -} - -.u-carousel-indicators-v24--white li span:focus { - background: rgba(255, 255, 255, 0.2); -} - -/*------------------------------------ - Carousel indicators v25 -------------------------------------*/ -.u-carousel-indicators-v25, -.u-carousel-indicators-v25--white { - white-space: nowrap; -} - -.u-carousel-indicators-v25 li, -.u-carousel-indicators-v25--white li { - position: relative; - display: inline-block; - width: 16px; - height: 16px; - margin: 0 5px; -} - -.u-carousel-indicators-v25 li::before, -.u-carousel-indicators-v25--white li::before { - content: ""; - position: absolute; - left: 0; - display: block; - width: 100%; - height: 100%; - border-radius: 50%; - opacity: 0; - visibility: hidden; - -webkit-transform: translateY(-200%); - -ms-transform: translateY(-200%); - transform: translateY(-200%); - -webkit-transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; - transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease, visibility 0s .3s; - transition: transform .3s ease, opacity .3s ease, visibility 0s .3s; - transition: transform .3s ease, opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v25 li span, -.u-carousel-indicators-v25--white li span { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 50%; - text-indent: -9999px; - -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease, background-color .3s ease; - transition: transform .3s ease, opacity .3s ease, background-color .3s ease; - transition: transform .3s ease, opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease; -} - -.u-carousel-indicators-v25 li span::before, .u-carousel-indicators-v25 li span::after, -.u-carousel-indicators-v25--white li span::before, -.u-carousel-indicators-v25--white li span::after { - content: ""; - display: none; -} - -.u-carousel-indicators-v25 li.slick-active::before, -.u-carousel-indicators-v25--white li.slick-active::before { - opacity: 1; - visibility: visible; - -webkit-transition: opacity .3s ease, -webkit-transform .3s ease; - transition: opacity .3s ease, -webkit-transform .3s ease; - -o-transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease; - transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); -} - -.u-carousel-indicators-v25 li.slick-active span, -.u-carousel-indicators-v25--white li.slick-active span { - opacity: 0; - -webkit-transform: translateY(200%); - -ms-transform: translateY(200%); - transform: translateY(200%); -} - -.u-carousel-indicators-v25--white li::before { - background-color: #e74c3c; -} - -.u-carousel-indicators-v25--white li span { - background: rgba(255, 255, 255, 0.5); -} - -.u-carousel-indicators-v25--white li span::before { - background-color: #e74c3c; -} - -.u-carousel-indicators-v25--white li span:focus { - background-color: #e74c3c; -} - -.u-carousel-indicators-v25--white li:hover span { - background-color: #fff; -} - -.u-carousel-indicators-v25--white li.slick-active span { - background-color: #e74c3c; -} - -/*------------------------------------ - Carousel indicators v26 -------------------------------------*/ -.u-carousel-indicators-v26 li, -.u-carousel-indicators-v26--white li, -.u-carousel-indicators-v26--vertical li, -.u-carousel-indicators-v26--vertical--white li { - position: relative; - width: 20px; - height: 20px; - float: left; - margin-right: 40px; -} - -.u-carousel-indicators-v26 li::before, -.u-carousel-indicators-v26--white li::before, -.u-carousel-indicators-v26--vertical li::before, -.u-carousel-indicators-v26--vertical--white li::before { - content: ""; - position: absolute; - top: 50%; - left: 50%; - display: block; - width: 16px; - height: 16px; - border: 2px solid; - border-radius: 50%; - -webkit-transition: width .3s, height .3s, border-color .3s, border-width .3s, background .3s; - -o-transition: width .3s, height .3s, border-color .3s, border-width .3s, background .3s; - transition: width .3s, height .3s, border-color .3s, border-width .3s, background .3s; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.u-carousel-indicators-v26 li::after, -.u-carousel-indicators-v26--white li::after, -.u-carousel-indicators-v26--vertical li::after, -.u-carousel-indicators-v26--vertical--white li::after { - content: ""; - position: absolute; - top: 50%; - left: 100%; - z-index: -1; - display: block; - width: 44px; - height: 0; - border-top: 2px solid; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - margin-left: -2px; -} - -.u-carousel-indicators-v26 li span, -.u-carousel-indicators-v26--white li span, -.u-carousel-indicators-v26--vertical li span, -.u-carousel-indicators-v26--vertical--white li span { - display: block; - position: absolute; - bottom: 100%; - left: 50%; - text-transform: uppercase; - font-size: 12px; - font-weight: 700; - white-space: nowrap; - opacity: .3; - -webkit-transition: opacity .3s, color .3s; - -o-transition: opacity .3s, color .3s; - transition: opacity .3s, color .3s; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - padding: 0 0 15px 0; -} - -.u-carousel-indicators-v26 li.slick-active::before, -.u-carousel-indicators-v26--white li.slick-active::before, -.u-carousel-indicators-v26--vertical li.slick-active::before, -.u-carousel-indicators-v26--vertical--white li.slick-active::before { - width: 20px; - height: 20px; -} - -.u-carousel-indicators-v26 li.slick-active span, -.u-carousel-indicators-v26--white li.slick-active span, -.u-carousel-indicators-v26--vertical li.slick-active span, -.u-carousel-indicators-v26--vertical--white li.slick-active span { - opacity: 1; -} - -.u-carousel-indicators-v26 li:last-child, -.u-carousel-indicators-v26--white li:last-child, -.u-carousel-indicators-v26--vertical li:last-child, -.u-carousel-indicators-v26--vertical--white li:last-child { - margin-bottom: 0; - margin-right: 0; -} - -.u-carousel-indicators-v26 li:last-child::after, -.u-carousel-indicators-v26--white li:last-child::after, -.u-carousel-indicators-v26--vertical li:last-child::after, -.u-carousel-indicators-v26--vertical--white li:last-child::after { - display: none; -} - -.u-carousel-indicators-v26--vertical, -.u-carousel-indicators-v26--vertical--white { - width: 20px; -} - -.u-carousel-indicators-v26--vertical li, -.u-carousel-indicators-v26--vertical--white li { - display: block; - float: none; - margin-bottom: 15px; - margin-right: 0; -} - -.u-carousel-indicators-v26--vertical li::after, -.u-carousel-indicators-v26--vertical--white li::after { - content: ""; - position: absolute; - top: 100%; - left: 50%; - z-index: -1; - display: block; - width: 0; - height: 19px; - border-left: 2px solid; - -webkit-transform: translateX(-50%) translateY(0); - -ms-transform: translateX(-50%) translateY(0); - transform: translateX(-50%) translateY(0); - margin-top: -2px; - margin-left: 0; -} - -.u-carousel-indicators-v26--vertical li span, -.u-carousel-indicators-v26--vertical--white li span { - display: block; - position: absolute; - top: 50%; - bottom: auto; - left: 100%; - text-transform: uppercase; - font-size: 12px; - font-weight: 700; - white-space: nowrap; - opacity: .3; - -webkit-transition: opacity .3s, color .3s; - -o-transition: opacity .3s, color .3s; - transition: opacity .3s, color .3s; - -webkit-transform: translateX(0) translateY(-50%); - -ms-transform: translateX(0) translateY(-50%); - transform: translateX(0) translateY(-50%); - padding: 0 0 0 15px; -} - -.u-carousel-indicators-v26--white li::before, -.u-carousel-indicators-v26--vertical--white li::before { - border-color: #e74c3c; -} - -.u-carousel-indicators-v26--white li::after, -.u-carousel-indicators-v26--vertical--white li::after { - border-color: #e74c3c; -} - -.u-carousel-indicators-v26--white li span, -.u-carousel-indicators-v26--vertical--white li span { - color: #fff; -} - -.u-carousel-indicators-v26--white li:not(.slick-active):hover::before, -.u-carousel-indicators-v26--vertical--white li:not(.slick-active):hover::before { - border-color: #fff; - background-color: #fff; -} - -.u-carousel-indicators-v26--white li.slick-active::before, -.u-carousel-indicators-v26--vertical--white li.slick-active::before { - border-color: #fff; -} - -.u-carousel-indicators-v26--white li.slick-active span, -.u-carousel-indicators-v26--vertical--white li.slick-active span { - color: #fff; -} - -/*------------------------------------ - Carousel indicators v27 -------------------------------------*/ -.u-carousel-indicators-v27 li, -.u-carousel-indicators-v27--white li, -.u-carousel-indicators-v27--vertical li, -.u-carousel-indicators-v27--vertical--white li { - position: relative; - width: 40px; - height: 4px; - float: left; - margin: 0 5px; -} - -.u-carousel-indicators-v27 li span, -.u-carousel-indicators-v27--white li span, -.u-carousel-indicators-v27--vertical li span, -.u-carousel-indicators-v27--vertical--white li span { - position: relative; - display: block; - width: 100%; - height: 4px; - opacity: .7; - overflow: hidden; - -webkit-transition: opacity .3s; - -o-transition: opacity .3s; - transition: opacity .3s; -} - -.u-carousel-indicators-v27 li span::before, -.u-carousel-indicators-v27--white li span::before, -.u-carousel-indicators-v27--vertical li span::before, -.u-carousel-indicators-v27--vertical--white li span::before { - content: ""; - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - -webkit-transition: -webkit-transform .5s; - transition: -webkit-transform .5s; - -o-transition: transform .5s; - transition: transform .5s; - transition: transform .5s, -webkit-transform .5s; - -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); -} - -.u-carousel-indicators-v27 li strong, -.u-carousel-indicators-v27--white li strong, -.u-carousel-indicators-v27--vertical li strong, -.u-carousel-indicators-v27--vertical--white li strong { - position: absolute; - bottom: 105%; - left: 0; - display: block; - width: 40px; - font-weight: 700; - font-size: 20px; - opacity: 0; - -webkit-transform: translate3d(1em, 0, 0); - transform: translate3d(1em, 0, 0); - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transition: opacity .5s, -webkit-transform .5s; - transition: opacity .5s, -webkit-transform .5s; - -o-transition: transform .5s, opacity .5s; - transition: transform .5s, opacity .5s; - transition: transform .5s, opacity .5s, -webkit-transform .5s; - -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); -} - -.u-carousel-indicators-v27 li:not(.slick-active):hover span, .u-carousel-indicators-v27 li:not(.slick-active):focus span, -.u-carousel-indicators-v27--white li:not(.slick-active):hover span, -.u-carousel-indicators-v27--white li:not(.slick-active):focus span, -.u-carousel-indicators-v27--vertical li:not(.slick-active):hover span, -.u-carousel-indicators-v27--vertical li:not(.slick-active):focus span, -.u-carousel-indicators-v27--vertical--white li:not(.slick-active):hover span, -.u-carousel-indicators-v27--vertical--white li:not(.slick-active):focus span { - opacity: 1; -} - -.u-carousel-indicators-v27 li.slick-active span::before, -.u-carousel-indicators-v27--white li.slick-active span::before, -.u-carousel-indicators-v27--vertical li.slick-active span::before, -.u-carousel-indicators-v27--vertical--white li.slick-active span::before { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.u-carousel-indicators-v27 li.slick-active strong, -.u-carousel-indicators-v27--white li.slick-active strong, -.u-carousel-indicators-v27--vertical li.slick-active strong, -.u-carousel-indicators-v27--vertical--white li.slick-active strong { - opacity: 1; - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); -} - -.u-carousel-indicators-v27--vertical li, -.u-carousel-indicators-v27--vertical--white li { - display: block; - width: 40px; - height: 40px; - float: none; - margin: 15px 0; -} - -.u-carousel-indicators-v27--vertical li span, -.u-carousel-indicators-v27--vertical--white li span { - position: relative; - display: block; - width: 4px; - height: 100%; - opacity: .7; - overflow: hidden; - -webkit-transition: opacity .3s; - -o-transition: opacity .3s; - transition: opacity .3s; -} - -.u-carousel-indicators-v27--vertical li span::before, -.u-carousel-indicators-v27--vertical--white li span::before { - content: ""; - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - -webkit-transition: -webkit-transform .5s; - transition: -webkit-transform .5s; - -o-transition: transform .5s; - transition: transform .5s; - transition: transform .5s, -webkit-transform .5s; - -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); -} - -.u-carousel-indicators-v27--vertical li strong, -.u-carousel-indicators-v27--vertical--white li strong { - position: absolute; - top: 0; - bottom: auto; - left: 105%; - display: block; - width: 40px; - font-weight: 700; - font-size: 20px; - opacity: 0; - -webkit-transform: rotate3d(0, 0, 1, 90deg) translate3d(1em, 0, 0); - transform: rotate3d(0, 0, 1, 90deg) translate3d(1em, 0, 0); - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transition: opacity .5s, -webkit-transform .5s; - transition: opacity .5s, -webkit-transform .5s; - -o-transition: transform .5s, opacity .5s; - transition: transform .5s, opacity .5s; - transition: transform .5s, opacity .5s, -webkit-transform .5s; - -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); - transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); -} - -.u-carousel-indicators-v27--vertical li.slick-active span::before, -.u-carousel-indicators-v27--vertical--white li.slick-active span::before { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.u-carousel-indicators-v27--vertical li.slick-active strong, -.u-carousel-indicators-v27--vertical--white li.slick-active strong { - opacity: 1; - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); -} - -.u-carousel-indicators-v27--white li span, -.u-carousel-indicators-v27--vertical--white li span { - background: #fff; -} - -.u-carousel-indicators-v27--white li span::before, -.u-carousel-indicators-v27--vertical--white li span::before { - background: #e74c3c; -} - -.u-carousel-indicators-v27--white li strong, -.u-carousel-indicators-v27--vertical--white li strong { - color: #fff; -} - -/*------------------------------------ - Carousel indicators v28 -------------------------------------*/ -.u-carousel-indicators-v28 { - position: absolute; - left: 0; - top: 50%; - bottom: auto; - display: block; - width: 7px; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-carousel-indicators-v28 li { - display: block; - margin: 15px 0; - float: none; -} - -.u-carousel-indicators-v28 li.slick-active span { - background-color: #e74c3c; - opacity: 1; -} - -.u-carousel-indicators-v28 span { - width: 7px; - height: 7px; - border-radius: 50%; - background-color: #777; - opacity: .3; -} - -/*------------------------------------ - Carousel indicators v29 -------------------------------------*/ -.u-carousel-indicators-v29 { - position: absolute; - white-space: nowrap; - text-align: center; -} - -.u-carousel-indicators-v29 li { - display: inline-block; - min-width: 30px; - cursor: pointer; - float: none; - border-top: 3px solid #fff; - margin: -2px 20px 0; -} - -.u-carousel-indicators-v29 li.slick-active { - color: #e74c3c; - border-top-color: #e74c3c; -} - -.u-carousel-indicators-v29 .u-dot-title { - display: none; -} - -@media (min-width: 576px) { - .u-carousel-indicators-v29 { - border-top: 1px solid; - } - .u-carousel-indicators-v29 li { - border-top: 3px solid transparent; - padding-top: 10px; - margin: -2px 20px 0; - } - .u-carousel-indicators-v29 .u-dot-title { - display: block; - } -} - -/*------------------------------------ - Carousel indicators v30 -------------------------------------*/ -.u-carousel-indicators-v30 { - display: block; - width: 100%; -} - -.u-carousel-indicators-v30 > li { - display: table-cell; - width: 1%; - text-align: center; - float: none; -} - -.u-carousel-indicators-v30 span { - display: inline-block; -} - -@media (min-width: 576px) { - .u-carousel-indicators-v30 { - display: block; - width: 100%; - } - .u-carousel-indicators-v30 > li { - display: table-cell; - width: 1%; - text-align: center; - float: none; - } - .u-carousel-indicators-v30 span { - display: inline-block; - } -} - -/*------------------------------------ - Carousel indicators v31 -------------------------------------*/ -.u-carousel-indicators-v31, -.u-carousel-indicators-v31--white { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -.u-carousel-indicators-v31 li, -.u-carousel-indicators-v31--white li { - margin: 0 5px; -} - -.u-carousel-indicators-v31 li.slick-active span, -.u-carousel-indicators-v31--white li.slick-active span { - position: relative; - top: 1px; - width: 13px; - height: 13px; - background-color: #e74c3c; - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; -} - -.u-carousel-indicators-v31 span, -.u-carousel-indicators-v31--white span { - position: relative; - top: 2px; - width: 11px; - height: 11px; - border: 2px solid #fff; - border-radius: 50%; - opacity: 1; - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - background-color: #ddd; -} - -/*------------------------------------ - Carousel Indicators v32 -------------------------------------*/ -.u-carousel-indicators-v32 .slick-slide { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; -} - -.u-carousel-indicators-v32 .slick-slide .u-carousel-indicators-v32-img { - -webkit-box-shadow: 0 5px 25px 0 transparent; - box-shadow: 0 5px 25px 0 transparent; -} - -.u-carousel-indicators-v32 .slick-center { - width: 70px; - height: 70px; - -webkit-transform: scale(1.35); -} - -.u-carousel-indicators-v32 .slick-center .u-carousel-indicators-v32-img { - -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1); - border-color: #fff; -} - -/*------------------------------------ - Carousel indicators v33 -------------------------------------*/ -.u-carousel-indicators-v33 { - position: relative; - padding-top: 15px; - padding-left: 0; -} - -.u-carousel-indicators-v33 li { - display: block; - color: #eee; - cursor: pointer; - padding: 10px 0; -} - -.u-carousel-indicators-v33 li:hover { - color: rgba(231, 76, 60, 0.5); -} - -.u-carousel-indicators-v33 li.slick-active { - color: #e74c3c; -} - -.u-carousel-indicators-v33 li span { - display: none; -} - -/*------------------------------------ - Carousel indicators v34 -------------------------------------*/ -.u-carousel-indicators-v34 li { - display: block; - margin: 10px 0; -} - -.u-carousel-indicators-v34 li.slick-active span { - background-color: #e74c3c; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.u-carousel-indicators-v34 span { - width: 13px; - height: 13px; - border: 2px solid #fff; - border-radius: 50%; - -webkit-transform: scale(0.7); - -ms-transform: scale(0.7); - transform: scale(0.7); - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -/*------------------------------------ - Carousel indicators v35 -------------------------------------*/ -.u-carousel-indicators-v35 li, -.u-carousel-indicators-v35--white li, -.u-carousel-indicators-v35--main li { - display: inline-block; - margin: 0 5px; -} - -.u-carousel-indicators-v35 li.slick-active span, -.u-carousel-indicators-v35--white li.slick-active span, -.u-carousel-indicators-v35--main li.slick-active span { - opacity: 1; -} - -.u-carousel-indicators-v35 span, -.u-carousel-indicators-v35--white span, -.u-carousel-indicators-v35--main span { - width: 13px; - height: 13px; - background-color: #e74c3c; - border: 2px solid transparent; - opacity: .7; - border-radius: 50%; - -webkit-transform: scale(0.6); - -ms-transform: scale(0.6); - transform: scale(0.6); - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-carousel-indicators-v35 li.slick-active span, -.u-carousel-indicators-v35--white li.slick-active span, -.u-carousel-indicators-v35--main li.slick-active span { - background-color: transparent; - border-color: #e74c3c; - opacity: .5; - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.u-carousel-indicators-v35--white li span { - background-color: #fff; -} - -.u-carousel-indicators-v35--white li.slick-active span { - border-color: #fff; -} - -.u-carousel-indicators-v35--main li span { - background-color: #000; -} - -.u-carousel-indicators-v35--main li.slick-active span { - border-color: #000; -} - -/*------------------------------------ - Breadcrumbs v1 -------------------------------------*/ -.u-breadcrumbs-v1 { - padding-left: 0; - margin-bottom: 0; -} - -.u-breadcrumbs-v1 > * { - display: inline-block; - vertical-align: middle; -} - -.u-breadcrumbs-v1 a:hover { - text-decoration: none; -} - -/*------------------------------------ - Breadcrumbs v2 -------------------------------------*/ -.u-breadcrumbs-v2 { - padding-left: 0; - margin-bottom: 0; -} - -.u-breadcrumbs-v2 > * { - display: inline-block; - vertical-align: middle; -} - -.u-breadcrumbs-v2 > * > * { - display: block; - border-radius: 3px; -} - -.u-breadcrumbs-v2 a:hover { - text-decoration: none; -} - -.u-breadcrumbs-v2 [class*="u-triangle"]:not([class*="__front"]):not([class*="__back"]) { - display: none; -} - -@media (min-width: 768px) { - .u-breadcrumbs-v2 > * { - position: relative; - background-color: #fff; - } - .u-breadcrumbs-v2 > * > * { - border-radius: 0; - } - .u-breadcrumbs-v2 > *:first-child > * { - border-radius: 5px 0 0 5px; - } - .u-breadcrumbs-v2 > *:last-child > * { - border-radius: 0 5px 5px 0; - } - .u-breadcrumbs-v2 [class*="u-triangle"]:not([class*="__front"]):not([class*="__back"]) { - top: 0; - z-index: 2; - display: block; - width: 20px; - height: 100%; - margin-left: -0.05em; - } -} - -/*------------------------------------ - Dot line v1 -------------------------------------*/ -.u-dot-line-v1, -.u-dot-line-v1-2 { - position: relative; - display: block; - width: 100%; - font-size: 0; -} - -.u-dot-line-v1::before, .u-dot-line-v1::after, -.u-dot-line-v1-2::before, -.u-dot-line-v1-2::after { - content: ""; - position: absolute; - top: 50%; - display: block; - width: calc(50% + 30px); - border-top-width: 1px; - border-top-style: solid; - margin-top: -1px; -} - -.u-dot-line-v1::before, -.u-dot-line-v1-2::before { - left: -30px; -} - -li:first-child .u-dot-line-v1::before, li:first-child -.u-dot-line-v1-2::before { - display: none; -} - -.u-dot-line-v1::after, -.u-dot-line-v1-2::after { - right: -30px; -} - -li:last-child .u-dot-line-v1::after, li:last-child -.u-dot-line-v1-2::after { - display: none; -} - -.u-dot-line-v1__inner, -.u-dot-line-v1-2__inner { - position: relative; - z-index: 2; - display: inline-block; - width: 30px; - height: 30px; - border-width: 1px; - border-style: solid; - border-radius: 50%; -} - -.u-dot-line-v1__inner::before, -.u-dot-line-v1-2__inner::before { - content: ""; - position: absolute; - top: 50%; - left: 50%; - width: 12px; - height: 12px; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - border-radius: 50%; -} - -.u-dot-line-v1-2::before, .u-dot-line-v1-2::after, -.u-dot-line-v1-2-2::before, -.u-dot-line-v1-2-2::after { - display: none; -} - -@media (min-width: 992px) { - .u-dot-line-v1-2::before, .u-dot-line-v1-2::after { - display: block; - } -} - -/*------------------------------------ - Dot line v2 -------------------------------------*/ -.u-dot-line-v2, -.u-dot-line-v2-2 { - position: relative; - display: block; - width: 100%; - font-size: 0; -} - -.u-dot-line-v2::before, .u-dot-line-v2::after, -.u-dot-line-v2-2::before, -.u-dot-line-v2-2::after { - content: ""; - position: absolute; - top: 50%; - display: block; - width: calc(50% + 30px); - border-top-width: 1px; - border-top-style: solid; - margin-top: -1px; -} - -.u-dot-line-v2::before, -.u-dot-line-v2-2::before { - left: -30px; -} - -li:first-child .u-dot-line-v2::before, li:first-child -.u-dot-line-v2-2::before { - display: none; -} - -.u-dot-line-v2::after, -.u-dot-line-v2-2::after { - right: -30px; -} - -li:last-child .u-dot-line-v2::after, li:last-child -.u-dot-line-v2-2::after { - display: none; -} - -.u-dot-line-v2__inner, -.u-dot-line-v2-2__inner { - position: relative; - z-index: 2; - display: inline-block; - width: 20px; - height: 20px; -} - -.u-dot-line-v2__inner::before, -.u-dot-line-v2-2__inner::before { - content: ""; - position: absolute; - top: 50%; - left: 50%; - width: 10px; - height: 10px; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - border-width: 1px; - border-style: solid; - border-radius: 50%; -} - -.u-dot-line-v2-2::before, .u-dot-line-v2-2::after, -.u-dot-line-v2-2-2::before, -.u-dot-line-v2-2-2::after { - display: none; -} - -@media (min-width: 992px) { - .u-dot-line-v2-2::before, .u-dot-line-v2-2::after { - display: block; - } -} - -/*------------------------------------ - Heading-v1 -------------------------------------*/ -[class*="u-heading-v1-"] { - position: relative; -} - -[class*="u-heading-v1-"]::before, [class*="u-heading-v1-"]::after { - content: ""; - position: absolute; - left: auto; - right: 0; - width: 100%; - height: 0; - border-top-width: 1px; - border-color: inherit; -} - -[class*="u-heading-v1-"].text-center::before, [class*="u-heading-v1-"].text-center::after { - left: 0; - right: 0; -} - -[class*="u-heading-v1-"].text-right::before, [class*="u-heading-v1-"].text-right::after { - left: 0; - right: auto; -} - -.u-heading-v1__title { - position: relative; - display: inline-block; - margin-bottom: 0; - padding-right: 1.07143rem; - background-color: inherit; - z-index: 2; -} - -.text-right .u-heading-v1__title { - padding-left: 1.07143rem; - padding-right: 0; -} - -.text-center .u-heading-v1__title { - padding-left: 1.07143rem; - padding-right: 1.07143rem; -} - -/*------------------------------------ - Heading-v1-1 -------------------------------------*/ -.u-heading-v1-1::before { - top: 48%; - border-top-style: solid; -} - -.u-heading-v1-1::after { - top: 58%; - border-top-style: solid; -} - -/*------------------------------------ - Heading-v1-2 -------------------------------------*/ -.u-heading-v1-2::before { - top: 48%; - border-top-style: dashed; -} - -.u-heading-v1-2::after { - top: 58%; - border-top-style: dashed; -} - -/*------------------------------------ - Heading-v1-3 -------------------------------------*/ -.u-heading-v1-3::before { - top: 48%; - border-top-style: dotted; -} - -.u-heading-v1-3::after { - top: 58%; - border-top-style: dotted; -} - -/*------------------------------------ - Heading-v1-4 -------------------------------------*/ -.u-heading-v1-4::before { - top: 50%; - border-top-style: solid; -} - -/*------------------------------------ - Heading-v1-5 -------------------------------------*/ -.u-heading-v1-5::before { - top: 50%; - border-top-style: dashed; -} - -/*------------------------------------ - Heading-v1-6 -------------------------------------*/ -.u-heading-v1-6::before { - top: 50%; - border-top-style: dotted; -} - -/*------------------------------------ - Heading-v1-7 -------------------------------------*/ -.u-heading-v1-7 { - background: url('data:image/svg+xml,') 0 50% repeat-x; -} - -/*------------------------------------ - Heading-v2 -------------------------------------*/ -.u-heading-v2-1--bottom::after, .u-heading-v2-1--top::before, .u-heading-v2-2--bottom::after, .u-heading-v2-2--top::before, .u-heading-v2-3--bottom::after, .u-heading-v2-3--top::before, .u-heading-v2-4--bottom::after, .u-heading-v2-4--top::before, .u-heading-v2-5--bottom::after, .u-heading-v2-5--top::before, .u-heading-v2-6--bottom::after, .u-heading-v2-6--top::before, .u-heading-v2-7--bottom::after, .u-heading-v2-7--top::before { - content: ""; - display: inline-block; - border-top-style: solid; - border-color: inherit; -} - -/*------------------------------------ - Heading-v2-1 -------------------------------------*/ -.u-heading-v2-1--bottom::after, .u-heading-v2-1--top::before { - width: 3.14286rem; - border-top-width: 2px; -} - -.u-heading-v2-1--bottom::after { - margin-top: 1.78571rem; -} - -.u-heading-v2-1--top::before { - margin-bottom: 1.78571rem; -} - -/*------------------------------------ - Heading-v2-2 -------------------------------------*/ -.u-heading-v2-2--bottom::after, .u-heading-v2-2--top::before { - width: 2.71429rem; - border-top-width: 5px; -} - -.u-heading-v2-2--bottom::after { - margin-top: 1.78571rem; -} - -.u-heading-v2-2--top::before { - margin-bottom: 1.78571rem; -} - -/*------------------------------------ - Heading-v2-3 -------------------------------------*/ -.u-heading-v2-3--bottom::after, .u-heading-v2-3--top::before { - width: 5rem; - border-top-width: 1px; -} - -.u-heading-v2-3--bottom::after { - margin-top: 1.07143rem; -} - -.u-heading-v2-3--top::before { - margin-bottom: 1.07143rem; -} - -/*------------------------------------ - Heading-v2-4 -------------------------------------*/ -.u-heading-v2-4--bottom::after, .u-heading-v2-4--top::before { - width: 5rem; - border-top-width: 10px; -} - -.u-heading-v2-4--bottom::after { - margin-top: 2.14286rem; -} - -.u-heading-v2-4--top::before { - margin-bottom: 2.14286rem; -} - -/*------------------------------------ - Heading-v2-5 -------------------------------------*/ -.u-heading-v2-5--bottom::after, .u-heading-v2-5--top::before { - width: 5rem; - border-top-width: 2px; -} - -.u-heading-v2-5--bottom::after { - margin-top: 1.42857rem; -} - -.u-heading-v2-5--top::before { - margin-bottom: 1.42857rem; -} - -/*------------------------------------ - Heading-v2-6 -------------------------------------*/ -.u-heading-v2-6--bottom::after, .u-heading-v2-6--top::before { - width: 2.14286rem; - border-top-width: 1px; -} - -.u-heading-v2-6--bottom::after { - margin-top: 0.71429rem; -} - -.u-heading-v2-6--top::before { - margin-bottom: 0.71429rem; -} - -/*------------------------------------ - Heading-v2-7 -------------------------------------*/ -.u-heading-v2-7--bottom::after, .u-heading-v2-7--top::before { - width: 12rem; - border-top-width: 10px; -} - -.u-heading-v2-7--bottom::after { - margin-top: 2.85714rem; -} - -.u-heading-v2-7--top::before { - margin-bottom: 2.85714rem; -} - -/*------------------------------------ - Heading-v3 -------------------------------------*/ -[class*="u-heading-v3-"] { - border-bottom: 1px dotted #ccc; -} - -.u-heading-v3__title { - position: relative; - top: 1px; - display: inline-block; - margin: 0; - padding-bottom: 0.71429rem; - border-bottom: 1px solid #555; -} - -/*------------------------------------ - Heading-v4 -------------------------------------*/ -[class*="u-heading-v4-"] { - padding: 0.14286rem 0 0.21429rem 1.42857rem; - border-left-width: 4px; - border-left-style: solid; - border-color: inherit; -} - -[class*="u-heading-v4-"].text-right { - padding: 0.14286rem 1.42857rem 0.21429rem 0; - border-left-width: 0; - border-right-width: 4px; - border-right-style: solid; -} - -/*------------------------------------ - Heading-v5 -------------------------------------*/ -.u-heading-v5__title { - position: relative; - display: inline-block; - line-height: 1; -} - -.u-heading-v5__title::before { - content: ""; - position: absolute; - display: inline-block; - width: 0.85714rem; - height: 0.85714rem; - background: #a49da6; -} - -.u-heading-v5-color-primary .u-heading-v5__title::before { - background: #e74c3c; -} - -.u-heading-v5-color-gray-light-v2 .u-heading-v5__title::before { - background: #ccc; -} - -.u-heading-v5-color-white .u-heading-v5__title::before { - background: #fff; -} - -.u-heading-v5-rounded-50x .u-heading-v5__title::before { - border-radius: 50%; -} - -/*------------------------------------ - Heading-v5-1 -------------------------------------*/ -.u-heading-v5-1 .u-heading-v5__title { - padding-top: 1.78571rem; -} - -.u-heading-v5-1 .u-heading-v5__title::before { - top: 0; - left: 2px; -} - -.u-heading-v5-1.text-center .u-heading-v5__title::before { - left: 50%; - margin-left: -6px; -} - -.u-heading-v5-1.text-right .u-heading-v5__title::before { - left: auto; - right: 2px; -} - -/*------------------------------------ - Heading-v5-2 -------------------------------------*/ -.u-heading-v5-2 .u-heading-v5__title::before { - left: 0; - bottom: 3px; -} - -.u-heading-v5-2.text-right .u-heading-v5__title::before { - left: auto; - right: 0; -} - -.u-heading-v5-2 .u-heading-v5__title { - padding-left: 1.78571rem; -} - -.u-heading-v5-2.text-right .u-heading-v5__title { - padding-right: 1.78571rem; -} - -/*------------------------------------ - Heading-v5-3 -------------------------------------*/ -.u-heading-v5-3 .u-heading-v5__title::before { - left: 2px; - bottom: 0; -} - -.u-heading-v5-3.text-center .u-heading-v5__title::before { - left: 50%; - margin-left: -6px; -} - -.u-heading-v5-3.text-right .u-heading-v5__title::before { - left: auto; - right: 2px; -} - -.u-heading-v5-3 .u-heading-v5__title { - padding-bottom: 1.78571rem; -} - -/*------------------------------------ - Heading-v6 -------------------------------------*/ -.u-heading-v6__title { - display: inline-block; - position: relative; -} - -.u-heading-v6-1 .u-heading-v6__title::after, .u-heading-v6-1.text-center .u-heading-v6__title::before, .u-heading-v6-1.text-right .u-heading-v6__title::before, .u-heading-v6-2 .u-heading-v6__title::after, .u-heading-v6-2.text-center .u-heading-v6__title::before, .u-heading-v6-2.text-right .u-heading-v6__title::before { - content: ""; - position: absolute; - top: 50%; - display: inline-block; - width: 5rem; - border-top-width: 1px; - border-top-style: solid; - border-color: inherit; -} - -/*------------------------------------ - Heading-v6-1 -------------------------------------*/ -.u-heading-v6-1 .u-heading-v6__title, -.u-heading-v6-1 .u-heading-v6__subtitle { - padding-right: 6.42857rem; -} - -.u-heading-v6-1.text-center .u-heading-v6__title, -.u-heading-v6-1.text-right .u-heading-v6__title, -.u-heading-v6-1.text-center .u-heading-v6__subtitle, -.u-heading-v6-1.text-right .u-heading-v6__subtitle { - padding-left: 6.42857rem; -} - -.u-heading-v6-1.text-right .u-heading-v6__title, -.u-heading-v6-1.text-right .u-heading-v6__subtitle { - padding-right: 0; -} - -.u-heading-v6-1 .u-heading-v6__title::after { - right: 0; -} - -.u-heading-v6-1.text-center .u-heading-v6__title::before { - left: 0; -} - -.u-heading-v6-1.text-right .u-heading-v6__title::before { - left: 0; -} - -.u-heading-v6-1.text-right .u-heading-v6__title::after { - display: none; -} - -/*------------------------------------ - Heading-v6-1 -------------------------------------*/ -.u-heading-v6-2 .u-heading-v6__title, -.u-heading-v6-2 .u-heading-v6__subtitle { - padding-left: 6.42857rem; -} - -.u-heading-v6-2.text-center .u-heading-v6__title, -.u-heading-v6-2.text-right .u-heading-v6__title, -.u-heading-v6-2.text-center .u-heading-v6__subtitle, -.u-heading-v6-2.text-right .u-heading-v6__subtitle { - padding-right: 6.42857rem; -} - -.u-heading-v6-2.text-right .u-heading-v6__title, -.u-heading-v6-2.text-right .u-heading-v6__subtitle { - padding-left: 0; -} - -.u-heading-v6-2 .u-heading-v6__title::after { - left: 0; -} - -.u-heading-v6-2.text-center .u-heading-v6__title::before { - right: 0; -} - -.u-heading-v6-2.text-right .u-heading-v6__title::before { - right: 0; -} - -.u-heading-v6-2.text-right .u-heading-v6__title::after { - display: none; -} - -/*------------------------------------ - Heading-v7 -------------------------------------*/ -.u-heading-v7-divider::after, .text-center .u-heading-v7-divider::before, .text-right .u-heading-v7-divider::before { - content: ""; - position: absolute; - top: 52%; - display: inline-block; - width: 2.85714rem; - border-top-width: 1px; - border-top-style: solid; - border-color: inherit; -} - -.u-heading-v7-divider { - position: relative; - display: inline-block; -} - -.u-heading-v7-divider::after { - right: -3.92857rem; -} - -.text-center .u-heading-v7-divider::before { - left: -3.92857rem; -} - -.text-right .u-heading-v7-divider::before { - left: -3.92857rem; -} - -.text-right .u-heading-v7-divider::after { - display: none; -} - -.u-heading-v7-divider__icon { - display: inline-block; - font-size: 1.4rem; -} - -/*------------------------------------ - Heading-v7-1 -------------------------------------*/ -.u-heading-v7-1 .u-heading-v7-divider__icon { - font-size: .6rem; -} - -/*------------------------------------ - Heading-v7-3 -------------------------------------*/ -.u-heading-v7-3 .u-heading-v7-divider::after, -.u-heading-v7-3 .u-heading-v7-divider::before { - display: none; -} - -/*------------------------------------ - Heading-v8 -------------------------------------*/ -.u-heading-v8-1 .u-heading-v8__title strong, .u-heading-v8-2 .u-heading-v8__title strong { - display: inline-block; - font-weight: inherit; -} - -/*------------------------------------ - Heading-v8-1 -------------------------------------*/ -.u-heading-v8-1 .u-heading-v8__title strong { - padding: 0.07143rem 0.5rem; -} - -/*------------------------------------ - Heading-v8-2 -------------------------------------*/ -.u-heading-v8-2 .u-heading-v8__title strong { - padding: 0.71429rem 1.07143rem; -} - -/*------------------------------------ - Heading-v9 -------------------------------------*/ -.u-heading-v9 { - position: relative; - text-align: center; -} - -.u-heading-v9::before { - content: ""; - position: absolute; - left: 50%; - display: block; - margin-left: -35px; - width: 70px; - height: 96px; - border: 2px solid #e74c3c; -} - -.u-heading-v9--left { - padding-left: 35px; - text-align: left; -} - -.u-heading-v9--left::before { - left: 0; - margin-left: 0; -} - -.u-heading-v9--right { - padding-right: 35px; - text-align: right; -} - -.u-heading-v9--right::before { - left: auto; - right: 0; - margin-left: 0; -} - -.u-heading-v9 * { - position: relative; - z-index: 3; -} - -/*------------------------------------ - Heading-v10 -------------------------------------*/ -.u-heading-v10 { - position: relative; - text-align: center; -} - -.u-heading-v10__downer { - font-size: 115px; - line-height: 1; - opacity: .04; -} - -.u-heading-v10__upper { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - font-size: 34px; - color: #e74c3c; -} - -/*------------------------------------ - Headings -------------------------------------*/ -/* Massive Underline */ -.u-heading-massive-underline { - position: relative; -} - -.u-heading-massive-underline::before { - content: ""; - position: absolute; - left: 0; - right: 0; - bottom: .2em; - height: .3em; - background-color: rgba(231, 76, 60, 0.8); - z-index: -1; -} - -/* Heading With Dot */ -.u-header-title-dot::after { - content: "."; - color: #e74c3c; - display: inline-block; - font-size: 35px; -} - -/*------------------------------------ - Nonstandart BG's -------------------------------------*/ -.u-triangle-v1, .u-triangle-v1-2, .u-triangle-v2, .u-triangle-v3, .u-triangle-v4, .u-triangle-v5, .u-triangle-v6 { - position: relative; -} - -.u-triangle-v1::before, .u-triangle-v1-2::before, .u-triangle-v2::before, .u-triangle-v3::before, .u-triangle-v4::before, .u-triangle-v5::before, .u-triangle-v6::before { - content: ""; - position: absolute; - display: block; - z-index: 10; -} - -.u-triangle-v1::before, .u-triangle-v1-2::before, .u-triangle-v2::before, .u-triangle-v5::before, .u-triangle-v6::before { - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-triangle-v1.u-triangle-top.g-bg-primary::before, .u-triangle-v1.u-triangle-left.g-bg-primary::before, .u-triangle-v1-2.u-triangle-top.g-bg-primary::before, .u-triangle-v1-2.u-triangle-left.g-bg-primary::before, .u-triangle-v2.u-triangle-top.g-bg-primary::before, .u-triangle-v2.u-triangle-left.g-bg-primary::before, .u-triangle-v5.u-triangle-top.g-bg-primary::before, .u-triangle-v5.u-triangle-left.g-bg-primary::before, .u-triangle-v6.u-triangle-top.g-bg-primary::before, .u-triangle-v6.u-triangle-left.g-bg-primary::before { - border-bottom-color: #e74c3c; -} - -.u-triangle-v1.u-triangle-top.g-bg-white::before, .u-triangle-v1.u-triangle-left.g-bg-white::before, .u-triangle-v1-2.u-triangle-top.g-bg-white::before, .u-triangle-v1-2.u-triangle-left.g-bg-white::before, .u-triangle-v2.u-triangle-top.g-bg-white::before, .u-triangle-v2.u-triangle-left.g-bg-white::before, .u-triangle-v5.u-triangle-top.g-bg-white::before, .u-triangle-v5.u-triangle-left.g-bg-white::before, .u-triangle-v6.u-triangle-top.g-bg-white::before, .u-triangle-v6.u-triangle-left.g-bg-white::before { - border-bottom-color: #fff; -} - -.u-triangle-v1.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-left.g-bg-gray-light-v9::before { - border-bottom-color: #f7f7f7; -} - -.u-triangle-v1.u-triangle-top.g-bg-black::before, .u-triangle-v1.u-triangle-left.g-bg-black::before, .u-triangle-v1-2.u-triangle-top.g-bg-black::before, .u-triangle-v1-2.u-triangle-left.g-bg-black::before, .u-triangle-v2.u-triangle-top.g-bg-black::before, .u-triangle-v2.u-triangle-left.g-bg-black::before, .u-triangle-v5.u-triangle-top.g-bg-black::before, .u-triangle-v5.u-triangle-left.g-bg-black::before, .u-triangle-v6.u-triangle-top.g-bg-black::before, .u-triangle-v6.u-triangle-left.g-bg-black::before { - border-bottom-color: #000; -} - -.u-triangle-v1.u-triangle-bottom.g-bg-primary::before, .u-triangle-v1.u-triangle-right.g-bg-primary::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-primary::before, .u-triangle-v1-2.u-triangle-right.g-bg-primary::before, .u-triangle-v2.u-triangle-bottom.g-bg-primary::before, .u-triangle-v2.u-triangle-right.g-bg-primary::before, .u-triangle-v5.u-triangle-bottom.g-bg-primary::before, .u-triangle-v5.u-triangle-right.g-bg-primary::before, .u-triangle-v6.u-triangle-bottom.g-bg-primary::before, .u-triangle-v6.u-triangle-right.g-bg-primary::before { - border-top-color: #e74c3c; -} - -.u-triangle-v1.u-triangle-bottom.g-bg-white::before, .u-triangle-v1.u-triangle-right.g-bg-white::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-white::before, .u-triangle-v1-2.u-triangle-right.g-bg-white::before, .u-triangle-v2.u-triangle-bottom.g-bg-white::before, .u-triangle-v2.u-triangle-right.g-bg-white::before, .u-triangle-v5.u-triangle-bottom.g-bg-white::before, .u-triangle-v5.u-triangle-right.g-bg-white::before, .u-triangle-v6.u-triangle-bottom.g-bg-white::before, .u-triangle-v6.u-triangle-right.g-bg-white::before { - border-top-color: #fff; -} - -.u-triangle-v1.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-right.g-bg-gray-light-v9::before { - border-top-color: #f7f7f7; -} - -.u-triangle-v1.u-triangle-bottom.g-bg-black::before, .u-triangle-v1.u-triangle-right.g-bg-black::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-black::before, .u-triangle-v1-2.u-triangle-right.g-bg-black::before, .u-triangle-v2.u-triangle-bottom.g-bg-black::before, .u-triangle-v2.u-triangle-right.g-bg-black::before, .u-triangle-v5.u-triangle-bottom.g-bg-black::before, .u-triangle-v5.u-triangle-right.g-bg-black::before, .u-triangle-v6.u-triangle-bottom.g-bg-black::before, .u-triangle-v6.u-triangle-right.g-bg-black::before { - border-top-color: #000; -} - -.u-triangle-v1.u-triangle-top::before, .u-triangle-v1.u-triangle-bottom::before, .u-triangle-v1.u-triangle-left::before, .u-triangle-v1.u-triangle-right::before { - left: 50%; - margin-left: -20px; -} - -.u-triangle-v1.u-triangle-top::before, .u-triangle-v1.u-triangle-left::before { - top: -25px; - border-width: 0 20px 25px 20px; -} - -.u-triangle-v1.u-triangle-bottom::before, .u-triangle-v1.u-triangle-right::before { - bottom: -25px; - border-width: 25px 20px 0 20px; -} - -.u-triangle-v1-2.u-triangle-left.g-bg-primary::before, .u-triangle-v1-2.u-triangle-left.g-bg-white::before, .u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-left.g-bg-black::before, .u-triangle-v1-2.u-triangle-right.g-bg-primary::before, .u-triangle-v1-2.u-triangle-right.g-bg-white::before, .u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-right.g-bg-black::before { - border-bottom-color: transparent; - border-top-color: transparent; -} - -.u-triangle-v1-2.u-triangle-left::before, .u-triangle-v1-2.u-triangle-right::before { - top: 50%; - bottom: auto; - left: auto; - margin-top: -5px; - margin-left: 0; -} - -.u-triangle-v1-2.u-triangle-left::before { - left: -5px; - border-width: 5px 5px 5px 0; -} - -.u-triangle-v1-2.u-triangle-left.g-bg-primary::before { - border-right-color: #e74c3c; -} - -.u-triangle-v1-2.u-triangle-left.g-bg-white::before { - border-right-color: #fff; -} - -.u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before { - border-right-color: #f7f7f7; -} - -.u-triangle-v1-2.u-triangle-left.g-bg-black::before { - border-right-color: #000; -} - -.u-triangle-v1-2.u-triangle-right::before { - right: -5px; - border-width: 5px 0 5px 5px; -} - -.u-triangle-v1-2.u-triangle-right.g-bg-primary::before { - border-left-color: #e74c3c; -} - -.u-triangle-v1-2.u-triangle-right.g-bg-white::before { - border-left-color: #fff; -} - -.u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before { - border-left-color: #f7f7f7; -} - -.u-triangle-v1-2.u-triangle-right.g-bg-black::before { - border-left-color: #000; -} - -.u-triangle-v2.u-triangle-top::before, .u-triangle-v2.u-triangle-bottom::before { - left: 45px; -} - -.u-triangle-v2.u-triangle-left::before, .u-triangle-v2.u-triangle-right::before { - top: 23px; -} - -.u-triangle-v2.u-triangle-top::before { - top: -15px; - border-width: 0 17px 15px 17px; -} - -.u-triangle-v2.u-triangle-bottom::before { - bottom: -15px; - border-width: 15px 17px 0 17px; -} - -.u-triangle-v2.u-triangle-left::before { - left: -15px; - border-width: 17px 15px 17px 0; -} - -.u-triangle-v2.u-triangle-right::before { - right: -15px; - border-width: 17px 0 17px 15px; -} - -.u-triangle-v3::before, .u-triangle-v4::before { - background-repeat: no-repeat; -} - -.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - height: 50px; - left: 0; -} - -.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-left::before { - top: -50px; -} - -.u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-right::before { - bottom: -50px; -} - -.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-left::before { - width: 100%; - background-size: 100%; - background-position: top right; -} - -.u-triangle-v3.u-triangle-top.g-bg-primary::before, .u-triangle-v3.u-triangle-left.g-bg-primary::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #e74c3c 50%); -} - -.u-triangle-v3.u-triangle-top.g-bg-white::before, .u-triangle-v3.u-triangle-left.g-bg-white::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%); -} - -.u-triangle-v3.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%); -} - -.u-triangle-v3.u-triangle-top.g-bg-black::before, .u-triangle-v3.u-triangle-left.g-bg-black::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%); -} - -.u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-right::before { - width: 100%; - background-size: 100%; - background-position: top right; -} - -.u-triangle-v3.u-triangle-bottom.g-bg-primary::before, .u-triangle-v3.u-triangle-right.g-bg-primary::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #e74c3c 50%); -} - -.u-triangle-v3.u-triangle-bottom.g-bg-white::before, .u-triangle-v3.u-triangle-right.g-bg-white::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%); -} - -.u-triangle-v3.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%); -} - -.u-triangle-v3.u-triangle-bottom.g-bg-black::before, .u-triangle-v3.u-triangle-right.g-bg-black::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #000 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #000 50%); -} - -.u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-left::before { - width: 100%; - background-size: 50.2% 100%; - background-position: top left, top right; -} - -.u-triangle-v4.u-triangle-top.g-bg-primary::before, .u-triangle-v4.u-triangle-left.g-bg-primary::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(top right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(top right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #e74c3c 50%), linear-gradient(to bottom left, transparent 49.6%, #e74c3c 50%); -} - -.u-triangle-v4.u-triangle-top.g-bg-white::before, .u-triangle-v4.u-triangle-left.g-bg-white::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)), -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #fff 50%), -webkit-linear-gradient(top right, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #fff 50%), -o-linear-gradient(top right, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to bottom left, transparent 49.6%, #fff 50%); -} - -.u-triangle-v4.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)), -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%), -webkit-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%), -o-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%); -} - -.u-triangle-v4.u-triangle-top.g-bg-black::before, .u-triangle-v4.u-triangle-left.g-bg-black::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #000)), -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #000 50%), -webkit-linear-gradient(top right, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #000 50%), -o-linear-gradient(top right, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to bottom left, transparent 49.6%, #000 50%); -} - -.u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-right::before { - width: 100%; - background-size: 50.2% 100%; - background-position: top left, top right; -} - -.u-triangle-v4.u-triangle-bottom.g-bg-primary::before, .u-triangle-v4.u-triangle-right.g-bg-primary::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #e74c3c 50%), linear-gradient(to top left, transparent 49.6%, #e74c3c 50%); -} - -.u-triangle-v4.u-triangle-bottom.g-bg-white::before, .u-triangle-v4.u-triangle-right.g-bg-white::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #fff)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #fff 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #fff 50%), -o-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); -} - -.u-triangle-v4.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%), -o-linear-gradient(bottom right, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%); -} - -.u-triangle-v4.u-triangle-bottom.g-bg-black::before, .u-triangle-v4.u-triangle-right.g-bg-black::before { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #000)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(bottom left, transparent 49.6%, #000 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(bottom left, transparent 49.6%, #000 50%), -o-linear-gradient(bottom right, transparent 49.6%, #000 50%); - background-image: linear-gradient(to top right, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%); -} - -.u-triangle-v5.u-triangle-top::before, .u-triangle-v5.u-triangle-bottom::before { - left: 80px; -} - -.u-triangle-v5.u-triangle-left::before, .u-triangle-v5.u-triangle-right::before { - top: 23px; -} - -.u-triangle-v5.u-triangle-top::before { - top: -22px; - border-width: 22px 0 0 22px; -} - -.u-triangle-v5.u-triangle-bottom::before { - bottom: -22px; - border-width: 22px 22px 0 0; -} - -.u-triangle-v5.u-triangle-left::before { - left: -22px; - border-width: 0 22px 22px 0; -} - -.u-triangle-v5.u-triangle-right::before { - right: -22px; - border-width: 22px 22px 0 0; -} - -.u-triangle-v6.u-triangle-top::before, .u-triangle-v6.u-triangle-bottom::before { - left: 8%; -} - -.u-triangle-v6.u-triangle-left::before, .u-triangle-v6.u-triangle-right::before { - top: 8%; -} - -.u-triangle-v6.u-triangle-top::before { - top: -22px; - border-width: 22px 22px 0 0; -} - -.u-triangle-v6.u-triangle-bottom::before { - bottom: -22px; - border-width: 22px 0 0 22px; -} - -.u-triangle-v6.u-triangle-left::before { - left: -22px; - border-width: 22px 22px 0 0; -} - -.u-triangle-v6.u-triangle-right::before { - right: -22px; - border-width: 0 22px 22px 0; -} - -[class*="u-triangle-inclusive-v1"]:not([class*="__front"]):not([class*="__back"]), -[class*="u-triangle-inclusive-v2"]:not([class*="__front"]):not([class*="__back"]) { - position: absolute; -} - -.u-triangle-inclusive-v1--left { - right: -14px; -} - -.u-triangle-inclusive-v1--left__front { - position: absolute; - top: 1px; - left: 0; -} - -.u-triangle-inclusive-v1--left__front { - border-width: 14px 0 14px 14px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--left__back { - border-width: 15px 0 15px 15px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--right { - left: -14px; -} - -.u-triangle-inclusive-v1--right__front { - position: absolute; - top: 1px; - right: 0; -} - -.u-triangle-inclusive-v1--right__front { - border-width: 14px 14px 14px 0; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--right__back { - border-width: 15px 15px 15px 0; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--top { - top: -14px; -} - -.u-triangle-inclusive-v1--top__front { - position: absolute; - left: 1px; - bottom: 0; -} - -.u-triangle-inclusive-v1--top__front { - border-width: 0 14px 14px 14px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--top__back { - border-width: 0 15px 15px 15px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--bottom { - bottom: -14px; -} - -.u-triangle-inclusive-v1--bottom__front { - position: absolute; - left: 1px; - bottom: 1px; -} - -.u-triangle-inclusive-v1--bottom__front { - border-width: 14px 14px 0 14px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v1--bottom__back { - border-width: 15px 15px 0 15px; - border-style: solid; - border-color: transparent; -} - -.u-triangle-inclusive-v2--left { - left: 100%; -} - -.u-triangle-inclusive-v2--left__front, .u-triangle-inclusive-v2--left__back { - position: absolute; - left: 0; - height: 100%; -} - -.u-triangle-inclusive-v2--left__front svg, .u-triangle-inclusive-v2--left__back svg { - height: 100%; - vertical-align: middle; -} - -.u-triangle-inclusive-v2--left__front { - z-index: 2; -} - -.u-triangle-inclusive-v2--left__front svg polygon { - fill: #eee; -} - -.u-triangle-inclusive-v2--left__back { - z-index: 1; -} - -.u-triangle-inclusive-v2--left__back svg polygon { - fill: #fff; -} - -.u-triangle-inclusive-v2--right { - right: 100%; -} - -.u-triangle-inclusive-v2--right__front, .u-triangle-inclusive-v2--right__back { - position: absolute; - right: 0; - height: 100%; -} - -.u-triangle-inclusive-v2--right__front svg, .u-triangle-inclusive-v2--right__back svg { - height: 100%; - vertical-align: middle; -} - -.u-triangle-inclusive-v2--right__front { - z-index: 2; -} - -.u-triangle-inclusive-v2--right__front svg polygon { - fill: #eee; -} - -.u-triangle-inclusive-v2--right__back { - z-index: 1; -} - -.u-triangle-inclusive-v2--right__back svg polygon { - fill: #fff; -} - -.u-triangle-inclusive-v2--top { - bottom: 100%; -} - -.u-triangle-inclusive-v2--top__front, .u-triangle-inclusive-v2--top__back { - position: absolute; - bottom: 0; - width: 100%; -} - -.u-triangle-inclusive-v2--top__front svg, .u-triangle-inclusive-v2--top__back svg { - width: 100%; - vertical-align: bottom; -} - -.u-triangle-inclusive-v2--top__front { - z-index: 2; -} - -.u-triangle-inclusive-v2--top__front svg polygon { - fill: #eee; -} - -.u-triangle-inclusive-v2--top__back { - z-index: 1; -} - -.u-triangle-inclusive-v2--top__back svg polygon { - fill: #fff; -} - -.u-triangle-inclusive-v2--bottom { - top: 100%; -} - -.u-triangle-inclusive-v2--bottom__front, .u-triangle-inclusive-v2--bottom__back { - position: absolute; - top: 0; - width: 100%; -} - -.u-triangle-inclusive-v2--bottom__front svg, .u-triangle-inclusive-v2--bottom__back svg { - width: 100%; - vertical-align: top; -} - -.u-triangle-inclusive-v2--bottom__front { - z-index: 2; -} - -.u-triangle-inclusive-v2--bottom__front svg polygon { - fill: #eee; -} - -.u-triangle-inclusive-v2--bottom__back { - z-index: 1; -} - -.u-triangle-inclusive-v2--bottom__back svg polygon { - fill: #fff; -} - -.u-semicircle-v1 { - position: relative; - z-index: 10; -} - -.u-semicircle-v1::before { - content: ""; - position: absolute; - z-index: -1; - display: block; - width: 150%; - height: 150%; - border-radius: 50%; -} - -.u-semicircle-v1.g-bg-primary::before { - background: #e74c3c; -} - -.u-semicircle-v1.g-bg-white::before { - background: #fff; -} - -.u-semicircle-v1.g-bg-gray-light-v9::before { - background: #f7f7f7; -} - -.u-semicircle-v1.g-bg-black::before { - background: #000; -} - -.u-semicircle-top::before, .u-semicircle-right::before { - top: -20%; - left: -25%; -} - -.u-semicircle-bottom::before, .u-semicircle-left::before { - bottom: -20%; - left: -25%; -} - -@media (max-width: 575px) { - .u-triangle-none--xs::before, - .u-semicircle-none--xs::before { - display: none; - } -} - -@media (min-width: 576px) { - .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before { - height: 75px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - width: 75px; - } - .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before { - top: -75px; - } - .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before { - bottom: -75px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before { - left: -75px; - } - .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before { - right: -75px; - } -} - -@media (max-width: 767px) { - .u-triangle-none--sm::before, - .u-semicircle-none--sm::before { - display: none; - } -} - -@media (min-width: 768px) { - .u-triangle-v1.u-triangle-left.g-bg-primary::before, .u-triangle-v1.u-triangle-left.g-bg-white::before, .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-left.g-bg-black::before, .u-triangle-v1.u-triangle-right.g-bg-primary::before, .u-triangle-v1.u-triangle-right.g-bg-white::before, .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-right.g-bg-black::before { - border-bottom-color: transparent; - border-top-color: transparent; - } - .u-triangle-v1.u-triangle-left::before, .u-triangle-v1.u-triangle-right::before { - top: 50%; - bottom: auto; - left: auto; - margin-top: -20px; - margin-left: 0; - } - .u-triangle-v1.u-triangle-left::before { - left: -25px; - border-width: 20px 25px 20px 0; - } - .u-triangle-v1.u-triangle-left.g-bg-primary::before { - border-right-color: #e74c3c; - } - .u-triangle-v1.u-triangle-left.g-bg-white::before { - border-right-color: #fff; - } - .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before { - border-right-color: #f7f7f7; - } - .u-triangle-v1.u-triangle-left.g-bg-black::before { - border-right-color: #000; - } - .u-triangle-v1.u-triangle-right::before { - right: -25px; - border-width: 20px 0 20px 25px; - } - .u-triangle-v1.u-triangle-right.g-bg-primary::before { - border-left-color: #e74c3c; - } - .u-triangle-v1.u-triangle-right.g-bg-white::before { - border-left-color: #fff; - } - .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before { - border-left-color: #f7f7f7; - } - .u-triangle-v1.u-triangle-right.g-bg-black::before { - border-left-color: #000; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - height: 100%; - left: auto; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before { - top: 0; - } - .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before { - top: 0; - bottom: auto; - } - .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before { - height: 100px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - width: 100px; - } - .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before { - top: -100px; - } - .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before { - bottom: -100px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before { - left: -100px; - } - .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before { - right: -100px; - } - .u-triangle-v3.u-triangle-left.g-bg-primary::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #e74c3c 50%); - } - .u-triangle-v3.u-triangle-left.g-bg-white::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%); - } - .u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%); - } - .u-triangle-v3.u-triangle-left.g-bg-black::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%); - } - .u-triangle-v3.u-triangle-right.g-bg-primary::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #e74c3c 50%); - } - .u-triangle-v3.u-triangle-right.g-bg-white::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%); - } - .u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%); - } - .u-triangle-v3.u-triangle-right.g-bg-black::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%); - } - .u-triangle-v4.u-triangle-left::before { - height: 100%; - background-size: 100% 50.2%; - background-position: top right, bottom left; - } - .u-triangle-v4.u-triangle-left.g-bg-primary::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #e74c3c 50%), linear-gradient(to top right, transparent 49.6%, #e74c3c 50%); - } - .u-triangle-v4.u-triangle-left.g-bg-white::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #fff 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #fff 50%), -o-linear-gradient(bottom left, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to top right, transparent 49.6%, #fff 50%); - } - .u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #f7f7f7 50%), -o-linear-gradient(bottom left, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%); - } - .u-triangle-v4.u-triangle-left.g-bg-black::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #000)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #000 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #000 50%), -o-linear-gradient(bottom left, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to top right, transparent 49.6%, #000 50%); - } - .u-triangle-v4.u-triangle-right::before { - height: 100%; - background-size: 100% 50.2%; - background-position: top right, bottom left; - } - .u-triangle-v4.u-triangle-right.g-bg-primary::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #e74c3c 50%), linear-gradient(to top left, transparent 49.6%, #e74c3c 50%); - } - .u-triangle-v4.u-triangle-right.g-bg-white::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #fff 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #fff 50%), -o-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); - } - .u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #f7f7f7)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #f7f7f7 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #f7f7f7 50%), -o-linear-gradient(bottom right, transparent 49.6%, #f7f7f7 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%); - } - .u-triangle-v4.u-triangle-right.g-bg-black::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #000)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #000)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #000 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #000 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #000 50%), -o-linear-gradient(bottom right, transparent 49.6%, #000 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%); - } - .u-semicircle-left::before { - top: -25%; - left: -20%; - } - .u-semicircle-right::before { - top: -25%; - bottom: auto; - left: auto; - right: -20%; - } -} - -@media (max-width: 991px) { - .u-triangle-none--md::before, - .u-semicircle-none--md::before { - display: none; - } -} - -@media (min-width: 992px) { - .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before { - height: 150px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - width: 150px; - } - .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before { - top: -150px; - } - .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before { - bottom: -150px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before { - left: -150px; - } - .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before { - right: -150px; - } -} - -@media (max-width: 1200px) { - .u-triangle-none--lg::before, - .u-semicircle-none--lg::before { - display: none; - } -} - -@media (min-width: 1200px) { - .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before { - height: 200px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before { - width: 200px; - } - .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before { - top: -200px; - } - .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before { - bottom: -200px; - } - .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before { - left: -200px; - } - .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before { - right: -200px; - } -} - -.u-triangle-none--xl::before, -.u-semicircle-none--xl::before { - display: none; -} - -.u-zigzag-top { - position: relative; - background: #f7f7f7; - z-index: 1; -} - -.u-zigzag-top::before { - content: ""; - position: absolute; - bottom: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(-225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #f7f7f7 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -.u-zigzag-bottom { - position: relative; - background: #f7f7f7; - z-index: 1; -} - -.u-zigzag-bottom::after { - content: ""; - position: absolute; - top: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(315deg, #f7f7f7 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -.u-zigzag-top-white { - position: relative; - background: #fff; - z-index: 1; -} - -.u-zigzag-top-white::before { - content: ""; - position: absolute; - bottom: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(-225deg, #fff 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #fff 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -.u-zigzag-top-primary { - position: relative; - background: #e74c3c; - z-index: 1; -} - -.u-zigzag-top-primary::before { - content: ""; - position: absolute; - bottom: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(-225deg, #e74c3c 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #e74c3c 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -.u-zigzag-top-black { - position: relative; - background: #000; - z-index: 1; -} - -.u-zigzag-top-black::before { - content: ""; - position: absolute; - bottom: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(-225deg, #000 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #000 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -.u-zigzag-top-gray-dark-v1 { - position: relative; - background: #111; - z-index: 1; -} - -.u-zigzag-top-gray-dark-v1::before { - content: ""; - position: absolute; - bottom: 100%; - left: 0; - right: 0; - display: block; - height: 20px; - background: -webkit-linear-gradient(-225deg, #111 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #111 10px, transparent 0) 0 10px; - background-position: top left; - background-repear: repeat-x; - background-size: 20px 20px; -} - -/*------------------------------------ - Nonstandard-bg -------------------------------------*/ -[class*="u-ns-bg-v"] { - position: relative; -} - -[class*="u-ns-bg-v"]::before { - content: ""; - position: absolute; - display: block; - z-index: 3; -} - -/*------------------------------------ - Nonstandard Background v1 -------------------------------------*/ -[class*="u-ns-bg-v1"] { - position: relative; -} - -[class*="u-ns-bg-v1"]::before { - content: ""; - position: absolute; - z-index: 3; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v1-top::before, .u-ns-bg-v1-bottom::before { - left: 50%; - margin-left: -20px; -} - -.u-ns-bg-v1-left::before, .u-ns-bg-v1-right::before { - top: 50%; - margin-top: -20px; -} - -.u-ns-bg-v1-top::before { - top: -25px; - border-width: 0 20px 25px 20px; -} - -.u-ns-bg-v1-top.g-bg-primary::before, -.g-parent.g-bg-primary .u-ns-bg-v1-top::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v1-top.g-bg-white::before, -.g-parent.g-bg-white .u-ns-bg-v1-top::before { - border-bottom-color: #fff; -} - -.u-ns-bg-v1-top.g-bg-gray-light-v2::before, -.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-top::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v1-top.g-bg-black::before, -.g-parent.g-bg-black .u-ns-bg-v1-top::before { - border-bottom-color: #000; -} - -.u-ns-bg-v1-bottom::before { - bottom: -25px; - border-width: 25px 20px 0 20px; -} - -.u-ns-bg-v1-bottom.g-bg-primary::before, -.g-parent.g-bg-primary .u-ns-bg-v1-bottom::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v1-bottom.g-bg-white::before, -.g-parent.g-bg-white .u-ns-bg-v1-bottom::before { - border-top-color: #fff; -} - -.u-ns-bg-v1-bottom.g-bg-gray-light-v2::before, -.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-bottom::before { - border-top-color: #ccc; -} - -.u-ns-bg-v1-bottom.g-bg-black::before, -.g-parent.g-bg-black .u-ns-bg-v1-bottom::before { - border-top-color: #000; -} - -.u-ns-bg-v1-left::before { - left: -25px; - border-width: 20px 25px 20px 0; -} - -.u-ns-bg-v1-left.g-bg-primary::before, -.g-parent.g-bg-primary .u-ns-bg-v1-left::before { - border-right-color: #e74c3c; -} - -.u-ns-bg-v1-left.g-bg-white::before, -.g-parent.g-bg-white .u-ns-bg-v1-left::before { - border-right-color: #fff; -} - -.u-ns-bg-v1-left.g-bg-gray-light-v2::before, -.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-left::before { - border-right-color: #ccc; -} - -.u-ns-bg-v1-left.g-bg-black::before, -.g-parent.g-bg-black .u-ns-bg-v1-left::before { - border-right-color: #000; -} - -.u-ns-bg-v1-right::before { - right: -25px; - border-width: 20px 0 20px 25px; -} - -.u-ns-bg-v1-right.g-bg-primary::before, -.g-parent.g-bg-primary .u-ns-bg-v1-right::before { - border-left-color: #e74c3c; -} - -.u-ns-bg-v1-right.g-bg-white::before, -.g-parent.g-bg-white .u-ns-bg-v1-right::before { - border-left-color: #fff; -} - -.u-ns-bg-v1-right.g-bg-gray-light-v2::before, -.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-right::before { - border-left-color: #ccc; -} - -.u-ns-bg-v1-right.g-bg-black::before, -.g-parent.g-bg-black .u-ns-bg-v1-right::before { - border-left-color: #000; -} - -@media (min-width: 768px) { - .u-ns-bg-v1-top--md::before, .u-ns-bg-v1-bottom--md::before, .u-ns-bg-v1-left--md::before, .u-ns-bg-v1-right--md::before { - top: auto; - bottom: auto; - left: auto; - right: auto; - margin-top: 0; - margin-bottom: 0; - margin-left: 0; - margin-right: 0; - } - .u-ns-bg-v1-top--md.g-bg-primary::before, .u-ns-bg-v1-top--md.g-bg-white::before, .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-top--md.g-bg-black::before, .u-ns-bg-v1-bottom--md.g-bg-primary::before, .u-ns-bg-v1-bottom--md.g-bg-white::before, .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-bottom--md.g-bg-black::before, .u-ns-bg-v1-left--md.g-bg-primary::before, .u-ns-bg-v1-left--md.g-bg-white::before, .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-left--md.g-bg-black::before, .u-ns-bg-v1-right--md.g-bg-primary::before, .u-ns-bg-v1-right--md.g-bg-white::before, .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-right--md.g-bg-black::before { - border-top-color: transparent; - border-bottom-color: transparent; - border-left-color: transparent; - border-right-color: transparent; - } - .u-ns-bg-v1-top--md::before, .u-ns-bg-v1-bottom--md::before { - left: 50%; - margin-left: -20px; - } - .u-ns-bg-v1-left--md::before, .u-ns-bg-v1-right--md::before { - top: 50%; - margin-top: -20px; - } - .u-ns-bg-v1-top--md::before { - top: -25px; - border-width: 0 20px 25px 20px; - } - .u-ns-bg-v1-top--md.g-bg-primary::before { - border-bottom-color: #e74c3c; - } - .u-ns-bg-v1-top--md.g-bg-white::before { - border-bottom-color: #fff; - } - .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; - } - .u-ns-bg-v1-top--md.g-bg-black::before { - border-bottom-color: #000; - } - .u-ns-bg-v1-bottom--md::before { - bottom: -25px; - border-width: 25px 20px 0 20px; - } - .u-ns-bg-v1-bottom--md.g-bg-primary::before { - border-top-color: #e74c3c; - } - .u-ns-bg-v1-bottom--md.g-bg-white::before { - border-top-color: #fff; - } - .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before { - border-top-color: #ccc; - } - .u-ns-bg-v1-bottom--md.g-bg-black::before { - border-top-color: #000; - } - .u-ns-bg-v1-left--md::before { - left: -25px; - border-width: 20px 25px 20px 0; - } - .u-ns-bg-v1-left--md.g-bg-primary::before { - border-right-color: #e74c3c; - } - .u-ns-bg-v1-left--md.g-bg-white::before { - border-right-color: #fff; - } - .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before { - border-right-color: #ccc; - } - .u-ns-bg-v1-left--md.g-bg-black::before { - border-right-color: #000; - } - .u-ns-bg-v1-right--md::before { - right: -25px; - border-width: 20px 0 20px 25px; - } - .u-ns-bg-v1-right--md.g-bg-primary::before { - border-left-color: #e74c3c; - } - .u-ns-bg-v1-right--md.g-bg-white::before { - border-left-color: #fff; - } - .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before { - border-left-color: #ccc; - } - .u-ns-bg-v1-right--md.g-bg-black::before { - border-left-color: #000; - } -} - -/*------------------------------------ - Nonstandard Background v2 -------------------------------------*/ -[class*="u-ns-bg-v2"] { - position: relative; -} - -[class*="u-ns-bg-v2"]::before { - content: ""; - position: absolute; - z-index: 3; - display: block; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v2-top::before, .u-ns-bg-v2-bottom::before, -.u-ns-bg-v2-2-top::before, -.u-ns-bg-v2-2-bottom::before { - left: 45px; -} - -.u-ns-bg-v2-left::before, .u-ns-bg-v2-right::before, -.u-ns-bg-v2-2-left::before, -.u-ns-bg-v2-2-right::before { - top: 23px; -} - -.u-ns-bg-v2-top::before, -.u-ns-bg-v2-2-top::before { - top: -15px; - border-width: 0 17px 15px 17px; -} - -.u-ns-bg-v2-top.g-bg-primary::before, -.u-ns-bg-v2-2-top.g-bg-primary::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v2-top.g-bg-white::before, -.u-ns-bg-v2-2-top.g-bg-white::before { - border-bottom-color: #fff; -} - -.u-ns-bg-v2-top.g-bg-gray-light-v2::before, -.u-ns-bg-v2-2-top.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v2-top.g-bg-gray-light-v5::before, -.u-ns-bg-v2-2-top.g-bg-gray-light-v5::before { - border-bottom-color: #f7f7f7; -} - -.u-ns-bg-v2-top.g-bg-black::before, -.u-ns-bg-v2-2-top.g-bg-black::before { - border-bottom-color: #000; -} - -.u-ns-bg-v2-bottom::before, -.u-ns-bg-v2-2-bottom::before { - bottom: -15px; - border-width: 15px 17px 0 17px; -} - -.u-ns-bg-v2-bottom.g-bg-primary::before, -.u-ns-bg-v2-2-bottom.g-bg-primary::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v2-bottom.g-bg-white::before, -.u-ns-bg-v2-2-bottom.g-bg-white::before { - border-top-color: #fff; -} - -.u-ns-bg-v2-bottom.g-bg-gray-light-v2::before, -.u-ns-bg-v2-2-bottom.g-bg-gray-light-v2::before { - border-top-color: #ccc; -} - -.u-ns-bg-v2-bottom.g-bg-black::before, -.u-ns-bg-v2-2-bottom.g-bg-black::before { - border-top-color: #000; -} - -.u-ns-bg-v2-left::before, -.u-ns-bg-v2-2-left::before { - left: -15px; - border-width: 17px 15px 17px 0; -} - -.u-ns-bg-v2-left.g-bg-primary::before, -.u-ns-bg-v2-2-left.g-bg-primary::before { - border-right-color: #e74c3c; -} - -.u-ns-bg-v2-left.g-bg-white::before, -.u-ns-bg-v2-2-left.g-bg-white::before { - border-right-color: #fff; -} - -.u-ns-bg-v2-left.g-bg-gray-light-v2::before, -.u-ns-bg-v2-2-left.g-bg-gray-light-v2::before { - border-right-color: #ccc; -} - -.u-ns-bg-v2-left.g-bg-black::before, -.u-ns-bg-v2-2-left.g-bg-black::before { - border-right-color: #000; -} - -.u-ns-bg-v2-right::before, -.u-ns-bg-v2-2-right::before { - right: -15px; - border-width: 17px 0 17px 15px; -} - -.u-ns-bg-v2-right.g-bg-primary::before, -.u-ns-bg-v2-2-right.g-bg-primary::before { - border-left-color: #e74c3c; -} - -.u-ns-bg-v2-right.g-bg-white::before, -.u-ns-bg-v2-2-right.g-bg-white::before { - border-left-color: #fff; -} - -.u-ns-bg-v2-right.g-bg-gray-light-v2::before, -.u-ns-bg-v2-2-right.g-bg-gray-light-v2::before { - border-left-color: #ccc; -} - -.u-ns-bg-v2-right.g-bg-black::before, -.u-ns-bg-v2-2-right.g-bg-black::before { - border-left-color: #000; -} - -.u-ns-bg-v2-2-top::before, .u-ns-bg-v2-2-bottom::before, -.u-ns-bg-v2-2-2-top::before, -.u-ns-bg-v2-2-2-bottom::before { - left: 20px; -} - -.u-ns-bg-v2-2-left::before, .u-ns-bg-v2-2-right::before, -.u-ns-bg-v2-2-2-left::before, -.u-ns-bg-v2-2-2-right::before { - top: 30px; -} - -.u-ns-bg-v2-2-top::before, -.u-ns-bg-v2-2-2-top::before { - border-width: 0 15px 15px 15px; -} - -.u-ns-bg-v2-2-bottom::before, -.u-ns-bg-v2-2-2-bottom::before { - border-width: 15px 15px 0 15px; -} - -.u-ns-bg-v2-2-left::before, -.u-ns-bg-v2-2-2-left::before { - border-width: 15px 15px 15px 0; -} - -.u-ns-bg-v2-2-right::before, -.u-ns-bg-v2-2-2-right::before { - border-width: 15px 0 15px 15px; -} - -@media (min-width: 768px) { - .u-ns-bg-v2-top--md::before, .u-ns-bg-v2-bottom--md::before, .u-ns-bg-v2-left--md::before, .u-ns-bg-v2-right--md::before, - .u-ns-bg-v2-2-top--md::before, - .u-ns-bg-v2-2-bottom--md::before, - .u-ns-bg-v2-2-left--md::before, - .u-ns-bg-v2-2-right--md::before { - top: auto; - bottom: auto; - left: auto; - right: auto; - margin-top: 0; - margin-bottom: 0; - margin-left: 0; - margin-right: 0; - } - .u-ns-bg-v2-top--md.g-bg-primary::before, .u-ns-bg-v2-top--md.g-bg-white::before, .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-top--md.g-bg-black::before, .u-ns-bg-v2-bottom--md.g-bg-primary::before, .u-ns-bg-v2-bottom--md.g-bg-white::before, .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-bottom--md.g-bg-black::before, .u-ns-bg-v2-left--md.g-bg-primary::before, .u-ns-bg-v2-left--md.g-bg-white::before, .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-left--md.g-bg-black::before, .u-ns-bg-v2-right--md.g-bg-primary::before, .u-ns-bg-v2-right--md.g-bg-white::before, .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-right--md.g-bg-black::before, - .u-ns-bg-v2-2-top--md.g-bg-primary::before, - .u-ns-bg-v2-2-top--md.g-bg-white::before, - .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-top--md.g-bg-black::before, - .u-ns-bg-v2-2-bottom--md.g-bg-primary::before, - .u-ns-bg-v2-2-bottom--md.g-bg-white::before, - .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-bottom--md.g-bg-black::before, - .u-ns-bg-v2-2-left--md.g-bg-primary::before, - .u-ns-bg-v2-2-left--md.g-bg-white::before, - .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-left--md.g-bg-black::before, - .u-ns-bg-v2-2-right--md.g-bg-primary::before, - .u-ns-bg-v2-2-right--md.g-bg-white::before, - .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-right--md.g-bg-black::before { - border-top-color: transparent; - border-bottom-color: transparent; - border-left-color: transparent; - border-right-color: transparent; - } - .u-ns-bg-v2-top--md::before, - .u-ns-bg-v2-2-top--md::before { - top: -15px; - border-width: 0 17px 15px 17px; - } - .u-ns-bg-v2-top--md.g-bg-primary::before, - .u-ns-bg-v2-2-top--md.g-bg-primary::before { - border-bottom-color: #e74c3c; - } - .u-ns-bg-v2-top--md.g-bg-white::before, - .u-ns-bg-v2-2-top--md.g-bg-white::before { - border-bottom-color: #fff; - } - .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; - } - .u-ns-bg-v2-top--md.g-bg-black::before, - .u-ns-bg-v2-2-top--md.g-bg-black::before { - border-bottom-color: #000; - } - .u-ns-bg-v2-bottom--md::before, - .u-ns-bg-v2-2-bottom--md::before { - bottom: -15px; - border-width: 15px 17px 0 17px; - } - .u-ns-bg-v2-bottom--md.g-bg-primary::before, - .u-ns-bg-v2-2-bottom--md.g-bg-primary::before { - border-top-color: #e74c3c; - } - .u-ns-bg-v2-bottom--md.g-bg-white::before, - .u-ns-bg-v2-2-bottom--md.g-bg-white::before { - border-top-color: #fff; - } - .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before { - border-top-color: #ccc; - } - .u-ns-bg-v2-bottom--md.g-bg-black::before, - .u-ns-bg-v2-2-bottom--md.g-bg-black::before { - border-top-color: #000; - } - .u-ns-bg-v2-left--md::before, - .u-ns-bg-v2-2-left--md::before { - left: -15px; - border-width: 17px 15px 17px 0; - } - .u-ns-bg-v2-left--md.g-bg-primary::before, - .u-ns-bg-v2-2-left--md.g-bg-primary::before { - border-right-color: #e74c3c; - } - .u-ns-bg-v2-left--md.g-bg-white::before, - .u-ns-bg-v2-2-left--md.g-bg-white::before { - border-right-color: #fff; - } - .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before { - border-right-color: #ccc; - } - .u-ns-bg-v2-left--md.g-bg-black::before, - .u-ns-bg-v2-2-left--md.g-bg-black::before { - border-right-color: #000; - } - .u-ns-bg-v2-right--md::before, - .u-ns-bg-v2-2-right--md::before { - right: -15px; - border-width: 17px 0 17px 15px; - } - .u-ns-bg-v2-right--md.g-bg-primary::before, - .u-ns-bg-v2-2-right--md.g-bg-primary::before { - border-left-color: #e74c3c; - } - .u-ns-bg-v2-right--md.g-bg-white::before, - .u-ns-bg-v2-2-right--md.g-bg-white::before { - border-left-color: #fff; - } - .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before, - .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before { - border-left-color: #ccc; - } - .u-ns-bg-v2-right--md.g-bg-black::before, - .u-ns-bg-v2-2-right--md.g-bg-black::before { - border-left-color: #000; - } - .u-ns-bg-v2-2-top--md::before, .u-ns-bg-v2-2-bottom--md::before, - .u-ns-bg-v2-2-2-top--md::before, - .u-ns-bg-v2-2-2-bottom--md::before { - left: 20px; - } - .u-ns-bg-v2-2-left--md::before, .u-ns-bg-v2-2-right--md::before, - .u-ns-bg-v2-2-2-left--md::before, - .u-ns-bg-v2-2-2-right--md::before { - top: 30px; - } - .u-ns-bg-v2-2-top--md::before, - .u-ns-bg-v2-2-2-top--md::before { - border-width: 0 15px 15px 15px; - } - .u-ns-bg-v2-2-bottom--md::before, - .u-ns-bg-v2-2-2-bottom--md::before { - border-width: 15px 15px 0 15px; - } - .u-ns-bg-v2-2-left--md::before, - .u-ns-bg-v2-2-2-left--md::before { - border-width: 15px 15px 15px 0; - } - .u-ns-bg-v2-2-right--md::before, - .u-ns-bg-v2-2-2-right--md::before { - border-width: 15px 0 15px 15px; - } -} - -/*------------------------------------ - Nonstandard Background v3 -------------------------------------*/ -[class*="u-ns-bg-v3"] { - position: relative; -} - -[class*="u-ns-bg-v3"]::before { - content: ""; - position: absolute; - z-index: 3; - display: block; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v3-top::before, .u-ns-bg-v3-bottom::before { - left: 80px; -} - -.u-ns-bg-v3-left::before, .u-ns-bg-v3-right::before { - top: 23px; -} - -.u-ns-bg-v3-top.g-bg-primary::before, .u-ns-bg-v3-left.g-bg-primary::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v3-top.g-bg-white::before, .u-ns-bg-v3-left.g-bg-white::before { - border-bottom-color: #fff; -} - -.u-ns-bg-v3-top.g-bg-gray-light-v2::before, .u-ns-bg-v3-left.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v3-top.g-bg-black::before, .u-ns-bg-v3-left.g-bg-black::before { - border-bottom-color: #000; -} - -.u-ns-bg-v3-top.g-bg-facebook::before, .u-ns-bg-v3-left.g-bg-facebook::before { - border-bottom-color: #3b5998; -} - -.u-ns-bg-v3-bottom.g-bg-primary::before, .u-ns-bg-v3-right.g-bg-primary::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v3-bottom.g-bg-white::before, .u-ns-bg-v3-right.g-bg-white::before { - border-top-color: #fff; -} - -.u-ns-bg-v3-bottom.g-bg-gray-light-v2::before, .u-ns-bg-v3-right.g-bg-gray-light-v2::before { - border-top-color: #ccc; -} - -.u-ns-bg-v3-bottom.g-bg-black::before, .u-ns-bg-v3-right.g-bg-black::before { - border-top-color: #000; -} - -.u-ns-bg-v3-bottom.g-bg-lightred::before, .u-ns-bg-v3-right.g-bg-lightred::before { - border-top-color: #e64b3b; -} - -.u-ns-bg-v3-bottom.g-bg-blue::before, .u-ns-bg-v3-right.g-bg-blue::before { - border-top-color: #3398dc; -} - -.u-ns-bg-v3-bottom.g-bg-purple::before, .u-ns-bg-v3-right.g-bg-purple::before { - border-top-color: #9a69cb; -} - -.u-ns-bg-v3-bottom.g-bg-cyan::before, .u-ns-bg-v3-right.g-bg-cyan::before { - border-top-color: #00bed6; -} - -.u-ns-bg-v3-bottom.g-bg-teal::before, .u-ns-bg-v3-right.g-bg-teal::before { - border-top-color: #18ba9b; -} - -.u-ns-bg-v3-bottom.g-bg-pink::before, .u-ns-bg-v3-right.g-bg-pink::before { - border-top-color: #e81c62; -} - -.u-ns-bg-v3-bottom.g-bg-red::before, .u-ns-bg-v3-right.g-bg-red::before { - border-top-color: #f00; -} - -.u-ns-bg-v3-bottom.g-bg-facebook::before, .u-ns-bg-v3-right.g-bg-facebook::before { - border-top-color: #3b5998; -} - -.u-ns-bg-v3-top::before { - top: -22px; - border-width: 22px 0 0 22px; -} - -.u-ns-bg-v3-bottom::before { - bottom: -22px; - border-width: 22px 22px 0 0; -} - -.u-ns-bg-v3-left::before { - left: -22px; - border-width: 0 22px 22px 0; -} - -.u-ns-bg-v3-right::before { - right: -22px; - border-width: 22px 22px 0 0; -} - -/*------------------------------------ - Nonstandard Background v4 -------------------------------------*/ -[class*="u-ns-bg-v4"] { - position: relative; -} - -[class*="u-ns-bg-v4"]::before { - content: ""; - position: absolute; - z-index: 3; - display: block; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v4-top::before, .u-ns-bg-v4-bottom::before { - left: 8%; -} - -.u-ns-bg-v4-left::before, .u-ns-bg-v4-right::before { - top: 8%; -} - -.u-ns-bg-v4-top.g-bg-primary::before, .u-ns-bg-v4-left.g-bg-primary::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v4-top.g-bg-white::before, .u-ns-bg-v4-left.g-bg-white::before { - border-bottom-color: #fff; -} - -.u-ns-bg-v4-top.g-bg-gray-light-v2::before, .u-ns-bg-v4-left.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v4-top.g-bg-black::before, .u-ns-bg-v4-left.g-bg-black::before { - border-bottom-color: #000; -} - -.u-ns-bg-v4-bottom.g-bg-primary::before, .u-ns-bg-v4-right.g-bg-primary::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v4-bottom.g-bg-white::before, .u-ns-bg-v4-right.g-bg-white::before { - border-top-color: #fff; -} - -.u-ns-bg-v4-bottom.g-bg-gray-light-v2::before, .u-ns-bg-v4-right.g-bg-gray-light-v2::before { - border-top-color: #ccc; -} - -.u-ns-bg-v4-bottom.g-bg-black::before, .u-ns-bg-v4-right.g-bg-black::before { - border-top-color: #000; -} - -.u-ns-bg-v4-top::before { - top: -22px; - border-width: 22px 22px 0 0; -} - -.u-ns-bg-v4-bottom::before { - bottom: -22px; - border-width: 22px 0 0 22px; -} - -.u-ns-bg-v4-left::before { - left: -22px; - border-width: 22px 22px 0 0; -} - -.u-ns-bg-v4-right::before { - right: -22px; - border-width: 0 22px 22px 0; -} - -/*------------------------------------ - Nonstandard Background v5 -------------------------------------*/ -[class*="u-ns-bg-v5"] { - position: relative; -} - -[class*="u-ns-bg-v5"] .u-ns-bg-before { - position: absolute; - z-index: 2; -} - -[class*="u-ns-bg-v5"].g-bg-primary svg polygon, -[class*="u-ns-bg-v5"].g-bg-primary svg path { - fill: #e74c3c; -} - -[class*="u-ns-bg-v5"].g-bg-white svg polygon, -[class*="u-ns-bg-v5"].g-bg-white svg path { - fill: #fff; -} - -[class*="u-ns-bg-v5"].g-bg-gray-light-v2 svg polygon, -[class*="u-ns-bg-v5"].g-bg-gray-light-v2 svg path { - fill: #ccc; -} - -[class*="u-ns-bg-v5"].g-bg-black svg polygon, -[class*="u-ns-bg-v5"].g-bg-black svg path { - fill: #000; -} - -.u-ns-bg-v5-top .u-ns-bg-before, .u-ns-bg-v5-bottom .u-ns-bg-before { - width: 100%; -} - -.u-ns-bg-v5-top svg, .u-ns-bg-v5-bottom svg { - width: 100%; -} - -.u-ns-bg-v5-left .u-ns-bg-before, .u-ns-bg-v5-right .u-ns-bg-before { - height: 100%; -} - -.u-ns-bg-v5-left svg, .u-ns-bg-v5-right svg { - height: 100%; - vertical-align: middle; -} - -.u-ns-bg-v5-top .u-ns-bg-before { - bottom: 100%; -} - -.u-ns-bg-v5-top svg { - vertical-align: bottom; -} - -.u-ns-bg-v5-bottom .u-ns-bg-before { - top: 100%; -} - -.u-ns-bg-v5-bottom svg { - vertical-align: top; -} - -.u-ns-bg-v5-left .u-ns-bg-before { - left: 100%; -} - -.u-ns-bg-v5-right .u-ns-bg-before { - right: 100%; -} - -@media (min-width: 768px) { - .u-ns-bg-v5-top--md .u-ns-bg-before, .u-ns-bg-v5-bottom--md .u-ns-bg-before, .u-ns-bg-v5-left--md .u-ns-bg-before, .u-ns-bg-v5-right--md .u-ns-bg-before { - top: auto; - bottom: auto; - left: auto; - right: auto; - width: auto; - height: auto; - } - .u-ns-bg-v5-top--md svg, .u-ns-bg-v5-bottom--md svg, .u-ns-bg-v5-left--md svg, .u-ns-bg-v5-right--md svg { - width: auto; - height: auto; - } - .u-ns-bg-v5-top--md .u-ns-bg-before, .u-ns-bg-v5-bottom--md .u-ns-bg-before { - width: 100%; - } - .u-ns-bg-v5-top--md svg, .u-ns-bg-v5-bottom--md svg { - width: 100%; - } - .u-ns-bg-v5-left--md .u-ns-bg-before, .u-ns-bg-v5-right--md .u-ns-bg-before { - height: 100%; - } - .u-ns-bg-v5-left--md svg, .u-ns-bg-v5-right--md svg { - height: 100%; - vertical-align: middle; - } - .u-ns-bg-v5-top--md .u-ns-bg-before { - bottom: 100%; - } - .u-ns-bg-v5-top--md svg { - vertical-align: bottom; - } - .u-ns-bg-v5-bottom--md .u-ns-bg-before { - top: 100%; - } - .u-ns-bg-v5-bottom--md svg { - vertical-align: top; - } - .u-ns-bg-v5-left--md .u-ns-bg-before { - left: 100%; - } - .u-ns-bg-v5-right--md .u-ns-bg-before { - right: 100%; - } -} - -/*------------------------------------ - Nonstandard Background v6 -------------------------------------*/ -[class*="u-ns-bg-v6"] { - position: relative; -} - -[class*="u-ns-bg-v6"] .u-ns-bg-before { - position: absolute; - z-index: 2; -} - -.u-ns-bg-v6-top .u-ns-bg-before::before, .u-ns-bg-v6-top .u-ns-bg-before::after, .u-ns-bg-v6-bottom .u-ns-bg-before::before, .u-ns-bg-v6-bottom .u-ns-bg-before::after, .u-ns-bg-v6-left .u-ns-bg-before::before, .u-ns-bg-v6-left .u-ns-bg-before::after, .u-ns-bg-v6-right .u-ns-bg-before::before, .u-ns-bg-v6-right .u-ns-bg-before::after { - content: ""; - display: block; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v6-top .u-ns-bg-before::after, .u-ns-bg-v6-bottom .u-ns-bg-before::after, .u-ns-bg-v6-left .u-ns-bg-before::after, .u-ns-bg-v6-right .u-ns-bg-before::after { - position: absolute; -} - -.u-ns-bg-v6-top .u-ns-bg-before, .u-ns-bg-v6-bottom .u-ns-bg-before { - left: 20px; -} - -.u-ns-bg-v6-left .u-ns-bg-before, .u-ns-bg-v6-right .u-ns-bg-before { - top: 30px; -} - -.u-ns-bg-v6-top .u-ns-bg-before { - top: -15px; -} - -.u-ns-bg-v6-top .u-ns-bg-before::before { - border-width: 0 15px 15px 15px; -} - -.u-ns-bg-v6-top .u-ns-bg-before::after { - bottom: 0; - left: 1px; - border-width: 0 14px 14px 14px; -} - -.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::after { - border-bottom-color: #fff; -} - -.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-bottom-color: #fff; -} - -.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::before { - border-bottom-color: #000; -} - -.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::after { - border-bottom-color: #fff; -} - -.u-ns-bg-v6-bottom .u-ns-bg-before { - bottom: -15px; -} - -.u-ns-bg-v6-bottom .u-ns-bg-before::before { - border-width: 15px 15px 0 15px; -} - -.u-ns-bg-v6-bottom .u-ns-bg-before::after { - bottom: 1px; - left: 1px; - border-width: 14px 14px 0 14px; -} - -.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::after { - border-top-color: #fff; -} - -.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-top-color: #ccc; -} - -.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-top-color: #fff; -} - -.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::before { - border-top-color: #000; -} - -.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::after { - border-top-color: #fff; -} - -.u-ns-bg-v6-left .u-ns-bg-before { - left: -15px; -} - -.u-ns-bg-v6-left .u-ns-bg-before::before { - border-width: 15px 15px 15px 0; -} - -.u-ns-bg-v6-left .u-ns-bg-before::after { - top: 1px; - right: 0; - border-width: 14px 14px 14px 0; -} - -.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::before { - border-right-color: #e74c3c; -} - -.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::after { - border-right-color: #fff; -} - -.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-right-color: #ccc; -} - -.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-right-color: #fff; -} - -.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::before { - border-right-color: #000; -} - -.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::after { - border-right-color: #fff; -} - -.u-ns-bg-v6-right .u-ns-bg-before { - right: -15px; -} - -.u-ns-bg-v6-right .u-ns-bg-before::before { - border-width: 15px 0 15px 15px; -} - -.u-ns-bg-v6-right .u-ns-bg-before::after { - top: 1px; - left: 0; - border-width: 14px 0 14px 14px; -} - -.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::before { - border-left-color: #ccc; -} - -.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::after { - border-left-color: #fff; -} - -.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-left-color: #ccc; -} - -.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-left-color: #fff; -} - -.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::before { - border-left-color: #ccc; -} - -.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::after { - border-left-color: #fff; -} - -@media (min-width: 768px) { - .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before { - border-top-color: transparent; - border-bottom-color: transparent; - border-left-color: transparent; - border-right-color: transparent; - } - .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after { - border-top-color: transparent; - border-bottom-color: transparent; - border-left-color: transparent; - border-right-color: transparent; - } - .u-ns-bg-v6-top--md .u-ns-bg-before, .u-ns-bg-v6-bottom--md .u-ns-bg-before { - left: 20px; - } - .u-ns-bg-v6-left--md .u-ns-bg-before, .u-ns-bg-v6-right--md .u-ns-bg-before { - top: 30px; - } - .u-ns-bg-v6-top--md .u-ns-bg-before { - bottom: auto; - top: -15px; - } - .u-ns-bg-v6-top--md .u-ns-bg-before::before { - border-width: 0 15px 15px 15px; - } - .u-ns-bg-v6-top--md .u-ns-bg-before::after { - top: auto; - bottom: 0; - left: 1px; - border-width: 0 14px 14px 14px; - } - .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before { - border-bottom-color: #e74c3c; - } - .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after { - border-bottom-color: #fff; - } - .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-bottom-color: #ccc; - } - .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-bottom-color: #fff; - } - .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before { - border-bottom-color: #000; - } - .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after { - border-bottom-color: #fff; - } - .u-ns-bg-v6-bottom--md .u-ns-bg-before { - top: auto; - bottom: -15px; - } - .u-ns-bg-v6-bottom--md .u-ns-bg-before::before { - border-width: 15px 15px 0 15px; - } - .u-ns-bg-v6-bottom--md .u-ns-bg-before::after { - top: auto; - bottom: 1px; - left: 1px; - border-width: 14px 14px 0 14px; - } - .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before { - border-top-color: #e74c3c; - } - .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after { - border-top-color: #fff; - } - .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-top-color: #ccc; - } - .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-top-color: #fff; - } - .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before { - border-top-color: #000; - } - .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after { - border-top-color: #fff; - } - .u-ns-bg-v6-left--md .u-ns-bg-before { - left: -15px; - right: auto; - } - .u-ns-bg-v6-left--md .u-ns-bg-before::before { - border-width: 15px 15px 15px 0; - } - .u-ns-bg-v6-left--md .u-ns-bg-before::after { - top: 1px; - bottom: auto; - right: 0; - border-width: 14px 14px 14px 0; - } - .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before { - border-right-color: #e74c3c; - } - .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after { - border-right-color: #fff; - } - .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-right-color: #ccc; - } - .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-right-color: #fff; - } - .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before { - border-right-color: #000; - } - .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after { - border-right-color: #fff; - } - .u-ns-bg-v6-right--md .u-ns-bg-before { - left: auto; - right: -15px; - } - .u-ns-bg-v6-right--md .u-ns-bg-before::before { - border-width: 15px 0 15px 15px; - } - .u-ns-bg-v6-right--md .u-ns-bg-before::after { - top: 1px; - bottom: auto; - left: 0; - border-width: 14px 0 14px 14px; - } - .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before { - border-left-color: #e74c3c; - } - .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after { - border-left-color: #fff; - } - .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before { - border-left-color: #ccc; - } - .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after { - border-left-color: #fff; - } - .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before { - border-left-color: #000; - } - .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after { - border-left-color: #fff; - } -} - -/*------------------------------------ - Nonstandard Background v7 -------------------------------------*/ -[class*="u-ns-bg-v7"] { - position: relative; -} - -[class*="u-ns-bg-v7"]::before { - content: ""; - position: absolute; - z-index: 3; - width: 0; - height: 0; - border-style: solid; - border-color: transparent; -} - -.u-ns-bg-v7-top::before, .u-ns-bg-v7-bottom::before { - left: 50%; - margin-left: -5px; -} - -.u-ns-bg-v7-left::before, .u-ns-bg-v7-right::before { - top: 50%; - margin-top: -5px; -} - -.u-ns-bg-v7-top::before { - top: -5px; - border-width: 0 5px 5px 5px; -} - -.u-ns-bg-v7-top.g-bg-primary::before { - border-bottom-color: #e74c3c; -} - -.u-ns-bg-v7-top.g-bg-white::before { - border-bottom-color: #fff; -} - -.u-ns-bg-v7-top.g-bg-gray-light-v2::before { - border-bottom-color: #ccc; -} - -.u-ns-bg-v7-top.g-bg-black::before { - border-bottom-color: #000; -} - -.u-ns-bg-v7-bottom::before { - bottom: -5px; - border-width: 5px 5px 0 5px; -} - -.u-ns-bg-v7-bottom.g-bg-primary::before { - border-top-color: #e74c3c; -} - -.u-ns-bg-v7-bottom.g-bg-white::before { - border-top-color: #fff; -} - -.u-ns-bg-v7-bottom.g-bg-gray-light-v2::before { - border-top-color: #ccc; -} - -.u-ns-bg-v7-bottom.g-bg-black::before { - border-top-color: #000; -} - -.u-ns-bg-v7-left::before { - left: -5px; - border-width: 5px 5px 5px 0; -} - -.u-ns-bg-v7-left.g-bg-primary::before { - border-right-color: #e74c3c; -} - -.u-ns-bg-v7-left.g-bg-white::before { - border-right-color: #fff; -} - -.u-ns-bg-v7-left.g-bg-gray-light-v2::before { - border-right-color: #ccc; -} - -.u-ns-bg-v7-left.g-bg-black::before { - border-right-color: #000; -} - -.u-ns-bg-v7-right::before { - right: -5px; - border-width: 5px 0 5px 5px; -} - -.u-ns-bg-v7-right.g-bg-primary::before { - border-left-color: #e74c3c; -} - -.u-ns-bg-v7-right.g-bg-white::before { - border-left-color: #fff; -} - -.u-ns-bg-v7-right.g-bg-gray-light-v2::before { - border-left-color: #ccc; -} - -.u-ns-bg-v7-right.g-bg-black::before { - border-left-color: #000; -} - -/*------------------------------------ - Progress Bars -------------------------------------*/ -.progress-bar { - min-height: 0 !important; -} - -.u-progress__pointer-v1 { - position: absolute; - top: 50%; - right: 0; - width: 42px; - height: 42px; - margin: -21px -21px 0 0; - background-color: transparent; - line-height: 42px; - z-index: 1; -} - -.u-progress__pointer-v2 { - position: absolute; - bottom: 100%; - right: 0; - min-width: 46px; - white-space: nowrap; - padding-left: 5px; - padding-right: 5px; - -webkit-transform: translateX(50%); - -ms-transform: translateX(50%); - transform: translateX(50%); - margin-bottom: 5px; - background-color: transparent; - z-index: 1; -} - -.u-progress__pointer-v2::after { - content: ""; - position: absolute; - left: 50%; - bottom: -5px; - margin-left: -5px; - border-style: solid; - border-color: #e74c3c transparent; - border-width: 5px 5px 0; -} - -.u-progress__pointer-v3 { - position: relative; - float: right; - white-space: nowrap; -} - -.u-progress__pointer-v3::after { - content: ""; - position: absolute; - top: 0; - right: 0; - margin-top: -10px; - margin-right: -5px; - border-style: solid; - border-color: #e74c3c transparent; - border-width: 5px 5px 0; -} - -[class*="u-progress-bar-vertical"] { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-flow: column nowrap; - flex-flow: column nowrap; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -.u-progress-bar-vertical-v1 { - height: 200px; -} - -/*------------------------------------ - Progress Bars Sizes -------------------------------------*/ -.u-progress-bar--2xs { - min-height: 1px !important; -} - -.u-progress-bar--xs { - min-height: 3px !important; -} - -.u-progress-bar--sm { - min-height: 7px !important; -} - -.u-progress-bar--lg { - min-height: 18px !important; -} - -.u-progress-bar--xl { - min-height: 22px !important; -} - -.u-progress-bar--2xl { - min-height: 33px !important; -} - -/*------------------------------------ - Rating v1 -------------------------------------*/ -.u-rating-v1 { - display: inline-block; - padding-left: 0; - margin-bottom: 0; -} - -.u-rating-v1 > * { - float: left; - list-style: none; - cursor: pointer; - -webkit-transition-property: color; - -o-transition-property: color; - transition-property: color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; -} - -.u-rating-v1 > * + * { - padding-left: 6px; -} - -/*------------------------------------ - Searchform v1 -------------------------------------*/ -.u-searchform-v1 { - min-width: initial; - width: 21.42857rem; - position: absolute; - right: -1.07143rem; - top: 100%; - -webkit-box-shadow: 0 1px 3px #ddd; - box-shadow: 0 1px 3px #ddd; -} - -.u-searchform-v1 .form-control { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 0.85714rem; -} - -.u-searchform-v1 .input-group-addon { - border: 0; -} - -.u-searchform-v1 .input-group-addon button[type="submit"] { - height: 100%; - padding-bottom: 0.28571rem; -} - -/*------------------------------------ - Searchform v2 -------------------------------------*/ -.u-searchform-v2 .form-control { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 600; - font-size: 0.85714rem; - color: rgba(255, 255, 255, 0.85); - text-transform: uppercase; - height: 4.71429rem; - padding: 0.85714rem 0; - background-color: transparent; - border: none; -} - -.u-searchform-v2 .form-control::-webkit-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .form-control:-ms-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .form-control::-ms-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .form-control::placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .form-control::-webkit-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .form-control::-moz-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v2 .input-group-addon { - border: 0; -} - -.u-searchform-v2 .input-group-addon button { - cursor: pointer; - height: 100%; - border: none; - outline: none; - background-color: transparent; -} - -/*------------------------------------ - Searchform v3 -------------------------------------*/ -.u-searchform-v3 { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 3; -} - -.u-searchform-v3 .container { - height: 100%; -} - -.u-searchform-v3 .input-group { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 100%; -} - -.u-searchform-v3 .form-control { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 300; - font-size: inherit; - color: inherit; - text-transform: uppercase; - height: 4.71429rem; - padding: 0.85714rem 0; - background-color: transparent; - border: none; -} - -.u-searchform-v3 .form-control::-webkit-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .form-control:-ms-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .form-control::-ms-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .form-control::placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .form-control::-webkit-input-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .form-control::-moz-placeholder { - color: g-color-white; - opacity: .85; -} - -.u-searchform-v3 .input-group-addon { - border: 0; -} - -.u-searchform-v3 .input-group-addon button { - cursor: pointer; - height: 100%; - border: none; - outline: none; - background-color: transparent; -} - -/*------------------------------------ - Searchform v4 -------------------------------------*/ -.u-searchform-v4 .form-control { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 0.85714rem; - width: 20rem; - padding: 0.71429rem 2.85714rem 0.71429rem 0.71429rem; -} - -.u-searchform-v4 .form-control::-webkit-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control:-ms-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control::-ms-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control::placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control::-webkit-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control::-moz-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v4 .form-control:not(:last-child) { - border-right: none; -} - -.u-searchform-v4 .input-group-addon { - border-left: none; - position: absolute; - top: 0; - right: 0; - height: 100%; - z-index: 2; -} - -.u-searchform-v4 .input-group-addon button[type="submit"] { - height: 100%; - cursor: pointer; - outline: none; - border: none; - background-color: transparent; -} - -/*------------------------------------ - Searchform v5 -------------------------------------*/ -.u-searchform-v5 .input-group { - border: solid 1px #eee; -} - -.u-searchform-v5 .form-control { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 0.85714rem; - text-transform: uppercase; - color: #777; - height: 3.07143rem; - padding: 0.35714rem 0.35714rem 0.35714rem 2rem; - border-color: transparent; -} - -.u-searchform-v5 .form-control::-webkit-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control:-ms-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control::-ms-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control::placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control::-webkit-input-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control::-moz-placeholder { - color: g-color-gray-dark-v4; - opacity: 1; -} - -.u-searchform-v5 .form-control:focus { - border-color: transparent; -} - -.u-searchform-v5 .input-group-addon { - border-color: transparent; -} - -.u-searchform-v5 .input-group-addon button[type="submit"] { - font-size: 1.35714rem; - height: 100%; - cursor: pointer; - outline: none; - border: none; - background-color: transparent; -} - -/*------------------------------------ - Steps v1 -------------------------------------*/ -.u-steps-v1 { - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #eee; - border-radius: .25rem; -} - -.u-steps-v1::after { - content: ""; - display: table; - width: 100%; -} - -.u-steps-v1 > * { - display: inline-block; - vertical-align: middle; -} - -.u-steps-v1__item { - float: left; - margin-right: 15px; -} - -.u-steps-v1__item a:hover { - text-decoration: none; -} - -@media (min-width: 768px) { - .u-steps-v1 { - padding: 0; - margin-bottom: 0; - background-color: transparent; - border-radius: 0; - } - .u-steps-v1__item { - list-style: none; - margin-right: 40px; - } - .u-steps-v1__item a, - .u-steps-v1__item span { - position: relative; - display: inline-block; - padding: 10px 15px; - border-radius: 5px; - -webkit-transition-property: background-color; - -o-transition-property: background-color; - transition-property: background-color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; - } - .u-steps-v1__item a::before, - .u-steps-v1__item span::before { - content: ""; - position: absolute; - top: 50%; - left: 100%; - display: block; - width: 70px; - height: 4px; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - } - .u-steps-v1__item a { - color: #fff; - background-color: #e74c3c; - } - .u-steps-v1__item a::before { - background-color: #e74c3c; - } - .u-steps-v1__item a:hover { - background-color: #333; - } - .u-steps-v1__item span { - background-color: #eee; - } - .u-steps-v1__item span::before { - background-color: #eee; - } - .u-steps-v1__item > i { - font-size: 10px; - } - .u-steps-v1__item:last-child { - margin-right: 0; - } - .u-steps-v1__item:last-child a::before, - .u-steps-v1__item:last-child span::before { - display: none; - } - .u-steps-v1__item + .u-breadcrumb-v1__item::before { - display: none; - } - .u-steps-v1__item.active a, - .u-steps-v1__item.active span { - color: #fff; - background-color: #e74c3c; - } - .u-steps-v1 a:hover { - text-decoration: none; - } -} - -/*------------------------------------ - Steps v2 -------------------------------------*/ -.u-steps-v2 { - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #eee; - border-radius: .25rem; -} - -.u-steps-v2::after { - content: ""; - display: table; - width: 100%; -} - -.u-steps-v2 > * { - display: inline-block; - vertical-align: middle; -} - -.u-steps-v2__item { - float: left; - margin-right: 15px; -} - -.u-steps-v2__item a:hover { - text-decoration: none; -} - -@media (min-width: 768px) { - .u-steps-v2 { - padding: 0; - margin-bottom: 0; - background-color: transparent; - border-radius: 0; - } - .u-steps-v2__indicator { - position: absolute; - bottom: 0; - left: 50%; - width: 12px; - height: 12px; - border-radius: 50%; - background-color: #e74c3c; - -webkit-box-shadow: 0; - box-shadow: 0; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-transition-property: -webkit-box-shadow; - transition-property: -webkit-box-shadow; - -o-transition-property: box-shadow; - transition-property: box-shadow; - transition-property: box-shadow, -webkit-box-shadow; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; - } - .u-steps-v2__item { - text-align: center; - list-style: none; - margin-right: 40px; - } - .u-steps-v2__item a, - .u-steps-v2__item span { - position: relative; - display: block; - color: #333; - padding-bottom: 20px; - -webkit-transition-property: color; - -o-transition-property: color; - transition-property: color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; - } - .u-steps-v2__item a::before, - .u-steps-v2__item span::before { - content: ""; - position: absolute; - bottom: 4px; - left: 50%; - display: block; - width: 120px; - height: 4px; - margin-left: 6px; - } - .u-steps-v2__item a::before { - background-color: #e74c3c; - } - .u-steps-v2__item a .u-steps-v2__indicator { - background-color: #e74c3c; - } - .u-steps-v2__item a:hover { - text-decoration: none; - } - .u-steps-v2__item span::before { - background-color: #eee; - } - .u-steps-v2__item span .u-steps-v2__indicator { - background-color: #eee; - } - .u-steps-v2__item:last-child a::before, - .u-steps-v2__item:last-child span::before { - display: none; - } - .u-steps-v2__item:hover a { - color: #e74c3c; - } - .u-steps-v2__item:hover a .u-steps-v2__indicator { - -webkit-box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3); - box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3); - } - .u-steps-v2__item.active a .u-steps-v2__indicator, - .u-steps-v2__item.active span .u-steps-v2__indicator { - background-color: #e74c3c; - } -} - -/*------------------------------------ - Steps v3 -------------------------------------*/ -.u-steps-v3 { - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #eee; - border-radius: .25rem; -} - -.u-steps-v3::after { - content: ""; - display: table; - width: 100%; -} - -.u-steps-v3 > * { - display: inline-block; - vertical-align: middle; -} - -.u-steps-v3__item { - float: left; - margin-right: 15px; -} - -.u-steps-v3__item a:hover { - text-decoration: none; -} - -.u-steps-v3__indicator { - font-style: normal; -} - -.u-steps-v3__indicator::after { - content: " - "; -} - -@media (min-width: 768px) { - .u-steps-v3 { - padding: 0; - margin-bottom: 0; - background-color: transparent; - border-radius: 0; - } - .u-steps-v3__indicator { - position: absolute; - top: 0; - left: 50%; - width: 26px; - height: 26px; - line-height: 26px; - text-align: center; - background-color: #e74c3c; - -webkit-box-shadow: 0; - box-shadow: 0; - border-radius: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-transition-property: -webkit-box-shadow; - transition-property: -webkit-box-shadow; - -o-transition-property: box-shadow; - transition-property: box-shadow; - transition-property: box-shadow, -webkit-box-shadow; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; - } - .u-steps-v3__indicator::after { - display: none; - } - .u-steps-v3__item { - text-align: center; - float: left; - list-style: none; - margin-right: 40px; - } - .u-steps-v3__item a, - .u-steps-v3__item span { - position: relative; - display: block; - color: #333; - padding-top: 40px; - -webkit-transition-property: color; - -o-transition-property: color; - transition-property: color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; - } - .u-steps-v3__item a::before, - .u-steps-v3__item span::before { - content: ""; - position: absolute; - top: 11px; - left: 50%; - display: block; - width: 120px; - height: 4px; - margin-left: 13px; - } - .u-steps-v3__item a::before { - background-color: #e74c3c; - } - .u-steps-v3__item a .u-steps-v3__indicator { - color: #fff; - background-color: #e74c3c; - } - .u-steps-v3__item a:hover { - text-decoration: none; - } - .u-steps-v3__item span::before { - background-color: #eee; - } - .u-steps-v3__item span .u-steps-v3__indicator { - color: #333; - background-color: #eee; - } - .u-steps-v3__item:last-child a::before, - .u-steps-v3__item:last-child span::before { - display: none; - } - .u-steps-v3__item:hover a { - color: #e74c3c; - } - .u-steps-v3__item:hover a .u-steps-v3__indicator { - -webkit-box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3); - box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3); - } - .u-steps-v3__item.active a .u-steps-v3__indicator, - .u-steps-v3__item.active span .u-steps-v3__indicator { - color: #fff; - background-color: #e74c3c; - } -} - -/*------------------------------------ - Time Lines -------------------------------------*/ -[class*="u-timeline-v1-wrap"], -[class*="u-timeline-v2-wrap"], -[class*="u-timeline-v3-wrap"] { - position: relative; -} - -[class*="u-timeline-v1-wrap"]::before, -[class*="u-timeline-v2-wrap"]::before, -[class*="u-timeline-v3-wrap"]::before { - content: ""; - position: absolute; - top: 0; - bottom: 0; - display: block; -} - -/*------------------------------------ - Time Lines v1 -------------------------------------*/ -.u-timeline-v1 { - position: relative; - border-width: 1px; - border-style: solid; - border-color: #eee; -} - -.u-timeline-v1-wrap::before { - left: 0; - width: 1px; - height: 100%; - background-color: #f7f7f7; - margin-left: 20px; -} - -.u-timeline-v1__icon { - position: absolute; - top: 30px; - font-size: 20px; - z-index: 3; -} - -.g-orientation-bottom .u-timeline-v1__icon, -.g-orientation-right .u-timeline-v1__icon, -.g-orientation-left .u-timeline-v1__icon { - left: 0; -} - -@media (min-width: 768px) { - .u-timeline-v1-wrap:not([class*="--horizontal"])::before { - left: 50%; - margin-left: -2px; - } - .u-timeline-v1-wrap--horizontal::before { - top: auto; - bottom: 0; - left: 0; - right: 0; - width: 100%; - height: 3px; - margin-left: 0; - margin-top: -2px; - } - .g-orientation-bottom .u-timeline-v1__icon { - top: 100%; - left: 0; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - } - .g-orientation-left .u-timeline-v1__icon { - right: 100%; - left: auto; - } - .g-orientation-right .u-timeline-v1__icon { - right: auto; - left: 100%; - } -} - -/*------------------------------------ - Time Lines v2 -------------------------------------*/ -@media (min-width: 768px) { - .u-timeline-v2-wrap::before { - left: 25%; - width: 3px; - height: 100%; - margin-left: -1px; - background-color: #f7f7f7; - } - .u-timeline-v2__icon { - font-size: 16px; - position: absolute; - } - .g-orientation-right .u-timeline-v2__icon { - left: 100%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - } - .g-orientation-left .u-timeline-v2__icon { - right: 100%; - -webkit-transform: translateX(50%); - -ms-transform: translateX(50%); - transform: translateX(50%); - } - .g-orientation-bottom .u-timeline-v2__icon { - top: 100%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - } -} - -/*------------------------------------ - Time Lines v3 -------------------------------------*/ -.u-timeline-v3-wrap::before { - left: 21%; - width: 1px; - height: 100%; - display: none; - background-color: #eee; -} - -.u-timeline-v3 { - position: relative; -} - -.u-timeline-v3__icon { - left: 21%; -} - -@media (min-width: 768px) { - .u-timeline-v3-wrap::before { - display: block; - } -} - -@media (min-width: 992px) { - .u-timeline-v3-wrap::before { - left: 18%; - } - .u-timeline-v3__icon { - left: 18%; - } -} - -/*------------------------------------ - Background Colors -------------------------------------*/ -.u-label { - display: inline-block; - padding: .35rem .58rem; - font-size: .9rem; - line-height: 1; - text-align: center; - white-space: nowrap; - color: #fff; - /* Label Size - ------------------------------------*/ - /* Label Styles - ------------------------------------*/ - /* Label Num - ------------------------------------*/ -} - -.u-label:empty { - display: none; -} - -.btn .u-label { - position: relative; - top: -1px; -} - -.u-label-default { - background-color: #777; -} - -.u-label-default[href]:hover, .u-label-default[href]:focus { - background-color: #555; -} - -.u-label-primary { - background-color: #5cb85c; -} - -.u-label-primary[href]:hover, .u-label-primary[href]:focus { - background-color: #55b555; -} - -.u-label-success { - background-color: #5cb85c; -} - -.u-label-success[href]:hover, .u-label-success[href]:focus { - background-color: #55b555; -} - -.u-label-info { - background-color: #5bc0de; -} - -.u-label-info[href]:hover, .u-label-info[href]:focus { - background-color: #53bddc; -} - -.u-label-warning { - background-color: #f0ad4e; -} - -.u-label-warning[href]:hover, .u-label-warning[href]:focus { - background-color: #efa945; -} - -.u-label-danger { - background-color: #d9534f; -} - -.u-label-danger[href]:hover, .u-label-danger[href]:focus { - background-color: #d74b47; -} - -.u-label.g-rounded-10 { - padding: .35rem .7rem; -} - -.u-label--sm { - font-size: .8rem; -} - -.u-label--lg { - font-size: 1.1rem; -} - -.u-label.u-label-with-icon { - padding: .5rem .85rem; -} - -.u-label.u-label-with-icon i { - margin-right: .5rem; -} - -.u-label-num { - min-width: 2rem; - height: 2rem; - padding: 0 .35rem; - line-height: 2rem; -} - -.u-label-num.u-label--sm { - min-width: 1.6rem; - height: 1.6rem; - line-height: 1.6rem; -} - -.u-label-num.u-label--lg { - min-width: 2.2rem; - height: 2.2rem; - line-height: 2.2rem; -} - -/*------------------------------------ - Link Styles -------------------------------------*/ -.u-link-v1 { - border-bottom: solid 1px; -} - -.u-link-v1:hover, .u-link-v1:focus { - border-bottom: none; - text-decoration: none; -} - -.u-link-v2 { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - text-indent: 100%; - white-space: nowrap; - overflow: hidden; - z-index: 2; -} - -.u-link-v3 { - text-decoration: underline; -} - -.u-link-v3:hover { - text-decoration: none; -} - -.u-link-v4 { - -webkit-transition: all .3s; - -o-transition: all .3s; - transition: all .3s; -} - -.u-link-v4:hover { - opacity: .8; -} - -.u-link-v5 { - text-decoration: none; - -webkit-transition: all .2s; - -o-transition: all .2s; - transition: all .2s; -} - -.u-link-v5:hover, .u-link-v5:focus { - text-decoration: none; -} - -.u-link-v6 { - display: block; - overflow: hidden; -} - -.u-link-v6-arrow { - margin-left: -50px; - visibility: hidden; - opacity: 0; - -webkit-transition: all .4s; - -o-transition: all .4s; - transition: all .4s; -} - -.u-link .u-block-hover:hover-v6-arrow, .u-link-v6:hover-v6-arrow { - margin-left: 5px; - visibility: visible; - opacity: 1; -} - -.u-link-v7 { - margin-right: 30px; - -webkit-transition: all .4s; - -o-transition: all .4s; - transition: all .4s; -} - -.u-link-v7-arrow { - margin-left: -50px; - visibility: hidden; - opacity: 0; - -webkit-transition: all .4s; - -o-transition: all .4s; - transition: all .4s; -} - -.u-link .u-block-hover:hover, .u-link-v7:hover { - margin-right: 0; -} - -.u-link .u-block-hover:hover-v7-arrow, .u-link-v7:hover-v7-arrow { - margin-left: 10px; - visibility: visible; - opacity: 1; -} - -/*------------------------------------ - List Styles -------------------------------------*/ -.u-list-inline { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.img-bordered { - border: solid 6px #777; -} - -.g-order-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; -} - -.g-order-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; -} - -@media (min-width: 576px) { - .g-order-1--sm { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - .g-order-2--sm { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } -} - -@media (min-width: 768px) { - .g-order-1--md { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - .g-order-2--md { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } -} - -@media (min-width: 992px) { - .g-order-1--lg { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - .g-order-2--lg { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } -} - -/*------------------------------------ - Paginations -------------------------------------*/ -/* Pagination v1 */ -.u-pagination-v1__item { - display: inline-block; - text-align: center; - text-decoration: none; - border: solid 1px transparent; - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-pagination-v1__item--active, .u-pagination-v1__item:hover, .u-pagination-v1__item:focus { - text-decoration: none; - cursor: pointer; -} - -.u-pagination-v1__item-info { - display: inline-block; - text-align: center; - text-decoration: none; -} - -.u-pagination-v1__item--disabled { - opacity: .5; - pointer-events: none; -} - -/* Pagination Style v1 */ -.u-pagination-v1-1 { - color: #999; - border-color: #999; -} - -.u-pagination-v1-1--active, .u-pagination-v1-1:hover, .u-pagination-v1-1:focus { - background-color: #e74c3c; - color: #fff; - border-color: #e74c3c; -} - -/* Pagination Style v2 */ -.u-pagination-v1-2 { - color: #555; - border-color: #555; -} - -.u-pagination-v1-2:hover, .u-pagination-v1-2:focus { - color: #e74c3c; - border-color: #e74c3c; -} - -.u-pagination-v1-2--active, .u-pagination-v1-2--nav { - background-color: #e74c3c; - color: #fff; - border-color: #e74c3c; -} - -.u-pagination-v1-2--active:hover, .u-pagination-v1-2--active:focus, .u-pagination-v1-2--nav:hover, .u-pagination-v1-2--nav:focus { - color: #fff; -} - -.u-pagination-v1-2--nav:hover { - background-color: rgba(231, 76, 60, 0.8); -} - -/* Pagination Style v3 */ -.u-pagination-v1-3 { - color: #333; - border-color: #333; -} - -.u-pagination-v1-3--active, .u-pagination-v1-3:hover, .u-pagination-v1-3:focus { - background-color: #333; - color: #fff; - border-color: #333; -} - -/* Pagination Style v4 */ -.u-pagination-v1-4 { - color: #333; - border-color: transparent; -} - -.u-pagination-v1-4:hover, .u-pagination-v1-4:focus { - color: #e74c3c; - border-color: #e74c3c; -} - -.u-pagination-v1-4--active { - color: #fff; - background-color: #e74c3c; - border-color: #e74c3c; -} - -.u-pagination-v1-4--active:hover, .u-pagination-v1-4--active:focus { - color: #fff; -} - -/* Pagination Style v5 */ -.u-pagination-v1-5 { - color: #999; - border-color: #ccc; -} - -.u-pagination-v1-5--active, .u-pagination-v1-5:hover, .u-pagination-v1-5:focus { - background-color: #e74c3c; - color: #fff; - border-color: #e74c3c; -} - -/*------------------------------------ - Ribbons -------------------------------------*/ -.u-ribbon-v1, .u-ribbon-v2 { - position: absolute; - font-size: .9rem; -} - -.u-ribbon-center { - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); -} - -.u-ribbon--sm { - font-size: .7rem; -} - -.u-ribbon--lg { - font-size: 1.1rem; -} - -/* Ribbon Style Type 1 -------------------------------------*/ -.u-ribbon-v1 { - display: inline-block; - padding: .35rem .7rem; - /* Ribbon Type 1 With icon */ -} - -.u-ribbon-v1.u-ribbon-with-icon { - padding: .5rem .85rem; -} - -.u-ribbon-v1 .u-ribbon-icon--left { - margin-right: .5rem; -} - -.u-ribbon-v1 .u-ribbon-icon--right { - margin-left: .5rem; -} - -/* Ribbon Style Type 2 -------------------------------------*/ -.u-ribbon-v2 { - display: inline-block; - padding: 1rem 1.1rem; -} - -.u-ribbon-v2.u-ribbon--sm { - padding: 1rem 1.2rem; -} - -.u-ribbon-v2.u-ribbon--lg { - padding: 1.2rem 1.1rem; -} - -/* Bookmarked Ribbon -------------------------------------*/ -.u-ribbon-bookmark::after { - content: ""; - position: absolute; - bottom: -1.1rem; - left: 0; - width: 100%; - height: 0; - border-style: solid; - border-left-width: 1.5rem; - border-right-width: 1.5rem; - border-bottom: 1rem solid transparent !important; -} - -.u-ribbon--lg.u-ribbon-bookmark::after { - border-right-width: 1.4rem; -} - -/* Ribbon Colors -------------------------------------*/ -.u-ribbon-bookmark.g-bg-primary::after { - border-color: #e74c3c; -} - -.u-ribbon-bookmark.g-bg-black::after { - border-color: #000; -} - -.u-ribbon-bookmark.g-bg-white::after { - border-color: #fff; -} - -.u-ribbon-bookmark.g-bg-light-opacity::after { - border-color: rgba(255, 255, 255, 0.7); -} - -.u-ribbon-bookmark.g-bg-dark-opacity::after { - border-color: rgba(30, 30, 30, 0.7); -} - -.u-ribbon-bookmark.g-color-gray-light-v3::after { - border-color: #ddd; -} - -.u-ribbon-bookmark.g-color-gray-light-v4::after { - border-color: #eee; -} - -.u-ribbon-bookmark.g-color-gray-dark-v5::after { - border-color: #999; -} - -.u-ribbon-bookmark.g-bg-green::after { - border-color: #72c02c; -} - -.u-ribbon-bookmark.g-bg-blue::after { - border-color: #3398dc; -} - -.u-ribbon-bookmark.g-bg-lightblue::after { - border-color: #edf2f8; -} - -.u-ribbon-bookmark.g-bg-lightblue-v1::after { - border-color: #d6e2ee; -} - -.u-ribbon-bookmark.g-bg-darkblue::after { - border-color: #009; -} - -.u-ribbon-bookmark.g-bg-indigo::after { - border-color: #4263a3; -} - -.u-ribbon-bookmark.g-bg-red::after { - border-color: #f00; -} - -.u-ribbon-bookmark.g-bg-lightred::after { - border-color: #e64b3b; -} - -.u-ribbon-bookmark.g-bg-darkred::after { - border-color: #a10f2b; -} - -.u-ribbon-bookmark.g-bg-purple::after { - border-color: #9a69cb; -} - -.u-ribbon-bookmark.g-bg-darkpurple::after { - border-color: #6639b6; -} - -.u-ribbon-bookmark.g-bg-pink::after { - border-color: #e81c62; -} - -.u-ribbon-bookmark.g-bg-orange::after { - border-color: #a10f2b; -} - -.u-ribbon-bookmark.g-bg-deeporange::after { - border-color: #fe541e; -} - -.u-ribbon-bookmark.g-bg-yellow::after { - border-color: #a10f2b; -} - -.u-ribbon-bookmark.g-bg-aqua::after { - border-color: #29d6e6; -} - -.u-ribbon-bookmark.g-bg-cyan::after { - border-color: #00bed6; -} - -.u-ribbon-bookmark.g-bg-teal::after { - border-color: #18ba9b; -} - -.u-ribbon-bookmark.g-bg-brown::after { - border-color: #a10f2b; -} - -.u-ribbon-bookmark.g-bg-bluegray::after { - border-color: #585f69; -} - -/* Clipped-v1 Ribbon -------------------------------------*/ -.u-ribbon-clip-v1::before, -.u-ribbon-clip-v2::before { - content: ""; - position: absolute; - bottom: -0.71429rem; - border-style: solid; -} - -.u-ribbon--left.u-ribbon-clip-v1::before, -.u-ribbon--left.u-ribbon-clip-v2::before { - left: 0; - border-width: 0 0.71429rem 0.71429rem 0; - border-right-color: #999; -} - -.u-ribbon--right.u-ribbon-clip-v1::before, -.u-ribbon--right.u-ribbon-clip-v2::before { - right: 0; - border-width: 0 0 0.71429rem 0.71429rem; - border-left-color: #999; -} - -/* Clipped-v2 Ribbon -------------------------------------*/ -.u-ribbon-clip-v2 { - padding: .35rem 1.35rem; - -webkit-transform: skewX(-10deg) translateZ(1px); - transform: skewX(-10deg) translateZ(1px); -} - -.u-ribbon-clip-v2.u-ribbon-with-icon { - padding: .5rem 1.35rem; -} - -.u-ribbon-clip-v2__inner { - display: inline-block; - -webkit-transform: skewX(10deg) translateZ(1px); - transform: skewX(10deg) translateZ(1px); -} - -.u-ribbon-clip-v2::before { - -webkit-transform: skewX(10deg); - -ms-transform: skewX(10deg); - transform: skewX(10deg); -} - -.u-ribbon--left.u-ribbon-clip-v2::before { - left: 0.07143rem; -} - -.u-ribbon--right.u-ribbon-clip-v2::before { - right: -0.07143rem; -} - -/* Clipped-v3 Ribbon -------------------------------------*/ -.u-ribbon-clip-v3 { - width: calc(100% + 20px); - text-align: center; -} - -.u-ribbon-clip-v3::before, -.u-ribbon-clip-v3::after { - content: ""; - position: absolute; -} - -.u-ribbon-clip-v3::before { - left: 0; - bottom: -0.71429rem; - width: 0; - height: 0; - border-top: 10px solid #999; - border-left: 10px solid transparent; -} - -.u-ribbon-clip-v3::after { - right: 0; - bottom: -0.71429rem; - width: 0; - height: 0; - border-top: 10px solid #999; - border-right: 10px solid transparent; -} - -/* Clipped-v4 Ribbon -------------------------------------*/ -.u-ribbon-clip-v4 { - width: 100%; - height: 100%; - overflow: hidden; -} - -.u-ribbon-clip-v4::before, -.u-ribbon-clip-v4::after { - content: ""; - position: absolute; -} - -.u-ribbon-clip-v4::before { - top: 0; - width: 2.85714rem; - height: 0.42857rem; - background: #999; - border-radius: 0.57143rem 0.57143rem 0 0; -} - -.u-ribbon-clip-v4.u-ribbon--left::before { - left: 7.14286rem; -} - -.u-ribbon-clip-v4.u-ribbon--right::before { - right: 7.14286rem; -} - -.u-ribbon-clip-v4::after { - top: 7.14286rem; - width: 0.42857rem; - height: 2.85714rem; - background: #999; -} - -.u-ribbon-clip-v4.u-ribbon--left::after { - left: 0; - border-radius: 0.57143rem 0 0 0.57143rem; -} - -.u-ribbon-clip-v4.u-ribbon--right::after { - right: 0; - border-radius: 0 0.57143rem 0.57143rem 0; -} - -.u-ribbon-clip-v4__inner { - position: absolute; - top: 2.14286rem; - width: 14.28571rem; - height: 2.85714rem; - line-height: 2.85714rem; - overflow: hidden; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - text-align: center; - z-index: 2; -} - -.u-ribbon--left .u-ribbon-clip-v4__inner { - left: -3.57143rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); -} - -.u-ribbon--right .u-ribbon-clip-v4__inner { - right: -3.57143rem; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); -} - -.u-ribbon-clip-v4__inner--bordered { - border: 1px dashed rgba(255, 255, 255, 0.7); -} - -.u-ribbon-clip-v4__inner.g-bg-primary { - -webkit-box-shadow: 0 0 0 3px #e74c3c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #e74c3c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-black { - -webkit-box-shadow: 0 0 0 3px #000, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #000, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-white { - -webkit-box-shadow: 0 0 0 3px #fff, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #fff, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-light-opacity { - -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-dark-opacity { - -webkit-box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-color-gray-light-v3 { - -webkit-box-shadow: 0 0 0 3px #ddd, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #ddd, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-color-gray-light-v4 { - -webkit-box-shadow: 0 0 0 3px #eee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #eee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-color-gray-dark-v5 { - -webkit-box-shadow: 0 0 0 3px #999, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #999, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-green { - -webkit-box-shadow: 0 0 0 3px #72c02c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #72c02c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-blue { - -webkit-box-shadow: 0 0 0 3px #3398dc, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #3398dc, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-lightblue { - -webkit-box-shadow: 0 0 0 3px #edf2f8, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #edf2f8, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-lightblue-v1 { - -webkit-box-shadow: 0 0 0 3px #d6e2ee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #d6e2ee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-darkblue { - -webkit-box-shadow: 0 0 0 3px #009, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #009, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-indigo { - -webkit-box-shadow: 0 0 0 3px #4263a3, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #4263a3, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-red { - -webkit-box-shadow: 0 0 0 3px #f00, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #f00, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-lightred { - -webkit-box-shadow: 0 0 0 3px #e64b3b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #e64b3b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-darkred { - -webkit-box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-purple { - -webkit-box-shadow: 0 0 0 3px #9a69cb, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #9a69cb, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-darkpurple { - -webkit-box-shadow: 0 0 0 3px #6639b6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #6639b6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-pink { - -webkit-box-shadow: 0 0 0 3px #e81c62, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #e81c62, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-orange { - -webkit-box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-deeporange { - -webkit-box-shadow: 0 0 0 3px #fe541e, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #fe541e, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-yellow { - -webkit-box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-aqua { - -webkit-box-shadow: 0 0 0 3px #29d6e6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #29d6e6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-cyan { - -webkit-box-shadow: 0 0 0 3px #00bed6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #00bed6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-teal { - -webkit-box-shadow: 0 0 0 3px #18ba9b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #18ba9b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-brown { - -webkit-box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -.u-ribbon-clip-v4__inner.g-bg-bluegray { - -webkit-box-shadow: 0 0 0 3px #585f69, 0 21px 5px -18px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 0 3px #585f69, 0 21px 5px -18px rgba(0, 0, 0, 0.6); -} - -/*------------------------------------ - Animation on the scroll -------------------------------------*/ -[data-animation]:not(.u-in-viewport) { - visibility: hidden; -} - -[data-animation].js-carousel { - visibility: visible; -} - -.u-in-viewport { - visibility: visible; -} - -/*------------------------------------ - Stickers -------------------------------------*/ -.u-sticker { - position: absolute; -} - -/* Sticker Position -------------------------------------*/ -.u-sticker-center { - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); -} - -/*------------------------------------ - Sticky blocks -------------------------------------*/ -[class*="sticky-block"] { - max-width: 100%; -} - -/*------------------------------------ - Tables -------------------------------------*/ -[class*="text"][class*="center"] td, -[class*="text"][class*="center"] th { - text-align: center; -} - -.u-table--v1 td, -.u-table--v1 th { - padding: 8px; -} - -.u-table--v1 thead th { - border-bottom-width: 1px; -} - -.u-table--v2 td, -.u-table--v2 th { - padding: 15px; -} - -.u-table--v2 thead th { - background-color: inherit; - border-bottom-width: 1px; -} - -.g-col-border-top-0 td, -.g-col-border-top-0 th { - border-top-width: 0; -} - -.g-col-border-side-0 td, -.g-col-border-side-0 th { - border-left-width: 0; - border-right-width: 0; -} - -/*------------------------------------ - Tabs -------------------------------------*/ -/* Colors -------------------------------------*/ -.g-color-primary--active.active { - color: #e74c3c; -} - -.g-color-black--active.active { - color: #000; -} - -.g-color-gray-dark-v2--active.active { - color: #333; -} - -.g-color-white--active.active { - color: #fff; -} - -/* Style for Icons -------------------------------------*/ -.u-tab-line-icon-pro { - position: relative; - top: 2px; -} - -/* HZ -------------------------------------*/ -.nav-item > a, -.nav-item > .nav-link, -[class*="u-tab-link"]:not([class*="-icon"]) { - -webkit-transition-property: color, background-color, border-color; - -o-transition-property: color, background-color, border-color; - transition-property: color, background-color, border-color; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) { - display: block; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .nav-item { - display: inline-block; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .js-tabs-mobile { - position: relative; - display: none; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .js-tabs-mobile-control { - position: relative; - display: block; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .js-tabs-mobile-control::after { - content: ""; - position: absolute; - top: 50%; - right: 0; - display: block; - width: 0; - height: 0; - border-width: 5px 3.5px 0 3.5px; - border-style: solid; - border-color: #777 transparent transparent transparent; - margin-top: -1px; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .js-tabs-mobile .nav-inner { - position: absolute; - top: calc(100% + 1px); - right: 0; - display: none; - background-color: #fff; - border: 1px solid; - padding-left: 0; -} - -[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]):not( -[data-scroll]) .js-tabs-mobile .nav-inner .nav-item { - display: block; - white-space: nowrap; -} - -[data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"]) { - width: 100%; - white-space: nowrap; - overflow-x: scroll; - overflow-y: hidden; -} - -[data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not( -[data-tabs-mobile-type="accordion"])::-webkit-scrollbar { - display: none; -} - -@-moz-document url-prefix() { - [data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) { - padding-bottom: 15px; - } -} - -@media (min-width: 768px) { - [data-scroll] { - width: 100%; - white-space: nowrap; - overflow-x: scroll; - overflow-y: hidden; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - [data-scroll]::-webkit-scrollbar { - display: none; - } - @-moz-document url-prefix() { - [data-scroll] { - padding-bottom: 15px; - } - } -} - -/*------------------------------------ - Tabs v1 -------------------------------------*/ -/* Tabs v1 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v1"].u-nav-rounded-3 .nav-link { - border-radius: 3px; - } - [class*="u-nav-v1"].u-nav-rounded-5 .nav-link { - border-radius: 5px; - } - [class*="u-nav-v1"].u-nav-rounded-7 .nav-link { - border-radius: 7px; - } - [class*="u-nav-v1"].u-nav-rounded-10 .nav-link { - border-radius: 10px; - } - .u-nav-v1-1 .nav-link.active { - background-color: #eee; - } - .u-nav-v1-1.u-nav-primary .nav-link.active { - color: #fff; - background-color: #e74c3c; - } - .u-nav-v1-1.u-nav-dark .nav-link.active { - color: #fff; - background-color: #333; - } - .u-nav-v1-1.u-nav-light .nav-link { - color: #fff; - } - .u-nav-v1-1.u-nav-light .nav-link.active { - color: #333; - background-color: #fff; - } - .u-nav-v1-2 .nav-link { - border: solid 1px transparent; - } - .u-nav-v1-2 .nav-link.active { - border-color: #eee; - } - .u-nav-v1-2.u-nav-primary .nav-link.active { - border-color: #e74c3c; - } - .u-nav-v1-2.u-nav-dark .nav-link.active { - border-color: #333; - } - .u-nav-v1-2.u-nav-light .nav-link { - color: #fff; - } - .u-nav-v1-2.u-nav-light .nav-link.active { - border-color: #fff; - } -} - -/*------------------------------------ - Tabs v2 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v2"] .nav-link { - border-style: solid; - border-color: #eee; - border-width: 1px; - margin-left: -1px; - } - [class*="u-nav-v2"] .nav-item:first-child .nav-link { - margin-left: 0; - } - [class*="u-nav-v2"].flex-column .nav-link { - margin: -1px 0 0; - } - [class*="u-nav-v2"].flex-column .nav-item:first-child .nav-link { - margin-top: 0; - } - [class*="u-nav-v2"].u-nav-primary .nav-link { - border-color: #e74c3c; - } - [class*="u-nav-v2"].u-nav-primary .nav-link.active, - [class*="u-nav-v2"].u-nav-primary .cbp-filter-item-active .nav-link { - border-color: #e74c3c !important; - } - [class*="u-nav-v2"].u-nav-dark .nav-link { - border-color: #333; - } - [class*="u-nav-v2"].u-nav-dark .nav-link.active, - [class*="u-nav-v2"].u-nav-dark .cbp-filter-item-active .nav-link { - border-color: #333 !important; - } - [class*="u-nav-v2"].u-nav-light .nav-link { - color: #fff; - border-color: #fff; - } - [class*="u-nav-v2"].u-nav-light .nav-link.active, - [class*="u-nav-v2"].u-nav-light .cbp-filter-item-active .nav-link { - border-color: #fff !important; - } - [class*="u-nav-v2"].u-nav-rounded-3 .nav-item:first-child .nav-link { - border-radius: 3px 0 0 3px; - } - [class*="u-nav-v2"].u-nav-rounded-3 .nav-item:last-child .nav-link { - border-radius: 0 3px 3px 0; - } - [class*="u-nav-v2"].u-nav-rounded-3.flex-column .nav-item:first-child .nav-link { - border-radius: 3px 3px 0 0; - } - [class*="u-nav-v2"].u-nav-rounded-3.flex-column .nav-item:last-child .nav-link { - border-radius: 0 0 3px 3px; - } - [class*="u-nav-v2"].u-nav-rounded-5 .nav-item:first-child .nav-link { - border-radius: 5px 0 0 5px; - } - [class*="u-nav-v2"].u-nav-rounded-5 .nav-item:last-child .nav-link { - border-radius: 0 5px 5px 0; - } - [class*="u-nav-v2"].u-nav-rounded-5.flex-column .nav-item:first-child .nav-link { - border-radius: 5px 5px 0 0; - } - [class*="u-nav-v2"].u-nav-rounded-5.flex-column .nav-item:last-child .nav-link { - border-radius: 0 0 5px 5px; - } - [class*="u-nav-v2"].u-nav-rounded-7 .nav-item:first-child .nav-link { - border-radius: 7px 0 0 7px; - } - [class*="u-nav-v2"].u-nav-rounded-7 .nav-item:last-child .nav-link { - border-radius: 0 7px 7px 0; - } - [class*="u-nav-v2"].u-nav-rounded-7.flex-column .nav-item:first-child .nav-link { - border-radius: 7px 7px 0 0; - } - [class*="u-nav-v2"].u-nav-rounded-7.flex-column .nav-item:last-child .nav-link { - border-radius: 0 0 7px 7px; - } - [class*="u-nav-v2"].u-nav-rounded-10 .nav-item:first-child .nav-link { - border-radius: 10px 0 0 10px; - } - [class*="u-nav-v2"].u-nav-rounded-10 .nav-item:last-child .nav-link { - border-radius: 0 10px 10px 0; - } - [class*="u-nav-v2"].u-nav-rounded-10.flex-column .nav-item:first-child .nav-link { - border-radius: 10px 10px 0 0; - } - [class*="u-nav-v2"].u-nav-rounded-10.flex-column .nav-item:last-child .nav-link { - border-radius: 0 0 10px 10px; - } - .u-nav-v2-1 .nav-link.active, - .u-nav-v2-1 .cbp-filter-item-active .nav-link { - background-color: #eee; - } - .u-nav-v2-1.u-nav-primary .nav-link.active, - .u-nav-v2-1.u-nav-primary .cbp-filter-item-active .nav-link { - color: #fff; - background-color: #e74c3c; - } - .u-nav-v2-1.u-nav-dark .nav-link.active, - .u-nav-v2-1.u-nav-dark .nav-link.cbp-filter-item-active { - color: #fff; - background-color: #333; - } - .u-nav-v2-1.u-nav-light .nav-link.active, - .u-nav-v2-1.u-nav-light .nav-link.cbp-filter-item-active { - color: #333; - background-color: #fff; - } - .u-nav-v2-2 .nav-link.active, - .u-nav-v2-2 .cbp-filter-item-active .nav-link { - color: #e74c3c; - } -} - -/*------------------------------------ - Tabs v3 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v3"] .nav-link { - border-style: solid; - border-width: 1px 0; - border-color: #eee; - } - [class*="u-nav-v3"].flex-column .nav-link { - margin: -1px 0 0; - } - [class*="u-nav-v3"].flex-column .nav-item:first-child .nav-link { - margin-top: 0; - } - [class*="u-nav-v3"] .nav-link.active { - color: #e74c3c; - } - [class*="u-nav-v3"].u-nav-light .nav-link { - color: #fff; - border-color: #fff; - } - [class*="u-nav-v3"].u-nav-light .nav-link.active { - color: #e74c3c; - border-color: #fff !important; - } - .u-nav-v3-2 .nav-link { - z-index: 1; - } - .u-nav-v3-2 .nav-link.active { - border-color: #e74c3c; - z-index: 2; - position: relative; - } -} - -/*------------------------------------ - Tabs v4 -------------------------------------*/ -@media (min-width: 768px) { - .u-nav-v4-1 { - border-bottom-style: solid; - border-bottom-width: 1px; - border-bottom-color: #eee; - } - .u-nav-v4-1 .nav-item { - margin-bottom: -1px; - } - .u-nav-v4-1 .nav-link { - border-style: solid; - border-width: 2px 1px 1px; - border-color: transparent; - } - .u-nav-v4-1 .nav-link.active { - border-color: #ccc #eee #fff; - } - .u-nav-v4-1.u-nav-light .nav-link { - color: #fff; - } - .u-nav-v4-1.u-nav-light .nav-link.active { - color: #fff; - border-color: #ccc #eee transparent; - background-color: #333; - } - .u-nav-v4-1.u-nav-light.flex-column .nav-link.active { - border-color: #ccc transparent #ccc #eee; - border-width: 1px 0 1px 1px; - background-color: #333; - } - .u-nav-v4-1.u-nav-primary .nav-link.active { - border-color: #e74c3c #eee #fff; - } - .u-nav-v4-1.u-nav-dark .nav-link.active { - border-color: #333 #eee #fff; - } -} - -@media (min-width: 768px) and (min-width: 768px) { - .u-nav-v4-1-column { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - .u-nav-v4-1-column .u-nav-v4-1 { - border-bottom: none; - } - .u-nav-v4-1-column .u-nav-v4-1 .nav-item { - margin: 0 -1px 0 0; - z-index: 2; - } - .u-nav-v4-1-column .u-nav-v4-1 .nav-link { - border-style: solid; - border-width: 1px 1px 1px 2px; - border-color: transparent; - } - .u-nav-v4-1-column .u-nav-v4-1 .nav-link.active { - border-color: #eee #fff #eee #ccc; - } - .u-nav-v4-1-column .u-nav-v4-1.u-nav-primary .nav-link.active { - border-color: #eee #fff #eee #e74c3c; - } - .u-nav-v4-1-column .u-nav-v4-1.u-nav-dark .nav-link.active { - border-color: #eee #fff #eee #333; - } - .u-nav-v4-1-column .nav { - width: 30%; - } - .u-nav-v4-1-column .tab-content { - width: 70%; - } -} - -/*------------------------------------ - Tabs v5 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v5"] .nav-item { - margin-bottom: -1px; - } - [class*="u-nav-v5"] .nav-link { - border-bottom-style: solid; - border-bottom-width: 1px; - border-bottom-color: transparent; - } - [class*="u-nav-v5"] .nav-link.active { - border-color: #ccc; - } - [class*="u-nav-v5"].u-nav-primary .nav-link.active { - border-color: #e74c3c; - color: #e74c3c; - } - [class*="u-nav-v5"].u-nav-dark .nav-link.active { - border-color: #333; - color: #333; - } - [class*="u-nav-v5"].u-nav-light .nav-link { - color: #fff; - } - [class*="u-nav-v5"].u-nav-light .nav-link.active { - color: #fff; - border-color: #fff; - } - .u-nav-v5-2 .nav-link { - border-bottom-width: 2px; - } - .u-nav-v5-3 .nav-link { - border-bottom-width: 5px; - } -} - -/*------------------------------------ - Tabs v6 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v6"] .nav-link { - position: relative; - border-bottom-style: solid; - border-bottom-width: 2px; - border-bottom-color: transparent; - -webkit-transition: none; - -o-transition: none; - transition: none; - } - [class*="u-nav-v6"] .nav-link:after, [class*="u-nav-v6"] .nav-link:before { - top: 100%; - left: 50%; - border: solid transparent; - content: ""; - height: 0; - width: 0; - position: absolute; - pointer-events: none; - } - [class*="u-nav-v6"] .nav-link:after { - border-top-color: #fff; - border-width: 4px; - margin-left: -4px; - } - [class*="u-nav-v6"] .nav-link:before { - border-width: 6px; - margin-left: -6px; - } - [class*="u-nav-v6"] .nav-link.active { - border-color: #e74c3c; - } - [class*="u-nav-v6"] .nav-link.active::after, [class*="u-nav-v6"] .nav-link.active::before { - opacity: 1; - } - [class*="u-nav-v6"] .nav-link.active::before { - border-top-color: #e74c3c; - } - [class*="u-nav-v6"].u-nav-light .nav-link { - color: #fff; - } - [class*="u-nav-v6"].u-nav-light .nav-link::after { - border-top-color: #333; - } - [class*="u-nav-v6"].u-nav-light .nav-link.active { - color: #fff; - border-color: #fff; - } - [class*="u-nav-v6"].u-nav-light .nav-link.active:before { - border-top-color: #fff; - } - [class*="u-nav-v6"].u-nav-light .nav-link.active::after { - border-top-color: #333; - } - [class*="u-nav-v6"].flex-column .nav-link { - border-bottom: none; - border-right-style: solid; - border-right-width: 2px; - border-right-color: transparent; - } - [class*="u-nav-v6"].flex-column .nav-link:after, [class*="u-nav-v6"].flex-column .nav-link:before { - top: 50%; - left: auto; - } - [class*="u-nav-v6"].flex-column .nav-link:after { - border-top-color: transparent; - border-left-color: #fff; - border-width: 4px; - margin-left: 0; - margin-top: -5px; - right: -8px; - } - [class*="u-nav-v6"].flex-column .nav-link:before { - border-top-color: transparent; - border-left-color: #fff; - border-width: 6px; - margin-left: 0; - margin-top: -7px; - right: -13px; - } - [class*="u-nav-v6"].flex-column .nav-link.active { - border-color: #e74c3c; - } - [class*="u-nav-v6"].flex-column .nav-link.active::before { - border-left-color: #e74c3c; - } -} - -/*------------------------------------ - Tabs v7 -------------------------------------*/ -@media (min-width: 768px) { - [class*="u-nav-v7"] .nav-item { - position: relative; - } - [class*="u-nav-v7"] .nav-item::after { - content: ""; - position: absolute; - top: 50%; - right: 0; - display: block; - width: 0; - height: 35%; - border-right-style: solid; - border-right-width: 1px; - border-right-color: #ccc; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - } - [class*="u-nav-v7"] .nav-item:last-child::after { - border-right-color: transparent; - } - [class*="u-nav-v7"] .nav-link.active { - color: #e74c3c; - } - [class*="u-nav-v7"].u-nav-dark .nav-link.active { - color: #333; - } - [class*="u-nav-v7"].u-nav-light .nav-link { - color: #fff; - } - [class*="u-nav-v7"].u-nav-light .nav-link.active { - color: #fff; - opacity: .5; - } - [class*="u-nav-v7"].flex-column .nav-item::after { - top: 100%; - left: 0; - right: auto; - width: 35%; - height: 0; - border-right: none; - border-bottom-style: solid; - border-bottom-width: 1px; - border-bottom-color: #ccc; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - [class*="u-nav-v7"].flex-column .nav-item:last-child::after { - border-bottom-color: transparent; - } - [class*="u-nav-v7"].flex-column .nav-link { - padding-left: 0; - padding-right: 0; - } - [class*="u-nav-v7"].flex-column.text-center .nav-item::after { - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - } -} - -/*------------------------------------ - Tabs v8 -------------------------------------*/ -[class*="u-nav-v8"] .nav-link { - position: relative; - min-height: 100%; - padding: 10px 20px; - background-color: #333; - color: #fff; - -webkit-transition: none; - -o-transition: none; - transition: none; -} - -[class*="u-nav-v8"] .nav-link::after { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100px; - height: 100%; - background-image: -webkit-gradient(linear, right top, left top, from(#333), to(rgba(17, 17, 17, 0.2))); - background-image: -webkit-linear-gradient(right, #333 0%, rgba(17, 17, 17, 0.2) 100%); - background-image: -o-linear-gradient(right, #333 0%, rgba(17, 17, 17, 0.2) 100%); - background-image: linear-gradient(to left, #333 0%, rgba(17, 17, 17, 0.2) 100%); - background-repeat: repeat-y; - z-index: 1; -} - -[class*="u-nav-v8"] .nav-link.active { - background-color: #e74c3c; -} - -[class*="u-nav-v8"] .nav-link.active::after { - display: none; -} - -[class*="u-nav-v8"] .nav-link.active .u-nav-v8__icon { - background-color: #e74c3c; -} - -[class*="u-nav-v8"] .nav-link.active .u-nav-v8__description { - color: rgba(255, 255, 255, 0.7); -} - -[class*="u-nav-v8"].u-nav-light .nav-link { - color: #333; -} - -[class*="u-nav-v8"].u-nav-light .nav-link.active { - color: #a49da6; - background-color: #fff; -} - -[class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__icon { - color: #fff; - background-color: #e74c3c; -} - -[class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__description { - color: #a49da6; -} - -[class*="u-nav-v8"].u-nav-light .u-nav-v8__icon { - background-color: #fff; - color: #fff; -} - -[class*="u-nav-v8"].u-nav-light .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .u-nav-v8__description { - color: #fff; -} - -.u-nav-v8__icon, .u-nav-v8__title, .u-nav-v8__description { - position: relative; - z-index: 3; -} - -.u-nav-v8__icon { - display: none; - background-color: #333; - color: #fff; - -webkit-transform: translateY(-51%); - -ms-transform: translateY(-51%); - transform: translateY(-51%); - -webkit-transition: none; - -o-transition: none; - transition: none; -} - -.u-nav-v8__title { - display: block; -} - -.u-nav-v8__description { - color: inherit; - font-style: normal; -} - -@media (min-width: 768px) { - [class*="u-nav-v8"] .nav-link { - padding: 0 20px 25px; - } - [class*="u-nav-v8"].u-nav-light .nav-link { - background-color: #fff; - } - [class*="u-nav-v8"].u-nav-light .nav-link::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #fff)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #fff)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #fff 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #fff 50%), -o-linear-gradient(bottom right, transparent 49.6%, #fff 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); - } - [class*="u-nav-v8"].u-nav-light .nav-link::after { - background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(204, 204, 204, 0.2))); - background-image: -webkit-linear-gradient(right, #fff 0%, rgba(204, 204, 204, 0.2) 100%); - background-image: -o-linear-gradient(right, #fff 0%, rgba(204, 204, 204, 0.2) 100%); - background-image: linear-gradient(to left, #fff 0%, rgba(204, 204, 204, 0.2) 100%); - } - [class*="u-nav-v8"].u-nav-light .nav-link.active { - color: #fff; - background-color: #e74c3c; - } - [class*="u-nav-v8"].u-nav-light .nav-link.active::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #e74c3c 50%), linear-gradient(to top left, transparent 49.6%, #e74c3c 50%); - } - [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__title { - color: #fff; - } - [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__description { - color: rgba(255, 255, 255, 0.7); - } - [class*="u-nav-v8"].u-nav-light .u-nav-v8__icon, [class*="u-nav-v8"].u-nav-light .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .u-nav-v8__description { - color: #a49da6; - } - [class*="u-nav-v8"].justify-content-end .nav-item:first-child .nav-link::before, [class*="u-nav-v8"].text-right .nav-item:first-child .nav-link::before { - display: none; - } - [class*="u-nav-v8"].justify-content-end .nav-item:last-child .nav-link, [class*="u-nav-v8"].text-right .nav-item:last-child .nav-link { - padding: 0 20px 25px; - } - [class*="u-nav-v8"].justify-content-end .nav-item:last-child .nav-link::before, [class*="u-nav-v8"].text-right .nav-item:last-child .nav-link::before { - display: block; - } - [class*="u-nav-v8"].justify-content-end .nav-link::before, [class*="u-nav-v8"].text-right .nav-link::before { - left: -26px; - right: auto; - background-position: top right, bottom left; - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #333)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #333)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #333 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #333 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #333 50%), -o-linear-gradient(bottom left, transparent 49.6%, #333 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #333 50%), linear-gradient(to top right, transparent 49.6%, #333 50%); - } - [class*="u-nav-v8"].justify-content-end .nav-link::after, [class*="u-nav-v8"].text-right .nav-link::after { - left: auto; - right: 0; - background-image: -webkit-gradient(linear, left top, right top, from(#333), to(rgba(17, 17, 17, 0.2))); - background-image: -webkit-linear-gradient(left, #333 0%, rgba(17, 17, 17, 0.2) 100%); - background-image: -o-linear-gradient(left, #333 0%, rgba(17, 17, 17, 0.2) 100%); - background-image: linear-gradient(to right, #333 0%, rgba(17, 17, 17, 0.2) 100%); - } - [class*="u-nav-v8"].justify-content-end .nav-link.active::before, [class*="u-nav-v8"].text-right .nav-link.active::before { - background-image: -webkit-gradient(linear, left top, right bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, left bottom, right top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top left, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom left, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom right, transparent 49.6%, #e74c3c 50%), linear-gradient(to top right, transparent 49.6%, #e74c3c 50%); - } - [class*="u-nav-v8"].flex-column .nav-item { - margin-bottom: 1px; - } - [class*="u-nav-v8"].flex-column .nav-item:first-child .nav-link { - padding: 20px 20px 20px 50px; - } - [class*="u-nav-v8"].flex-column .nav-item:last-child .nav-link::before { - display: block; - } - [class*="u-nav-v8"].flex-column .nav-link { - padding: 20px 20px 20px 50px; - } - [class*="u-nav-v8"].flex-column .nav-link::before { - opacity: 0; - } - [class*="u-nav-v8"].flex-column .nav-link.active::before { - opacity: 1; - } - [class*="u-nav-v8"].flex-column .u-nav-v8__icon { - position: absolute; - top: 50%; - left: 0; - -webkit-transform: translateX(-50%) translateY(-50%); - -ms-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - } - .u-nav-v8__icon { - display: inline-block; - } - .u-nav-v8__description { - color: rgba(255, 255, 255, 0.5); - } - .u-nav-v8-2 .nav-item:first-child .nav-link { - padding: 0 20px 25px; - } - .u-nav-v8-2 .nav-item:last-child .nav-link::before { - display: none; - } - .u-nav-v8-2 .nav-link { - padding: 0 20px 25px 50px; - } - .u-nav-v8-2 .nav-link::before { - content: ""; - position: absolute; - top: 0; - right: -26px; - display: block; - width: 26px; - height: 100%; - background-repeat: no-repeat; - background-size: 100% 50.8%; - background-position: top right, bottom left; - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #333)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #333)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #333 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #333 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #333 50%), -o-linear-gradient(bottom right, transparent 49.6%, #333 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #333 50%), linear-gradient(to top left, transparent 49.6%, #333 50%); - z-index: 2; - } - .u-nav-v8-2 .nav-link.active::before { - background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)), -webkit-gradient(linear, right bottom, left top, color-stop(49.6%, transparent), color-stop(50%, #e74c3c)); - background-image: -webkit-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -webkit-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: -o-linear-gradient(top right, transparent 49.6%, #e74c3c 50%), -o-linear-gradient(bottom right, transparent 49.6%, #e74c3c 50%); - background-image: linear-gradient(to bottom left, transparent 49.6%, #e74c3c 50%), linear-gradient(to top left, transparent 49.6%, #e74c3c 50%); - } - .u-nav-v8-2.justify-content-end .nav-item:first-child .nav-link, .u-nav-v8-2.text-right .nav-item:first-child .nav-link { - padding: 0 50px 25px 20px; - } - .u-nav-v8-2.justify-content-end .nav-link, .u-nav-v8-2.text-right .nav-link { - padding: 0 50px 25px 20px; - } -} - -@media (max-width: 767px) { - [data-tabs-mobile-type="slide-up-down"], - [data-tabs-mobile-type="accordion"] { - display: none; - } - [data-tabs-mobile-type="accordion"] { - display: none; - } - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) { - border-color: #e74c3c; - } - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) .nav-item > a, - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) .nav-item > .nav-link, - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) [class*="u-tab-link"]:not([class*="-icon"]) { - white-space: nowrap; - padding: 5px 10px; - } - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) .nav-item > a, - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) .nav-item > .nav-link, - [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not( - [data-tabs-mobile-type="accordion"]) [class*="u-tab-link"]:not([class*="-icon"]):not( - [class*="js-tabs-mobile-control"]) { - display: block; - } - [data-tabs-mobile-type="slide-up-down"] { - width: 100%; - padding-top: 10px; - border-bottom: none !important; - } - [data-tabs-mobile-type="slide-up-down"] .nav-item { - margin: 0; - } - [data-tabs-mobile-type="slide-up-down"] .nav-link { - text-align: center; - border-style: solid !important; - border-color: #eee !important; - border-width: 1px !important; - border-radius: 0 !important; - margin: -1px 0 0; - } - [data-tabs-mobile-type="slide-up-down"] .nav-item:first-child .nav-link { - margin-top: 0; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-link, [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-link { - border-color: #e74c3c !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-link.active, - [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-item.show .nav-link, [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-link.active, - [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item.show .nav-link { - border-color: #e74c3c !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-link { - border-color: #333 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-link.active, - [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-item.show .nav-link { - border-color: #333 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-item.show .nav-link { - border-color: #fff; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-link { - color: #fff; - border-color: #fff; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-link.active { - color: #a49da6; - background-color: #fff; - border-color: #fff; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-3 .nav-item:first-child .nav-link, - [data-tabs-mobile-type="slide-up-down"].nav-tabs .nav-item:first-child .nav-link, - [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item:first-child .nav-link { - border-radius: 3px 3px 0 0 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-3 .nav-item:last-child .nav-link, - [data-tabs-mobile-type="slide-up-down"].nav-tabs .nav-item:last-child .nav-link, - [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item:last-child .nav-link { - border-radius: 0 0 3px 3px !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-5 .nav-item:first-child .nav-link { - border-radius: 5px 5px 0 0 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-5 .nav-item:last-child .nav-link { - border-radius: 0 0 5px 5px !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-7 .nav-item:first-child .nav-link { - border-radius: 7px 7px 0 0 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-7 .nav-item:last-child .nav-link { - border-radius: 0 0 7px 7px !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-10 .nav-item:first-child .nav-link { - border-radius: 10px 10px 0 0 !important; - } - [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-10 .nav-item:last-child .nav-link { - border-radius: 0 0 10px 10px !important; - } - .tab-content { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } -} - -/*------------------------------------ - Tags -------------------------------------*/ -/* Pagination v1 */ -.u-tags-v1 { - display: inline-block; - text-decoration: none; - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-tags-v1:hover, .u-tags-v1:focus { - text-decoration: none; - cursor: pointer; -} - -.u-tags-v1:focus { - color: inherit; -} - -/*------------------------------------ - Text Animation Slideshow -------------------------------------*/ -.u-text-slideshow { - position: relative; - overflow: visible !important; - vertical-align: inherit; -} - -.u-text-slideshow__slide { - position: relative; - z-index: 1; - display: inline-block; - opacity: 0; - -webkit-transition: .3s ease; - -o-transition: .3s ease; - transition: .3s ease; -} - -.u-text-slideshow__slide:not(:first-child) { - position: absolute; - top: 0; - left: 0; -} - -.u-text-slideshow__slide--current { - z-index: 2; - opacity: 1; -} - -.u-text-slideshow__slide-target { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} - -/*------------------------------------ - Text-shadow -------------------------------------*/ -.u-txt-shadow-v1 { - text-shadow: 1px 1px rgba(67, 70, 72, 0.05), 2px 2px rgba(147, 150, 152, 0.07), 3px 3px rgba(178, 182, 183, 0.086), 4px 4px rgba(195, 199, 200, 0.106), 5px 5px rgba(206, 210, 211, 0.125), 6px 6px rgba(213, 217, 218, 0.145), 7px 7px rgba(218, 222, 223, 0.165), 8px 8px rgba(222, 226, 227, 0.184), 9px 9px rgba(226, 230, 231, 0.204), 10px 10px rgba(228, 232, 233, 0.22), 11px 11px rgba(230, 234, 235, 0.24), 12px 12px rgba(232, 236, 237, 0.26), 13px 13px rgba(233, 237, 238, 0.28), 14px 14px rgba(235, 239, 240, 0.298), 15px 15px rgba(236, 240, 241, 0.318), 16px 16px rgba(237, 241, 242, 0.333), 17px 17px rgba(238, 242, 243, 0.353), 18px 18px rgba(238, 242, 243, 0.373), 19px 19px rgba(239, 243, 244, 0.392), 20px 20px rgba(240, 244, 245, 0.41), 21px 21px rgba(240, 244, 245, 0.43), 22px 22px rgba(241, 245, 246, 0.447), 23px 23px rgba(241, 245, 246, 0.467), 24px 24px rgba(242, 246, 247, 0.486), 25px 25px rgba(242, 246, 247, 0.506), 26px 26px rgba(242, 246, 247, 0.525), 27px 27px rgba(243, 247, 248, 0.545), 28px 28px rgba(243, 247, 248, 0.565), 29px 29px rgba(243, 247, 248, 0.58), 30px 30px rgba(244, 248, 249, 0.6), 31px 31px rgba(244, 248, 249, 0.62), 32px 32px rgba(244, 248, 249, 0.64), 33px 33px rgba(244, 248, 249, 0.66), 34px 34px rgba(245, 249, 250, 0.68), 35px 35px rgba(245, 249, 250, 0.694), 36px 36px rgba(245, 249, 250, 0.714), 37px 37px rgba(245, 249, 250, 0.733), 38px 38px rgba(245, 249, 250, 0.753), 39px 39px rgba(246, 250, 251, 0.773), 40px 40px rgba(246, 250, 251, 0.792), 41px 41px rgba(246, 250, 251, 0.81), 42px 42px rgba(246, 250, 251, 0.827), 43px 43px rgba(246, 250, 251, 0.847), 44px 44px rgba(246, 250, 251, 0.867), 45px 45px rgba(246, 250, 251, 0.886), 46px 46px rgba(246, 250, 251, 0.906), 47px 47px rgba(247, 251, 252, 0.925), 48px 48px rgba(247, 251, 252, 0.94), 49px 49px rgba(247, 251, 252, 0.96), 50px 50px rgba(247, 251, 252, 0.98); -} - -.u-txt-shadow-v2 { - text-shadow: 0 6px 55px #999; -} - -/*------------------------------------ - Marker-bg -------------------------------------*/ -.u-marker-bg-primary, .u-marker-bg-green, .u-marker-bg-black, .u-marker-bg-white, .u-marker-bg-red, .u-marker-bg-yellow { - display: inline-block; - background-repeat: no-repeat; - background-position: 0 50%; - background-size: 100% 70%; - white-space: nowrap; -} - -.u-marker-bg-primary { - background-image: url(../img/bg/marker/marker-bg-primary.png); -} - -.u-marker-bg-green { - background-image: url(../img/bg/marker/marker-bg-green.png); -} - -.u-marker-bg-black { - background-image: url(../img/bg/marker/marker-bg-black.png); -} - -.u-marker-bg-white { - background-image: url(../img/bg/marker/marker-bg-white.png); -} - -.u-marker-bg-red { - background-image: url(../img/bg/marker/marker-bg-red.png); -} - -.u-marker-bg-yellow { - background-image: url(../img/bg/marker/marker-bg-yellow.png); -} - -/*------------------------------------ - Tooltips -------------------------------------*/ -.u-tooltip--v1 { - color: #fff; - background-color: #000; - padding: 2px 8px 3px; -} - -.u-tooltip--v1:after { - content: ""; - position: absolute; - display: block; -} - -.u-tooltip--v1.tooltip-top-left, .u-tooltip--v1.tooltip-top-right { - bottom: 100%; - margin-bottom: 5px; -} - -.u-tooltip--v1.tooltip-top-left:after, .u-tooltip--v1.tooltip-top-right:after { - top: 100%; - border-top: 4px solid rgba(0, 0, 0, 0.9); - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.u-tooltip--v1.tooltip-bottom-left, .u-tooltip--v1.tooltip-bottom-right { - top: 100%; - margin-top: 5px; -} - -.u-tooltip--v1.tooltip-bottom-left:after, .u-tooltip--v1.tooltip-bottom-right:after { - bottom: 100%; - border-bottom: 4px solid rgba(0, 0, 0, 0.9); - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.u-tooltip--v1.tooltip-top-left, .u-tooltip--v1.tooltip-bottom-left { - left: 0; -} - -.u-tooltip--v1.tooltip-top-left:after, .u-tooltip--v1.tooltip-bottom-left:after { - left: 16px; -} - -.u-tooltip--v1.tooltip-top-right, .u-tooltip--v1.tooltip-bottom-right { - right: 0; -} - -.u-tooltip--v1.tooltip-top-right:after, .u-tooltip--v1.tooltip-bottom-right:after { - right: 16px; -} - -.u-tooltip--v1.tooltip-left, .u-tooltip--v1.tooltip-right { - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-tooltip--v1.tooltip-left:after, .u-tooltip--v1.tooltip-right:after { - top: 50%; - border-top: 4px solid transparent; - border-bottom: 4px solid transparent; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.u-tooltip--v1.tooltip-left { - right: 100%; - margin-right: 5px; -} - -.u-tooltip--v1.tooltip-left:after { - right: -4px; - border-left: 4px solid rgba(0, 0, 0, 0.9); -} - -.u-tooltip--v1.tooltip-right { - left: 100%; - margin-left: 5px; -} - -.u-tooltip--v1.tooltip-right:after { - left: -4px; - border-right: 4px solid rgba(0, 0, 0, 0.9); -} - -input:focus + .u-tooltip--v1, -textarea:focus + .u-tooltip--v1 { - opacity: 1; -} - -/*------------------------------------ - Typography -------------------------------------*/ -.popovers--no-title .popover-title { - display: none; -} - -.g-nowrap { - white-space: nowrap; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -video { - max-width: 100%; -} - -.u-video-v1 { - margin-bottom: 15px; -} - -.u-video-v1-info { - display: none; - padding-left: 0; -} - -.u-video-v1-info__item { - display: inline-block; - list-style: none; -} - -.u-audio-v1 { - margin-bottom: 15px; -} - -.u-audio-v1-info { - display: none; - padding-left: 0; -} - -.u-audio-v1-info__item { - display: inline-block; - list-style: none; -} - -.u-audio-v2 .plyr__controls { - background-color: transparent; - border: none; -} - -.u-audio-v2 .plyr__controls button { - color: #fff; -} - -/*------------------------------------ - Navigation -------------------------------------*/ -/* Base Abstractions */ -.navbar .u-main-nav-v1 .nav-link, .navbar .u-main-nav-v2 .nav-link, .navbar .u-main-nav-v3 .nav-link, .navbar .u-main-nav-v4 .nav-link, .navbar .u-main-nav-v5 .nav-link, .navbar .u-main-nav-v6 .nav-link, .navbar .u-main-nav-v7 .nav-link, .navbar .u-main-nav-v8 .nav-link, .navbar .u-main-nav-v9 .nav-link { - display: block; -} - -.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a, .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a, .navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v3 .nav-item.dropdown > a, .navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v4 .nav-item.dropdown > a, .navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v5 .nav-item.dropdown > a, .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a, .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a, .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a, .navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a { - position: relative; - z-index: 1; - padding-right: 1.42857rem; -} - -.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v3 .nav-item.dropdown > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v4 .nav-item.dropdown > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v5 .nav-item.dropdown > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v6 .nav-item.dropdown > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after { - content: "\e900"; - font-family: "hs-icons"; - font-weight: inherit; - line-height: 1; - position: absolute; - top: 50%; - right: 1.07143rem; - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -/* Base stylesheets */ -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-link { - color: #fff; -} - -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.active > .nav-link, -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item:hover > .nav-link, -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item:focus > .nav-link, -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.show > .nav-link, -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.hs-sub-menu-opened > .nav-link, -.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item .nav-link:focus { - color: #fff; -} - -/* Import */ -/* Main navigation styles */ -/*------------------------------------ - Navigation Style v1 -------------------------------------*/ -.navbar .u-main-nav-v1 .nav-link { - color: #333; - padding: 0.78571rem 2.14286rem; - border-radius: 1.57143rem; -} - -.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a { - padding-right: 3.21429rem; -} - -.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after { - right: 1.78571rem; -} - -.navbar .u-main-nav-v1 .nav-item.active > .nav-link, -.navbar .u-main-nav-v1 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v1 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v1 .nav-item.show > .nav-link, -.navbar .u-main-nav-v1 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v1 .nav-item .nav-link:focus { - color: #fff; - background-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v1 .nav-link { - padding: 0.64286rem 1.42857rem; - } - .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a { - padding-right: 2.5rem; - } - .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after { - right: 1.07143rem; - } -} - -/*------------------------------------ - Navigation Style v2 -------------------------------------*/ -.navbar .u-main-nav-v2 .nav-link { - color: #333; - padding: 0.64286rem 2.14286rem; - border-radius: 1.57143rem; - border: 2px solid transparent; -} - -.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a { - padding-right: 3.21429rem; -} - -.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after { - right: 1.78571rem; -} - -.navbar .u-main-nav-v2 .nav-item.active > .nav-link, -.navbar .u-main-nav-v2 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v2 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v2 .nav-item.show > .nav-link, -.navbar .u-main-nav-v2 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v2 .nav-item .nav-link:focus { - color: #333; - border-color: #e74c3c; - background-color: transparent; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v2 .nav-link { - padding: 0.5rem 1.42857rem; - } - .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a { - padding-right: 2.5rem; - } - .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after { - right: 1.07143rem; - } -} - -/*------------------------------------ - Navigation Style v3 -------------------------------------*/ -.navbar .u-main-nav-v3 .nav-link { - color: #333; - padding: 2.85714rem 2.57143rem 2.57143rem; - border-bottom: 4px solid transparent; -} - -.navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v3 .nav-item.dropdown > a::after { - position: static; - display: inline-block; - vertical-align: middle; - margin-left: 0.71429rem; - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.navbar .u-main-nav-v3 .nav-item.active > .nav-link, -.navbar .u-main-nav-v3 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v3 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v3 .nav-item.show > .nav-link, -.navbar .u-main-nav-v3 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v3 .nav-item .nav-link:focus { - border-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v3 .nav-link { - padding: 2.14286rem 1.78571rem; - } -} - -@media all and (max-width: 991px) { - .navbar .u-main-nav-v3 .nav-link { - padding: 0.71429rem 1.42857rem; - } -} - -/*------------------------------------ - Navigation Style v4 -------------------------------------*/ -.navbar .u-main-nav-v4 .nav-link { - color: #333; - padding: 2.57143rem 2.57143rem 2.85714rem; - border-top: 4px solid transparent; -} - -.navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v4 .nav-item.dropdown > a::after { - position: static; - display: inline-block; - vertical-align: middle; - margin-left: 0.71429rem; - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.navbar .u-main-nav-v4 .nav-item.active > .nav-link, -.navbar .u-main-nav-v4 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v4 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v4 .nav-item.show > .nav-link, -.navbar .u-main-nav-v4 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v4 .nav-item .nav-link:focus { - border-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v4 .nav-link { - padding: 2.14286rem 1.78571rem; - } -} - -@media all and (max-width: 991px) { - .navbar .u-main-nav-v4 .nav-link { - padding: 0.71429rem 1.42857rem; - } -} - -/*------------------------------------ - Navigation Style v5 -------------------------------------*/ -.navbar .u-main-nav-v5 .nav-link { - color: #333; - padding: 0.28571rem 0; - border-bottom: 2px solid transparent; -} - -.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v5 .nav-item.dropdown > a { - padding-right: 1.42857rem; -} - -.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v5 .nav-item.dropdown > a::after { - right: 0; -} - -.navbar .u-main-nav-v5 .nav-item.active > .nav-link, -.navbar .u-main-nav-v5 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v5 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v5 .nav-item.show > .nav-link, -.navbar .u-main-nav-v5 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v5 .nav-item .nav-link:focus { - border-color: #e74c3c; -} - -/*------------------------------------ - Navigation Style v6 -------------------------------------*/ -.navbar .u-main-nav-v6 .nav-link { - color: #333; - height: 100%; - padding: 2.85714rem 2.71429rem; -} - -.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a { - padding-right: 2.71429rem; -} - -.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v6 .nav-item.dropdown > a::after { - position: static; - display: inline-block; - vertical-align: middle; - margin-left: 0.71429rem; - -webkit-transform: none; - -ms-transform: none; - transform: none; -} - -.navbar .u-main-nav-v6 .nav-item.active > .nav-link, -.navbar .u-main-nav-v6 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v6 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v6 .nav-item.show > .nav-link, -.navbar .u-main-nav-v6 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v6 .nav-item .nav-link:focus { - color: #fff; - background-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v6 .nav-link { - padding: 2.14286rem 1.42857rem; - } - .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a { - padding-right: 1.42857rem; - } -} - -/*------------------------------------ - Navigation Style v7 -------------------------------------*/ -.navbar .u-main-nav-v7 .nav-link { - color: #333; - padding: 0.71429rem 2.14286rem; - border: 2px solid transparent; -} - -.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a { - padding-right: 3.21429rem; -} - -.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after { - right: 1.78571rem; -} - -.navbar .u-main-nav-v7 .nav-item.active > .nav-link, -.navbar .u-main-nav-v7 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v7 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v7 .nav-item.show > .nav-link, -.navbar .u-main-nav-v7 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v7 .nav-item .nav-link:focus { - border-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v7 .nav-link { - padding: 0.64286rem 1.42857rem; - } - .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a { - padding-right: 2.14286rem; - } - .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after { - right: 1.07143rem; - } -} - -/*------------------------------------ - Navigation Style v8 -------------------------------------*/ -.navbar .u-main-nav-v8 .nav-link { - color: #333; - padding: 0.78571rem 2.14286rem; -} - -.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a { - padding-right: 3.21429rem; -} - -.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after { - right: 1.78571rem; -} - -.navbar .u-main-nav-v8 .nav-item.active > .nav-link, -.navbar .u-main-nav-v8 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v8 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v8 .nav-item.show > .nav-link, -.navbar .u-main-nav-v8 .nav-item.hs-sub-menu-opened > .nav-link, -.navbar .u-main-nav-v8 .nav-item .nav-link:focus { - color: #fff; - background-color: #e74c3c; -} - -@media all and (max-width: 1199px) { - .navbar .u-main-nav-v8 .nav-link { - padding: 0.64286rem 1.42857rem; - } - .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a { - padding-right: 2.14286rem; - } - .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after { - right: 1.07143rem; - } -} - -/*------------------------------------ - Navigation Style v9 -------------------------------------*/ -.navbar .u-main-nav-v9 .nav-link { - color: #777; - padding: 0 1.42857rem 0 0; -} - -.navbar .u-main-nav-v9 .nav-item > a { - padding: 1.42857rem 0; -} - -.navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after { - font-size: 1.28571rem; - right: 0; -} - -.navbar .u-main-nav-v9 .nav-item.active > .nav-link, -.navbar .u-main-nav-v9 .nav-item:hover > .nav-link, -.navbar .u-main-nav-v9 .nav-item:focus > .nav-link, -.navbar .u-main-nav-v9 .nav-item .nav-link:focus { - color: #000; -} - -.navbar .u-main-nav-v9 .nav-item.active > .nav-link::after, -.navbar .u-main-nav-v9 .nav-item:hover > .nav-link::after, -.navbar .u-main-nav-v9 .nav-item:focus > .nav-link::after, -.navbar .u-main-nav-v9 .nav-item .nav-link:focus::after { - color: #e74c3c; -} - -/* Dropdown navigation styles */ -/*------------------------------------ - Navigation Dropdown Style v1 -------------------------------------*/ -.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu.active > a, -.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:active > a, -.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:focus > a, -.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover > a, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active > a, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active > a, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus > a, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v1 .hs-sub-menu a:active, .navbar .u-sub-menu-v1 .hs-sub-menu a:focus, .navbar .u-sub-menu-v1 .hs-sub-menu a:hover, -.navbar .u-sub-menu-v1 .dropdown-menu a:active, -.navbar .u-sub-menu-v1 .dropdown-menu a:focus, -.navbar .u-sub-menu-v1 .dropdown-menu a:hover { - color: #e74c3c !important; - background-color: transparent; - border: none; -} - -.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu > a::after { - content: "\e902"; - font-family: "hs-icons"; - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -.navbar .u-sub-menu-v1 .hs-has-mega-menu .hs-has-sub-menu > a::after { - content: "\e902"; -} - -.navbar .u-sub-menu-v1 .hs-sub-menu, -.navbar .u-sub-menu-v1 .dropdown-menu { - font-size: 0.92857rem; - min-width: 16.42857rem; - padding: 0.71429rem 0; -} - -.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item { - font-weight: inherit; - color: inherit; - padding: 0; -} - -.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus, -.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover { - border: none; - background-color: transparent; -} - -.navbar .u-sub-menu-v1 .hs-sub-menu a, -.navbar .u-sub-menu-v1 .dropdown-menu a { - color: #777; - text-decoration: none !important; - display: block; - padding: 0.42857rem 1.78571rem; -} - -.navbar .u-sub-menu-v1 .hs-sub-menu, -.navbar .u-sub-menu-v1 .hs-mega-menu, -.navbar .u-sub-menu-v1 .dropdown-menu { - font-weight: normal; - text-transform: none; - margin-top: 0; - color: inherit; - background-color: #fff; - background-clip: border-box; - border-width: 3px 0 0 0; - border-style: solid; - border-color: #e74c3c; - border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} - -.navbar .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v1 .dropdown-menu .hs-sub-menu { - margin-top: -1.07143rem; -} - -.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu { - width: auto; -} - -.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu { - width: auto; -} - -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -/*------------------------------------ - Navigation Dropdown Style v2 -------------------------------------*/ -.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu.active > a, -.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:active > a, -.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:focus > a, -.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover > a, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active > a, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active > a, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus > a, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v2 .hs-sub-menu a:active, .navbar .u-sub-menu-v2 .hs-sub-menu a:focus, .navbar .u-sub-menu-v2 .hs-sub-menu a:hover, -.navbar .u-sub-menu-v2 .dropdown-menu a:active, -.navbar .u-sub-menu-v2 .dropdown-menu a:focus, -.navbar .u-sub-menu-v2 .dropdown-menu a:hover { - color: #777 !important; - background-color: #eee; - border: none; -} - -.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu > a::after { - content: "\e902"; - font-family: "hs-icons"; - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -.navbar .u-sub-menu-v2 .hs-has-mega-menu .hs-has-sub-menu > a::after { - content: "\e902"; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu, -.navbar .u-sub-menu-v2 .dropdown-menu { - font-size: 0.92857rem; - min-width: 16.42857rem; - padding: 0.71429rem 0; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item { - font-weight: inherit; - color: inherit; - padding: 0; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus, -.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover { - border-color: #eee; - background-color: transparent; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu a, -.navbar .u-sub-menu-v2 .dropdown-menu a { - color: #777; - text-decoration: none !important; - display: block; - padding: 0.42857rem 1.78571rem; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu > li:not(:last-child), -.navbar .u-sub-menu-v2 .dropdown-menu > li:not(:last-child) { - border-bottom: 1px solid #eee; -} - -.navbar .u-sub-menu-v2 .hs-sub-menu, -.navbar .u-sub-menu-v2 .hs-mega-menu, -.navbar .u-sub-menu-v2 .dropdown-menu { - font-weight: normal; - text-transform: none; - min-width: 14.28571rem; - margin-top: 0; - padding: 0; - color: inherit; - background-color: #fff; - background-clip: border-box; - border-width: 2px 0 2px 0; - border-style: solid; - border-top-color: #e74c3c; - border-bottom-color: #777; - border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} - -.navbar .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v2 .dropdown-menu .hs-sub-menu { - margin-top: -1.07143rem; -} - -.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu { - width: auto; -} - -.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu { - width: auto; -} - -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -/*------------------------------------ - Navigation Dropdown Style v3 -------------------------------------*/ -.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu.active > a, -.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:active > a, -.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:focus > a, -.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover > a, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active > a, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active > a, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus > a, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v3 .hs-sub-menu a:active, .navbar .u-sub-menu-v3 .hs-sub-menu a:focus, .navbar .u-sub-menu-v3 .hs-sub-menu a:hover, -.navbar .u-sub-menu-v3 .dropdown-menu a:active, -.navbar .u-sub-menu-v3 .dropdown-menu a:focus, -.navbar .u-sub-menu-v3 .dropdown-menu a:hover { - color: #fff !important; - background-color: #e74c3c; - border: none; -} - -.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu > a::after { - content: "\e902"; - font-family: "hs-icons"; - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -.navbar .u-sub-menu-v3 .hs-has-mega-menu .hs-has-sub-menu > a::after { - content: "\e902"; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu, -.navbar .u-sub-menu-v3 .dropdown-menu { - font-size: 0.92857rem; - min-width: 16.42857rem; - padding: 0.71429rem 0; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item { - font-weight: inherit; - color: inherit; - padding: 0; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus, -.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover { - border-color: #eee; - background-color: transparent; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu a, -.navbar .u-sub-menu-v3 .dropdown-menu a { - color: #777; - text-decoration: none !important; - display: block; - padding: 0.42857rem 1.78571rem; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu > li:not(:last-child), -.navbar .u-sub-menu-v3 .dropdown-menu > li:not(:last-child) { - border-bottom: 1px solid #eee; -} - -.navbar .u-sub-menu-v3 .hs-sub-menu, -.navbar .u-sub-menu-v3 .hs-mega-menu, -.navbar .u-sub-menu-v3 .dropdown-menu { - font-weight: normal; - text-transform: none; - min-width: 14.28571rem; - margin-top: 0; - padding: 0; - color: inherit; - background-color: #fff; - background-clip: border-box; - border-width: 2px 0 2px 0; - border-style: solid; - border-top-color: #e74c3c; - border-bottom-color: #777; - border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} - -.navbar .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v3 .dropdown-menu .hs-sub-menu { - margin-top: -1.07143rem; -} - -.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu { - width: auto; -} - -.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu { - width: auto; -} - -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -/*------------------------------------ - Navigation Dropdown Style v4 -------------------------------------*/ -.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu.active > a, -.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:active > a, -.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:focus > a, -.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover > a, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active > a, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active > a, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus > a, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v4 .hs-sub-menu a:active, .navbar .u-sub-menu-v4 .hs-sub-menu a:focus, .navbar .u-sub-menu-v4 .hs-sub-menu a:hover, -.navbar .u-sub-menu-v4 .dropdown-menu a:active, -.navbar .u-sub-menu-v4 .dropdown-menu a:focus, -.navbar .u-sub-menu-v4 .dropdown-menu a:hover { - color: #fff !important; - background-color: #e74c3c; - border: none; -} - -.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu > a::after { - content: "\e902"; - font-family: "hs-icons"; - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -.navbar .u-sub-menu-v4 .hs-has-mega-menu .hs-has-sub-menu > a::after { - content: "\e902"; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu, -.navbar .u-sub-menu-v4 .dropdown-menu { - font-size: 0.92857rem; - min-width: 16.42857rem; - padding: 0.71429rem 0; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item { - font-weight: inherit; - color: inherit; - padding: 0; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus, -.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover { - border: none; - background-color: transparent; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu a, -.navbar .u-sub-menu-v4 .dropdown-menu a { - color: #777; - text-decoration: none !important; - display: block; - padding: 0.42857rem 1.78571rem; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu > li:not(:last-child), -.navbar .u-sub-menu-v4 .dropdown-menu > li:not(:last-child) { - border-bottom: 1px solid #eee; -} - -.navbar .u-sub-menu-v4 .hs-sub-menu, -.navbar .u-sub-menu-v4 .hs-mega-menu, -.navbar .u-sub-menu-v4 .dropdown-menu { - font-weight: normal; - text-transform: none; - min-width: 14.28571rem; - margin-top: 0; - padding: 0; - color: inherit; - background-color: #fff; - background-clip: border-box; - border-width: 2px 0 2px 0; - border-style: solid; - border-top-color: #e74c3c; - border-bottom-color: #777; - border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} - -.navbar .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v4 .dropdown-menu .hs-sub-menu { - margin-top: -1.07143rem; -} - -.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu { - width: auto; -} - -.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu { - width: auto; -} - -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu.hs-reversed, -.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu.hs-reversed { - margin: 0.21429rem; -} - -/*------------------------------------ - Navigation Dropdown Style v5 -------------------------------------*/ -.u-dropdown-v5 { - display: block; - max-height: 0; - overflow: hidden; - opacity: 0; - -webkit-transition: opacity .3s, max-height .3s; - -o-transition: opacity .3s, max-height .3s; - transition: opacity .3s, max-height .3s; -} - -.u-dropdown-v5.show { - max-height: 200px; - opacity: 1; -} - -/*------------------------------------ - Navigation Dropdown Style Inline -------------------------------------*/ -.u-navbar--inline-submenu .dropdown-menu { - white-space: nowrap; - top: 98%; - left: 50%; - border-radius: 0; - overflow: visible !important; - border-left: none; - border-right: none; - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); -} - -.u-navbar--inline-submenu .dropdown-menu::after, .u-navbar--inline-submenu .dropdown-menu::before { - content: ""; - position: absolute; - top: -1px; - bottom: 0; - width: 2000%; - border-top: inherit; - border-bottom: inherit; - background-color: inherit; -} - -.u-navbar--inline-submenu .dropdown-menu::after { - left: 100%; -} - -.u-navbar--inline-submenu .dropdown-menu::before { - right: 100%; -} - -.u-navbar--inline-submenu .dropdown-menu > li { - display: inline-block; -} - -.u-navbar--inline-submenu.u-navbar--overflow .dropdown, -.u-navbar--inline-submenu.u-navbar--overflow .container { - position: static; -} - -.u-navbar--inline-submenu.u-navbar--overflow .dropdown-menu { - white-space: normal; - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-top: 0; -} - -@media all and (min-width: 1200px) { - .u-navbar--inline-submenu--xl .dropdown-menu { - white-space: nowrap; - top: 98%; - left: 50%; - border-radius: 0; - overflow: visible !important; - border-left: none; - border-right: none; - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); - } - .u-navbar--inline-submenu--xl .dropdown-menu::after, .u-navbar--inline-submenu--xl .dropdown-menu::before { - content: ""; - position: absolute; - top: -1px; - bottom: 0; - width: 2000%; - border-top: inherit; - border-bottom: inherit; - background-color: inherit; - } - .u-navbar--inline-submenu--xl .dropdown-menu::after { - left: 100%; - } - .u-navbar--inline-submenu--xl .dropdown-menu::before { - right: 100%; - } - .u-navbar--inline-submenu--xl .dropdown-menu > li { - display: inline-block; - } - .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown, - .u-navbar--inline-submenu--xl.u-navbar--overflow .container { - position: static; - } - .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown-menu { - white-space: normal; - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-top: 0; - } -} - -@media all and (min-width: 992px) { - .u-navbar--inline-submenu--lg .dropdown-menu { - white-space: nowrap; - top: 98%; - left: 50%; - border-radius: 0; - overflow: visible !important; - border-left: none; - border-right: none; - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); - } - .u-navbar--inline-submenu--lg .dropdown-menu::after, .u-navbar--inline-submenu--lg .dropdown-menu::before { - content: ""; - position: absolute; - top: -1px; - bottom: 0; - width: 2000%; - border-top: inherit; - border-bottom: inherit; - background-color: inherit; - } - .u-navbar--inline-submenu--lg .dropdown-menu::after { - left: 100%; - } - .u-navbar--inline-submenu--lg .dropdown-menu::before { - right: 100%; - } - .u-navbar--inline-submenu--lg .dropdown-menu > li { - display: inline-block; - } - .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown, - .u-navbar--inline-submenu--lg.u-navbar--overflow .container { - position: static; - } - .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown-menu { - white-space: normal; - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-top: 0; - } -} - -@media all and (min-width: 768px) { - .u-navbar--inline-submenu--md .dropdown-menu { - white-space: nowrap; - top: 98%; - left: 50%; - border-radius: 0; - overflow: visible !important; - border-left: none; - border-right: none; - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); - } - .u-navbar--inline-submenu--md .dropdown-menu::after, .u-navbar--inline-submenu--md .dropdown-menu::before { - content: ""; - position: absolute; - top: -1px; - bottom: 0; - width: 2000%; - border-top: inherit; - border-bottom: inherit; - background-color: inherit; - } - .u-navbar--inline-submenu--md .dropdown-menu::after { - left: 100%; - } - .u-navbar--inline-submenu--md .dropdown-menu::before { - right: 100%; - } - .u-navbar--inline-submenu--md .dropdown-menu > li { - display: inline-block; - } - .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown, - .u-navbar--inline-submenu--md.u-navbar--overflow .container { - position: static; - } - .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown-menu { - white-space: normal; - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-top: 0; - } -} - -@media all and (min-width: 576px) { - .u-navbar--inline-submenu--sm .dropdown-menu { - white-space: nowrap; - top: 98%; - left: 50%; - border-radius: 0; - overflow: visible !important; - border-left: none; - border-right: none; - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); - } - .u-navbar--inline-submenu--sm .dropdown-menu::after, .u-navbar--inline-submenu--sm .dropdown-menu::before { - content: ""; - position: absolute; - top: -1px; - bottom: 0; - width: 2000%; - border-top: inherit; - border-bottom: inherit; - background-color: inherit; - } - .u-navbar--inline-submenu--sm .dropdown-menu::after { - left: 100%; - } - .u-navbar--inline-submenu--sm .dropdown-menu::before { - right: 100%; - } - .u-navbar--inline-submenu--sm .dropdown-menu > li { - display: inline-block; - } - .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown, - .u-navbar--inline-submenu--sm.u-navbar--overflow .container { - position: static; - } - .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown-menu { - white-space: normal; - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-top: 0; - } -} - -/*------------------------------------ - Navigation Dropdown With Columns -------------------------------------*/ -@media (min-width: 992px) { - [class*="u-dropdown-col-"] { - -webkit-column-gap: 1px; - column-gap: 1px; - -webkit-column-rule: 1px solid #f7f7f7; - column-rule: 1px solid #f7f7f7; - } - [class*="u-dropdown-col-"] > * { - min-width: 200px; - -webkit-column-break-inside: avoid; - column-break-inside: avoid; - } - .u-dropdown-col-2 { - -webkit-columns: 2; - columns: 2; - } - .u-dropdown-col-3 { - -webkit-columns: 3; - columns: 3; - } -} - -/*------------------------------------ - Navigation Dropdown Static -------------------------------------*/ -.u-dropdown-static { - position: static !important; - display: block; - max-height: 0; - margin: 0 1.07143rem; - padding: 0.35714rem 0; - -webkit-transform: translate3d(0, 0, 0) !important; - transform: translate3d(0, 0, 0) !important; - border: none; - background-color: transparent; - overflow: hidden; - opacity: 0; - -webkit-transition: opacity .3s, max-height .3s; - -o-transition: opacity .3s, max-height .3s; - transition: opacity .3s, max-height .3s; -} - -.u-dropdown-static.show { - max-height: 100%; - opacity: 1; -} - -/* Main navigation behaviors */ -/*------------------------------------ - Navigation Behavior (Overlay) -------------------------------------*/ -body.u-main-nav--overlay-left .u-main-nav__overlay, body.u-main-nav--overlay-right .u-main-nav__overlay { - overflow: hidden; -} - -body.u-main-nav--overlay-right .u-main-nav--overlay { - right: -21.42857rem; -} - -body.u-main-nav--overlay-right .u-main-nav__overlay { - right: 100%; -} - -body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav--overlay { - right: 0; -} - -body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav__overlay { - opacity: 1; - visibility: visible; -} - -body.u-main-nav--overlay-left .u-main-nav--overlay { - left: -21.42857rem; -} - -body.u-main-nav--overlay-left .u-main-nav__overlay { - left: 100%; -} - -body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav--overlay { - left: 0; -} - -body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav__overlay { - opacity: 1; - visibility: visible; -} - -.navbar-collapse.u-main-nav--overlay { - position: fixed; - top: 0; - height: 100%; - z-index: 5; - margin: 0 !important; - width: 21.42857rem; - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.navbar-collapse.u-main-nav--overlay .navbar-nav { - width: 100%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-left: 0 !important; - margin-right: 0 !important; -} - -.navbar-collapse.u-main-nav--overlay .dropdown-menu { - position: static; - width: 100%; -} - -.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper { - margin-left: 0; - margin-right: 0; - padding: 2.14286rem 0.71429rem; - width: 100%; - height: 100%; -} - -.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper .navbar-nav { - padding: 0.71429rem; -} - -/*------------------------------------ - Navigation Behavior (Push) -------------------------------------*/ -body.u-main-nav--push-left, body.u-main-nav--push-right { - width: 100%; -} - -body.u-main-nav--push-left .u-main-nav__push, body.u-main-nav--push-right .u-main-nav__push { - overflow: hidden; -} - -body.u-main-nav--push-right .u-main-nav--push { - right: -21.42857rem; -} - -body.u-main-nav--push-right .u-main-nav__overlay { - right: 100%; -} - -body.u-main-nav--push-right.u-main-nav--overlay-opened { - margin-right: 21.42857rem; -} - -body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav--push { - right: 0; -} - -body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav__overlay { - opacity: 1; - visibility: visible; -} - -body.u-main-nav--push-left .u-main-nav--push { - left: -21.42857rem; -} - -body.u-main-nav--push-left .u-main-nav__overlay { - left: 100%; -} - -body.u-main-nav--push-left.u-main-nav--overlay-opened { - margin-left: 21.42857rem; -} - -body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav--push { - left: 0; -} - -body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav__overlay { - opacity: 1; - visibility: visible; -} - -.navbar-collapse.u-main-nav--push { - position: fixed; - top: 0; - height: 100%; - z-index: 5; - margin: 0 !important; - width: 21.42857rem; - max-width: 85%; - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.navbar-collapse.u-main-nav--push .navbar-nav { - width: 100%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-left: 0 !important; - margin-right: 0 !important; -} - -.navbar-collapse.u-main-nav--push .dropdown-menu { - position: static; - width: 100%; -} - -.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper { - margin-left: 0; - margin-right: 0; - padding: 2.14286rem 0.71429rem; - width: 100%; - height: 100%; -} - -.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper .navbar-nav { - padding: 0.71429rem; -} - -/*------------------------------------ - Navigation Behavior (Smart) -------------------------------------*/ -.u-smart-nav { - position: fixed; - z-index: 2; - opacity: 0; - visibility: hidden; - -webkit-transform: scale3d(0.2, 0.2, 0.2); - transform: scale3d(0.2, 0.2, 0.2); -} - -.u-smart-nav .navbar { - position: absolute; - width: 21.42857rem; - opacity: 0; - visibility: hidden; -} - -.u-smart-nav .navbar .dropdown { - z-index: 1; -} - -.u-smart-nav .navbar .dropdown-menu { - position: relative; - width: 100%; -} - -.u-smart-nav .navbar li { - -webkit-transform: translate3d(30px, 0, 0); - transform: translate3d(30px, 0, 0); - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-smart-nav .navbar li:nth-child(1) { - -webkit-transition-delay: 60ms; - -o-transition-delay: 60ms; - transition-delay: 60ms; -} - -.u-smart-nav .navbar li:nth-child(2) { - -webkit-transition-delay: 90ms; - -o-transition-delay: 90ms; - transition-delay: 90ms; -} - -.u-smart-nav .navbar li:nth-child(3) { - -webkit-transition-delay: 120ms; - -o-transition-delay: 120ms; - transition-delay: 120ms; -} - -.u-smart-nav .navbar li:nth-child(4) { - -webkit-transition-delay: 150ms; - -o-transition-delay: 150ms; - transition-delay: 150ms; -} - -.u-smart-nav .navbar li:nth-child(5) { - -webkit-transition-delay: 180ms; - -o-transition-delay: 180ms; - transition-delay: 180ms; -} - -.u-smart-nav .navbar li:nth-child(6) { - -webkit-transition-delay: 210ms; - -o-transition-delay: 210ms; - transition-delay: 210ms; -} - -.u-smart-nav .navbar li:nth-child(7) { - -webkit-transition-delay: 240ms; - -o-transition-delay: 240ms; - transition-delay: 240ms; -} - -.u-smart-nav .navbar li:nth-child(8) { - -webkit-transition-delay: 270ms; - -o-transition-delay: 270ms; - transition-delay: 270ms; -} - -.u-smart-nav .navbar li:nth-child(9) { - -webkit-transition-delay: 300ms; - -o-transition-delay: 300ms; - transition-delay: 300ms; -} - -.u-smart-nav .navbar li:nth-child(10) { - -webkit-transition-delay: 330ms; - -o-transition-delay: 330ms; - transition-delay: 330ms; -} - -.u-smart-nav .navbar li:nth-child(11) { - -webkit-transition-delay: 360ms; - -o-transition-delay: 360ms; - transition-delay: 360ms; -} - -.u-smart-nav .navbar li:nth-child(12) { - -webkit-transition-delay: 390ms; - -o-transition-delay: 390ms; - transition-delay: 390ms; -} - -.u-smart-nav .navbar li:nth-child(13) { - -webkit-transition-delay: 420ms; - -o-transition-delay: 420ms; - transition-delay: 420ms; -} - -.u-smart-nav .navbar li:nth-child(14) { - -webkit-transition-delay: 450ms; - -o-transition-delay: 450ms; - transition-delay: 450ms; -} - -.u-smart-nav .navbar li:nth-child(15) { - -webkit-transition-delay: 480ms; - -o-transition-delay: 480ms; - transition-delay: 480ms; -} - -.u-smart-nav .navbar li:nth-child(16) { - -webkit-transition-delay: 510ms; - -o-transition-delay: 510ms; - transition-delay: 510ms; -} - -.u-smart-nav .navbar li:nth-child(17) { - -webkit-transition-delay: 540ms; - -o-transition-delay: 540ms; - transition-delay: 540ms; -} - -.u-smart-nav .navbar li:nth-child(18) { - -webkit-transition-delay: 570ms; - -o-transition-delay: 570ms; - transition-delay: 570ms; -} - -.u-smart-nav .navbar li:nth-child(19) { - -webkit-transition-delay: 600ms; - -o-transition-delay: 600ms; - transition-delay: 600ms; -} - -.u-smart-nav__toggler { - position: relative; - z-index: 1; -} - -.u-smart-nav--opened .navbar { - opacity: 1; - visibility: visible; - -webkit-transform: scale3d(1, 1, 1) !important; - transform: scale3d(1, 1, 1) !important; -} - -.u-smart-nav--opened .navbar li { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.u-smart-nav--shown { - opacity: 1; - visibility: visible; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); -} - -.u-smart-nav--bottom-right { - right: 0.71429rem; - bottom: 0.71429rem; -} - -.u-smart-nav--bottom-right .navbar { - bottom: 0; - right: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1); - transform: scale3d(0.1, 0.1, 0.1); - -webkit-transform-origin: 100% 100%; - -ms-transform-origin: 100% 100%; - transform-origin: 100% 100%; - padding-right: 5.71429rem; -} - -.u-smart-nav--bottom-left { - left: 0.71429rem; - bottom: 0.71429rem; -} - -.u-smart-nav--bottom-left .navbar { - text-align: right; - bottom: 0; - left: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1); - transform: scale3d(0.1, 0.1, 0.1); - -webkit-transform-origin: 0% 100%; - -ms-transform-origin: 0% 100%; - transform-origin: 0% 100%; - padding-left: 5.71429rem; -} - -.u-smart-nav--top-left { - left: 0.71429rem; - top: 0.71429rem; -} - -.u-smart-nav--top-left .navbar { - text-align: right; - top: 0; - left: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1); - transform: scale3d(0.1, 0.1, 0.1); - -webkit-transform-origin: 0% 0%; - -ms-transform-origin: 0% 0%; - transform-origin: 0% 0%; - padding-left: 5.71429rem; -} - -.u-smart-nav--top-right { - right: 0.71429rem; - top: 0.71429rem; -} - -.u-smart-nav--top-right .navbar { - top: 0; - right: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1); - transform: scale3d(0.1, 0.1, 0.1); - -webkit-transform-origin: 100% 0%; - -ms-transform-origin: 100% 0%; - transform-origin: 100% 0%; - padding-right: 5.71429rem; -} - -/* Secondary navigation styles */ -/*------------------------------------ - Secondary Navigation -------------------------------------*/ -.u-secondary-navigation { - z-index: 3; -} - -.u-secondary-navigation .active a { - color: #e74c3c; -} - -/* Sidebar shortcode navigation styles */ -/*------------------------------------ - Sidebar Navigation -------------------------------------*/ -@media all and (min-width: 992px) { - .u-sidebar-navigation { - position: fixed; - top: 0; - left: -21.42857rem; - width: 300px; - } -} - -.u-sidebar-navigation-inner { - background-color: #1c2434; - color: #fff; - padding: 20px 0; -} - -.u-sidebar-navigation__search-input { - border-radius: 3px; - border: none; -} - -.u-sidebar-navigation .nav-link { - color: #fff; - padding: 0.5rem 1.42857rem; -} - -.u-sidebar-navigation .nav-link:hover { - background-color: rgba(255, 255, 255, 0.15); -} - -.u-sidebar-navigation .nav-link.active { - background-color: rgba(255, 255, 255, 0.1); -} - -.u-sidebar-navigation__toggler { - position: fixed; - top: 120px; - left: 0; - width: 53px; - height: 53px; - background-color: #1c2434; - color: #fff; - border-radius: 0 3px 3px 0; - font-size: 22px; - z-index: 2; -} - -.u-sidebar-navigation__toggler:hover, .u-sidebar-navigation__toggler:focus { - color: #fff; -} - -.u-sidebar-navigation__closer { - position: absolute; - top: 22px; - right: 15px; - width: 25px; - height: 25px; - padding: 0; - color: #fff; - background-color: transparent; - z-index: 3; -} - -.u-sidebar-navigation__closer:hover, .u-sidebar-navigation__closer:focus { - color: #fff; -} - -@media all and (max-width: 991px) { - .u-sidebar-navigation-list { - display: block; - -webkit-columns: 4; - columns: 4; - } - .u-sidebar-navigation-list .dropdown-toggle { - display: none; - } - .u-sidebar-navigation-list .dropdown-menu { - display: block; - max-height: 100%; - margin: 0; - float: none; - opacity: 1; - } -} - -@media all and (max-width: 767px) { - .u-sidebar-navigation-list { - -webkit-columns: 3; - columns: 3; - } -} - -@media all and (max-width: 575px) { - .u-sidebar-navigation-list { - -webkit-columns: 1; - columns: 1; - } -} - -.u-has-sidebar-navigation .u-header__overlay { - display: none; -} - -/* Override vendor stylesheets */ -.hamburger-inner::before, -.hamburger-inner::after { - background-color: inherit; -} - -[class*="u-main-nav-"] .dropdown-toggle::after { - width: auto; - height: auto; - vertical-align: inherit; - border: none; -} - -/* Overlay */ -.u-main-nav__overlay { - position: absolute; - top: 0; - height: 100%; - width: 2000%; - opacity: 0; - visibility: hidden; -} - -/* Override necessary navigation styles in side-header pages */ -body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] .dropdown-toggle::after, -body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] > .hs-has-sub-menu > a::after, -body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] > .hs-has-mega-menu > a::after { - content: "\e900"; -} - -body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] .dropdown-toggle::after, -body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] > .hs-has-sub-menu > a::after, -body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] > .hs-has-mega-menu > a::after { - content: "\e901"; -} - -/* Scroll on mobile devices */ -@media (max-width: 991px) { - .u-nav-mobile-scroll { - overflow-y: auto; - } -} - -/*------------------------------------ - Basket Bar -------------------------------------*/ -/* Container */ -.u-basket { - position: relative; - z-index: 1; -} - -/* Bar */ -.u-basket__bar { - position: absolute; - right: 0; - top: 100%; - text-align: left; - width: 21.42857rem; - background-color: #fff; - -webkit-box-shadow: 0 5px 5px 0px rgba(90, 90, 90, 0.075); - box-shadow: 0 5px 5px 0px rgba(90, 90, 90, 0.075); -} - -/* Product */ -.u-basket__product { - position: relative; - z-index: 1; - overflow: hidden; - padding: 0.71429rem; - border-bottom: solid 1px #eee; -} - -/* Product Image */ -.u-basket__product-img { - width: 7.14286rem; -} - -.u-basket__product-img img { - width: 100%; -} - -/* Product Remove Button */ -.u-basket__product-remove { - position: absolute; - top: 1.42857rem; - right: 1.42857rem; - padding: 0; - margin: 0; - font-size: 1.5rem; - font-family: inherit; - font-weight: 700; - color: #000; - border: none; - background-color: transparent; - cursor: pointer; - opacity: .2; -} - -.u-basket__product-remove:hover, .u-basket__product-remove:focus { - opacity: 1; -} - -/*------------------------------------ - Dropdowns -------------------------------------*/ -[class*="u-dropdown--"] [class*="u-dropdown--"] { - left: 100%; - top: 0; -} - -[class*="u-dropdown--"] [class*="u-dropdown--"].u-dropdown--reverse-x { - left: auto; - right: 100%; -} - -.u-dropdown--simple.u-dropdown--reverse-y, -.u-dropdown--jquery-slide.u-dropdown--reverse-y, -.u-dropdown--css-animation.u-dropdown--reverse-y { - top: auto; - bottom: 100%; - margin-top: 0 !important; - margin-bottom: 1.42857rem; -} - -/* Simple Dropdown */ -.u-dropdown--simple.u-dropdown--hidden { - display: none; -} - -/* CSS Animation Dropdown */ -.u-dropdown--css-animation { - -webkit-animation-duration: 1s; - animation-duration: 1s; -} - -.u-dropdown--css-animation.u-dropdown--hidden { - opacity: 0; - visibility: hidden; -} - -.u-dropdown--hidden:not(.hs-sub-menu-opened) * { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -.u-dropdown--hidden:not(.hs-sub-menu-opened) *::before, .u-dropdown--hidden:not(.hs-sub-menu-opened) *::after { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -/*------------------------------------ - Compressed Form -------------------------------------*/ -.u-compressed-form { - display: inline-block; - overflow: hidden; - width: 20rem; - -webkit-transition: all .35s ease; - -o-transition: all .35s ease; - transition: all .35s ease; -} - -.u-compressed-form--hidden { - width: 5.71429rem; -} - -.u-compressed-form .input-group { - display: block; - float: right; -} - -/*------------------------------------ - Dropcaps -------------------------------------*/ -.u-dropcap, .u-dropcap-underline, .u-dropcap-bg, .u-dropcap-bordered { - float: left; - font-size: 3.57rem; - line-height: 1; -} - -.u-dropcap-underline { - padding-bottom: 0.35714rem; - border-bottom: 2px solid; -} - -.u-dropcap-bg { - width: 5rem; - height: 5rem; - margin-top: 0.35714rem; - text-align: center; - line-height: 4.78rem; -} - -.u-dropcap-bordered { - width: 5rem; - height: 5rem; - margin-top: 0.35714rem; - text-align: center; - line-height: 4.35rem; - border: 3px solid; -} - -/*------------------------------------ - BG Angles -------------------------------------*/ -.u-angle-v1--top-left--bg-light, -.u-angle-v1--top-right--bg-light, -.u-angle-v1--bottom-left--bg-light, -.u-angle-v1--bottom-right--bg-light, -.u-angle-v1--top-left--bg-dark, -.u-angle-v1--top-right--bg-dark, -.u-angle-v1--bottom-left--bg-dark, -.u-angle-v1--bottom-right--bg-dark, -.u-angle-v2--top-left--bg-light, -.u-angle-v2--top-right--bg-light, -.u-angle-v2--bottom-left--bg-light, -.u-angle-v2--bottom-right--bg-light, -.u-angle-v2--top-left--bg-dark, -.u-angle-v2--top-right--bg-dark, -.u-angle-v2--bottom-left--bg-dark, -.u-angle-v2--bottom-right--bg-dark { - position: relative; - overflow: hidden; -} - -/* V-1 -------------------------------------*/ -/* Light */ -.u-angle-v1--top-left--bg-light::after { - content: ""; - position: absolute; - top: -10px; - left: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); -} - -.u-angle-v1--top-right--bg-light::after { - content: ""; - position: absolute; - top: -10px; - right: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); -} - -.u-angle-v1--bottom-left--bg-light::after { - content: ""; - position: absolute; - bottom: -10px; - left: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); -} - -.u-angle-v1--bottom-right--bg-light::after { - content: ""; - position: absolute; - bottom: -10px; - right: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); -} - -/* Dark */ -.u-angle-v1--top-left--bg-dark::after { - content: ""; - position: absolute; - top: -10px; - left: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); -} - -.u-angle-v1--top-right--bg-dark::after { - content: ""; - position: absolute; - top: -10px; - right: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); -} - -.u-angle-v1--bottom-left--bg-dark::after { - content: ""; - position: absolute; - bottom: -10px; - left: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); -} - -.u-angle-v1--bottom-right--bg-dark::after { - content: ""; - position: absolute; - bottom: -10px; - right: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); -} - -/* V-2 -------------------------------------*/ -/* Light */ -.u-angle-v2--top-left--bg-light::after { - content: ""; - position: absolute; - top: -10px; - left: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); - border-radius: 50%; -} - -.u-angle-v2--top-right--bg-light::after { - content: ""; - position: absolute; - top: -10px; - right: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); - border-radius: 50%; -} - -.u-angle-v2--bottom-left--bg-light::after { - content: ""; - position: absolute; - bottom: -10px; - left: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); - border-radius: 50%; -} - -.u-angle-v2--bottom-right--bg-light::after { - content: ""; - position: absolute; - bottom: -10px; - right: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(255, 255, 255, 0.1); - border-radius: 50%; -} - -/* Dark */ -.u-angle-v2--top-left--bg-dark::after { - content: ""; - position: absolute; - top: -10px; - left: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); - border-radius: 50%; -} - -.u-angle-v2--top-right--bg-dark::after { - content: ""; - position: absolute; - top: -10px; - right: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); - border-radius: 50%; -} - -.u-angle-v2--bottom-left--bg-dark::after { - content: ""; - position: absolute; - bottom: -10px; - left: -100px; - -webkit-transform: rotate(55deg); - -ms-transform: rotate(55deg); - transform: rotate(55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); - border-radius: 50%; -} - -.u-angle-v2--bottom-right--bg-dark::after { - content: ""; - position: absolute; - bottom: -10px; - right: -100px; - -webkit-transform: rotate(-55deg); - -ms-transform: rotate(-55deg); - transform: rotate(-55deg); - width: 250px; - height: 120px; - background-color: rgba(0, 0, 0, 0.1); - border-radius: 50%; -} - -/*------------------------------------ - Block Hovers -------------------------------------*/ -[class*="u-block-hover"] { - position: relative; - max-width: 100%; - margin: 0; - overflow: hidden; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transform: translateZ(0); - transform: translateZ(0); -} - -[class*="u-block-hover"], [class*="u-block-hover"]::before, [class*="u-block-hover"]::after { - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-block-hover--uncroped { - overflow: visible; -} - -.u-block-hover--uncroped:hover { - z-index: 2; -} - -.u-block-hover__img { - max-width: 100%; - vertical-align: top; -} - -.u-block-hover__block { - min-height: 100%; -} - -[class*="u-block-hover__additional"] { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; -} - -[class*="u-block-hover__additional--v1"] { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - margin: 15px; - opacity: 0; -} - -.u-block-hover:hover .u-block-hover__additional--v1 { - opacity: 1; -} - -.u-block-hover--shadow:hover, -.u-block-hover--shadow:hover .u-block-hover__additional-shadow { - -webkit-box-shadow: 0 0 10px #777; - box-shadow: 0 0 10px #777; -} - -.u-block-hover--shadow-v2:hover, -.u-block-hover--shadow-v2:hover .u-block-hover__additional-shadow { - -webkit-box-shadow: 0 0 15px #ddd; - box-shadow: 0 0 15px #ddd; -} - -.u-block-hover--shadow-v3:hover, -.u-block-hover--shadow-v3:hover .u-block-hover__additional-shadow { - -webkit-box-shadow: 0 0 3px #ddd; - box-shadow: 0 0 3px #ddd; -} - -.u-block-hover--scale:hover, -.u-block-hover--scale-img:hover .u-block-hover__img { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); -} - -.u-block-hover__additional-scale { - z-index: -1; - max-width: initial; -} - -.u-block-hover:hover .u-block-hover__additional-scale { - top: -20px; - right: -20px; - bottom: -20px; - left: -20px; -} - -.u-block-hover--scale-down:hover, -.u-block-hover--scale-down-img:hover .u-block-hover__img { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); -} - -.u-block-hover__additional-scale-down { - z-index: -1; - max-width: initial; -} - -.u-block-hover:hover .u-block-hover__additional-scale-down { - top: 20px; - right: 20px; - bottom: 20px; - left: 20px; -} - -.u-block-hover__main--zoom-v1, -.u-block-hover__main--zoom-v2 { - -webkit-transform: scale(1.01); -} - -.u-block-hover:hover .u-block-hover__main--zoom-v1 { - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); -} - -.u-block-hover:hover .u-block-hover__main--zoom-v2 { - -webkit-transform: scale(1.04); - -ms-transform: scale(1.04); - transform: scale(1.04); -} - -.u-block-hover [class*="icon-"] { - padding: 1px; -} - -.u-block-hover__main--grayscale { - filter: url("data:image/svg+xml;utf8,#grayscale"); - /* Firefox 10+, Firefox on Android */ - filter: gray; - -webkit-filter: grayscale(100%); -} - -.u-block-hover:hover .u-block-hover__main--grayscale { - filter: url("data:image/svg+xml;utf8,#grayscale"); - -webkit-filter: grayscale(0%); -} - -.u-block-hover__main--white { - -webkit-filter: brightness(0) invert(1); - filter: brightness(0) invert(1); -} - -.u-block-hover__additional--blur { - opacity: 0; -} - -.u-block-hover:hover .u-block-hover__additional--blur { - opacity: 1; - -webkit-transition-delay: .11s; - -o-transition-delay: .11s; - transition-delay: .11s; -} - -.u-block-hover:hover .u-block-hover__main--blur { - -webkit-filter: blur(30px); - filter: blur(30px); - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); - opacity: 0; -} - -[class*="u-block-hover-image-overlay"]::after { - content: ""; - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - opacity: 0; - -webkit-transition: all .35s ease; - -o-transition: all .35s ease; - transition: all .35s ease; -} - -.u-block-hover:hover .u-block-hover-image-overlay::after { - opacity: 1; -} - -.u-block-hover__additional--fade { - opacity: 0; -} - -.u-block-hover:hover .u-block-hover__additional--fade { - opacity: 1; - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); -} - -.u-block-hover__additional--fade-up { - -webkit-transform: translate(0, 15%); - -ms-transform: translate(0, 15%); - transform: translate(0, 15%); -} - -.u-block-hover__additional--fade-down { - -webkit-transform: translate(0, -15%); - -ms-transform: translate(0, -15%); - transform: translate(0, -15%); -} - -.u-block-hover__additional--fade-left { - -webkit-transform: translate(-15%, 0); - -ms-transform: translate(-15%, 0); - transform: translate(-15%, 0); -} - -.u-block-hover__additional--fade-right { - -webkit-transform: translate(15%, 0); - -ms-transform: translate(15%, 0); - transform: translate(15%, 0); -} - -.u-block-hover:hover [class*="u-block-hover__additional--push"] { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); -} - -.u-block-hover:hover .u-block-hover__main--push-up { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -.u-block-hover__additional--push-up { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.u-block-hover:hover .u-block-hover__main--push-down { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.u-block-hover__additional--push-down { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -.u-block-hover:hover .u-block-hover__main--push-left { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-block-hover__additional--push-left { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-block-hover:hover .u-block-hover__main--push-right { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-block-hover__additional--push-right { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-block-hover:hover [class*="u-block-hover__additional--slide"], -.u-block-hover:hover [class*="u-block-hover__additional--partially-slide"] { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); -} - -.u-block-hover__additional--slide-up { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.u-block-hover__additional--slide-down { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -.u-block-hover__additional--slide-left { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.u-block-hover__additional--slide-right { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.u-block-hover__additional--slide-bottom-right { - -webkit-transform: translate(-100%, -100%); - -ms-transform: translate(-100%, -100%); - transform: translate(-100%, -100%); -} - -.u-block-hover__additional--slide-bottom-left { - -webkit-transform: translate(100%, -100%); - -ms-transform: translate(100%, -100%); - transform: translate(100%, -100%); -} - -.u-block-hover__additional--slide-top-right { - -webkit-transform: translate(-100%, 100%); - -ms-transform: translate(-100%, 100%); - transform: translate(-100%, 100%); -} - -.u-block-hover__additional--slide-top-left { - -webkit-transform: translate(100%, 100%); - -ms-transform: translate(100%, 100%); - transform: translate(100%, 100%); -} - -.u-block-hover__additional--partially-slide-up { - top: auto; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - overflow: visible; -} - -.u-block-hover__additional--partially-slide-up .u-block-hover__visible { - position: absolute; - bottom: 100%; - margin-bottom: -1px; - left: 0; - right: 0; - padding-left: inherit; - padding-right: inherit; - background: inherit; -} - -.u-block-hover__additional--partially-slide-down { - bottom: auto; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - overflow: visible; -} - -.u-block-hover__additional--partially-slide-down .u-block-hover__visible { - position: absolute; - top: 100%; - margin-top: -1px; - left: 0; - right: 0; - padding-left: inherit; - padding-right: inherit; - background: inherit; -} - -.u-block-hover--cot { - -webkit-perspective: 50em; - perspective: 50em; -} - -[class*="u-block-hover__additional--cot"] { - opacity: 0; - z-index: 1; -} - -.u-block-hover--cot:hover [class*="u-block-hover__main--cot"] { - opacity: 0; -} - -.u-block-hover--cot:hover [class*="u-block-hover__additional--cot"] { - opacity: 1; - -webkit-transition-delay: 0.21s; - -o-transition-delay: 0.21s; - transition-delay: 0.21s; -} - -.u-block-hover__main--cot-up { - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -.u-block-hover__additional--cot-up { - -webkit-transform: rotateX(90deg); - transform: rotateX(90deg); - -webkit-transform-origin: 50% 100%; - -ms-transform-origin: 50% 100%; - transform-origin: 50% 100%; -} - -.u-block-hover--cot:hover .u-block-hover__main--cot-up { - -webkit-transform: rotateX(-90deg); - transform: rotateX(-90deg); -} - -.u-block-hover--cot:hover .u-block-hover__additional--cot-up { - -webkit-transform: rotateX(0deg); - transform: rotateX(0deg); -} - -.u-block-hover__main--cot-down { - -webkit-transform-origin: 50% 100%; - -ms-transform-origin: 50% 100%; - transform-origin: 50% 100%; -} - -.u-block-hover__additional--cot-down { - -webkit-transform: rotateX(-90deg); - transform: rotateX(-90deg); - -webkit-transform-origin: 50% -50%; - -ms-transform-origin: 50% -50%; - transform-origin: 50% -50%; -} - -.u-block-hover--cot:hover .u-block-hover__main--cot-down { - -webkit-transform: rotateX(90deg); - transform: rotateX(90deg); - opacity: 0; -} - -.u-block-hover--cot:hover .u-block-hover__additional--cot-down { - -webkit-transform: rotateX(0deg); - transform: rotateX(0deg); -} - -.u-block-hover__main--cot-left { - -webkit-transform-origin: 0% 50%; - -ms-transform-origin: 0% 50%; - transform-origin: 0% 50%; -} - -.u-block-hover__additional--cot-left { - -webkit-transform: rotateY(-90deg); - transform: rotateY(-90deg); - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} - -.u-block-hover--cot:hover .u-block-hover__main--cot-left { - -webkit-transform: rotateY(90deg); - transform: rotateY(90deg); -} - -.u-block-hover--cot:hover .u-block-hover__additional--cot-left { - -webkit-transform: rotateY(0deg); - transform: rotateY(0deg); -} - -.u-block-hover__main--cot-right { - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} - -.u-block-hover__additional--cot-right { - -webkit-transform: rotateY(90deg); - transform: rotateY(90deg); - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; -} - -.u-block-hover--cot:hover .u-block-hover__main--cot-right { - -webkit-transform: rotateY(-90deg); - transform: rotateY(-90deg); -} - -.u-block-hover--cot:hover .u-block-hover__additional--cot-right { - -webkit-transform: rotateY(0deg); - transform: rotateY(0deg); -} - -.u-block-hover--flip { - -webkit-perspective: 50em; - perspective: 50em; -} - -[class*="u-block-hover__main--flip"] { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -[class*="u-block-hover__additional--flip"] { - opacity: 0; -} - -.u-block-hover--flip:hover [class*="u-block-hover__main--flip"] { - opacity: 0; -} - -.u-block-hover--flip:hover [class*="u-block-hover__additional--flip"] { - opacity: 1; - -webkit-transition-delay: 0.13999999999999999s; - -o-transition-delay: 0.13999999999999999s; - transition-delay: 0.13999999999999999s; -} - -.u-block-hover__additional--flip-horiz { - -webkit-transform: rotateX(90deg); - transform: rotateX(90deg); - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; -} - -.u-block-hover--flip:hover .u-block-hover__main--flip-horiz { - -webkit-transform: rotateX(-180deg); - transform: rotateX(-180deg); -} - -.u-block-hover--flip:hover .u-block-hover__additional--flip-horiz { - -webkit-transform: rotateX(0deg); - transform: rotateX(0deg); -} - -.u-block-hover__additional--flip-vert { - -webkit-transform: rotateY(90deg); - transform: rotateY(90deg); - -webkit-transform-origin: 50% 0%; - -ms-transform-origin: 50% 0%; - transform-origin: 50% 0%; -} - -.u-block-hover--flip:hover .u-block-hover__main--flip-vert { - -webkit-transform: rotateY(-180deg); - transform: rotateY(-180deg); -} - -.u-block-hover--flip:hover .u-block-hover__additional--flip-vert { - -webkit-transform: rotateY(0deg); - transform: rotateY(0deg); -} - -.u-block-hover__additional--flip-diag-1 { - -webkit-transform: rotate3d(1, 1, 0, 100deg); - transform: rotate3d(1, 1, 0, 100deg); -} - -.u-block-hover--flip:hover .u-block-hover__main--flip-diag-1 { - -webkit-transform: rotate3d(-1, -1, 0, 100deg); - transform: rotate3d(-1, -1, 0, 100deg); -} - -.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-1 { - -webkit-transform: rotate3d(0, 0, 0, 0deg); - transform: rotate3d(0, 0, 0, 0deg); -} - -.u-block-hover__additional--flip-diag-2 { - -webkit-transform: rotate3d(1, -1, 0, 100deg); - transform: rotate3d(1, -1, 0, 100deg); -} - -.u-block-hover--flip:hover .u-block-hover__main--flip-diag-2 { - -webkit-transform: rotate3d(-1, 1, 0, 100deg); - transform: rotate3d(-1, 1, 0, 100deg); -} - -.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-2 { - -webkit-transform: rotate3d(0, 0, 0, 0deg); - transform: rotate3d(0, 0, 0, 0deg); -} - -.u-block-hover--fold { - -webkit-perspective: 50em; - perspective: 50em; -} - -[class*="u-block-hover__main--fold"] { - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -[class*="u-block-hover__additional--fold"] { - z-index: 1; - opacity: 0; -} - -.u-block-hover--fold:hover [class*="u-block-hover__main--fold"] { - opacity: 0; - -webkit-transition-delay: 0; - -o-transition-delay: 0; - transition-delay: 0; -} - -.u-block-hover--fold:hover [class*="u-block-hover__additional--fold"] { - -webkit-transform: rotateX(0deg) translate3d(0, 0, 0) scale(1); - transform: rotateX(0deg) translate3d(0, 0, 0) scale(1); - opacity: 1; - -webkit-transition-delay: .21s; - -o-transition-delay: .21s; - transition-delay: .21s; -} - -.u-block-hover__main--fold-up { - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -.u-block-hover__additional--fold-up { - -webkit-transform: rotateX(-90deg) translate3d(0, -50%, 0) scale(0.6); - transform: rotateX(-90deg) translate3d(0, -50%, 0) scale(0.6); - -webkit-transform-origin: 50% 100%; - -ms-transform-origin: 50% 100%; - transform-origin: 50% 100%; -} - -.u-block-hover--fold:hover .u-block-hover__main--fold-up { - -webkit-transform: rotateX(90deg) scale(0.6) translateY(50%); - transform: rotateX(90deg) scale(0.6) translateY(50%); -} - -.u-block-hover__main--fold-down { - -webkit-transform-origin: 50% 100%; - -ms-transform-origin: 50% 100%; - transform-origin: 50% 100%; -} - -.u-block-hover__additional--fold-down { - -webkit-transform: rotateX(90deg) translate3d(0, 50%, 0) scale(0.6); - transform: rotateX(90deg) translate3d(0, 50%, 0) scale(0.6); - -webkit-transform-origin: 50% 0; - -ms-transform-origin: 50% 0; - transform-origin: 50% 0; -} - -.u-block-hover--fold:hover .u-block-hover__main--fold-down { - -webkit-transform: rotateX(-90deg) scale(0.6) translateY(-50%); - transform: rotateX(-90deg) scale(0.6) translateY(-50%); -} - -.u-block-hover__main--fold-left { - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; -} - -.u-block-hover__additional--fold-left { - -webkit-transform: rotateY(90deg) translate3d(-50%, 0, 0) scale(0.6); - transform: rotateY(90deg) translate3d(-50%, 0, 0) scale(0.6); - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} - -.u-block-hover--fold:hover .u-block-hover__main--fold-left { - -webkit-transform: rotateY(-90deg) scale(0.6) translateX(50%); - transform: rotateY(-90deg) scale(0.6) translateX(50%); -} - -.u-block-hover__main--fold-right { - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} - -.u-block-hover__additional--fold-right { - -webkit-transform: rotateY(-90deg) translate3d(50%, 0, 0) scale(0.6); - transform: rotateY(-90deg) translate3d(50%, 0, 0) scale(0.6); - -webkit-transform-origin: 0 50%; - -ms-transform-origin: 0 50%; - transform-origin: 0 50%; -} - -.u-block-hover--fold:hover .u-block-hover__main--fold-right { - -webkit-transform: rotateY(90deg) scale(0.6) translateX(-50%); - transform: rotateY(90deg) scale(0.6) translateX(-50%); -} - -.u-block-hover__additional--zoom-in { - opacity: 0; - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); -} - -.u-block-hover:hover .u-block-hover__additional--zoom-in { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.u-block-hover__additional--zoom-out { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; - opacity: 0; -} - -.u-block-hover:hover .u-block-hover__main--zoom-out { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); - opacity: 0; -} - -.u-block-hover:hover .u-block-hover__additional--zoom-out { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -[class*="u-block-hover--shutter-out"]::after { - content: ""; - position: absolute; - -webkit-transition-delay: .105s; - -o-transition-delay: .105s; - transition-delay: .105s; - z-index: 1; -} - -.u-block-hover__additional--shutter-out { - opacity: 0; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; - z-index: 2; -} - -[class*="u-block-hover--shutter-out"]:hover::after { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -[class*="u-block-hover--shutter-out"]:hover .u-block-hover__additional--shutter-out { - opacity: 1; - -webkit-transition-delay: .105s; - -o-transition-delay: .105s; - transition-delay: .105s; -} - -.u-block-hover--shutter-out-horiz::after { - left: 50%; - right: 50%; - top: 0; - bottom: 0; -} - -.u-block-hover--shutter-out-horiz:hover::after { - left: 0; - right: 0; -} - -.u-block-hover--shutter-out-vert::after { - top: 50%; - bottom: 50%; - left: 0; - right: 0; -} - -.u-block-hover--shutter-out-vert:hover::after { - top: 0; - bottom: 0; -} - -.u-block-hover--shutter-out-diag-1::after { - top: 50%; - bottom: 50%; - left: -35%; - right: -35%; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); -} - -.u-block-hover--shutter-out-diag-1:hover::after { - top: -35%; - bottom: -35%; -} - -.u-block-hover--shutter-out-diag-2::after { - top: 50%; - bottom: 50%; - left: -35%; - right: -35%; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); -} - -.u-block-hover--shutter-out-diag-2:hover::after { - top: -35%; - bottom: -35%; -} - -[class*="u-block-hover--shutter-in"]::after, -[class*="u-block-hover--shutter-in"]::before { - content: ""; - position: absolute; - z-index: 1; -} - -[class*="u-block-hover--shutter-in"]::after { - top: 0; - left: 0; -} - -[class*="u-block-hover--shutter-in"]::before { - right: 0; - bottom: 0; -} - -.u-block-hover__additional--shutter-in { - opacity: 0; - z-index: 2; -} - -[class*="u-block-hover--shutter-in"]:hover .u-block-hover__additional--shutter-in { - opacity: 1; - -webkit-transition-delay: .21s; - -o-transition-delay: .21s; - transition-delay: .21s; -} - -.u-block-hover--shutter-in-horiz::after, -.u-block-hover--shutter-in-horiz::before { - width: 0; - height: 100%; -} - -.u-block-hover--shutter-in-horiz:hover::after, -.u-block-hover--shutter-in-horiz:hover::before { - width: 100%; -} - -.u-block-hover--shutter-in-vert::after, -.u-block-hover--shutter-in-vert::before { - height: 0; - width: 100%; -} - -.u-block-hover--shutter-in-vert:hover::after, -.u-block-hover--shutter-in-vert:hover::before { - height: 100%; -} - -.u-block-hover--shutter-in-diag-1::after, -.u-block-hover--shutter-in-diag-1::before { - width: 200%; - height: 200%; - -webkit-transition: all .6s ease; - -o-transition: all .6s ease; - transition: all .6s ease; -} - -.u-block-hover--shutter-in-diag-1::after { - -webkit-transform: skew(-45deg) translateX(-150%); - -ms-transform: skew(-45deg) translateX(-150%); - transform: skew(-45deg) translateX(-150%); -} - -.u-block-hover--shutter-in-diag-1::before { - -webkit-transform: skew(-45deg) translateX(150%); - -ms-transform: skew(-45deg) translateX(150%); - transform: skew(-45deg) translateX(150%); -} - -.u-block-hover--shutter-in-diag-1:hover::after { - -webkit-transform: skew(-45deg) translateX(-50%); - -ms-transform: skew(-45deg) translateX(-50%); - transform: skew(-45deg) translateX(-50%); -} - -.u-block-hover--shutter-in-diag-1:hover::before { - -webkit-transform: skew(-45deg) translateX(50%); - -ms-transform: skew(-45deg) translateX(50%); - transform: skew(-45deg) translateX(50%); -} - -.u-block-hover--shutter-in-diag-2::after, -.u-block-hover--shutter-in-diag-2::before { - width: 200%; - height: 200%; - -webkit-transition: all .6s ease; - -o-transition: all .6s ease; - transition: all .6s ease; -} - -.u-block-hover--shutter-in-diag-2::after { - -webkit-transform: skew(45deg) translateX(-100%); - -ms-transform: skew(45deg) translateX(-100%); - transform: skew(45deg) translateX(-100%); -} - -.u-block-hover--shutter-in-diag-2::before { - -webkit-transform: skew(45deg) translateX(100%); - -ms-transform: skew(45deg) translateX(100%); - transform: skew(45deg) translateX(100%); -} - -.u-block-hover--shutter-in-diag-2:hover::after { - -webkit-transform: skew(45deg) translateX(0); - -ms-transform: skew(45deg) translateX(0); - transform: skew(45deg) translateX(0); -} - -.u-block-hover--shutter-in-diag-2:hover::before { - -webkit-transform: skew(45deg) translateX(0); - -ms-transform: skew(45deg) translateX(0); - transform: skew(45deg) translateX(0); -} - -[class*="u-block-hover--shutter-in-out"]::after, -[class*="u-block-hover--shutter-in-out"]::before { - content: ""; - position: absolute; - z-index: 1; -} - -[class*="u-block-hover--shutter-in-out"]::after { - top: 0; - left: 0; -} - -[class*="u-block-hover--shutter-in-out"]::before { - right: 0; - bottom: 0; -} - -.u-block-hover__additional--shutter-in-out { - opacity: 0; - z-index: 2; -} - -[class*="u-block-hover--shutter-in-out"]:hover .u-block-hover__additional--shutter-in-out { - opacity: 1; - -webkit-transition-delay: .21s; - -o-transition-delay: .21s; - transition-delay: .21s; -} - -.u-block-hover--shutter-in-out-horiz::after, -.u-block-hover--shutter-in-out-horiz::before { - width: 0; - height: 100%; -} - -.u-block-hover--shutter-in-out-horiz:hover::after, -.u-block-hover--shutter-in-out-horiz:hover::before { - width: 100%; - opacity: .75; -} - -.u-block-hover--shutter-in-out-vert::after, -.u-block-hover--shutter-in-out-vert::before { - height: 0; - width: 100%; -} - -.u-block-hover--shutter-in-out-vert:hover::after, -.u-block-hover--shutter-in-out-vert:hover::before { - height: 100%; - opacity: .75; -} - -.u-block-hover--shutter-in-out-diag-1::after, -.u-block-hover--shutter-in-out-diag-1::before { - width: 200%; - height: 200%; - -webkit-transition: all .6s ease; - -o-transition: all .6s ease; - transition: all .6s ease; - opacity: .75; -} - -.u-block-hover--shutter-in-out-diag-1::after { - -webkit-transform: skew(-45deg) translateX(-150%); - -ms-transform: skew(-45deg) translateX(-150%); - transform: skew(-45deg) translateX(-150%); -} - -.u-block-hover--shutter-in-out-diag-1::before { - -webkit-transform: skew(-45deg) translateX(150%); - -ms-transform: skew(-45deg) translateX(150%); - transform: skew(-45deg) translateX(150%); -} - -.u-block-hover--shutter-in-out-diag-1:hover::after { - -webkit-transform: skew(-45deg) translateX(-50%); - -ms-transform: skew(-45deg) translateX(-50%); - transform: skew(-45deg) translateX(-50%); -} - -.u-block-hover--shutter-in-out-diag-1:hover::before { - -webkit-transform: skew(-45deg) translateX(50%); - -ms-transform: skew(-45deg) translateX(50%); - transform: skew(-45deg) translateX(50%); -} - -.u-block-hover--shutter-in-out-diag-2::after, -.u-block-hover--shutter-in-out-diag-2::before { - width: 200%; - height: 200%; - -webkit-transition: all .6s ease; - -o-transition: all .6s ease; - transition: all .6s ease; - opacity: .75; -} - -.u-block-hover--shutter-in-out-diag-2::after { - -webkit-transform: skew(45deg) translateX(-100%); - -ms-transform: skew(45deg) translateX(-100%); - transform: skew(45deg) translateX(-100%); -} - -.u-block-hover--shutter-in-out-diag-2::before { - -webkit-transform: skew(45deg) translateX(100%); - -ms-transform: skew(45deg) translateX(100%); - transform: skew(45deg) translateX(100%); -} - -.u-block-hover--shutter-in-out-diag-2:hover::after { - -webkit-transform: skew(45deg) translateX(0); - -ms-transform: skew(45deg) translateX(0); - transform: skew(45deg) translateX(0); -} - -.u-block-hover--shutter-in-out-diag-2:hover::before { - -webkit-transform: skew(45deg) translateX(0); - -ms-transform: skew(45deg) translateX(0); - transform: skew(45deg) translateX(0); -} - -.u-block-hover--strip-shutter::before, -.u-block-hover--strip-shutter::after, -.u-block-hover__additional--strip-shutter::before, -.u-block-hover__additional--strip-shutter::after { - content: ""; - position: absolute; - top: 0; - width: 25%; - height: 100%; - -webkit-transform: scaleY(0); - -ms-transform: scaleY(0); - transform: scaleY(0); - opacity: 0; -} - -.u-block-hover--strip-shutter::before, -.u-block-hover--strip-shutter::after { - z-index: 1; -} - -.u-block-hover--strip-shutter::before { - left: 0; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--strip-shutter::after { - left: 25%; - -webkit-transition-delay: .105s; - -o-transition-delay: .105s; - transition-delay: .105s; -} - -.u-block-hover__additional--strip-shutter { - z-index: 3; -} - -.u-block-hover__additional--strip-shutter::before, -.u-block-hover__additional--strip-shutter::after { - z-index: -1; -} - -.u-block-hover__additional--strip-shutter::before { - left: 50%; - -webkit-transition-delay: .21s; - -o-transition-delay: .21s; - transition-delay: .21s; -} - -.u-block-hover__additional--strip-shutter::after { - left: 75%; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -.u-block-hover--strip-shutter:hover::before, -.u-block-hover--strip-shutter:hover::after, -.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::before, -.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.u-block-hover__additional--strip-shutter__inner { - opacity: 0; -} - -.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter__inner { - opacity: 1; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -.u-block-hover--tile::before, -.u-block-hover--tile::after, -.u-block-hover__additional--tile::before, -.u-block-hover__additional--tile::after { - content: ""; - position: absolute; - width: 50%; - height: 50%; - -webkit-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); - opacity: 0; -} - -.u-block-hover--tile::before, -.u-block-hover--tile::after { - z-index: 1; -} - -.u-block-hover--tile::before { - top: 0; - left: 0; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--tile::after { - top: 0; - left: 50%; - -webkit-transition-delay: .105s; - -o-transition-delay: .105s; - transition-delay: .105s; -} - -.u-block-hover__additional--tile { - z-index: 3; -} - -.u-block-hover__additional--tile::before, -.u-block-hover__additional--tile::after { - z-index: -1; -} - -.u-block-hover__additional--tile::before { - top: 50%; - left: 0; - -webkit-transition-delay: .21s; - -o-transition-delay: .21s; - transition-delay: .21s; -} - -.u-block-hover__additional--tile::after { - top: 50%; - left: 50%; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -.u-block-hover--tile:hover::before, -.u-block-hover--tile:hover::after, -.u-block-hover--tile:hover .u-block-hover__additional--tile::before, -.u-block-hover--tile:hover .u-block-hover__additional--tile::after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 1; -} - -.u-block-hover__additional--tile__inner { - opacity: 0; -} - -.u-block-hover--tile:hover .u-block-hover__additional--tile__inner { - opacity: 1; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -.u-block-hover--cube { - overflow: visible; - background-color: transparent; - -webkit-perspective: 50em; - perspective: 50em; - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; -} - -[class*="u-block-hover__main--cube"] { - -webkit-transition-delay: .05s; - -o-transition-delay: .05s; - transition-delay: .05s; -} - -[class*="u-block-hover__additional--cube"] { - opacity: 0; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--cube:hover [class*="u-block-hover__main--cube"] { - opacity: 0; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--cube:hover [class*="u-block-hover__additional--cube"] { - opacity: 1; - -webkit-transform: translateY(0%) rotateX(0deg); - transform: translateY(0%) rotateX(0deg); - -webkit-transition-delay: .05s; - -o-transition-delay: .05s; - transition-delay: .05s; -} - -.u-block-hover__additional--cube-up { - -webkit-transform: translateY(50%) rotateX(-90deg); - transform: translateY(50%) rotateX(-90deg); -} - -.u-block-hover--cube:hover .u-block-hover__main--cube-up { - -webkit-transform: translateY(-50%) rotateX(90deg); - transform: translateY(-50%) rotateX(90deg); -} - -.u-block-hover__additional--cube-down { - -webkit-transform: translateY(-50%) rotateX(90deg); - transform: translateY(-50%) rotateX(90deg); -} - -.u-block-hover--cube:hover .u-block-hover__main--cube-down { - -webkit-transform: translateY(50%) rotateX(-90deg); - transform: translateY(50%) rotateX(-90deg); -} - -.u-block-hover__additional--cube-left { - -webkit-transform: translateX(-50%) rotateY(-90deg); - transform: translateX(-50%) rotateY(-90deg); -} - -.u-block-hover--cube:hover .u-block-hover__main--cube-left { - -webkit-transform: translateX(50%) rotateY(90deg); - transform: translateX(50%) rotateY(90deg); -} - -.u-block-hover__additional--cube-right { - -webkit-transform: translateX(50%) rotateY(90deg); - transform: translateX(50%) rotateY(90deg); -} - -.u-block-hover--cube:hover .u-block-hover__main--cube-right { - -webkit-transform: translateX(-50%) rotateY(-90deg); - transform: translateX(-50%) rotateY(-90deg); -} - -.u-block-hover--border-reveal::before, -.u-block-hover--border-reveal::after, -.u-block-hover__additional--border-reveal::before, -.u-block-hover__additional--border-reveal::after { - content: ""; - position: absolute; - background-color: #fff; - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; -} - -.u-block-hover--border-reveal::before, -.u-block-hover--border-reveal::after { - left: 5px; - right: 5px; - height: 4px; - z-index: 1; - -webkit-transform: scaleX(0); - -ms-transform: scaleX(0); - transform: scaleX(0); -} - -.u-block-hover--border-reveal::before { - top: 5px; - -webkit-transition-delay: .28s; - -o-transition-delay: .28s; - transition-delay: .28s; -} - -.u-block-hover--border-reveal:hover::before { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--border-reveal::after { - bottom: 5px; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--border-reveal:hover::after { - -webkit-transition-delay: .28s; - -o-transition-delay: .28s; - transition-delay: .28s; -} - -.u-block-hover__additional--border-reveal { - background-color: transparent; - z-index: 3; -} - -.u-block-hover__additional--border-reveal__inner { - opacity: 0; -} - -.u-block-hover__additional--border-reveal::before, -.u-block-hover__additional--border-reveal::after { - top: 5px; - bottom: 5px; - width: 4px; - z-index: -1; - -webkit-transform: scaleY(0); - -ms-transform: scaleY(0); - transform: scaleY(0); -} - -.u-block-hover__additional--border-reveal::before { - left: 5px; - -webkit-transition-delay: .28s; - -o-transition-delay: .28s; - transition-delay: .28s; -} - -.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before { - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover__additional--border-reveal::after { - right: 5px; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after { - -webkit-transition-delay: .28s; - -o-transition-delay: .28s; - transition-delay: .28s; -} - -.u-block-hover--border-reveal:hover .u-block-hover__main--border-reveal { - opacity: 0; -} - -.u-block-hover--border-reveal:hover::before, -.u-block-hover--border-reveal:hover::after, -.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before, -.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal__inner { - opacity: 1; - -webkit-transition-delay: .35s; - -o-transition-delay: .35s; - transition-delay: .35s; -} - -.u-block-hover:hover img[class*="u-block-hover__main--mover-"], -.u-block-hover:hover [class*="u-block-hover__additional--mover-"] { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1); - transform: translate3d(0, 0, 0) scale3d(1, 1, 1); -} - -img[class*="u-block-hover__main--mover-"] { - max-width: initial; - width: calc(100% + 60px); - -webkit-transition-duration: 0.5s; - -o-transition-duration: 0.5s; - transition-duration: 0.5s; - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; -} - -[class*="u-block-hover__additional--mover-"] { - opacity: 0; - -webkit-transition-duration: 0.5s; - -o-transition-duration: 0.5s; - transition-duration: 0.5s; -} - -img.u-block-hover__main--mover-left { - -webkit-transform: translate3d(-60px, 0, 0); - transform: translate3d(-60px, 0, 0); -} - -.u-block-hover__additional--mover-left { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); -} - -img.u-block-hover__main--mover-right { - -webkit-transform: translate3d(-60px, 0, 0); - transform: translate3d(-60px, 0, 0); -} - -.u-block-hover__additional--mover-right { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); -} - -img.u-block-hover__main--mover-up { - -webkit-transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1); - transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1); -} - -.u-block-hover__additional--mover-up { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); -} - -img.u-block-hover__main--mover-down { - -webkit-transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1); - transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1); -} - -.u-block-hover__additional--mover-down { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); -} - -.u-block-hover__additional--focuser-element { - top: 30px; - right: 30px; - bottom: 30px; - left: 30px; - opacity: .3; - -webkit-box-shadow: 0 0 0 31px rgba(0, 0, 0, 0.5); - box-shadow: 0 0 0 31px rgba(0, 0, 0, 0.5); - -webkit-transform: scale3d(1.4, 1.4, 1.4); - transform: scale3d(1.4, 1.4, 1.4); - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; -} - -.u-block-hover__additional--focuser-target { - position: static; - opacity: 0; - -webkit-transform: scale3d(1.4, 1.4, 1.4); - transform: scale3d(1.4, 1.4, 1.4); - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; -} - -.u-block-hover:hover .u-block-hover__additional--focuser-target, -.u-block-hover:hover .u-block-hover__additional--focuser-element { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; -} - -img[class*="u-block-hover__main--magnifier"] { - max-width: initial; - width: calc(100% + 10px); - margin: -10px 0; -} - -[class*="u-block-hover__additional--magnifier-element"] { - width: 400px; - height: 400px; - border-radius: 50%; - -webkit-box-shadow: 0 0 0 4000px rgba(255, 255, 255, 0.3); - box-shadow: 0 0 0 4000px rgba(255, 255, 255, 0.3); - z-index: 2; - opacity: 0; - -webkit-transform: scale3d(0.7, 0.7, 0.7); - transform: scale3d(0.7, 0.7, 0.7); - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; -} - -.u-block-hover:hover [class*="u-block-hover__additional--magnifier-element"] { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); -} - -[class*="u-block-hover__additional--magnifier-description"] { - max-width: 115px; - z-index: 3; - opacity: 0; -} - -.u-block-hover:hover [class*="u-block-hover__additional--magnifier-description"] { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.u-block-hover__additional--magnifier-element-bottom-right { - top: auto; - left: auto; - bottom: -180px; - right: -180px; -} - -.u-block-hover__additional--magnifier-description-bottom-right { - top: auto; - right: 30px; - bottom: 30px; - left: auto; - -webkit-transform: translate3d(20px, 20px, 0); - transform: translate3d(20px, 20px, 0); -} - -.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-right { - -webkit-transform: translate3d(-10px, -10px, 0); - transform: translate3d(-10px, -10px, 0); -} - -.u-block-hover__additional--magnifier-element-top-right { - top: -180px; - right: -180px; - bottom: auto; - left: auto; -} - -.u-block-hover__additional--magnifier-description-top-right { - top: 30px; - right: 30px; - bottom: auto; - left: auto; - -webkit-transform: translate3d(20px, -20px, 0); - transform: translate3d(20px, -20px, 0); -} - -.u-block-hover:hover img.u-block-hover__main--magnifier-top-right { - -webkit-transform: translate3d(-10px, 10px, 0); - transform: translate3d(-10px, 10px, 0); -} - -img.u-block-hover__main--magnifier-bottom-left { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); -} - -.u-block-hover__additional--magnifier-element-bottom-left { - top: auto; - left: -180px; - bottom: -180px; - right: auto; -} - -.u-block-hover__additional--magnifier-description-bottom-left { - top: auto; - right: auto; - bottom: 30px; - left: 30px; - -webkit-transform: translate3d(-20px, 20px, 0); - transform: translate3d(-20px, 20px, 0); -} - -.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-left { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); -} - -img.u-block-hover__main--magnifier-top-left { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); -} - -.u-block-hover__additional--magnifier-element-top-left { - top: -180px; - left: -180px; - bottom: auto; - right: auto; -} - -.u-block-hover__additional--magnifier-description-top-left { - top: 30px; - right: auto; - bottom: auto; - left: 30px; - -webkit-transform: translate3d(-20px, -20px, 0); - transform: translate3d(-20px, -20px, 0); -} - -.u-block-hover:hover img.u-block-hover__main--magnifier-top-left { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); -} - -[class*="u-block-hover__additional--pappercuter"] { - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; -} - -.u-block-hover__additional--pappercuter-inner { - width: 100%; - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); -} - -.u-block-hover__additional--pappercuter-front, -.u-block-hover__additional--pappercuter-back { - max-width: initial; - width: 120%; - top: -60px; - bottom: -60px; - left: -10%; - z-index: 2; - background-position: center; - background-size: cover; - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); -} - -.u-block-hover__additional--pappercuter-front { - clip: rect(0px, auto, 246px, 0px); -} - -.u-block-hover__additional--pappercuter-back { - top: -61px; - clip: rect(246px, auto, auto, 0px); -} - -.u-block-hover:hover .u-block-hover__additional--pappercuter-front { - -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, -45%, 0); - transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, -45%, 0); -} - -.u-block-hover:hover .u-block-hover__additional--pappercuter-back { - -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, 45%, 0); - transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, 45%, 0); -} - -[class*="u-block-hover__additional--outside"] { - opacity: 0; - visibility: hidden; - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; - -webkit-transition-timing-function: cubic-bezier(0.7, -1.2, 0.8, 1.2); - -o-transition-timing-function: cubic-bezier(0.7, -1.2, 0.8, 1.2); - transition-timing-function: cubic-bezier(0.7, -1.2, 0.8, 1.2); -} - -.u-block-hover:hover [class*="u-block-hover__additional--outside"] { - opacity: 1; - visibility: visible; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - -webkit-transition-timing-function: cubic-bezier(0.25, 1.8, 0.8, 1); - -o-transition-timing-function: cubic-bezier(0.25, 1.8, 0.8, 1); - transition-timing-function: cubic-bezier(0.25, 1.8, 0.8, 1); -} - -.u-block-hover__additional--outside-down { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); -} - -.u-block-hover__additional--outside-up { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); -} - -.u-block-hover__additional--outside-left { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); -} - -.u-block-hover__additional--outside-right { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -[class*="u-block-hover__additional--lightspeed"] { - visibility: hidden; - opacity: 0; - -webkit-transition-duration: .7s; - -o-transition-duration: .7s; - transition-duration: .7s; - -webkit-transition-timing-function: cubic-bezier(0.75, -1.2, 0.8, 2); - -o-transition-timing-function: cubic-bezier(0.75, -1.2, 0.8, 2); - transition-timing-function: cubic-bezier(0.75, -1.2, 0.8, 2); -} - -.u-block-hover:hover [class*="u-block-hover__additional--lightspeed"] { - opacity: 1; - visibility: visible; - -webkit-transform: translate3d(0, 0, 0) skew(0deg, 0deg); - transform: translate3d(0, 0, 0) skew(0deg, 0deg); - -webkit-transition-timing-function: cubic-bezier(0.25, 2, 0.75, 1); - -o-transition-timing-function: cubic-bezier(0.25, 2, 0.75, 1); - transition-timing-function: cubic-bezier(0.25, 2, 0.75, 1); -} - -.u-block-hover__additional--lightspeed-left { - -webkit-transform-origin: 50% 0%; - -ms-transform-origin: 50% 0%; - transform-origin: 50% 0%; - -webkit-transform: translate3d(150%, 0, 0) skew(-35deg, 0deg); - transform: translate3d(150%, 0, 0) skew(-35deg, 0deg); -} - -.u-block-hover__additional--lightspeed-right { - -webkit-transform-origin: 50% 100%; - -ms-transform-origin: 50% 100%; - transform-origin: 50% 100%; - -webkit-transform: translate3d(-150%, 0, 0) skew(35deg, 0deg); - transform: translate3d(-150%, 0, 0) skew(35deg, 0deg); -} - -.u-block-hover__additional--lightspeed-down { - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; - -webkit-transform: translate3d(0, -150%, 0) skew(0deg, -35deg); - transform: translate3d(0, -150%, 0) skew(0deg, -35deg); -} - -.u-block-hover__additional--lightspeed-up { - -webkit-transform-origin: 100% 50%; - -ms-transform-origin: 100% 50%; - transform-origin: 100% 50%; - -webkit-transform: translate3d(0, 150%, 0) skew(0deg, -35deg); - transform: translate3d(0, 150%, 0) skew(0deg, -35deg); -} - -[class*="u-block-hover__additional--rotate"] { - opacity: 0; - visibility: hidden; -} - -.u-block-hover:hover [class*="u-block-hover__additional--rotate"] { - opacity: 1; - visibility: visible; - -webkit-transform: rotate3d(0, 0, 0, 0deg) scale3d(1, 1, 1); - transform: rotate3d(0, 0, 0, 0deg) scale3d(1, 1, 1); -} - -.u-block-hover__additional--rotate-in { - opacity: 1; - -webkit-transition-property: opacity, visibility, -webkit-transform; - transition-property: opacity, visibility, -webkit-transform; - -o-transition-property: transform, opacity, visibility; - transition-property: transform, opacity, visibility; - transition-property: transform, opacity, visibility, -webkit-transform; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - -webkit-transform: rotate3d(0, 0, 1, 720deg) scale3d(0, 0, 0); - transform: rotate3d(0, 0, 1, 720deg) scale3d(0, 0, 0); -} - -.u-block-hover__additional--rotate-down-left { - -webkit-transform-origin: 0 100%; - -ms-transform-origin: 0 100%; - transform-origin: 0 100%; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); -} - -.u-block-hover__additional--rotate-down-right { - -webkit-transform-origin: 100% 100%; - -ms-transform-origin: 100% 100%; - transform-origin: 100% 100%; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); -} - -.u-block-hover__additional--rotate-up-left { - -webkit-transform-origin: 0 100%; - -ms-transform-origin: 0 100%; - transform-origin: 0 100%; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); -} - -.u-block-hover__additional--rotate-up-right { - -webkit-transform-origin: 100% 100%; - -ms-transform-origin: 100% 100%; - transform-origin: 100% 100%; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); -} - -.u-block-hover__additional--jump { - position: static; -} - -.u-block-hover:hover .u-block-hover__additional--jump, -.u-block-hover.u-block-hover__additional--jump:hover { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); -} - -/*------------------------------------ - Dedicated Properties -------------------------------------*/ -.u-block-hover:hover, .u-block-hover:focus { - /* Opacity */ - /* Colors */ - /* Background-colors */ -} - -.u-block-hover:hover .u-block-hover__prop-opacity-1, .u-block-hover:focus .u-block-hover__prop-opacity-1 { - opacity: 1; -} - -.u-block-hover:hover .u-block-hover__prop-color-white, .u-block-hover:focus .u-block-hover__prop-color-white { - color: #fff; -} - -.u-block-hover:hover .u-block-hover__prop-bg-primary, .u-block-hover:focus .u-block-hover__prop-bg-primary { - background-color: #e74c3c; -} - -.u-block-hover:hover .u-block-hover__prop-bg-primary-opacity-0_9, .u-block-hover:focus .u-block-hover__prop-bg-primary-opacity-0_9 { - background-color: rgba(231, 76, 60, 0.9); -} - -/*------------------------------------ - Blockquotes -------------------------------------*/ -.u-blockquote-v1 { - position: relative; - background-color: #fff; - -webkit-box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15); - box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15); -} - -.u-blockquote-v1::before { - content: "\201C"; - position: absolute; - width: 60px; - color: #e74c3c; - font-size: 60px; - margin: -25px 0 0 -40px; -} - -.u-blockquote-v1::after { - content: ""; - position: absolute; - bottom: -30px; - left: 80px; - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 30px 30px 0 0; - border-color: #fff transparent transparent transparent; - -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1)); - filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1)); -} - -.u-blockquote-v2::before, .u-blockquote-v2::after { - position: relative; - top: 5px; - font-size: 22px; - line-height: 10px; -} - -.u-blockquote-v2::before { - content: "\“"; - padding-right: 5px; -} - -.u-blockquote-v2::after { - content: "\”"; - padding-left: 5px; -} - -.u-blockquote-v3 { - position: relative; -} - -.u-blockquote-v3::before { - content: "\201C"; - position: absolute; - font-size: 60px; - color: #e74c3c; - margin: -30px 0 0 -40px; -} - -.u-blockquote-v4::before, .u-blockquote-v4::after { - content: "\201C"; - position: absolute; - font-size: 50px; - margin-top: -12px; -} - -.u-blockquote-v4::before { - margin-left: -30px; -} - -.u-blockquote-v4::after { - margin-left: 13px; -} - -.u-blockquote-v5::before { - content: "\201C"; - position: absolute; - width: 60px; - color: rgba(255, 255, 255, 0.2); - font-size: 70px; - margin: -25px 0 0 -40px; -} - -.u-blockquote-v6::before, .u-blockquote-v6::after { - content: "\0022"; - font-family: inherit; - color: inherit; -} - -.u-blockquote-v7 { - position: relative; - padding-top: 55px; -} - -.u-blockquote-v7::before { - content: "\f10d"; - position: absolute; - top: 0; - left: 50%; - display: block; - width: 35px; - height: 35px; - font-size: 12px; - font-family: "FontAwesome"; - color: #fff; - line-height: 35px; - background: #e74c3c; - border-radius: 50%; - margin-left: -18px; -} - -.u-blockquote-v8 { - position: relative; - background-color: #fff; - -webkit-box-shadow: 5px 6px 9px -6px rgba(164, 157, 166, 0.08); - box-shadow: 5px 6px 9px -6px rgba(164, 157, 166, 0.08); -} - -.u-blockquote-v8::after { - content: ""; - position: absolute; - left: 50px; - bottom: -15px; - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 15px 15px 0 0; - border-color: #fff transparent transparent transparent; - -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05)); - filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05)); -} - -/*------------------------------------ - Accordions -------------------------------------*/ -.u-accordion__header { - padding: 0.71429rem 1.07143rem; -} - -.u-accordion__body { - padding: 1.07143rem; -} - -.u-accordion__control-icon i:nth-child(1) { - display: none; -} - -.collapsed .u-accordion__control-icon i:nth-child(1) { - display: inline; -} - -.u-accordion__control-icon i:nth-child(2) { - display: inline; -} - -.collapsed .u-accordion__control-icon i:nth-child(2) { - display: none; -} - -.u-accordion-line-icon-pro { - position: relative; - top: 2px; -} - -.u-accordion-color-primary .u-accordion__header [aria-expanded="true"] { - color: #e74c3c !important; -} - -.u-accordion-color-white .u-accordion__header [aria-expanded="true"] { - color: #fff !important; -} - -.u-accordion-bg-primary .u-accordion__header [aria-expanded="true"] { - background-color: #e74c3c !important; - border-color: #e74c3c !important; -} - -.u-accordion-bg-white .u-accordion__header [aria-expanded="true"] { - background-color: #fff !important; - border-color: #fff !important; -} - -.u-accordion-brd-primary .u-accordion__header [aria-expanded="true"] { - border-color: #e74c3c !important; -} - -.u-accordion-brd-white .u-accordion__header [aria-expanded="true"] { - border-color: #fff !important; -} - -/*------------------------------------ - Carousels -------------------------------------*/ -.u-carousel-v1 .js-prev, -.u-carousel-v1 .js-next { - opacity: 0; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel-v1:hover .js-prev, -.u-carousel-v1:hover .js-next { - opacity: 1; -} - -.u-carousel-v2 .slick-slide { - padding-top: 4px; - padding-bottom: 4px; - opacity: .5; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel-v2 .slick-center { - padding-top: 0; - padding-bottom: 0; - opacity: 1; - -webkit-transform: scale(1.1); - -ms-transform: scale(1.1); - transform: scale(1.1); -} - -.u-carousel-v3 .slick-slide { - opacity: .5; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel-v3 .slick-center { - opacity: 1; -} - -.u-carousel-v4 .js-pagination { - opacity: 0; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel-v4:hover .js-pagination { - opacity: 1; -} - -.u-carousel-v5 .slick-list { - height: 100%; -} - -.u-carousel-v5 .slick-track { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 100%; -} - -.u-carousel-v5 .slick-track .slick-slide { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: auto; -} - -.u-carousel-v11 .slick-slide { - opacity: .5; -} - -.u-carousel-v11 .slick-slide.slick-current { - opacity: 1; -} - -/*------------------------------------ - Slick Carousel v12 -------------------------------------*/ -.u-carousel-v12 .slick-current .g-opacity-1--active { - opacity: 1 !important; -} - -.u-carousel-v12 .slick-current .u-block-hover__main--grayscale { - filter: url("data:image/svg+xml;utf8,#grayscale"); - -webkit-filter: grayscale(0%); -} - -.owl-carousel .owl-wrapper, -.owl-carousel .owl-item, -.swiper-wrapper, -.swiper-slide { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.single-slide { - opacity: 0 !important; -} - -.single-slide.set-position { - opacity: 1 !important; -} - -.js-origin { - -webkit-perspective: 1200px; - perspective: 1200px; - -webkit-perspective-origin: 50% 50%; - perspective-origin: 50% 50%; -} - -/* backSlide */ -.js-back-slide-out { - -webkit-animation: backSlideOut 1s both ease; - animation: backSlideOut 1s both ease; -} - -.js-back-slide-in { - -webkit-animation: backSlideIn 1s both ease; - animation: backSlideIn 1s both ease; -} - -.swiper-carousel { - overflow: hidden; -} - -@-webkit-keyframes backSlideOut { - 25% { - opacity: .5; - -webkit-transform: translateZ(-400px); - } - 75% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(-200%); - } - 100% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(-200%); - } -} - -@keyframes backSlideOut { - 25% { - opacity: .5; - -webkit-transform: translateZ(-400px); - transform: translateZ(-400px); - } - 75% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(-200%); - transform: translateZ(-400px) translateX(-200%); - } - 100% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(-200%); - transform: translateZ(-400px) translateX(-200%); - } -} - -@-webkit-keyframes backSlideIn { - 0%, 25% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(200%); - } - 75% { - opacity: .5; - -webkit-transform: translateZ(-400px); - } - 100% { - opacity: 1; - -webkit-transform: translateZ(0) translateX(0); - } -} - -@keyframes backSlideIn { - 0%, 25% { - opacity: .5; - -webkit-transform: translateZ(-400px) translateX(200%); - transform: translateZ(-400px) translateX(200%); - } - 75% { - opacity: .5; - -webkit-transform: translateZ(-400px); - transform: translateZ(-400px); - } - 100% { - opacity: 1; - -webkit-transform: translateZ(0) translateX(0); - transform: translateZ(0) translateX(0); - } -} - -/*-------------------------------------------------- - Chart Pie v1 -----------------------------------------------------*/ -.u-chart-pie-v1 { - position: relative; - line-height: 1em; -} - -.u-chart-pie-v1::after { - content: ""; - display: block; - position: absolute; - top: 9px; - right: 10px; - bottom: 11px; - left: 10px; - border-radius: 50%; - border-width: 1px; - border-style: solid; - border-color: inherit; -} - -/*------------------------------------ - Charts -------------------------------------*/ -/* Sparkline chart's tooltip */ -.jqstooltip { - width: auto !important; - height: auto !important; -} - -/*-------------------------------------------------- - Counter v1 -----------------------------------------------------*/ -.u-counter-v3 { - position: relative; -} - -.u-counter-v3::after { - content: ""; - position: absolute; - left: -9px; - right: -9px; - bottom: -9px; - top: -9px; - display: block; - border-radius: inherit; - border-width: 1px; - border-style: solid; - border-color: inherit; -} - -/*-------------------------------------------------- - Counter v6 -----------------------------------------------------*/ -.u-counter-v6 { - position: relative; - width: 120px; - height: 120px; -} - -.u-counter-v6::after { - content: ""; - position: absolute; - top: -11px; - right: -11px; - bottom: -11px; - left: -11px; - display: block; - border-radius: inherit; - border-width: 2px; - border-style: inherit; - border-color: inherit; - clip: rect(auto, 71px, 142px, auto); -} - -/*------------------------------------ - Credit cards -------------------------------------*/ -.u-card--v1 { - position: relative; -} - -.u-card--v1-front { - position: relative; - margin-bottom: 220px; - z-index: 2; -} - -.u-card--v1-back { - position: absolute; - bottom: -70%; - right: 0; - z-index: 1; - width: 100%; - height: 80%; - padding-left: 0; -} - -@media (min-width: 768px) { - .u-card--v1-front { - margin-bottom: 30px; - } - .u-card--v1-back { - bottom: auto; - top: 30px; - right: -30%; - height: 100%; - padding-left: 70%; - } -} - -/*------------------------------------ - Dropdowns v1 -------------------------------------*/ -.u-dropdown-v1 { - position: relative; - line-height: normal; - font-size: 16px; - color: #777; - background-color: #fff; - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: 11px 40px 11px 14px; - -webkit-transition-property: background-color, border-color, -webkit-box-shadow; - transition-property: background-color, border-color, -webkit-box-shadow; - -o-transition-property: background-color, border-color, box-shadow; - transition-property: background-color, border-color, box-shadow; - transition-property: background-color, border-color, box-shadow, -webkit-box-shadow; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; -} - -.u-dropdown-v1::after { - display: none; -} - -.u-dropdown-v1-menu { - padding: 0; - border-color: #ccc; - border-radius: 3px; - -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); - box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); -} - -.u-dropdown-v1-menu__item { - line-height: normal; - font-size: 16px; - color: #777; - padding: 9px 20px; -} - -.u-dropdown-v1-menu__item:hover { - color: #777; -} - -.u-dropdown-v1__icon { - position: absolute; - top: 0; - right: 0; - display: block; - width: 40px; - height: 100%; -} - -.u-dropdown-v1__icon-open, .u-dropdown-v1__icon-close { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.u-dropdown-v1__icon-open { - opacity: 1; -} - -.u-dropdown-v1__icon-close { - opacity: 0; -} - -.u-dropdown-v1[aria-expanded="true"] { - background-color: rgba(204, 204, 204, 0.1); - -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); - box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); -} - -.u-dropdown-v1[aria-expanded="true"] [class*="__icon-open"] { - opacity: 0; -} - -.u-dropdown-v1[aria-expanded="true"] [class*="__icon-close"] { - opacity: 1; -} - -.u-dropdown-v1:focus { - outline: 0 none; -} - -/*------------------------------------ - Covers -------------------------------------*/ -.u-bg-overlay { - position: relative; -} - -.u-bg-overlay::before, .u-bg-overlay::after { - content: ""; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -.u-bg-overlay--v1::after { - position: absolute; - top: 0.35714rem; - right: 0.35714rem; - bottom: 0.35714rem; - left: 0.35714rem; -} - -.u-bg-overlay__inner { - z-index: 3; - position: relative; -} - -.u-bg-overlay--reverse::before { - z-index: 2; -} - -.u-bg-overlay--reverse::after { - z-index: 1; -} - -/*------------------------------------ - Material: Waves -------------------------------------*/ -.u-waves-effect { - position: relative; - overflow: hidden; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-tap-highlight-color: transparent; - z-index: 1; - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; -} - -.u-waves-effect .u-waves-ripple { - position: absolute; - border-radius: 50%; - width: 1.42857rem; - height: 1.42857rem; - margin-top: -0.71429rem; - margin-left: -0.71429rem; - opacity: 0; - background: rgba(0, 0, 0, 0.2); - -webkit-transition: all .7s ease-out; - -o-transition: all .7s ease-out; - transition: all .7s ease-out; - -webkit-transition-property: opacity, -webkit-transform; - transition-property: opacity, -webkit-transform; - -o-transition-property: transform, opacity; - transition-property: transform, opacity; - transition-property: transform, opacity, -webkit-transform; - -webkit-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); - pointer-events: none; -} - -.u-waves-effect.u-waves-light .u-waves-ripple { - background-color: rgba(255, 255, 255, 0.45); -} - -.u-waves-effect.u-waves-dark .u-waves-ripple { - background-color: rgba(0, 0, 0, 0.15); -} - -.u-waves-effect input[type="button"], .u-waves-effect input[type="reset"], .u-waves-effect input[type="submit"] { - border: 0; - font-style: normal; - font-size: inherit; - text-transform: inherit; - background: none; -} - -.u-waves-effect img { - position: relative; - z-index: -1; -} - -.u-waves-notransition { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -.u-waves-circle { - -webkit-transform: translateZ(0); - transform: translateZ(0); - -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); -} - -.u-waves-input-wrapper { - border-radius: .2em; - vertical-align: bottom; -} - -.u-waves-input-wrapper .u-waves-button-input { - position: relative; - top: 0; - left: 0; - z-index: 1; -} - -.u-waves-circle { - text-align: center; - width: 2.5em; - height: 2.5em; - line-height: 2.5em; - border-radius: 50%; - -webkit-mask-image: none; -} - -.u-waves-block { - display: block; -} - -/* Firefox Bug: link not triggered */ -.u-waves-effect .u-waves-ripple { - z-index: -1; -} - -/*------------------------------------ - Material: FAB -------------------------------------*/ -.u-fixed-action-btn { - position: absolute; - right: 0; - bottom: 0; - z-index: 997; -} - -.u-fixed-action-btn ul { - left: 0; - right: 0; - text-align: center; - position: absolute; - bottom: 60px; - margin: 0; - visibility: hidden; - list-style-type: none; - padding-left: 0; -} - -.u-fixed-action-btn ul li { - margin-bottom: 1.07143rem; -} - -.u-fixed-action-btn ul a.u-btn-floating { - opacity: 0; -} - -.u-fixed-action-btn.active ul { - visibility: visible; -} - -.u-fixed-action-btn-horizontal { - padding: 0 0 0 1.07143rem; -} - -.u-fixed-action-btn-horizontal ul { - text-align: right; - right: 4.57143rem; - top: 50%; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - height: 100%; - left: auto; - width: 500px; - /*width 100% only goes to width of button container */ -} - -.u-fixed-action-btn-horizontal ul li { - display: inline-block; - margin: 0.71429rem 1.07143rem 0 0; -} - -.u-fixed-action-btn-toolbar { - padding: 0; - height: 4rem; -} - -.u-fixed-action-btn-toolbar.active > a i { - opacity: 0; -} - -.u-fixed-action-btn-toolbar ul { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - top: 0; - bottom: 0; - z-index: 1; -} - -.u-fixed-action-btn-toolbar ul li { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - display: inline-block; - margin: 0; - height: 100%; - -webkit-transition: none; - -o-transition: none; - transition: none; -} - -.u-fixed-action-btn-toolbar ul li a { - display: block; - overflow: hidden; - position: relative; - width: 100%; - height: 100%; - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - line-height: 4rem; - z-index: 1; -} - -.u-fixed-action-btn-toolbar ul li a i { - line-height: inherit; -} - -.u-fixed-action-btn .u-fab-backdrop { - position: absolute; - top: 0; - left: 0; - z-index: -1; - width: 2.85714rem; - height: 2.85714rem; - border-radius: 50%; - -webkit-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); -} - -/*------------------------------------ - Chips -------------------------------------*/ -.u-chip { - display: inline-block; - height: 2.28571rem; - margin: 0.14286rem 0; - padding: 0 0.85714rem; - font-size: 0; - white-space: nowrap; - line-height: 2.28571rem; - color: rgba(0, 0, 0, 0.87); - border-radius: 1.14286rem; - background-color: #eee; -} - -.u-chip:focus { - -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); - box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); -} - -.u-chip--deletable { - padding-right: 0.28571rem; -} - -.u-chip--contact { - padding-left: 0; -} - -.u-chip__contact { - display: inline-block; - width: 2.28571rem; - height: 2.28571rem; - margin-right: 0.57143rem; - overflow: hidden; - vertical-align: middle; - border-radius: 1.14286rem; - text-align: center; - font-size: 1.28571rem; - line-height: 2.28571rem; -} - -.u-chip__text { - display: inline-block; - vertical-align: middle; - font-size: 0.92857rem; -} - -.u-chip__action { - display: inline-block; - width: 1.71429rem; - height: 1.71429rem; - margin: 0 0 0 0.28571rem; - padding: 0; - text-align: center; - vertical-align: middle; - border: none; - font-size: 0.92857rem; - text-decoration: none; - color: rgba(0, 0, 0, 0.3); - background: transparent; - opacity: .54; - cursor: pointer; - outline: none; - overflow: hidden; -} - -.u-outer-spaces-helper { - position: fixed; - bottom: 0; - left: 0; - display: none; - width: 100%; - overflow: hidden; -} - -.u-outer-spaces-helper::after { - content: ''; - position: absolute; - bottom: 0; - left: 0; - display: block; - width: 100%; - height: 100vh; - background-color: #f7f7f7; - background-position: center; - background-repeat: repeat; -} - -.g-dark-theme .u-outer-spaces-helper::after { - background-color: #000; -} - -[class*="g-bgi-v"] .u-outer-spaces-helper::after { - background-color: transparent; -} - -.u-outer-space-v1 .u-outer-spaces-helper, -.u-outer-space-v2 .u-outer-spaces-helper { - display: block; -} - -.u-outer-space-v1 .u-outer-spaces-helper { - height: 20px; -} - -.u-outer-space-v2 .u-outer-spaces-helper { - height: 40px; -} - -/*------------------------------------ - Info Block v1-1 -------------------------------------*/ -.u-info-v1-1 { - overflow: hidden; - position: relative; -} - -.u-info-v1-1::after { - content: ""; - position: absolute; - left: 0; - right: 0; - bottom: 0; - height: 40px; -} - -/*-------------------------------------------------- - Info Block v1-2 -----------------------------------------------------*/ -.u-info-v1-2__item { - position: relative; - z-index: 1; - padding-bottom: 0.78571rem; -} - -.u-info-v1-2__item::after { - content: ""; - position: absolute; - left: 0; - bottom: 0; - display: block; - width: 40px; - height: 1px; - background: #bbb; - -webkit-transition: all 0.4s ease-in-out; - -o-transition: all 0.4s ease-in-out; - transition: all 0.4s ease-in-out; -} - -.u-info-v1-2:hover .u-info-v1-2__item::after { - width: 100%; - background: #e74c3c; -} - -/*------------------------------------ - Info Block v1-3 -------------------------------------*/ -.u-info-v1-3__item { - position: relative; - z-index: 1; - padding-bottom: 0.92857rem; -} - -.u-info-v1-3__item::after { - content: ""; - position: absolute; - left: 50%; - bottom: 0; - width: 2.14286rem; - height: 1px; - margin-left: -1.07143rem; - background: #777; -} - -/*------------------------------------ - Info Block v1-4 -------------------------------------*/ -.u-info-v1-4__item-hidden { - position: absolute; - bottom: 0; - left: 0; - right: 0; - height: 61px; - overflow: hidden; - -webkit-transform: translate3d(0, 61px, 0); - transform: translate3d(0, 61px, 0); -} - -.u-info-v1-4:hover .u-info-v1-4__item-hidden { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.u-info-v1-4:hover .u-info-v1-4__item-regular { - -webkit-transform: translate3d(0, -61px, 0); - transform: translate3d(0, -61px, 0); -} - -/*------------------------------------ - Info Block v1-5 -------------------------------------*/ -.u-info-v1-5__item { - position: relative; - padding-bottom: 19px; -} - -.u-info-v1-5__item::after { - content: ""; - position: absolute; - left: 0; - bottom: 1px; - display: block; - width: 28px; - border-bottom: 1px solid #e74c3c; -} - -/*------------------------------------ - Info Block v2-1 -------------------------------------*/ -.u-info-v2-1__item { - height: 65px; - -webkit-transition: .3s ease-out; - -o-transition: .3s ease-out; - transition: .3s ease-out; -} - -.u-info-v2-1__item:hover { - height: 80px; - margin-top: -15px; -} - -/*------------------------------------ - Info Block v2-2 -------------------------------------*/ -.u-info-v2-2__item { - position: relative; - border-left: solid 1px; - border-right: solid 1px; - border-bottom: solid 1px; -} - -.u-info-v2-2__item::after, .u-info-v2-2__item::before { - content: ""; - position: absolute; - top: 0; - width: 30%; - border-top: solid 1px; - z-index: 1; -} - -.u-info-v2-2__item::before { - left: 0; -} - -.u-info-v2-2__item::after { - right: 0; -} - -.u-info-v2-2__item.g-brd-white-dark-v3 { - border-color: rgba(255, 255, 255, 0.3); -} - -.u-info-v2-2__item.g-brd-white-dark-v3::before, .u-info-v2-2__item.g-brd-white-dark-v3::after { - border-color: rgba(255, 255, 255, 0.3); -} - -.u-info-v2-2__item.g-brd-black-dark-v3 { - border-color: rgba(0, 0, 0, 0.3); -} - -.u-info-v2-2__item.g-brd-black-dark-v3::before, .u-info-v2-2__item.g-brd-black-dark-v3::after { - border-color: rgba(0, 0, 0, 0.3); -} - -/*------------------------------------ - Info Block v2-3 -------------------------------------*/ -.u-info-v2-3:hover .u-info-v2-3__title { - color: #000; -} - -/*------------------------------------ - Info Block v3-1 -------------------------------------*/ -/* Title */ -.info-v3-1__title { - position: relative; - display: inline-block; - margin-left: 4.28571rem; - margin-right: 4.28571rem; -} - -.info-v3-1__title::before, .info-v3-1__title::after { - content: ""; - position: absolute; - top: 50%; - display: block; - width: 3.57143rem; - margin-top: -1px; - height: 2px; - background-color: #fff; -} - -.info-v3-1__title::before { - right: 100%; - margin-right: 10px; -} - -.info-v3-1__title::after { - left: 100%; - margin-left: 10px; -} - -/*------------------------------------ - Info Block v3-2 -------------------------------------*/ -.info-v3-2 { - position: relative; - background-position: center; -} - -.info-v3-2::before { - content: ""; - position: absolute; - top: 1.42857rem; - right: 1.42857rem; - bottom: 1.42857rem; - left: 1.42857rem; - display: block; - border: 1px solid rgba(255, 255, 255, 0.2); - z-index: 1; -} - -.info-v3-2:hover { - background-position: center 0; -} - -/*------------------------------------ - Info Block v3-3 -------------------------------------*/ -.info-v3-3 { - overflow: hidden; -} - -.info-v3-3:hover .info-v3-3__title { - color: #fff; -} - -.info-v3-3:hover .info-v3-3__img, -.info-v3-3:hover .info-v3-3__description { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.info-v3-3:hover .info-v3-3__content { - display: block; -} - -.info-v3-3:hover .info-v3-3__category { - display: none; -} - -.info-v3-3:hover::after { - opacity: 1; -} - -.info-v3-3::after { - opacity: 0; - -webkit-transition: opacity .5s; - -o-transition: opacity .5s; - transition: opacity .5s; -} - -/* Image */ -.info-v3-3__img { - -webkit-transform: translate3d(70%, 0, 0); - transform: translate3d(70%, 0, 0); - -webkit-transition: -webkit-transform .5s; - transition: -webkit-transform .5s; - -o-transition: transform .5s; - transition: transform .5s; - transition: transform .5s, -webkit-transform .5s; -} - -/* Content */ -.info-v3-3__content { - display: none; -} - -/* Description */ -.info-v3-3__description { - -webkit-transform: translate3d(-20%, 0, 0); - transform: translate3d(-20%, 0, 0); - -webkit-transition: -webkit-transform .5s; - transition: -webkit-transform .5s; - -o-transition: transform .5s; - transition: transform .5s; - transition: transform .5s, -webkit-transform .5s; -} - -/*------------------------------------ - Info Block v3-4 -------------------------------------*/ -.info-v3-4 { - position: relative; -} - -.info-v3-4::before { - content: ""; - position: absolute; - top: 0.71429rem; - right: 0.71429rem; - bottom: 0.71429rem; - left: 0.71429rem; - display: block; - border: 1px solid rgba(255, 255, 255, 0.4); - z-index: 1; -} - -/*------------------------------------ - Info Block v5-1 -------------------------------------*/ -/* Title */ -.info-v5-1__title { - position: relative; - display: inline-block; -} - -.info-v5-1__title::after { - content: ""; - position: absolute; - top: 50%; - left: 100%; - display: block; - width: 3000%; - margin-left: 15px; - border-bottom: 1px solid #eee; -} - -/*------------------------------------ - Info Block v5-2 -------------------------------------*/ -/* Product Image */ -.info-v5-2__image { - width: calc(100% + 1px); -} - -/*------------------------------------ - Info Block v5-3 -------------------------------------*/ -.info-v5-3__info-price { - opacity: 0; -} - -.info-v5-3__info-title { - position: absolute; - left: 0; - bottom: 100%; - width: 100%; - margin-bottom: 4.64286rem; - -webkit-transform: translate3d(0, 70px, 0); - transform: translate3d(0, 70px, 0); -} - -.info-v5-3:hover .info-v5-3__info { - color: rgba(255, 255, 255, 0.8); - background-color: rgba(231, 76, 60, 0.9); -} - -.info-v5-3:hover .info-v5-3__info-price { - opacity: 1; -} - -.info-v5-3:hover .info-v5-3__info-list { - color: #fff; -} - -.info-v5-3:hover .info-v5-3__info-list .fa { - color: #fff; -} - -.info-v5-3:hover .info-v5-3__info-title { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - margin-bottom: 3.21429rem; -} - -/*------------------------------------ - Info Block v5-4 -------------------------------------*/ -/* Actions */ -.info-v5-4__action .fa { - opacity: 0.75; -} - -.info-v5-4__action:hover .fa { - opacity: 1; -} - -/*------------------------------------ - Info Block v5-5 -------------------------------------*/ -.info-v5-5__header::after, -.info-v5-5__content::after { - -webkit-transition: inherit; - -o-transition: inherit; - transition: inherit; -} - -.info-v5-5__content::after { - opacity: 0; -} - -.info-v5-5:hover .info-v5-5__header::after, -.info-v5-5:hover .info-v5-5__content::after { - opacity: .8; -} - -/*------------------------------------ - Info Block v5-6 -------------------------------------*/ -.info-v5-6:hover .info-v5-6__rating { - color: #333; -} - -.info-v5-6:hover .info-v5-6__price { - background-color: #333; -} - -.info-v5-6 .g-color-gray-light-v5--hover .g-rating, -.info-v5-6 .g-bg-white--hover, -.info-v5-6 .g-color-primary--hover { - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; -} - -.info-v5-6:hover .g-color-gray-light-v5--hover .g-rating { - color: #f7f7f7; -} - -.info-v5-6:hover .g-bg-white--hover { - background: #fff; -} - -.info-v5-6:hover .g-color-primary--hover { - color: #e74c3c; -} - -/*-------------------------------------------------- - Info Block v6-1 -----------------------------------------------------*/ -.u-info-v6-1__item { - position: relative; - z-index: 1; - padding-bottom: 0.78571rem; -} - -.u-info-v6-1__item::after { - content: ""; - position: absolute; - left: 0; - bottom: 0; - display: block; - width: 40px; - height: 1px; - background-image: -webkit-gradient(linear, left top, right top, from(#e74c3c), to(transparent)); - background-image: -webkit-linear-gradient(left, #e74c3c 0%, transparent 100%); - background-image: -o-linear-gradient(left, #e74c3c 0%, transparent 100%); - background-image: linear-gradient(to right, #e74c3c 0%, transparent 100%); - background-repeat: repeat-x; - -webkit-transition: all 0.4s ease-in-out; - -o-transition: all 0.4s ease-in-out; - transition: all 0.4s ease-in-out; -} - -.u-info-v6-1:hover .u-info-v6-1__item::after { - width: 100%; - background-image: -webkit-gradient(linear, left top, right top, from(#e74c3c), to(transparent)); - background-image: -webkit-linear-gradient(left, #e74c3c 0%, transparent 100%); - background-image: -o-linear-gradient(left, #e74c3c 0%, transparent 100%); - background-image: linear-gradient(to right, #e74c3c 0%, transparent 100%); - background-repeat: repeat-x; -} - -/*-------------------------------------------------- - Info Block v7-1 -----------------------------------------------------*/ -.u-info-v7-1__item { - border: 2px solid transparent; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.u-info-v7-1__item-child-v1 { - border: 5px solid transparent; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.u-info-v7-1__item-child-v2 { - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.u-info-v7-1:hover { - border-color: #eee; -} - -.u-info-v7-1:hover .u-info-v7-1__item { - border-color: #ddd; -} - -.u-info-v7-1:hover .u-info-v7-1__item-child-v1 { - border-color: #ddd; -} - -.u-info-v7-1:hover .u-info-v7-1__item-child-v2 { - color: #fff; - background: #e74c3c; -} - -/*-------------------------------------------------- - Info Block v8-1 -----------------------------------------------------*/ -.u-hs-filter { - padding: 20px; - margin-bottom: 0; -} - -.u-hs-filter a { - padding: 0.5rem 1.07143rem; - color: rgba(255, 255, 255, 0.8); - border: solid 1px rgba(255, 255, 255, 0.2); - text-transform: uppercase; - border-radius: 3px; - -webkit-transition: all .3s; - -o-transition: all .3s; - transition: all .3s; -} - -.u-hs-filter a:hover, .u-hs-filter a:focus { - text-decoration: none; -} - -.u-hs-filter a:hover { - color: #585f69; - background-color: white; -} - -.u-hs-filter .active a { - color: #585f69; - background-color: white; -} - -/*-------------------------------------------------- - Info Block v9-1 -----------------------------------------------------*/ -@media (min-width: 768px) { - .u-info-v9-1 { - position: relative; - } - .u-info-v9-1::before { - position: absolute; - top: 111px; - left: 17%; - width: 66%; - border-top: 1px dotted #ddd; - content: " "; - } -} - -/*-------------------------------------------------- - Info Block v10-1 -----------------------------------------------------*/ -.u-info-v10-1 { - position: relative; - display: inline-block; -} - -.u-info-v10-1::before, .u-info-v10-1::after { - display: block; - position: absolute; - top: 50%; - width: 1000px; - height: 1px; - background: #f7f7f7; - content: " "; - margin-top: 0.5px; -} - -.u-info-v10-1::before { - right: 100%; - margin-right: 25px; -} - -.u-info-v10-1::after { - left: 100%; - margin-left: 25px; -} - -/*------------------------------------ - Info v11-1 -------------------------------------*/ -.u-info-v11-1-img { - border: 0 solid #eee; - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - -webkit-transition: all .3s ease; - -o-transition: all .3s ease; - transition: all .3s ease; -} - -.u-info-v11-1:hover .u-info-v11-1-img { - border-width: 5px; - -webkit-transform: scale(0.95); - -ms-transform: scale(0.95); - transform: scale(0.95); -} - -/*------------------------------------ - Custom Bootstrap -------------------------------------*/ -.container-semiboxed { - -webkit-box-sizing: border-box; - box-sizing: border-box; - max-width: 100%; - padding-left: 15px; - padding-right: 15px; - margin-left: auto; - margin-right: auto; -} - -@media (min-width: 576px) { - .container-semiboxed { - width: 540px; - } -} - -@media (min-width: 768px) { - .container-semiboxed { - width: 720px; - } -} - -@media (min-width: 992px) { - .container-semiboxed { - width: 960px; - } -} - -@media (min-width: 1200px) { - .container-semiboxed { - width: 1140px; - } -} - -@media (min-width: 1400px) { - .container-semiboxed { - width: 1340px; - } -} - -.text-muted { - color: #999 !important; -} - -.list-group-item { - border-color: #eee; -} - -.list-group-item-action:hover { - background-color: #f7f7f7; -} - -.list-group-item.active { - background-color: #e74c3c; - border-color: #e74c3c; -} - -.list-group-border-0 .list-group-item:first-child, -.list-group-border-0 .list-group-item:last-child { - border-radius: 0; -} - -/* Paginations */ -.page-link { - color: #e74c3c; -} - -.page-link:focus, .page-link:hover { - color: #e74c3c; -} - -.page-item.active .page-link, -.page-item.active .page-link:focus, -.page-item.active .page-link:hover { - border-color: #e74c3c; - background-color: #e74c3c; -} - -.nav-pills .nav-item.show .nav-link, -.nav-pills .nav-link.active { - background-color: #e74c3c; -} - -.nav-tabs { - border-bottom: 1px solid #eee; -} - -.nav-tabs .nav-link:focus, -.nav-tabs .nav-link:hover { - border-color: transparent; -} - -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #a49da6; - border-color: #eee #eee #fff; -} - -.progress { - font-size: 1rem; - line-height: inherit; - background-color: #eee; -} - -.progress-bar { - height: auto; - min-height: 12px; - background-color: #e74c3c; -} - -.btn-primary { - background-color: #e74c3c; - border-color: #e74c3c; -} - -.btn-primary:hover { - color: #fff; - background-color: #e64433; - border-color: #e64433; -} - -.btn-primary:focus, .btn-primary.focus { - -webkit-box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.5); - box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.5); -} - -.btn-primary.disabled, .btn-primary:disabled { - background-color: #e74c3c; - border-color: #e74c3c; -} - -.btn-primary:active, .btn-primary.active, -.show > .btn-primary.dropdown-toggle { - background-color: #e64433; - border-color: #e64433; -} - -.btn-outline-primary { - color: #e74c3c; - border-color: #e74c3c; -} - -.btn-outline-primary:hover { - background-color: #e64433; - border-color: #e64433; -} - -.btn-outline-primary:focus, .btn-outline-primary.focus { - -webkit-box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.5); - box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.5); -} - -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #e74c3c; -} - -.btn-outline-primary:active, .btn-outline-primary.active, -.show > .btn-outline-primary.dropdown-toggle { - background-color: #e64433; - border-color: #e64433; -} - -.card, -.card-header { - border-color: #eee; -} - -.card-header { - padding: 0.71429rem 1.07143rem; -} - -.card-block { - padding: 1.07143rem; -} - -.form-control { - border-color: #ccc; -} - -.form-control-md { - padding: .8rem 1rem .6rem; -} - -.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .input-group-lg > select.input-group-addon:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) { - height: calc(2.3125rem + 10px); -} - -.form-control, -.form-control:focus { - color: #a49da6; -} - -.form-control:focus, -.custom-select:focus { - border-color: #e74c3c; - -webkit-box-shadow: none; - box-shadow: none; -} - -.form-control::-webkit-input-placeholder { - color: inherit; - opacity: .5; -} - -.form-control:-ms-input-placeholder { - color: inherit; - opacity: .5; -} - -.form-control::-ms-input-placeholder { - color: inherit; - opacity: .5; -} - -.form-control::placeholder { - color: inherit; - opacity: .5; -} - -.has-success .col-form-label, -.has-success .custom-control, -.has-success .form-check-label, -.has-success .form-control-feedback, -.has-success .form-control-label { - color: #5cb85c; -} - -.has-success .form-control { - border-color: #5cb85c; -} - -.has-warning .col-form-label, -.has-warning .custom-control, -.has-warning .form-check-label, -.has-warning .form-control-feedback, -.has-warning .form-control-label { - color: #f0ad4e; -} - -.has-warning .form-control { - border-color: #f0ad4e; -} - -.has-danger .col-form-label, -.has-danger .custom-control, -.has-danger .form-check-label, -.has-danger .form-control-feedback, -.has-danger .form-control-label { - color: #d9534f; -} - -.has-danger .form-control { - border-color: #d9534f; -} - -.input-group-addon { - min-width: 38px; - background-color: transparent; - border-color: #ccc; - -webkit-transition: border-color .15s ease-in-out 0s; - -o-transition: border-color .15s ease-in-out 0s; - transition: border-color .15s ease-in-out 0s; -} - -.input-group-addon > * { - white-space: normal; -} - -.input-group-addon i { - margin: 0 auto; -} - -.input-group .form-control:active, -.input-group .form-control:focus, -.input-group .form-control:hover { - z-index: auto; -} - -.btn-group { - display: block; -} - -.input-group-addon + .input-group-addon { - border-left: solid 1px #ccc; -} - -.table-striped tbody tr:nth-of-type(2n+1) { - background-color: #f7f7f7; -} - -.table-striped tbody td { - border-top: none; -} - -@media (min-width: 768px) { - .btn-group { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - } - .justified-content { - display: table; - width: 100%; - table-layout: fixed; - } - .justified-content > * { - display: table-cell; - width: 1%; - float: none; - } -} - -.dropdown-menu { - min-width: 15rem; - padding: 0; -} - -.dropdown-toggle::before { - display: none; -} - -.dropdown-toggle::after { - content: "\e900"; - position: relative; - top: 0.21429rem; - font-family: "hs-icons" !important; - font-size: 10px; - display: inline; - border: none; - margin-left: 0.5rem; -} - -.dropdown-item { - padding: 0.21429rem 1.07143rem; -} - -.dropdown-item:focus, .dropdown-item:hover { - background: rgba(0, 0, 0, 0.03); -} - -.dropdown-item.active, .dropdown-item:active { - background: rgba(0, 0, 0, 0.05); - color: inherit !important; -} - -.dropdown-item.active > a, .dropdown-item:active > a { - color: inherit !important; -} - -.dropdown-item.active > a::before, .dropdown-item.active > a::after, .dropdown-item:active > a::before, .dropdown-item:active > a::after { - background-color: #fff; -} - -.u-header__section--dark .dropdown-item.active > a, .u-header__section--dark .dropdown-item:active > a { - color: #fff !important; -} - -.chosen-container-single .chosen-single div b { - position: relative; -} - -.chosen-container-single .chosen-search input[type="text"] { - padding: .8rem 1rem .6rem; - border-color: #ccc; -} - -.chosen-container-single.u-dropdown-sm .chosen-search input[type="text"] { - padding: .25rem .5rem .1rem; -} - -.chosen-container-single.u-dropdown-lg .chosen-search input[type="text"] { - padding: .75rem 1.5rem .55rem; -} - -.chosen-container-single.u-select-above .chosen-drop { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: -1px; -} - -[data-animation].cbp { - visibility: visible; -} - -.cbp-slider-next::after, -.cbp-slider-prev::after { - display: none; -} - -.cbp-filter-item { - cursor: pointer; -} - -.cbp-item-off { - opacity: 0; -} - -/*------------------------------------ - Border Colors -------------------------------------*/ -/* Primary Colors */ -.g-brd-primary--active.cbp-filter-item-active { - border-color: #e74c3c !important; -} - -.g-brd-primary-opacity-0_3--active.cbp-filter-item-active { - border-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-dark-dark-v1--active.cbp-filter-item-active { - border-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v2--active.cbp-filter-item-active { - border-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v3--active.cbp-filter-item-active { - border-color: #d62c1a !important; -} - -/* Black Colors */ -.g-brd-black--active.cbp-filter-item-active { - border-color: #000 !important; -} - -/* White Colors */ -.g-brd-white--active.cbp-filter-item-active { - border-color: #fff !important; -} - -.g-brd-white-opacity-0_1--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_2--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_3--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_4--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_5--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_6--active.cbp-filter-item-active { - border-color: rgba(255, 255, 255, 0.6) !important; -} - -/* Gray Colors */ -.g-brd-gray-dark-v1--active.cbp-filter-item-active { - border-color: #111 !important; -} - -.g-brd-gray-dark-v2--active.cbp-filter-item-active { - border-color: #333 !important; -} - -.g-brd-gray-dark-v3--active.cbp-filter-item-active { - border-color: #555 !important; -} - -.g-brd-gray-dark-v4--active.cbp-filter-item-active { - border-color: #777 !important; -} - -.g-brd-gray-dark-v5--active.cbp-filter-item-active { - border-color: #999 !important; -} - -.g-brd-gray-light-v1--active.cbp-filter-item-active { - border-color: #bbb !important; -} - -.g-brd-gray-light-v2--active.cbp-filter-item-active { - border-color: #ccc !important; -} - -.g-brd-gray-light-v3--active.cbp-filter-item-active { - border-color: #ddd !important; -} - -.g-brd-gray-light-v4--active.cbp-filter-item-active { - border-color: #eee !important; -} - -.g-brd-gray-light-v5--active.cbp-filter-item-active { - border-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-brd-transparent--active.cbp-filter-item-active { - border-color: transparent !important; -} - -/*------------------------------------ - Background Colors -------------------------------------*/ -/* Primary Colors */ -.g-bg-primary--active.cbp-filter-item-active { - background-color: #e74c3c !important; -} - -/*------------------------------------ - Colors -------------------------------------*/ -/* Primary Colors */ -.g-color-primary--active.cbp-filter-item-active { - color: #e74c3c !important; -} - -/* Black Colors */ -.g-color-black--active.cbp-filter-item-active { - color: #000 !important; -} - -/* White Colors */ -.g-color-white--active.cbp-filter-item-active { - color: #fff !important; -} - -/* Gray Colors */ -.g-color-gray-light-v1--active.cbp-filter-item-active { - color: #bbb !important; -} - -.g-color-gray-light-v2--active.cbp-filter-item-active { - color: #ccc !important; -} - -.g-color-gray-light-v3--active.cbp-filter-item-active { - color: #ddd !important; -} - -.g-color-gray-light-v4--active.cbp-filter-item-active { - color: #eee !important; -} - -.g-color-gray-light-v5--active.cbp-filter-item-active { - color: #f7f7f7 !important; -} - -.g-color-gray-dark-v1--active.cbp-filter-item-active { - color: #111 !important; -} - -.g-color-gray-dark-v2--active.cbp-filter-item-active { - color: #333 !important; -} - -.g-color-gray-dark-v3--active.cbp-filter-item-active { - color: #555 !important; -} - -.g-color-gray-dark-v4--active.cbp-filter-item-active { - color: #777 !important; -} - -.g-color-gray-dark-v5--active.cbp-filter-item-active { - color: #999 !important; -} - -/*-------------------------------------------------- - Fancybox -----------------------------------------------------*/ -/* Blur bg container */ -/*-------------------------------------------------- - Fancybox - ----------------------------------------------------*/ -.u-fancybox-theme .fancybox-content { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; -} - -.u-fancybox-theme .fancybox-slide--iframe .fancybox-content { - position: static; -} - -.u-fancybox-theme.fancybox-show-thumbs .fancybox-content { - right: 220px; -} - -.u-fancybox-theme .fancybox-button, -.u-fancybox-theme .fancybox-arrow { - font-size: 1.42857rem; - line-height: 2.92857rem; - width: 3.14286rem; - height: 3.14286rem; - text-align: center; - background-color: transparent; - border-width: 0.07143rem; - border-style: solid; - border-color: #fff; - color: #fff; - outline: none; - border-radius: 50%; - opacity: .8; - -webkit-transition: opacity .3s ease; - -o-transition: opacity .3s ease; - transition: opacity .3s ease; -} - -.u-fancybox-theme .fancybox-button::before, -.u-fancybox-theme .fancybox-arrow::before { - font-family: "hs-icons"; - position: static; - opacity: 1; - background-color: transparent; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transform: none; - -ms-transform: none; - transform: none; - width: auto; - height: auto; -} - -.u-fancybox-theme .fancybox-button::after, -.u-fancybox-theme .fancybox-arrow::after { - display: none; -} - -.u-fancybox-theme .fancybox-button:hover, .u-fancybox-theme .fancybox-button:focus, -.u-fancybox-theme .fancybox-arrow:hover, -.u-fancybox-theme .fancybox-arrow:focus { - opacity: 1; -} - -.u-fancybox-theme .fancybox-button { - display: inline-block; -} - -.u-fancybox-theme .fancybox-button--close::before { - content: "\e904"; -} - -.u-fancybox-theme .fancybox-button--play::before { - content: "\e90c"; -} - -.u-fancybox-theme .fancybox-button--fullscreen::before { - content: "\e909"; -} - -.u-fancybox-theme .fancybox-button--thumbs::before { - content: "\e906"; -} - -.u-fancybox-theme .fancybox-arrow--left, .u-fancybox-theme .fancybox-arrow--right { - margin-top: -1.57143rem; - position: absolute; - top: 50%; - z-index: 100000; - display: none; -} - -.u-fancybox-theme.fancybox-show-nav .fancybox-arrow--left, .u-fancybox-theme.fancybox-show-nav .fancybox-arrow--right { - display: block; -} - -.u-fancybox-theme .fancybox-arrow--left::before, .u-fancybox-theme .fancybox-arrow--right::before { - content: "\e902"; -} - -.u-fancybox-theme .fancybox-arrow--left { - left: 1.42857rem; -} - -.u-fancybox-theme .fancybox-arrow--right { - right: 1.42857rem; -} - -.u-fancybox-theme .fancybox-toolbar { - top: 1.42857rem; - right: 1.42857rem; - margin-left: -0.35714rem; - margin-right: -0.35714rem; -} - -.u-fancybox-theme .fancybox-toolbar .fancybox-button { - margin-left: 0.35714rem; - margin-right: 0.35714rem; -} - -.u-fancybox-theme .fancybox-thumbs { - background-color: #000; -} - -.u-fancybox-theme .fancybox-thumbs > ul > li { - border-color: #000; -} - -.u-fancybox-theme .fancybox-thumbs > ul > li::before { - border-color: #72c02c; -} - -.fancybox-controls--canzoomIn .fancybox-placeholder, -.fancybox-controls--canzoomOut .fancybox-placeholder { - cursor: inherit; -} - -.fancybox-slide.has-animation { - display: block; -} - -.fancybox-is-sliding .fancybox-slide.has-animation, -.fancybox-slide--current.has-animation, -.fancybox-slide--next.has-animation, -.fancybox-slide--previous.has-animation { - display: none; -} - -.fancybox-is-sliding .fancybox-slide.has-animation.animated, -.fancybox-slide--current.has-animation.animated, -.fancybox-slide--next.has-animation.animated, -.fancybox-slide--previous.has-animation.animated { - display: block; -} - -/*-------------------------------------------------- - Hamburgers -----------------------------------------------------*/ -.hamburger { - padding: 10px; -} - -.hamburger-box { - width: 37px; - height: 25px; -} - -.hamburger-inner { - margin-top: 1px; -} - -.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before { - width: 100%; - height: 1px; - border-radius: 0; -} - -.u-header__section--light .hamburger-inner, -.u-header__section--light .hamburger-inner::after, -.u-header__section--light .hamburger-inner::before { - background: #a49da6; -} - -.u-header__section--dark .hamburger-inner, -.u-header__section--dark .hamburger-inner::after, -.u-header__section--dark .hamburger-inner::before { - background: #fff; -} - -.hs-has-mega-menu:not(.hs-mega-menu-opened) *, -.hs-has-sub-menu:not(.hs-sub-menu-opened) * { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -.hs-has-mega-menu:not(.hs-mega-menu-opened) *::before, .hs-has-mega-menu:not(.hs-mega-menu-opened) *::after, -.hs-has-sub-menu:not(.hs-sub-menu-opened) *::before, -.hs-has-sub-menu:not(.hs-sub-menu-opened) *::after { - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; -} - -[class^="et-"] { - line-height: 1.1; -} - -.material-icons { - position: relative; - top: 0.14286rem; -} - -.u-btn-floating .material-icons, -.u-chip .material-icons { - top: 0; -} - -.jFiler-jProgressBar { - height: auto; - margin-top: 0; -} - -/*------------------------------------ - jQuery UI -------------------------------------*/ -.ui-autocomplete { - max-height: 200px; - overflow-y: auto; - overflow-x: hidden; - padding-bottom: 1px; - z-index: 991; -} - -.ui-autocomplete .left { - float: left; -} - -.ui-autocomplete .right { - float: right; -} - -.ui-autocomplete .ui-menu-item { - padding: 0; -} - -.ui-autocomplete .ui-menu-item-wrapper { - display: block; - color: inherit; - background-color: transparent; - border-color: transparent; - padding: 7px 15px; -} - -.ui-autocomplete .ui-menu-item-wrapper.ui-state-active, .ui-autocomplete .ui-menu-item-wrapper:hover { - color: #fff; - background-color: #e74c3c; - text-decoration: none; -} - -.ui-autocomplete .ui-menu-item:hover { - color: #fff; - background-color: #e74c3c; -} - -.ui-autocomplete .ui-menu-item:hover .ui-menu-item-wrapper { - background-color: transparent; - border-color: transparent; -} - -.ui-autocomplete-category { - padding: 5px 15px; - margin: 0; - font-weight: bold; -} - -.jvectormap-container { - width: 100%; - height: 100%; -} - -/*------------------------------------ - Pin Map -------------------------------------*/ -.point { - width: 21px; - height: 21px; - border-radius: 50%; - background: rgba(0, 0, 0, 0.5); -} - -.point::before, .point::after { - content: ""; - display: block; - border-radius: 50%; - position: absolute; -} - -.point::before { - top: 5px; - left: 5px; - width: 11px; - height: 11px; - background: #e74c3c; -} - -.point::after { - top: 8px; - left: 8px; - width: 5px; - height: 5px; - background: rgba(0, 0, 0, 0.5); -} - -.mwp-wrap { - -webkit-box-shadow: 0 1px 9px -1px; - box-shadow: 0 1px 9px -1px; - left: -82px; - bottom: 35px !important; -} - -.mwp-wrap::after { - content: ""; - position: absolute; - top: 99%; - left: 50%; - margin-left: -7px; - width: 0; - height: 0; - border-width: 14px 14px 0 14px; - border-style: solid; - border-color: #111 transparent transparent transparent; -} - -.embed-responsive .plyr--video { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -pre[class*="language-"] { - position: relative; - margin: 0; -} - -pre[class*="language-"] .toolbar { - position: absolute; - top: -1px; - right: -1px; -} - -pre[class*="language-"] .toolbar-item a { - display: block; - z-index: 10; - padding: 5px 8px; - font-size: 12px; - color: #111; - cursor: pointer; - background-color: #fff; - border: 1px solid #bbb; - border-radius: 0 0 0 4px; -} - -.select2-container .select2-selection--single { - height: 2.5rem; -} - -.select2-container--default .select2-selection--single .select2-selection__rendered { - line-height: normal; - padding: .5rem .75rem; -} - -.select2-container--default .select2-selection--single .select2-selection__arrow { - top: 50%; - line-height: 26px; - text-align: center; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); -} - -.select2-container--default .select2-selection--single .select2-selection__arrow b { - position: static; - top: auto; - left: auto; - width: auto; - height: auto; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - vertical-align: middle; - border: none; - margin-top: 0; - margin-left: 0; -} - -.select2-container--default .select2-selection--single .select2-selection__arrow b::before { - content: "\f0dc"; -} - -.g-rounded-0 + .select2-container--default .select2-selection--single { - border-radius: 0; -} - -.select2-results__option { - position: relative; -} - -.select2-results__option img:first-child { - margin-right: 10px; -} - -.select2-results__option img:last-child { - margin-left: 10px; -} - -.select2-results__option:hover .u-option-icons--v1 { - opacity: 1; -} - -.u-select-v1 { - position: relative; -} - -.select2-container--default .u-select-v1 { - height: auto; - border-radius: 0; -} - -.select2-container--default .u-select-v1 .select2-selection__rendered { - padding: 0; -} - -.select2-container--default .u-select-v1 .select2-selection__arrow { - line-height: 22px; -} - -.select2-container--default .u-select-v1:focus { - outline: 0 none; -} - -.slick-slide:focus { - outline: 0 none; -} - -[data-lazy] { - opacity: 0; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.js-carousel .js-next, -.js-carousel .js-prev { - opacity: 0; -} - -.js-carousel.slick-initialized .js-next, -.js-carousel.slick-initialized .js-prev { - opacity: 1; -} - -.js-slide:first-child { - height: auto; -} - -.slick-vertical .slick-slide { - border: none; -} - -/*------------------------------------ - Border Colors -------------------------------------*/ -/* Primary Colors */ -.slick-active .g-brd-primary--before--active::before { - border-color: #e74c3c !important; -} - -.slick-active .g-brd-primary--active { - border-color: #e74c3c !important; -} - -.js-pagination .g-brd-primary--before--hover:hover::before { - border-color: #e74c3c !important; -} - -/*------------------------------------ - Border Width -------------------------------------*/ -.slick-active .g-brd-3--before--active::before { - border-width: 3px !important; -} - -/*------------------------------------ - Box shadows -------------------------------------*/ -.g-parent.slick-current .u-shadow-v24--active { - -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); - box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); -} - -/*------------------------------------ - Dot line v1 -------------------------------------*/ -.slick-active .u-dot-line-v1__inner::before, .slick-active -.u-dot-line-v1-2__inner::before { - width: 100%; - height: 100%; -} - -/*------------------------------------ - Dot line v2 -------------------------------------*/ -.slick-active .u-dot-line-v2__inner::before, .slick-active -.u-dot-line-v2-2__inner::before { - width: 100%; - height: 100%; -} - -.u-has-sidebar-navigation .custombox-content, -.u-has-sidebar-navigation .custombox-overlay { - left: 0; - right: 0; -} - -/*------------------------------------ - JS -------------------------------------*/ -.js-carousel_single-item { - max-width: 100%; - position: relative; -} - -.js-next, -.js-prev, -.js-thumb { - cursor: pointer; -} - -.js-next, -.js-prev { - z-index: 10; -} - -.js-thumb img { - display: inline-block; -} - -.js-carousel_single-item-thumbs5__thumbs .js-thumb { - opacity: .3; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.js-carousel_single-item-thumbs5__thumbs .slick-center { - opacity: 1; -} - -.js-carousel_single-item-thumbs5--v2__thumbs .js-thumb { - opacity: .4; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.js-carousel_single-item-thumbs5--v2__thumbs .slick-center { - opacity: 1; -} - -.js-carousel_single-item-thumbs5--v3__thumbs .js-thumb { - opacity: .4; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.js-carousel_single-item-thumbs5--v3__thumbs .slick-center { - opacity: 1; -} - -.u-pagi-control--v2 { - display: block; - width: 12px; - height: 12px; - margin: 0 3px; - border-radius: 50%; - background-color: #ddd; - opacity: .3; - cursor: pointer; -} - -.slick-active .u-pagi-control-red { - background-color: #f00; -} - -.slick-active .u-pagi-control-grey { - opacity: 1; -} - -.u-carousel--v3 .js-prev, -.u-carousel--v3 .js-next { - top: 50%; - opacity: 0; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel--v3 .g-height-40.js-prev, .u-carousel--v3 .g-height-40.js-next { - margin-top: -20px; - left: 50%; -} - -.u-carousel--v3 .g-height-40.js-prev { - margin-left: -99px; -} - -.u-carousel--v3 .g-height-40.js-next { - margin-left: 65px; -} - -.u-carousel--v3:hover .js-prev, -.u-carousel--v3:hover .js-next { - opacity: 1; -} - -.u-carousel--v4 { - margin-left: -15px; - margin-right: -15px; -} - -.u-carousel--v4 .js-prev, -.u-carousel--v4 .js-next { - top: 50%; - opacity: 0; - -webkit-transition-property: opacity; - -o-transition-property: opacity; - transition-property: opacity; - -webkit-transition-duration: .4s; - -o-transition-duration: .4s; - transition-duration: .4s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.u-carousel--v4 .g-height-40.js-prev, .u-carousel--v4 .g-height-40.js-next { - margin-top: -20px; - left: 50%; -} - -.u-carousel--v4 .g-height-40.js-prev { - margin-left: -160px; -} - -.u-carousel--v4 .g-height-40.js-next { - margin-left: 125px; -} - -.u-carousel--v4:hover .js-prev, -.u-carousel--v4:hover .js-next { - opacity: 1; -} - -/*-------------------------------------------------- - Filter v1 -----------------------------------------------------*/ -.u-filter-v1 > li:not(:last-child)::after { - content: "|"; - font-size: 0.71429rem; - margin: 0 7px 0 14px; - position: relative; - top: -2px; - line-height: inherit; - display: inline-block; - vertical-align: middle; - color: #ddd; -} - -.u-filter-v1 > li:hover, -.u-filter-v1 [class*="active"] { - color: #e74c3c; -} - -/*-------------------------------------------------- - Carousel v10 -----------------------------------------------------*/ -.u-carousel-v10 .slick-dots { - position: absolute; - bottom: 30px; - left: 0; - width: auto; - visibility: hidden; - margin: 0; - padding: 0; -} - -.u-carousel-v10 .slick-dots li { - display: block; - margin-bottom: 5px; -} - -.u-carousel-v10 .slick-dots button { - width: 15px; - height: 15px; - border-radius: 50%; - color: transparent; - background: #ccc; - border: none; - outline: none; -} - -.u-carousel-v10 .slick-dots .slick-active button { - background: #e74c3c; -} - -.u-carousel-v10-nav { - margin-top: -135px; -} - -.u-carousel-v10-nav .js-slide { - position: relative; - cursor: pointer; - height: 100%; -} - -.u-carousel-v10-nav .js-slide:after { - content: ""; - display: block; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: rgba(0, 0, 0, 0.2); - -webkit-transition: opacity 0.3s ease-in-out; - -o-transition: opacity 0.3s ease-in-out; - transition: opacity 0.3s ease-in-out; -} - -.u-carousel-v10-nav .js-slide.slick-current::after { - opacity: 0; -} - -@media only screen and (max-width: 991px) { - .u-carousel-v10 .slick-dots { - visibility: visible; - } - .u-carousel-v10-nav { - display: none; - } -} - -/*------------------------------------ - Internet Explorer (IE) -------------------------------------*/ -/* Text Gradients */ -.IE .g-color-cyan-gradient-opacity-v1, -.IE .g-color-blue-gradient-opacity-v1 { - background: transparent; - -webkit-text-fill-color: initial; -} - -.IE .g-color-cyan-gradient-opacity-v1 { - color: #00bed6; -} - -.IE .g-color-blue-gradient-opacity-v1 { - color: #8654da; -} - -.IE .form-control:-ms-input-placeholder { - opacity: 1; -} - -/*------------------------------------ - Demo of Icons -------------------------------------*/ -.u-icons-demo__item { - border: solid 1px #eee; - margin: 0 -1px -1px 0; - padding: 20px 15px; -} - -.u-icons-demo-item__value, .u-icons-demo-item__value:focus { - width: 100%; - text-align: center; - border: none; - outline: none; -} - -/* Add here all your css styles (customizations) */ -/*------------------------------------ - Globals -------------------------------------*/ -/* Text */ -.g-word-break { - word-wrap: break-word; -} - -/* Puller */ -.g-pull-50x-up { - -webkit-transform: translateY(-51%); - -ms-transform: translateY(-51%); - transform: translateY(-51%); -} - -.g-pull-50x-bottom { - -webkit-transform: translateY(51%); - -ms-transform: translateY(51%); - transform: translateY(51%); -} - -.g-pull-50x-left { - -webkit-transform: translateX(-51%); - -ms-transform: translateX(-51%); - transform: translateX(-51%); -} - -.g-pull-50x-right { - -webkit-transform: translateX(51%); - -ms-transform: translateX(51%); - transform: translateX(51%); -} - -/* Link overlay */ -/*------------------------------------ - Background Attachment -------------------------------------*/ -.g-bg-attachment-fixed { - background-attachment: fixed; -} - -/*------------------------------------ - Background Gradient Colors -------------------------------------*/ -/* Simple Linear Gradients -------------------------------------*/ -/* Gray Light v1 */ -.g-bg-gray-light-gradient-v1--after::after { - background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0.5)), to(#f7f7f7)); - background: -webkit-linear-gradient(top, rgba(247, 247, 247, 0.5), #f7f7f7); - background: -o-linear-gradient(top, rgba(247, 247, 247, 0.5), #f7f7f7); - background: linear-gradient(to bottom, rgba(247, 247, 247, 0.5), #f7f7f7); -} - -/* White v1 */ -.g-bg-white-gradient-v1--after::after { - background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.9))); - background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9)); - background: -o-linear-gradient(top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9)); - background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9)); -} - -/* Linear Gradients -------------------------------------*/ -/* Gray Gradient */ -.g-bg-gray-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dbdbdb)); - background-image: -webkit-linear-gradient(top, #fff, #dbdbdb); - background-image: -o-linear-gradient(top, #fff, #dbdbdb); - background-image: linear-gradient(180deg, #fff, #dbdbdb); -} - -/* Blue Pink Gradient */ -.g-bg-bluepink-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(40deg, #2b7cb6, #f62d51); - background-image: -o-linear-gradient(40deg, #2b7cb6, #f62d51); - background-image: linear-gradient(50deg, #2b7cb6, #f62d51); -} - -/* Blue Gradient */ -.g-bg-blue-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-gradient(linear, left bottom, left top, from(#73bec7), to(#4e66b0)); - background-image: -webkit-linear-gradient(bottom, #73bec7, #4e66b0); - background-image: -o-linear-gradient(bottom, #73bec7, #4e66b0); - background-image: linear-gradient(0deg, #73bec7, #4e66b0); -} - -.g-bg-blue-lineargradient-v2 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #429edc, #00629e); - background-image: -o-linear-gradient(225deg, #429edc, #00629e); - background-image: linear-gradient(225deg, #429edc, #00629e); -} - -.g-bg-blue-lineargradient-v3 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #3266a2, #98cfbf); - background-image: -o-linear-gradient(225deg, #3266a2, #98cfbf); - background-image: linear-gradient(225deg, #3266a2, #98cfbf); -} - -.g-bg-blue-lineargradient-v4 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #5b85df, #3ec2e3); - background-image: -o-linear-gradient(225deg, #5b85df, #3ec2e3); - background-image: linear-gradient(225deg, #5b85df, #3ec2e3); -} - -.g-bg-blue-lineargradient-v5 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #0050c2, #5180fa); - background-image: -o-linear-gradient(225deg, #0050c2, #5180fa); - background-image: linear-gradient(225deg, #0050c2, #5180fa); -} - -/* Orange Gradient */ -.g-bg-orange-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #be1715, #ed6d0f); - background-image: -o-linear-gradient(225deg, #be1715, #ed6d0f); - background-image: linear-gradient(225deg, #be1715, #ed6d0f); -} - -.g-bg-orange-lineargradient-v2 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #f5cd21, #c22821); - background-image: -o-linear-gradient(225deg, #f5cd21, #c22821); - background-image: linear-gradient(225deg, #f5cd21, #c22821); -} - -/* Yellow Gradient */ -.g-bg-yellow-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #f59b00, #f5d400); - background-image: -o-linear-gradient(225deg, #f59b00, #f5d400); - background-image: linear-gradient(225deg, #f59b00, #f5d400); -} - -/* Dark Purple Gradient */ -.g-bg-darkpurple-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #0b011d, #330c3c); - background-image: -o-linear-gradient(225deg, #0b011d, #330c3c); - background-image: linear-gradient(225deg, #0b011d, #330c3c); -} - -/* Blue Gray Gradient */ -.g-bg-bluegray-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #1d253c, #3e4757); - background-image: -o-linear-gradient(225deg, #1d253c, #3e4757); - background-image: linear-gradient(225deg, #1d253c, #3e4757); -} - -/* Pink Gradient */ -.g-bg-pink-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #b6003b, #ed1261); - background-image: -o-linear-gradient(225deg, #b6003b, #ed1261); - background-image: linear-gradient(225deg, #b6003b, #ed1261); -} - -/* Pink-v2 Gradient */ -.g-bg-pink-lineargradient-v2 { - background-image: -webkit-gradient(linear, left bottom, right top, color-stop(10%, #fc7279), color-stop(65%, #ff7b9c), color-stop(125%, #ffc019)); - background-image: -webkit-linear-gradient(left bottom, #fc7279 10%, #ff7b9c 65%, #ffc019 125%); - background-image: -o-linear-gradient(left bottom, #fc7279 10%, #ff7b9c 65%, #ffc019 125%); - background-image: linear-gradient(to right top, #fc7279 10%, #ff7b9c 65%, #ffc019 125%); - background-repeat: no-repeat; -} - -/* Red Gradient */ -.g-bg-red-lineargradient { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(225deg, #d70417, #9f041b); - background-image: -o-linear-gradient(225deg, #d70417, #9f041b); - background-image: linear-gradient(225deg, #d70417, #9f041b); -} - -/* Black Gradient */ -.g-bg-black-gradient-opacity-v1, -.g-bg-black-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.9))); - background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%); - background-image: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.9) 100%); - background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%); - background-repeat: repeat-x; -} - -/* Green Gradient */ -.g-bg-green-gradient-opacity-v1, -.g-bg-green-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 152, 220, 0.5)), to(rgba(114, 192, 44, 0.8))); - background-image: -webkit-linear-gradient(top, rgba(51, 152, 220, 0.5) 0%, rgba(114, 192, 44, 0.8) 100%); - background-image: -o-linear-gradient(top, rgba(51, 152, 220, 0.5) 0%, rgba(114, 192, 44, 0.8) 100%); - background-image: linear-gradient(to bottom, rgba(51, 152, 220, 0.5) 0%, rgba(114, 192, 44, 0.8) 100%); - background-repeat: repeat-x; -} - -/* Purple Gradient */ -.g-bg-purple-gradient-opacity-v1, -.g-bg-purple-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(114, 192, 44, 0.5)), to(rgba(154, 105, 203, 0.8))); - background-image: -webkit-linear-gradient(top, rgba(114, 192, 44, 0.5) 0%, rgba(154, 105, 203, 0.8) 100%); - background-image: -o-linear-gradient(top, rgba(114, 192, 44, 0.5) 0%, rgba(154, 105, 203, 0.8) 100%); - background-image: linear-gradient(to bottom, rgba(114, 192, 44, 0.5) 0%, rgba(154, 105, 203, 0.8) 100%); - background-repeat: repeat-x; -} - -/* Pink Light Gradient */ -.g-bg-pink-gradient-opacity-v1, -.g-bg-pink-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(114, 192, 44, 0.5)), to(rgba(232, 28, 98, 0.8))); - background-image: -webkit-linear-gradient(top, rgba(114, 192, 44, 0.5) 0%, rgba(232, 28, 98, 0.8) 100%); - background-image: -o-linear-gradient(top, rgba(114, 192, 44, 0.5) 0%, rgba(232, 28, 98, 0.8) 100%); - background-image: linear-gradient(to bottom, rgba(114, 192, 44, 0.5) 0%, rgba(232, 28, 98, 0.8) 100%); - background-repeat: repeat-x; -} - -/* Cyan Gradient */ -.g-bg-cyan-gradient-opacity-v1, -.g-bg-cyan-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 153, 0.5)), to(rgba(0, 190, 214, 0.6))); - background-image: -webkit-linear-gradient(top, rgba(0, 0, 153, 0.5) 0%, rgba(0, 190, 214, 0.6) 100%); - background-image: -o-linear-gradient(top, rgba(0, 0, 153, 0.5) 0%, rgba(0, 190, 214, 0.6) 100%); - background-image: linear-gradient(to bottom, rgba(0, 0, 153, 0.5) 0%, rgba(0, 190, 214, 0.6) 100%); - background-repeat: repeat-x; -} - -/* Purple Gradient */ -.g-bg-purple-gradient-opacity-v1, -.g-bg-purple-gradient-opacity-v1--after::after { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(300deg, #b7ebf6, rgba(228, 97, 210, 0.7)); - background-image: -o-linear-gradient(300deg, #b7ebf6, rgba(228, 97, 210, 0.7)); - background-image: linear-gradient(150deg, #b7ebf6, rgba(228, 97, 210, 0.7)); -} - -/* Primary Gradient */ -.g-bg-primary-gradient-opacity-v1, -.g-bg-primary-gradient-opacity-v1--after::after { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(300deg, #72c02c, rgba(51, 152, 220, 0.7)); - background-image: -o-linear-gradient(300deg, #72c02c, rgba(51, 152, 220, 0.7)); - background-image: linear-gradient(150deg, #72c02c, rgba(51, 152, 220, 0.7)); -} - -/* Gray Gradient */ -.g-bg-gray-gradient-opacity-v1, -.g-bg-gray-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left bottom, left top, from(#f7f7f7), to(white)); - background-image: -webkit-linear-gradient(bottom, #f7f7f7 0%, white 100%); - background-image: -o-linear-gradient(bottom, #f7f7f7 0%, white 100%); - background-image: linear-gradient(to top, #f7f7f7 0%, white 100%); - background-repeat: repeat-x; -} - -/* White Gradient */ -.g-bg-white-gradient-opacity-v1, -.g-bg-white-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent)); - background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%); - background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%); - background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%); - background-repeat: repeat-x; -} - -/* White Gradient */ -.g-bg-white-gradient-opacity-v2, -.g-bg-white-gradient-opacity-v2--after::after { - background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0.1))); - background-image: -webkit-linear-gradient(bottom, black 0%, rgba(0, 0, 0, 0.1) 100%); - background-image: -o-linear-gradient(bottom, black 0%, rgba(0, 0, 0, 0.1) 100%); - background-image: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.1) 100%); - background-repeat: repeat-x; -} - -/* White Gradient */ -.g-bg-white-gradient-opacity-v3, -.g-bg-white-gradient-opacity-v3--after::after { - background-image: -webkit-gradient(linear, right top, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.3))); - background-image: -webkit-linear-gradient(right, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-image: -o-linear-gradient(right, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-image: linear-gradient(to left, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-repeat: repeat-x; -} - -/* White Gradient */ -.g-bg-white-gradient-opacity-v4, -.g-bg-white-gradient-opacity-v4--after::after { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, white), to(rgba(255, 255, 255, 0.3))); - background-image: -webkit-linear-gradient(left, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-image: -o-linear-gradient(left, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-image: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0.3) 100%); - background-repeat: repeat-x; -} - -/* White Gradient */ -.g-bg-white-gradient-opacity-v5, -.g-bg-white-gradient-opacity-v5--after::after { - background-image: -webkit-gradient(linear, left top, right top, color-stop(47%, white), color-stop(75%, rgba(255, 255, 255, 0))); - background-image: -webkit-linear-gradient(left, white 47%, rgba(255, 255, 255, 0) 75%); - background-image: -o-linear-gradient(left, white 47%, rgba(255, 255, 255, 0) 75%); - background-image: linear-gradient(to right, white 47%, rgba(255, 255, 255, 0) 75%); - background-repeat: repeat-x; -} - -/* Bluegray Gradient */ -.g-bg-bluegray-gradient-opacity-v1, -.g-bg-bluegray-gradient-opacity-v1--after::after { - background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(88, 95, 105, 0.2)), to(transparent)); - background-image: -webkit-linear-gradient(bottom, rgba(88, 95, 105, 0.2) 0%, transparent 100%); - background-image: -o-linear-gradient(bottom, rgba(88, 95, 105, 0.2) 0%, transparent 100%); - background-image: linear-gradient(to top, rgba(88, 95, 105, 0.2) 0%, transparent 100%); - background-repeat: repeat-x; -} - -/* Bluegray Gradient */ -.g-bg-bluegray-gradient-opacity-v2, -.g-bg-bluegray-gradient-opacity-v2--after::after { - background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(88, 95, 105, 0.3)), to(transparent)); - background-image: -webkit-linear-gradient(bottom, rgba(88, 95, 105, 0.3) 0%, transparent 100%); - background-image: -o-linear-gradient(bottom, rgba(88, 95, 105, 0.3) 0%, transparent 100%); - background-image: linear-gradient(to top, rgba(88, 95, 105, 0.3) 0%, transparent 100%); - background-repeat: repeat-x; -} - -/* Bluegray Gradient */ -.g-bg-bluegray-gradient-opacity-v3, -.g-bg-bluegray-gradient-opacity-v3--after::after { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(300deg, rgba(107, 125, 224, 0.85), #2a2734); - background-image: -o-linear-gradient(300deg, rgba(107, 125, 224, 0.85), #2a2734); - background-image: linear-gradient(150deg, rgba(107, 125, 224, 0.85), #2a2734); -} - -/* Radial Gradients (Ellipse) -------------------------------------*/ -/* Lightblue Gradient */ -.g-bg-lightblue-radialgradient-ellipse { - background-image: -webkit-radial-gradient(ellipse farthest-corner at 50% 50%, #fff 22%, #d6e2ee); - background-image: -o-radial-gradient(ellipse farthest-corner at 50% 50%, #fff 22%, #d6e2ee); - background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #fff 22%, #d6e2ee); - background-repeat: no-repeat; -} - -/* Gray Gradient */ -.g-bg-gray-radialgradient-ellipse { - background-image: -webkit-radial-gradient(ellipse farthest-corner at 50% 50%, #dbdbdb 22%, #bbb); - background-image: -o-radial-gradient(ellipse farthest-corner at 50% 50%, #dbdbdb 22%, #bbb); - background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #dbdbdb 22%, #bbb); - background-repeat: no-repeat; -} - -/* Gray Gradient */ -.g-bg-graylight-radialgradient-ellipse { - background-image: -webkit-radial-gradient(ellipse farthest-corner at 50% 50%, #fff 25%, #eee); - background-image: -o-radial-gradient(ellipse farthest-corner at 50% 50%, #fff 25%, #eee); - background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #fff 25%, #eee); - background-repeat: no-repeat; -} - -/* Radial Gradients (Circle) -------------------------------------*/ -/* Lightblue Gradient */ -.g-bg-lightblue-radialgradient-circle { - background-image: -webkit-radial-gradient(circle farthest-corner at 75% 95%, #fff, #d6e2ee); - background-image: -o-radial-gradient(circle farthest-corner at 75% 95%, #fff, #d6e2ee); - background-image: radial-gradient(circle farthest-corner at 75% 95%, #fff, #d6e2ee); - background-repeat: no-repeat; -} - -/* Blue Gradient */ -.g-bg-blue-radialgradient-circle { - background-image: -webkit-radial-gradient(circle farthest-side at 50% 50%, #2294d7, #275296); - background-image: -o-radial-gradient(circle farthest-side at 50% 50%, #2294d7, #275296); - background-image: radial-gradient(circle farthest-side at 50% 50%, #2294d7, #275296); - background-repeat: no-repeat; -} - -/* Dark Gray Gradient */ -.g-bg-darkgray-radialgradient-circle { - background-image: -webkit-radial-gradient(circle farthest-side at 110% 0, #596070, #31353e); - background-image: -o-radial-gradient(circle farthest-side at 110% 0, #596070, #31353e); - background-image: radial-gradient(circle farthest-side at 110% 0, #596070, #31353e); - background-repeat: no-repeat; -} - -.g-bg-blue-radialgradient-circle-endless { - background-image: -webkit-repeating-radial-gradient(50% 50%, circle, #b9ecfe, #b9ecfe 10px, #82ddff 10px, #82ddff 20px); - background-image: -o-repeating-radial-gradient(50% 50%, circle, #b9ecfe, #b9ecfe 10px, #82ddff 10px, #82ddff 20px); - background-image: repeating-radial-gradient(circle at 50% 50%, #b9ecfe, #b9ecfe 10px, #82ddff 10px, #82ddff 20px); -} - -.g-bg-gray-verticalstripes-endless { - background: -webkit-repeating-linear-gradient(top, #fff, #fff 5px, #eee 5px, #eee 10px); - background: -o-repeating-linear-gradient(top, #fff, #fff 5px, #eee 5px, #eee 10px); - background: repeating-linear-gradient(to bottom, #fff, #fff 5px, #eee 5px, #eee 10px); -} - -/*------------------------------------ - Background Colors -------------------------------------*/ -/* Basic Colors -------------------------------------*/ -/* Main Colors */ -.g-bg-main { - background-color: #fff !important; -} - -/* Main Secondary */ -.g-bg-secondary { - background-color: #fafafa !important; -} - -/* Primary Colors */ -.g-bg-primary { - background-color: #e74c3c !important; -} - -.g-bg-primary--hover:hover { - background-color: #e74c3c !important; -} - -.u-block-hover:hover .g-bg-primary--hover { - background-color: #e74c3c; -} - -.g-parent:hover .g-bg-primary--parent-hover { - background-color: #e74c3c !important; -} - -.g-bg-primary--active.active, -.active .g-bg-primary--active { - background-color: #e74c3c !important; -} - -.g-parent.active .g-bg-primary--parent-active { - background-color: #e74c3c !important; -} - -.g-bg-primary--before::before, .g-bg-primary--after::after { - background-color: #e74c3c !important; -} - -.g-bg-primary-dark-v1 { - background-color: #e64433 !important; -} - -.g-bg-primary-dark-v2 { - background-color: #e43725 !important; -} - -.g-bg-primary-dark-v3 { - background-color: #d62c1a !important; -} - -.g-bg-primary-opacity-0_1 { - background-color: rgba(231, 76, 60, 0.1) !important; -} - -.g-bg-primary-opacity-0_2 { - background-color: rgba(231, 76, 60, 0.2) !important; -} - -.g-bg-primary-opacity-0_2--hover:hover { - background-color: rgba(231, 76, 60, 0.2) !important; -} - -.g-bg-primary-opacity-0_2--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.2) !important; -} - -.active .g-bg-primary-opacity-0_2--active { - background-color: rgba(231, 76, 60, 0.2) !important; -} - -.g-bg-primary-opacity-0_2--before::before, .g-bg-primary-opacity-0_2--after::after { - background-color: rgba(231, 76, 60, 0.2) !important; -} - -.g-bg-primary-opacity-0_3 { - background-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-bg-primary-opacity-0_3--hover:hover { - background-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-bg-primary-opacity-0_3--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.3) !important; -} - -.active .g-bg-primary-opacity-0_3--active { - background-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-bg-primary-opacity-0_3--before::before, .g-bg-primary-opacity-0_3--after::after { - background-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-bg-primary-opacity-0_4 { - background-color: rgba(231, 76, 60, 0.4) !important; -} - -.g-bg-primary-opacity-0_4--hover:hover { - background-color: rgba(231, 76, 60, 0.4) !important; -} - -.g-bg-primary-opacity-0_4--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.4) !important; -} - -.g-bg-primary-opacity-0_4--after::after { - background-color: rgba(231, 76, 60, 0.4) !important; -} - -.g-bg-primary-opacity-0_6 { - background-color: rgba(231, 76, 60, 0.6) !important; -} - -.g-bg-primary-opacity-0_6--hover:hover { - background-color: rgba(231, 76, 60, 0.6) !important; -} - -.g-bg-primary-opacity-0_6--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.6) !important; -} - -.g-bg-primary-opacity-0_6--after::after { - background-color: rgba(231, 76, 60, 0.6) !important; -} - -.g-bg-primary-opacity-0_8 { - background-color: rgba(231, 76, 60, 0.8) !important; -} - -.g-bg-primary-opacity-0_8--hover:hover { - background-color: rgba(231, 76, 60, 0.8) !important; -} - -.g-bg-primary-opacity-0_8--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.8) !important; -} - -.g-bg-primary-opacity-0_8--before::after, .g-bg-primary-opacity-0_8--after::after { - background-color: rgba(49, 46, 45, 0.8) !important; - -} - -.g-bg-primary-opacity-0_8--before--hover:hover::after, .g-bg-primary-opacity-0_8--after--hover:hover::after { - background-color: rgba(231, 76, 60, 0.8) !important; -} - -.g-bg-primary-opacity-0_9 { - background-color: rgba(231, 76, 60, 0.9) !important; -} - -.g-bg-primary-opacity-0_9--hover:hover { - background-color: rgba(231, 76, 60, 0.9) !important; -} - -.g-bg-primary-opacity-0_9--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.9) !important; -} - -.g-bg-primary-opacity-0_9--before::after, .g-bg-primary-opacity-0_9--after::after { - background-color: rgba(231, 76, 60, 0.9) !important; -} - -.g-bg-primary-opacity-0_9--before--hover:hover::after, .g-bg-primary-opacity-0_9--after--hover:hover::after { - background-color: rgba(231, 76, 60, 0.9) !important; -} - -/* Black Colors */ -.g-bg-black { - background-color: #000 !important; -} - -.g-bg-black--hover:hover { - background-color: #000 !important; -} - -.g-bg-black--after::after { - background-color: #000 !important; -} - -.g-bg-black-opacity-0_1 { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -.g-bg-black-opacity-0_1--after::after { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -.g-bg-black-opacity-0_2 { - background-color: rgba(0, 0, 0, 0.2) !important; -} - -.g-bg-black-opacity-0_2--after::after { - background-color: rgba(0, 0, 0, 0.2) !important; -} - -.g-bg-black-opacity-0_3 { - background-color: rgba(0, 0, 0, 0.3) !important; -} - -.g-bg-black-opacity-0_3--hover:hover { - background-color: rgba(0, 0, 0, 0.3) !important; -} - -.g-bg-black-opacity-0_3--after::after, .g-bg-black-opacity-0_3--before::before { - background-color: rgba(0, 0, 0, 0.3) !important; -} - -.g-bg-black-opacity-0_3--hover--after:hover::after { - background-color: rgba(0, 0, 0, 0.3) !important; -} - -.g-bg-black-opacity-0_4 { - background-color: rgba(0, 0, 0, 0.4) !important; -} - -.g-bg-black-opacity-0_4--after::after { - background-color: rgba(0, 0, 0, 0.4) !important; -} - -.g-bg-black-opacity-0_5 { - background-color: rgba(0, 0, 0, 0.5) !important; -} - -.g-bg-black-opacity-0_5--hover:hover { - background-color: rgba(0, 0, 0, 0.5) !important; -} - -.g-bg-black-opacity-0_5--after::after { - background-color: rgba(0, 0, 0, 0.5) !important; -} - -.g-bg-black-opacity-0_6 { - background-color: rgba(0, 0, 0, 0.6) !important; -} - -.g-bg-black-opacity-0_6--hover:hover { - background-color: rgba(0, 0, 0, 0.7) !important; -} - -.g-bg-black-opacity-0_6--after::after { - background-color: rgba(0, 0, 0, 0.6) !important; -} - -.g-bg-black-opacity-0_7 { - background-color: rgba(0, 0, 0, 0.7) !important; -} - -.g-bg-black-opacity-0_7--hover:hover { - background-color: rgba(0, 0, 0, 0.7) !important; -} - -.g-bg-black-opacity-0_7--after::after { - background-color: rgba(0, 0, 0, 0.7) !important; -} - -.g-bg-black-opacity-0_8 { - background-color: rgba(0, 0, 0, 0.8) !important; -} - -.g-bg-black-opacity-0_8--after::after { - background-color: rgba(0, 0, 0, 0.8) !important; -} - -.g-bg-black-opacity-0_8--hover:hover { - background-color: rgba(0, 0, 0, 0.8) !important; -} - -.g-bg-black-opacity-0_9 { - background-color: rgba(0, 0, 0, 0.9) !important; -} - -.g-bg-black-opacity-0_9--after::after { - background-color: rgba(0, 0, 0, 0.9) !important; -} - -.g-bg-black-opacity-0_9--hover:hover { - background-color: rgba(0, 0, 0, 0.9) !important; -} - -.u-block-hover:hover .g-bg-black--hover { - background-color: #000 !important; -} - -/* White Colors */ -.g-bg-white { - background-color: #fff !important; -} - -.g-bg-white--before::before, .g-bg-white--after::after { - background-color: #fff !important; -} - -.g-bg-white--hover:hover, .g-bg-white--active.active { - background-color: #fff !important; -} - -.g-parent:hover .g-bg-white--parent-hover { - background-color: #fff !important; -} - -.g-bg-white--before::before, .g-bg-white--after::after { - background-color: #fff !important; -} - -.g-parent:hover .g-bg-white-opacity-0--after--parent-hover::after { - background-color: rgba(255, 255, 255, 0) !important; -} - -.g-bg-white-opacity-0_05 { - background-color: rgba(255, 255, 255, 0.05) !important; -} - -.g-bg-white-opacity-0_1 { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-bg-white-opacity-0_1--after::after { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-bg-white-opacity-0_2 { - background-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-bg-white-opacity-0_2--hover:hover { - background-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-bg-white-opacity-0_3 { - background-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-bg-white-opacity-0_3--hover:hover { - background-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-bg-white-opacity-0_3--after::after { - background-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-bg-white-opacity-0_4 { - background-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-bg-white-opacity-0_4--hover:hover { - background-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-bg-white-opacity-0_5 { - background-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-bg-white-opacity-0_5--after::after { - background-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-bg-white-opacity-0_7 { - background-color: rgba(255, 255, 255, 0.7) !important; -} - -.g-bg-white-opacity-0_7--hover:hover { - background-color: rgba(255, 255, 255, 0.7) !important; -} - -.g-bg-white-opacity-0_7--after::after { - background-color: rgba(255, 255, 255, 0.7) !important; -} - -.g-bg-white-opacity-0_8 { - background-color: rgba(255, 255, 255, 0.8) !important; -} - -.g-bg-white-opacity-0_8--hover:hover { - background-color: rgba(255, 255, 255, 0.8) !important; -} - -.g-bg-white-opacity-0_8--after::after { - background-color: rgba(255, 255, 255, 0.8) !important; -} - -.g-bg-white-opacity-0_8--hover--after:hover::after { - background-color: rgba(231, 76, 60, 0.8) !important; -} - -.g-bg-white-opacity-0_9 { - background-color: rgba(255, 255, 255, 0.9) !important; -} - -.g-bg-white-opacity-0_9--hover:hover { - background-color: rgba(255, 255, 255, 0.9) !important; -} - -.g-bg-white-opacity-0_9--after::after { - background-color: rgba(255, 255, 255, 0.9) !important; -} - -/* Gray Colors */ -.g-bg-gray-dark-v1 { - background-color: #111 !important; -} - -.g-bg-gray-dark-v1--hover:hover { - background-color: #111 !important; -} - -.g-bg-gray-dark-v2 { - background-color: #333 !important; -} - -.g-bg-gray-dark-v2--hover:hover { - background-color: #333 !important; -} - -.g-bg-gray-dark-v3 { - background-color: #555 !important; -} - -.g-bg-gray-dark-v3--hover:hover { - background-color: #555 !important; -} - -.g-bg-gray-dark-v4 { - background-color: #777 !important; -} - -.g-bg-gray-dark-v4--hover:hover { - background-color: #777 !important; -} - -.g-bg-gray-dark-v5 { - background-color: #999 !important; -} - -.g-bg-gray-dark-v5--hover:hover { - background-color: #999 !important; -} - -.g-bg-gray-light-v1 { - background-color: #bbb !important; -} - -.g-bg-gray-light-v1--hover:hover { - background-color: #bbb !important; -} - -.g-bg-gray-light-v2 { - background-color: #ccc !important; -} - -.g-bg-gray-light-v2--hover:hover { - background-color: #ccc !important; -} - -.g-bg-gray-light-v3 { - background-color: #ddd !important; -} - -.g-bg-gray-light-v3--hover:hover { - background-color: #ddd !important; -} - -.g-bg-gray-light-v4 { - background-color: #eee !important; -} - -.g-bg-gray-light-v4--hover:hover { - background-color: #eee !important; -} - -.g-bg-gray-light-v5 { - background-color: #f7f7f7 !important; -} - -.g-bg-gray-light-v5--hover:hover { - background-color: #f7f7f7 !important; -} - -.g-bg-gray-light-v5--active.active, -.active .g-bg-gray-light-v5--active { - background-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-bg-transparent { - background-color: transparent !important; -} - -.g-bg-transparent--hover:hover { - background-color: transparent !important; -} - -.g-bg-transparent--hover--after:hover::after { - background-color: transparent !important; -} - -.g-parent:hover .g-bg-transparent--parent-hover { - background-color: transparent !important; -} - -/* Complementary Colors -------------------------------------*/ -/* Beige Colors */ -.g-bg-beige { - background-color: #e5e1de !important; -} - -/* Color Green */ -.g-bg-green { - background-color: #72c02c !important; -} - -.g-bg-green-opacity-0_1 { - background-color: rgba(114, 192, 44, 0.1) !important; -} - -.g-bg-green--hover:hover { - background-color: #72c02c !important; -} - -/* Color Blue */ -.g-bg-blue { - background-color: #3398dc !important; -} - -.g-bg-blue-opacity-0_1 { - background-color: rgba(51, 152, 220, 0.1) !important; -} - -.g-bg-blue-opacity-0_7 { - background-color: rgba(51, 152, 220, 0.7) !important; -} - -.g-bg-blue-opacity-0_9 { - background-color: rgba(51, 152, 220, 0.9) !important; -} - -.g-bg-blue--hover:hover { - background-color: #3398dc !important; -} - -/* Color Light Blue */ -.g-bg-lightblue { - background-color: #edf2f8 !important; -} - -.g-bg-lightblue-opacity-0_1 { - background-color: rgba(237, 242, 248, 0.1) !important; -} - -.g-bg-lightblue-v1 { - background-color: #d6e2ee !important; -} - -.g-bg-lightblue-v1-opacity-0_1 { - background-color: rgba(214, 226, 238, 0.1) !important; -} - -/* Color Dark Blue */ -.g-bg-darkblue { - background-color: #009 !important; -} - -.g-bg-darkblue-opacity-0_1 { - background-color: rgba(0, 0, 153, 0.1) !important; -} - -/* Color Indigo */ -.g-bg-indigo { - background-color: #4263a3 !important; -} - -.g-bg-indigo-opacity-0_1 { - background-color: rgba(66, 99, 163, 0.1) !important; -} - -/* Color Red */ -.g-bg-red { - background-color: #f00 !important; -} - -.g-bg-red-opacity-0_1 { - background-color: rgba(255, 0, 0, 0.1) !important; -} - -.g-bg-red-opacity-0_2 { - background-color: rgba(255, 0, 0, 0.2) !important; -} - -.g-bg-red-opacity-0_5 { - background-color: rgba(255, 0, 0, 0.5) !important; -} - -.g-bg-red-opacity-0_8 { - background-color: rgba(255, 0, 0, 0.8) !important; -} - -.g-bg-red--hover:hover { - background-color: #f00 !important; -} - -/* Color Light Red */ -.g-bg-lightred { - background-color: #e64b3b !important; -} - -.g-bg-lightred-opacity-0_1 { - background-color: rgba(230, 75, 59, 0.1) !important; -} - -.g-bg-lightred--hover:hover { - background-color: #e64b3b !important; -} - -/* Color Dark Red */ -.g-bg-darkred { - background-color: #a10f2b !important; -} - -.g-bg-darkred-opacity-0_1 { - background-color: rgba(161, 15, 43, 0.1) !important; -} - -/* Color Purple */ -.g-bg-purple { - background-color: #9a69cb !important; -} - -.g-bg-purple-opacity-0_1 { - background-color: rgba(154, 105, 203, 0.1) !important; -} - -.g-bg-purple-opacity-0_7 { - background-color: rgba(154, 105, 203, 0.7) !important; -} - -.g-bg-purple-opacity-0_9 { - background-color: rgba(154, 105, 203, 0.9) !important; -} - -.g-bg-purple-opacity-0_9--after::after { - background-color: rgba(154, 105, 203, 0.9) !important; -} - -.g-bg-purple--hover:hover { - background-color: #9a69cb !important; -} - -/* Color Dark Purple */ -.g-bg-darkpurple { - background-color: #6639b6 !important; -} - -.g-bg-darkpurple-opacity-0_1 { - background-color: rgba(102, 57, 182, 0.1) !important; -} - -/* Color Pink */ -.g-bg-pink { - background-color: #e81c62 !important; -} - -.g-bg-pink-opacity-0_1 { - background-color: rgba(232, 28, 98, 0.1) !important; -} - -.g-bg-pink-opacity-0_9 { - background-color: rgba(232, 28, 98, 0.9) !important; -} - -.g-bg-pink--hover:hover { - background-color: #e81c62 !important; -} - -.g-bg-pink--before::after, .g-bg-pink--after::after { - background-color: #e81c62 !important; -} - -.g-bg-pink--before--hover:hover::after, .g-bg-pink--after--hover:hover::after { - background-color: #e81c62 !important; -} - -/* Color Orange */ -.g-bg-orange { - background-color: #e57d20 !important; -} - -.g-bg-orange-opacity-0_1 { - background-color: rgba(229, 125, 32, 0.1) !important; -} - -.g-bg-orange-opacity-0_2 { - background-color: rgba(229, 125, 32, 0.2) !important; -} - -.g-bg-orange--hover:hover { - background-color: #e57d20 !important; -} - -/* Color Deep Orange */ -.g-bg-deeporange { - background-color: #fe541e !important; -} - -.g-bg-deeporange-opacity-0_1 { - background-color: rgba(254, 84, 30, 0.1) !important; -} - -.g-bg-deeporange--hover:hover { - background-color: #fe541e !important; -} - -/* Color Yellow */ -.g-bg-yellow { - background-color: #ebc71d !important; -} - -.g-bg-yellow-opacity-0_1 { - background-color: rgba(235, 199, 29, 0.1) !important; -} - -.g-bg-yellow-opacity-0_7 { - background: rgba(235, 199, 29, 0.7) !important; -} - -.g-bg-yellow--hover:hover { - background-color: #ebc71d !important; -} - -/* Color Aqua */ -.g-bg-aqua { - background-color: #29d6e6 !important; -} - -.g-bg-aqua-opacity-0_1 { - background-color: rgba(41, 214, 230, 0.1) !important; -} - -.g-bg-aqua-opacity-0_9 { - background-color: rgba(41, 214, 230, 0.9) !important; -} - -.g-bg-aqua--hover:hover { - background-color: #29d6e6 !important; -} - -/* Color Cyan */ -.g-bg-cyan { - background-color: #00bed6 !important; -} - -.g-bg-cyan-opacity-0_1 { - background-color: rgba(0, 190, 214, 0.1) !important; -} - -.g-bg-cyan-opacity-0_9 { - background-color: rgba(0, 190, 214, 0.9) !important; -} - -.g-bg-cyan-opacity-0_9--after::after { - background-color: rgba(0, 190, 214, 0.9) !important; -} - -.g-bg-cyan--hover:hover { - background-color: #00bed6 !important; -} - -/* Color Teal */ -.g-bg-teal { - background-color: #18ba9b !important; -} - -.g-bg-teal-opacity-0_1 { - background-color: rgba(24, 186, 155, 0.1) !important; -} - -.g-bg-teal-opacity-0_9 { - background-color: rgba(24, 186, 155, 0.9) !important; -} - -.g-bg-teal-opacity-0_9--after::after { - background-color: rgba(24, 186, 155, 0.9) !important; -} - -.g-bg-teal--hover:hover { - background-color: #18ba9b !important; -} - -/* Color Brown */ -.g-bg-brown { - background-color: #9c8061 !important; -} - -.g-bg-brown-opacity-0_1 { - background-color: rgba(156, 128, 97, 0.1) !important; -} - -.g-bg-brown--hover:hover { - background-color: #9c8061 !important; -} - -/* Color Blue Gray */ -.g-bg-bluegray { - background-color: #585f69 !important; -} - -.g-bg-bluegray-opacity-0_1 { - background-color: rgba(88, 95, 105, 0.1) !important; -} - -.g-bg-bluegray-opacity-0_2--before::before, .g-bg-bluegray-opacity-0_2--after::after { - background-color: rgba(88, 95, 105, 0.2) !important; -} - -.g-bg-bluegray-opacity-0_3--before::before, .g-bg-bluegray-opacity-0_3--after::after { - background-color: rgba(88, 95, 105, 0.3) !important; -} - -.g-bg-bluegray-opacity-0_5, .g-bg-bluegray-opacity-0_5--after::after { - background-color: rgba(88, 95, 105, 0.5) !important; -} - -.g-bg-bluegray-opacity-0_7 { - background-color: rgba(88, 95, 105, 0.7) !important; -} - -.g-bg-bluegray--hover:hover { - background-color: #585f69 !important; -} - -.g-grayscale-100x { - filter: url("data:image/svg+xml;utf8,#grayscale"); - /* Firefox 10+, Firefox on Android */ - filter: gray; - -webkit-filter: grayscale(100%); -} - -.g-parent:hover .g-grayscale-0--parent-hover { - filter: url("data:image/svg+xml;utf8,#grayscale"); - -webkit-filter: grayscale(0%); -} - -.g-grayscale-0--hover:hover { - filter: url("data:image/svg+xml;utf8,#grayscale"); - -webkit-filter: grayscale(0%); -} - -/* O */ -@media (min-width: 576px) { - .g-bg-transparent--sm { - background-color: transparent !important; - } -} - -/*------------------------------------ - Background Colors Extended -------------------------------------*/ -.js-header-change-moment .g-bg-primary--scrolling { - background-color: #e74c3c !important; -} - -/*------------------------------------ - Social Background Colors -------------------------------------*/ -/* Facebook */ -.g-bg-facebook { - background-color: #3b5998; -} - -.u-block-hover:hover .g-bg-facebook--hover, .g-bg-facebook--hover:hover { - background-color: #344e86 !important; -} - -/* Twitter */ -.g-bg-twitter { - background-color: #00acee; -} - -.u-block-hover:hover .g-bg-twitter--hover, .g-bg-twitter--hover:hover { - background-color: #009ad5 !important; -} - -/* Skype */ -.g-bg-skype { - background-color: #00aff0; -} - -.u-block-hover:hover .g-bg-skype--hover, .g-bg-skype--hover:hover { - background-color: #009cd7 !important; -} - -/* Pinterest */ -.g-bg-pinterest { - background-color: #c8232c; -} - -.u-block-hover:hover .g-bg-pinterest--hover, .g-bg-pinterest--hover:hover { - background-color: #b21f27 !important; -} - -/* Vine */ -.g-bg-vine { - background-color: #00bf8f; -} - -.u-block-hover:hover .g-bg-vine--hover, .g-bg-vine--hover:hover { - background-color: #00a67c !important; -} - -/* Youtube */ -.g-bg-youtube { - background-color: #c4302b; -} - -.u-block-hover:hover .g-bg-youtube--hover, .g-bg-youtube--hover:hover { - background-color: #af2b26 !important; -} - -/* Google plus */ -.g-bg-google-plus { - background-color: #dd4b39; -} - -.u-block-hover:hover .g-bg-google-plus--hover, .g-bg-google-plus--hover:hover { - background-color: #d73925 !important; -} - -/* Dribbble */ -.g-bg-dribbble { - background-color: #ea4c89; -} - -.u-block-hover:hover .g-bg-dribbble--hover, .g-bg-dribbble--hover:hover { - background-color: #e7357a !important; -} - -/* VK */ -.g-bg-vk { - background-color: #2b587a; -} - -.u-block-hover:hover .g-bg-vk--hover, .g-bg-vk--hover:hover { - background-color: #244a67 !important; -} - -/* Linkedin */ -.g-bg-linkedin { - background-color: #0e76a8; -} - -.u-block-hover:hover .g-bg-linkedin--hover, .g-bg-linkedin--hover:hover { - background-color: #0c6590 !important; -} - -/* Instagram */ -.g-bg-instagram { - background-color: #3f729b; -} - -.u-block-hover:hover .g-bg-instagram--hover, .g-bg-instagram--hover:hover { - background-color: #386589 !important; -} - -/*------------------------------------ - Images Grid -------------------------------------*/ -.g-bg-grid-v1--before::before { - background-image: url(../img/bg/grid/wave.png); -} - -.g-bg-grid-v2--before::after { - background-image: url(../img/bg/grid/tile-left.png); -} - -.g-bg-grid-v3--before::after { - background-image: url(../img/bg/grid/tile-right.png); -} - -.g-bg-grid-v4--before::after { - background-image: url(../img/bg/grid/diagonal-left.png); -} - -.g-bg-grid-v5--before::after { - background-image: url(../img/bg/grid/diagonal-right.png); -} - -.g-bg-grid-v6--before::after { - background-image: url(../img/bg/grid/zigzag-left.png); -} - -.g-bg-grid-v7--before::after { - background-image: url(../img/bg/grid/zigzag-right.png); -} - -/*------------------------------------ - Covers -------------------------------------*/ -.g-bg-cover { - position: relative; -} - -.g-bg-cover::after { - content: ""; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -.g-bg-cover-v1::after { - position: absolute; - top: 0.35714rem; - right: 0.35714rem; - bottom: 0.35714rem; - left: 0.35714rem; -} - -.g-bg-cover__inner { - z-index: 1; - position: relative; -} - -/*------------------------------------ - Background Image Style -------------------------------------*/ -.g-bg-img-hero { - background-size: cover; - background-repeat: no-repeat; - background-position: center; -} - -/*------------------------------------ - Background Patterns -------------------------------------*/ -.g-bg-pattern-green { - background-image: url("../img/bg/pattern--green.png"); -} - -/*------------------------------------ - Background Position -------------------------------------*/ -.g-bg-pos-center { - background-position: center; -} - -.g-bg-pos-left-center { - background-position: left center; -} - -.g-bg-pos-top-center { - background-position: top center; -} - -.g-bg-pos-bottom-center { - background-position: bottom center; -} - -/*------------------------------------ - Background Repeat -------------------------------------*/ -.g-bg-no-repeat { - background-repeat: no-repeat; -} - -/*------------------------------------ - Background Size -------------------------------------*/ -.g-bg-size-cover { - background-size: cover !important; -} - -.g-bg-size-100x { - background-size: 100% !important; -} - -.g-bg-size-100x--hover:hover { - background-size: 100% !important; -} - -.g-parent:hover .g-bg-size-100x--parent-hover { - background-size: 100% !important; -} - -.g-bg-size-120x { - background-size: 120% !important; -} - -.g-bg-size-120x--hover { - background-size: 120% !important; -} - -.g-parent:hover .g-bg-size-120x--parent-hover { - background-size: 120% !important; -} - -.g-bg-repeat { - background-repeat: repeat !important; - /* P */ - background-size: auto !important; -} - -/* Primary Colors */ -.g-fill-primary { - fill: #e74c3c !important; -} - -.g-fill-primary path, -.g-fill-primary polygon { - fill: #e74c3c !important; -} - -.g-fill-primary--hover:hover path, -.g-fill-primary--hover:hover polygon { - fill: #e74c3c !important; -} - -*:hover > * > .g-fill-primary--hover-parent svg path, -*:hover > * > .g-fill-primary--hover-parent svg polygon { - fill: #e74c3c !important; -} - -.g-fill-white { - fill: #fff !important; -} - -.g-fill-white path, -.g-fill-white polygon { - fill: #fff !important; -} - -.g-fill-white--opened-menu:not(.collapsed) path, -.g-fill-white--opened-menu:not(.collapsed) polygon { - fill: #fff !important; -} - -*:not(.collapsed) > .g-fill-white--parent-opened-menu path, -*:not(.collapsed) > .g-fill-white--parent-opened-menu polygon { - fill: #fff !important; -} - -.g-fill-white--hover:hover path, -.g-fill-white--hover:hover polygon { - fill: #fff !important; -} - -*:hover > * > .g-fill-white--hover-parent svg path, -*:hover > * > .g-fill-white--hover-parent svg polygon { - fill: #fff !important; -} - -.g-fill-main { - fill: #a49da6 !important; -} - -.g-fill-main path, -.g-fill-main polygon { - fill: #a49da6 !important; -} - -.g-fill-main--opened-menu:not(.collapsed) path, -.g-fill-main--opened-menu:not(.collapsed) polygon { - fill: #a49da6 !important; -} - -*:not(.collapsed) > .g-fill-main--parent-opened-menu path, -*:not(.collapsed) > .g-fill-main--parent-opened-menu polygon { - fill: #a49da6 !important; -} - -.g-fill-main--hover:hover path, -.g-fill-main--hover:hover polygon { - fill: #a49da6 !important; -} - -*:hover > * > .g-fill-main--hover-parent svg path, -*:hover > * > .g-fill-main--hover-parent svg polygon { - fill: #fff !important; -} - -.g-fill-gray-light-v4 path, -.g-fill-gray-light-v4 polygon { - fill: #eee !important; -} - -.g-fill-gray-light-v4--hover:hover path, -.g-fill-gray-light-v4--hover:hover polygon { - fill: #eee !important; -} - -*:hover > * > .g-fill-gray-light-v4--hover-parent svg path, -*:hover > * > .g-fill-gray-light-v4--hover-parent svg polygon { - fill: #eee !important; -} - -.g-fill-red path, -.g-fill-red polygon { - fill: #f00 !important; -} - -.g-fill-red--hover:hover path, -.g-fill-red--hover:hover polygon { - fill: #f00 !important; -} - -*:hover > * > .g-fill-red--hover-parent path, -*:hover > * > .g-fill-red--hover-parent polygon { - fill: #f00 !important; -} - -*:hover > .g-fill-red--parent-hover path, -*:hover > .g-fill-red--parent-hover polygon { - fill: #f00 !important; -} - -*:hover > * > * > .g-fill-red--parent-parent-parent-hover path, -*:hover > * > * > .g-fill-red--parent-parent-parent-hover polygon { - fill: #f00 !important; -} - -/*------------------------------------ - Borders Default (solid) -------------------------------------*/ -.g-brd-none { - /* P */ - border: none !important; -} - -.g-brd-x { - border-left: solid 1px transparent !important; - border-right: solid 1px transparent !important; -} - -.g-brd-y { - border-top: solid 1px transparent !important; - border-bottom: solid 1px transparent !important; -} - -.g-brd-around { - border: solid 1px transparent !important; -} - -.g-brd-top { - border-top: solid 1px transparent !important; -} - -.g-brd-right { - border-right: solid 1px transparent !important; -} - -.g-brd-bottom { - border-bottom: solid 1px transparent !important; -} - -.g-brd-left { - border-left: solid 1px transparent !important; -} - -.g-brd-left-none { - border-left: none !important; -} - -@media (min-width: 576px) { - .g-brd-around--sm { - border: solid 1px transparent !important; - } - .g-brd-top--sm { - border-top: solid 1px transparent !important; - } - .g-brd-right--sm { - border-right: solid 1px transparent !important; - } - .g-brd-bottom--sm { - border-bottom: solid 1px transparent !important; - } - .g-brd-left--sm { - border-left: solid 1px transparent !important; - } -} - -@media (min-width: 768px) { - .g-brd-x--md { - border-left: solid 1px transparent !important; - border-right: solid 1px transparent !important; - } - .g-brd-around--md { - border: solid 1px transparent !important; - } - .g-brd-top--md { - border-top: solid 1px transparent !important; - } - .g-brd-right--md { - border-right: solid 1px transparent !important; - } - .g-brd-bottom--md { - border-bottom: solid 1px transparent !important; - } - .g-brd-left--md { - border-left: solid 1px transparent !important; - } -} - -@media (min-width: 992px) { - /* P */ - .g-brd-around--lg { - border: solid 1px transparent !important; - } - .g-brd-top--lg { - border-top: solid 1px transparent !important; - } - .g-brd-right--lg { - border-right: solid 1px transparent !important; - } - .g-brd-bottom--lg { - border-bottom: solid 1px transparent !important; - } - .g-brd-left--lg { - border-left: solid 1px transparent !important; - } - .g-brd-left-none--lg { - border-left: none !important; - } - .g-brd-x--lg { - border-left: solid 1px transparent; - border-right: solid 1px transparent; - } - .g-brd-none--lg { - border: none !important; - } -} - -/*------------------------------------ - Borders None -------------------------------------*/ -.g-brd-around-none { - border-width: 0 !important; -} - -.g-brd-top-none { - border-top: none !important; -} - -.g-brd-right-none { - border-right: none !important; -} - -.g-brd-bottom-none { - border-bottom: none !important; -} - -.g-brd-left-none { - border-left: none !important; -} - -@media (min-width: 576px) { - .g-brd-around-none--sm { - border: none !important; - } - .g-brd-top-none--sm { - border-top: none !important; - } - .g-brd-right-none--sm { - border-right: none !important; - } - .g-brd-bottom-none--sm { - border-bottom: none !important; - } - .g-brd-left-none--sm { - border-left: none !important; - } -} - -@media (min-width: 768px) { - .g-brd-around-none--md { - border: none !important; - } - .g-brd-top-none--md { - border-top: none !important; - } - .g-brd-right-none--md { - border-right: none !important; - } - .g-brd-bottom-none--md { - border-bottom: none !important; - } - .g-brd-left-none--md { - border-left: none !important; - } -} - -@media (min-width: 992px) { - .g-brd-around-none--lg { - border: none !important; - } - .g-brd-top-none--lg { - border-top: none !important; - } - .g-brd-right-none--lg { - border-right: none !important; - } - .g-brd-bottom-none--lg { - border-bottom: none !important; - } - .g-brd-left-none--lg { - border-left: none !important; - } -} - -/*------------------------------------ - Border Style -------------------------------------*/ -.g-brd-style-solid { - border-style: solid !important; -} - -.g-brd-style-dashed { - border-style: dashed !important; -} - -.g-brd-style-dotted { - border-style: dotted !important; -} - -/*------------------------------------ - Border Radius (Rounded Styles) -------------------------------------*/ -/* Rounded Around */ -.rounded-0 { - border-radius: 0 !important; -} - -.g-rounded-50x { - border-radius: 50%; -} - -.g-rounded-1 { - border-radius: 1px !important; -} - -.g-rounded-2 { - border-radius: 2px !important; -} - -.g-rounded-3 { - border-radius: 3px !important; -} - -.g-rounded-4 { - border-radius: 4px !important; -} - -.g-rounded-5 { - border-radius: 5px !important; -} - -.g-rounded-6 { - border-radius: 6px !important; -} - -.g-rounded-7 { - border-radius: 7px !important; -} - -.g-rounded-10 { - border-radius: 10px !important; -} - -.g-rounded-15 { - border-radius: 15px !important; -} - -.g-rounded-20 { - border-radius: 20px !important; -} - -.g-rounded-25 { - border-radius: 25px !important; -} - -.g-rounded-30 { - border-radius: 30px !important; -} - -.g-rounded-50 { - border-radius: 50px !important; - border-color: white; - color: white; -} - -.g-rounded-100 { - border-radius: 100px !important; -} - -.g-rounded-100--after::after { - border-radius: 100px !important; -} - -/* Rounded Top */ -.g-rounded-top-5 { - border-top-left-radius: 5px !important; - border-top-right-radius: 5px !important; -} - -/* Rounded Right */ -.g-rounded-right-0 { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; -} - -.g-rounded-right-3 { - border-top-right-radius: 3px !important; - border-bottom-right-radius: 3px !important; -} - -.g-rounded-right-5 { - border-top-right-radius: 5px !important; - border-bottom-right-radius: 5px !important; -} - -.g-rounded-right-20 { - border-bottom-right-radius: 20px !important; - border-top-right-radius: 20px !important; -} - -.g-rounded-right-30 { - border-top-right-radius: 30px !important; - border-bottom-right-radius: 30px !important; -} - -.g-rounded-right-50 { - border-top-right-radius: 50px !important; - border-bottom-right-radius: 50px !important; -} - -/* Rounded Bottom */ -.g-rounded-bottom-0 { - border-bottom-right-radius: 0 !important; - border-bottom-left-radius: 0 !important; -} - -.g-rounded-bottom-3 { - border-bottom-left-radius: 3px !important; - border-bottom-right-radius: 3px !important; -} - -.g-rounded-bottom-4 { - border-bottom-left-radius: 4px !important; - border-bottom-right-radius: 4px !important; -} - -.g-rounded-bottom-5 { - border-bottom-left-radius: 5px !important; - border-bottom-right-radius: 5px !important; -} - -/* Rounded Left */ -.g-rounded-left-0 { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; -} - -.g-rounded-left-3 { - border-top-left-radius: 3px !important; - border-bottom-left-radius: 3px !important; -} - -.g-rounded-left-5 { - border-top-left-radius: 5px !important; - border-bottom-left-radius: 5px !important; -} - -.g-rounded-left-20 { - border-bottom-left-radius: 20px !important; - border-top-left-radius: 20px !important; -} - -.g-rounded-left-30 { - border-top-left-radius: 30px !important; - border-bottom-left-radius: 30px !important; -} - -.g-rounded-left-50 { - border-top-left-radius: 50px !important; - border-bottom-left-radius: 50px !important; -} - -.g-rounded-circle--before::before { - border-radius: 50% !important; -} - -.g-rounded-circle--after::after { - border-radius: 50% !important; -} - -@media (min-width: 768px) { - .g-rounded-0--md { - border-radius: 0 !important; - } - .g-rounded-left-0--md { - border-top-left-radius: 0 !important; - border-bottom-left-radius: 0 !important; - } - .g-rounded-right-0--md { - border-top-right-radius: 0 !important; - border-bottom-right-radius: 0 !important; - } -} - -@media (min-width: 992px) { - .g-rounded-left-5--lg-up { - border-top-left-radius: 5px !important; - border-bottom-left-radius: 5px !important; - } - .g-rounded-right-5--lg-up { - border-top-right-radius: 5px !important; - border-bottom-right-radius: 5px !important; - } -} - -/*------------------------------------ - Borders Default (dashed) -------------------------------------*/ -.g-brd-around--dashed { - border: dashed 1px transparent; -} - -.g-brd-top--dashed { - border-top: dashed 1px transparent; -} - -.g-brd-bottom--dashed { - border-bottom: dashed 1px transparent; -} - -.g-brd-right--dashed { - border-right: dashed 1px transparent; -} - -.g-brd-left--dashed { - border-left: dashed 1px transparent; -} - -@media (min-width: 576px) { - .g-brd-around--dashed--sm { - border: dashed 1px transparent; - } - .g-brd-top--dashed--sm { - border-top: dashed 1px transparent; - } - .g-brd-bottom--dashed--sm { - border-bottom: dashed 1px transparent; - } - .g-brd-right--dashed--sm { - border-right: dashed 1px transparent; - } - .g-brd-left--dashed--sm { - border-left: dashed 1px transparent; - } -} - -@media (min-width: 768px) { - .g-brd-around--dashed--md { - border: dashed 1px transparent; - } - .g-brd-top--dashed--md { - border-top: dashed 1px transparent; - } - .g-brd-bottom--dashed--md { - border-bottom: dashed 1px transparent; - } - .g-brd-right--dashed--md { - border-right: dashed 1px transparent; - } - .g-brd-left--dashed--md { - border-left: dashed 1px transparent; - } -} - -/*------------------------------------ - Borders Default (dotted) -------------------------------------*/ -.g-brd-around--dotted { - border: dotted 1px transparent; -} - -.g-brd-top--dotted { - border-top: dotted 1px transparent; -} - -.g-brd-bottom--dotted { - border-bottom: dotted 1px transparent; -} - -.g-brd-right--dotted { - border-right: dotted 1px transparent; -} - -.g-brd-left--dotted { - border-left: dotted 1px transparent; -} - -@media (min-width: 576px) { - .g-brd-around--dotted--sm { - border: dotted 1px transparent; - } - .g-brd-top--dotted--sm { - border-top: dotted 1px transparent; - } - .g-brd-bottom--dotted--sm { - border-bottom: dotted 1px transparent; - } - .g-brd-right--dotted--sm { - border-right: dotted 1px transparent; - } - .g-brd-left--dotted--sm { - border-left: dotted 1px transparent; - } -} - -@media (min-width: 768px) { - .g-brd-around--dotted--md { - border: dotted 1px transparent; - } - .g-brd-top--dotted--md { - border-top: dotted 1px transparent; - } - .g-brd-bottom--dotted--md { - border-bottom: dotted 1px transparent; - } - .g-brd-right--dotted--md { - border-right: dotted 1px transparent; - } - .g-brd-left--dotted--md { - border-left: dotted 1px transparent; - } -} - -/*------------------------------------ - Border Width -------------------------------------*/ -.g-brd-0 { - border-width: 0 !important; -} - -.g-brd-1 { - border-width: 1px !important; -} - -.g-brd-2 { - border-width: 2px !important; -} - -.g-brd-3 { - border-width: 3px !important; -} - -.g-brd-3--before::before { - border-width: 3px !important; -} - -.g-brd-3--before--active.active::before { - border-width: 3px !important; -} - -.g-brd-4 { - border-width: 4px !important; -} - -.g-brd-5 { - border-width: 5px !important; -} - -.g-brd-6 { - border-width: 6px !important; -} - -.g-brd-7 { - border-width: 7px !important; -} - -.g-brd-10 { - border-width: 10px !important; -} - -.g-brd-12 { - border-width: 12px !important; -} - -.g-brd-top-0 { - border-top-width: 0 !important; -} - -.g-brd-top-2 { - border-top-width: 2px !important; -} - -.g-brd-top-3 { - border-top-width: 3px !important; -} - -.g-brd-top-5 { - border-top-width: 5px !important; -} - -.g-brd-bottom-0 { - border-bottom-width: 0 !important; -} - -.g-brd-bottom-2 { - border-bottom-width: 2px !important; -} - -.g-brd-bottom-2--hover:hover { - border-bottom-width: 2px !important; -} - -.g-parent:hover .g-brd-bottom-2--parent-hover { - border-bottom-width: 2px !important; -} - -.g-brd-bottom-5 { - border-bottom-width: 5px !important; -} - -.g-brd-left-0 { - border-left-width: 0 !important; -} - -.g-brd-left-1 { - border-left-width: 1px !important; -} - -.g-brd-left-2 { - border-left-width: 2px !important; -} - -.g-brd-left-3 { - border-left-width: 3px !important; -} - -.g-brd-left-4 { - border-left-width: 4px !important; -} - -@media (min-width: 768px) { - .g-brd-0--md { - border-width: 0 !important; - } - .g-brd-1--md { - border-width: 1px !important; - } - .g-brd-2--md { - border-width: 2px !important; - } - .g-brd-3--md { - border-width: 3px !important; - } - .g-brd-4--md { - border-width: 4px !important; - } - .g-brd-5--md { - border-width: 5px !important; - } - .g-brd-6--md { - border-width: 6px !important; - } - .g-brd-10--md { - border-width: 10px !important; - } - .g-brd-top-0--md { - border-top-width: 0 !important; - } - .g-brd-top-2--md { - border-top-width: 2px !important; - } - .g-brd-top-3--md { - border-top-width: 3px !important; - } - .g-brd-top-5--md { - border-top-width: 5px !important; - } - .g-brd-bottom-0--md { - border-bottom-width: 0 !important; - } - .g-brd-bottom-2--md { - border-bottom-width: 2px !important; - } - .g-brd-bottom-5--md { - border-bottom-width: 5px !important; - } - .g-brd-left-0--md { - border-left-width: 0 !important; - } - .g-brd-left-1--md { - border-left-width: 1px !important; - } - .g-brd-left-2--md { - border-left-width: 2px !important; - } - .g-brd-left-3--md { - border-left-width: 3px !important; - } - .g-brd-left-4--md { - border-left-width: 4px !important; - } - .g-brd-right-0--md { - border-right-width: 0 !important; - } - .g-brd-right-1--md { - border-right-width: 1px !important; - } -} - -@media (min-width: 992px) { - .g-brd-0--lg { - border-width: 0 !important; - } - .g-brd-1--lg { - border-width: 1px !important; - } - .g-brd-top-0--lg { - border-top-width: 0 !important; - } - .g-brd-top-1--lg { - border-top-width: 1px !important; - } - .g-brd-bottom-0--lg { - border-bottom-width: 0 !important; - } - .g-brd-bottom-1--lg { - border-bottom-width: 1px !important; - } - .g-brd-left-0--lg { - border-left-width: 0 !important; - } - .g-brd-left-1--lg { - border-left-width: 1px !important; - } - .g-brd-right-0--lg { - border-right-width: 0 !important; - } - .g-brd-right-1--lg { - border-right-width: 1px !important; - } -} - -/*------------------------------------ - Border Colors -------------------------------------*/ -/* Basic Colors -------------------------------------*/ -/* Primary Colors */ -.g-brd-primary { - border-color: #e74c3c !important; -} - -.g-brd-primary--before::before { - border-color: #e74c3c !important; -} - -.g-brd-primary--before--active.active::before { - border-color: #e74c3c !important; -} - -.g-brd-primary--hover:hover, .g-brd-primary--active.active { - border-color: #e74c3c !important; -} - -.g-brd-primary--active.active, -.active .g-brd-primary--active { - border-color: #e74c3c !important; -} - -*:hover > .g-brd-primary--hover-parent { - border-color: #e74c3c !important; -} - -.g-brd-primary-opacity-0_3 { - border-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-opacity-0_3--hover:hover, .g-brd-primary-opacity-0_3--active.active { - border-color: rgba(231, 76, 60, 0.3) !important; -} - -*:hover > .g-brd-primary-opacity-0_3--hover-parent { - border-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-dark-dark-v1 { - border-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v1--hover:hover, .g-brd-primary-dark-dark-v1--active.active { - border-color: #e64433 !important; -} - -*:hover > .g-brd-primary-dark-dark-v1--hover-parent { - border-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v2 { - border-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v2--hover:hover, .g-brd-primary-dark-dark-v2--active.active { - border-color: #e43725 !important; -} - -*:hover > .g-brd-primary-dark-dark-v2--hover-parent { - border-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v3 { - border-color: #d62c1a !important; -} - -.g-brd-primary-dark-dark-v3--hover:hover, .g-brd-primary-dark-dark-v3--active.active { - border-color: #d62c1a !important; -} - -*:hover > .g-brd-primary-dark-dark-v3--hover-parent { - border-color: #d62c1a !important; -} - -.g-brd-bottom-primary--hover:hover { - border-bottom-color: #e74c3c !important; -} - -/* Main Colors */ -.g-brd-main { - border-color: #a49da6 !important; -} - -.g-brd-main--hover:hover { - border-color: #a49da6 !important; -} - -/* Black Colors */ -.g-brd-black { - border-color: #000 !important; -} - -.g-brd-black--hover:hover, .g-brd-black--active.active { - border-color: #000 !important; -} - -*:hover > .g-brd-black--hover-parent { - border-color: #000 !important; -} - -.g-brd-black-opacity-0_4 { - border-color: rgba(0, 0, 0, 0.4) !important; -} - -/* White Colors */ -.g-brd-white { - border-color: #fff !important; -} - -.g-brd-white--hover:hover, .g-brd-white--active.active { - border-color: #fff !important; -} - -*:hover > .g-brd-white--hover-parent { - border-color: #fff !important; -} - -.g-brd-white-opacity-0_1 { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_1--hover:hover, .g-brd-white-opacity-0_1--active.active { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -*:hover > .g-brd-white-opacity-0_1--hover-parent { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_2 { - border-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_2--hover:hover, .g-brd-white-opacity-0_2--active.active { - border-color: rgba(255, 255, 255, 0.2) !important; -} - -*:hover > .g-brd-white-opacity-0_2--hover-parent { - border-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_3 { - border-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_3--hover:hover, .g-brd-white-opacity-0_3--active.active { - border-color: rgba(255, 255, 255, 0.3) !important; -} - -*:hover > .g-brd-white-opacity-0_3--hover-parent { - border-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_4 { - border-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_4--hover:hover, .g-brd-white-opacity-0_4--active.active { - border-color: rgba(255, 255, 255, 0.4) !important; -} - -*:hover > .g-brd-white-opacity-0_4--hover-parent { - border-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_5 { - border-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_5--hover:hover, .g-brd-white-opacity-0_5--active.active { - border-color: rgba(255, 255, 255, 0.5) !important; -} - -*:hover > .g-brd-white-opacity-0_5--hover-parent { - border-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_6 { - border-color: rgba(255, 255, 255, 0.6) !important; -} - -.g-brd-white-opacity-0_6--hover:hover, .g-brd-white-opacity-0_6--active.active { - border-color: rgba(255, 255, 255, 0.6) !important; -} - -*:hover > .g-brd-white-opacity-0_6--hover-parent { - border-color: rgba(255, 255, 255, 0.6) !important; -} - -.g-brd-white-opacity-0_8 { - border-color: rgba(255, 255, 255, 0.8) !important; -} - -.g-brd-white-opacity-0_8--hover:hover, .g-brd-white-opacity-0_8--active.active { - border-color: rgba(255, 255, 255, 0.8) !important; -} - -*:hover > .g-brd-white-opacity-0_8--hover-parent { - border-color: rgba(255, 255, 255, 0.8) !important; -} - -/* Gray Colors */ -.g-brd-gray-dark-v1 { - border-color: #111 !important; -} - -.g-brd-gray-dark-v1--hover:hover, .g-brd-gray-dark-v1--active.active { - border-color: #111 !important; -} - -*:hover > .g-brd-gray-dark-v1--hover-parent { - border-color: #111 !important; -} - -.g-brd-gray-dark-v2 { - border-color: #333 !important; -} - -.g-brd-gray-dark-v2--hover:hover, .g-brd-gray-dark-v2--active.active { - border-color: #333 !important; -} - -*:hover > .g-brd-gray-dark-v2--hover-parent { - border-color: #333 !important; -} - -.g-brd-gray-dark-v3 { - border-color: #555 !important; -} - -.g-brd-gray-dark-v3--hover:hover, .g-brd-gray-dark-v3--active.active { - border-color: #555 !important; -} - -*:hover > .g-brd-gray-dark-v3--hover-parent { - border-color: #555 !important; -} - -.g-brd-gray-dark-v4 { - border-color: #777 !important; -} - -.g-brd-gray-dark-v4--hover:hover, .g-brd-gray-dark-v4--active.active { - border-color: #777 !important; -} - -*:hover > .g-brd-gray-dark-v4--hover-parent { - border-color: #777 !important; -} - -.g-brd-gray-dark-v5 { - border-color: #999 !important; -} - -.g-brd-gray-dark-v5--hover:hover, .g-brd-gray-dark-v5--active.active { - border-color: #999 !important; -} - -*:hover > .g-brd-gray-dark-v5--hover-parent { - border-color: #999 !important; -} - -.g-brd-gray-light-v1 { - border-color: #bbb !important; -} - -.g-brd-gray-light-v1--hover:hover, .g-brd-gray-light-v1--focus:focus, .g-brd-gray-light-v1--active.active { - border-color: #bbb !important; -} - -*:hover > .g-brd-gray-light-v1--hover-parent { - border-color: #bbb !important; -} - -.g-brd-gray-light-v2 { - border-color: #ccc !important; -} - -.g-brd-gray-light-v2--before::before { - border-color: #ccc !important; -} - -.g-brd-gray-light-v2--after::after { - border-color: #ccc !important; -} - -.g-brd-gray-light-v2--hover:hover, .g-brd-gray-light-v2--active.active { - border-color: #ccc !important; -} - -*:hover > .g-brd-gray-light-v2--hover-parent { - border-color: #ccc !important; -} - -.g-brd-gray-light-v3 { - border-color: #ddd !important; -} - -.g-brd-gray-light-v3--hover:hover, .g-brd-gray-light-v3--active.active, .g-brd-gray-light-v3--focus:focus { - border-color: #ddd !important; -} - -*:hover > .g-brd-gray-light-v3--hover-parent { - border-color: #ddd !important; -} - -.g-brd-gray-light-v4 { - border-color: #eee !important; -} - -.g-brd-gray-light-v4--hover:hover, .g-brd-gray-light-v4--active.active { - border-color: #eee !important; -} - -*:hover > .g-brd-gray-light-v4--hover-parent { - border-color: #eee !important; -} - -.g-brd-gray-light-v5 { - border-color: #f7f7f7 !important; -} - -.g-brd-gray-light-v5--hover:hover, .g-brd-gray-light-v5--active.active { - border-color: #f7f7f7 !important; -} - -*:hover > .g-brd-gray-light-v5--hover-parent { - border-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-brd-transparent { - border-color: transparent !important; -} - -.g-brd-transparent--before::before { - border-color: transparent !important; -} - -.g-brd-transparent--after::after { - border-color: transparent !important; -} - -.g-brd-transparent--hover:hover, .g-brd-transparent--active.active { - border-color: transparent !important; -} - -*:hover > .g-brd-transparent--hover-parent { - border-color: transparent !important; -} - -/* Complementary Colors -------------------------------------*/ -/* Color Green */ -.g-brd-green { - border-color: #72c02c !important; -} - -.g-brd-green--hover:hover, .g-brd-green--active.active { - border-color: #72c02c !important; -} - -*:hover > .g-brd-green--hover-parent { - border-color: #72c02c !important; -} - -/* Color Blue */ -.g-brd-blue { - border-color: #3398dc !important; -} - -.g-brd-blue--hover:hover, .g-brd-blue--active.active { - border-color: #3398dc !important; -} - -*:hover > .g-brd-blue--hover-parent { - border-color: #3398dc !important; -} - -/* Color Light Blue */ -.g-brd-lightblue { - border-color: #edf2f8 !important; -} - -.g-brd-lightblue--hover:hover, .g-brd-lightblue--active.active { - border-color: #edf2f8 !important; -} - -*:hover > .g-brd-lightblue--hover-parent { - border-color: #edf2f8 !important; -} - -.g-brd-lightblue-v1 { - border-color: #d6e2ee !important; -} - -.g-brd-lightblue-v1--hover:hover, .g-brd-lightblue-v1--active.active { - border-color: #d6e2ee !important; -} - -*:hover > .g-brd-lightblue-v1--hover-parent { - border-color: #d6e2ee !important; -} - -/* Color Dark Blue */ -.g-brd-darkblue { - border-color: #009 !important; -} - -.g-brd-darkblue--hover:hover, .g-brd-darkblue--active.active { - border-color: #009 !important; -} - -*:hover > .g-brd-darkblue--hover-parent { - border-color: #009 !important; -} - -/* Color Indigo */ -.g-brd-indigo { - border-color: #4263a3 !important; -} - -.g-brd-indigo--hover:hover, .g-brd-indigo--active.active { - border-color: #4263a3 !important; -} - -*:hover > .g-brd-indigo--hover-parent { - border-color: #4263a3 !important; -} - -/* Color Red */ -.g-brd-red { - border-color: #f00 !important; -} - -.g-brd-red--hover:hover, .g-brd-red--active.active { - border-color: #f00 !important; -} - -*:hover > .g-brd-red--hover-parent { - border-color: #f00 !important; -} - -/* Color Light Red */ -.g-brd-lightred { - border-color: #e64b3b !important; -} - -.g-brd-lightred--hover:hover, .g-brd-lightred--active.active { - border-color: #e64b3b !important; -} - -*:hover > .g-brd-lightred--hover-parent { - border-color: #e64b3b !important; -} - -/* Color Dark Red */ -.g-brd-darkred { - border-color: #a10f2b !important; -} - -.g-brd-darkred--hover:hover, .g-brd-darkred--active.active { - border-color: #a10f2b !important; -} - -*:hover > .g-brd-darkred--hover-parent { - border-color: #a10f2b !important; -} - -/* Color Purple */ -.g-brd-purple { - border-color: #9a69cb !important; -} - -.g-brd-purple--hover:hover, .g-brd-purple--active.active { - border-color: #9a69cb !important; -} - -*:hover > .g-brd-purple--hover-parent { - border-color: #9a69cb !important; -} - -/* Color Dark Purple */ -.g-brd-darkpurple { - border-color: #6639b6 !important; -} - -.g-brd-darkpurple--hover:hover, .g-brd-darkpurple--active.active { - border-color: #6639b6 !important; -} - -*:hover > .g-brd-darkpurple--hover-parent { - border-color: #6639b6 !important; -} - -/* Color Pink */ -.g-brd-pink { - border-color: #e81c62 !important; -} - -.g-brd-pink--hover:hover, .g-brd-pink--active.active { - border-color: #e81c62 !important; -} - -*:hover > .g-brd-pink--hover-parent { - border-color: #e81c62 !important; -} - -/* Color Orange */ -.g-brd-orange { - border-color: #e57d20 !important; -} - -.g-brd-orange--hover:hover, .g-brd-orange--active.active { - border-color: #e57d20 !important; -} - -*:hover > .g-brd-orange--hover-parent { - border-color: #e57d20 !important; -} - -/* Color Deep Orange */ -.g-brd-deeporange { - border-color: #fe541e !important; -} - -.g-brd-deeporange--hover:hover, .g-brd-deeporange--active.active { - border-color: #fe541e !important; -} - -*:hover > .g-brd-deeporange--hover-parent { - border-color: #fe541e !important; -} - -/* Color Yellow */ -.g-brd-yellow { - border-color: #ebc71d !important; -} - -.g-brd-yellow--hover:hover, .g-brd-yellow--active.active { - border-color: #ebc71d !important; -} - -*:hover > .g-brd-yellow--hover-parent { - border-color: #ebc71d !important; -} - -/* Color Aqua */ -.g-brd-aqua { - border-color: #29d6e6 !important; -} - -.g-brd-aqua--hover:hover, .g-brd-aqua--active.active { - border-color: #29d6e6 !important; -} - -*:hover > .g-brd-aqua--hover-parent { - border-color: #29d6e6 !important; -} - -/* Color Cyan */ -.g-brd-cyan { - border-color: #00bed6 !important; -} - -.g-brd-cyan--hover:hover, .g-brd-cyan--active.active { - border-color: #00bed6 !important; -} - -*:hover > .g-brd-cyan--hover-parent { - border-color: #00bed6 !important; -} - -/* Color Teal */ -.g-brd-teal { - border-color: #18ba9b !important; -} - -.g-brd-teal--hover:hover, .g-brd-teal--active.active { - border-color: #18ba9b !important; -} - -*:hover > .g-brd-teal--hover-parent { - border-color: #18ba9b !important; -} - -/* Color Brown */ -.g-brd-brown { - border-color: #9c8061 !important; -} - -.g-brd-brown--hover:hover, .g-brd-brown--active.active { - border-color: #9c8061 !important; -} - -*:hover > .g-brd-brown--hover-parent { - border-color: #9c8061 !important; -} - -/* Color Blue Gray */ -.g-brd-bluegray { - border-color: #585f69 !important; -} - -.g-brd-bluegray--hover:hover, .g-brd-bluegray--active.active { - border-color: #585f69 !important; -} - -*:hover > .g-brd-bluegray--hover-parent { - border-color: #585f69 !important; -} - -/* Primary Colors */ -.g-brd-primary-top { - border-top-color: #e74c3c !important; -} - -.g-brd-primary-top--before::before { - border-top-color: #e74c3c !important; -} - -.g-brd-primary-bottom { - border-bottom-color: #e74c3c !important; -} - -.g-brd-primary-bottom--before:before { - border-bottom-color: #e74c3c !important; -} - -.g-brd-primary-left { - border-left-color: #e74c3c !important; -} - -.g-brd-primary-left--before:before { - border-left-color: #e74c3c !important; -} - -.g-brd-primary-right { - border-right-color: #e74c3c !important; -} - -.g-brd-primary-right--before:before { - border-right-color: #e74c3c !important; -} - -.g-brd-primary-opacity-0_3-top { - border-top-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-opacity-0_3-bottom { - border-bottom-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-opacity-0_3-left { - border-left-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-opacity-0_3-right { - border-right-color: rgba(231, 76, 60, 0.3) !important; -} - -.g-brd-primary-dark-dark-v1-top { - border-top-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v1-bottom { - border-bottom-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v1-left { - border-left-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v1-right { - border-right-color: #e64433 !important; -} - -.g-brd-primary-dark-dark-v2-top { - border-top-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v2-bottom { - border-bottom-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v2-left { - border-left-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v2-right { - border-right-color: #e43725 !important; -} - -.g-brd-primary-dark-dark-v3-top { - border-top-color: #d62c1a !important; -} - -.g-brd-primary-dark-dark-v3-bottom { - border-bottom-color: #d62c1a !important; -} - -.g-brd-primary-dark-dark-v3-left { - border-left-color: #d62c1a !important; -} - -.g-brd-primary-dark-dark-v3-right { - border-right-color: #d62c1a !important; -} - -/* Black Colors */ -.g-brd-black-top { - border-top-color: #000 !important; -} - -.g-brd-black-bottom { - border-bottom-color: #000 !important; -} - -.g-brd-black-left { - border-left-color: #000 !important; -} - -.g-brd-black-right { - border-right-color: #000 !important; -} - -/* White */ -.g-brd-white-top { - border-top-color: #fff !important; -} - -.g-brd-white-bottom { - border-bottom-color: #fff !important; -} - -.g-brd-white-left { - border-left-color: #fff !important; -} - -.g-brd-white-right { - border-right-color: #fff !important; -} - -.g-brd-white-opacity-0_1-top { - border-top-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_1-bottom { - border-bottom-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_1-left { - border-left-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_1-right { - border-right-color: rgba(255, 255, 255, 0.1) !important; -} - -.g-brd-white-opacity-0_2-top { - border-top-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_2-bottom { - border-bottom-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_2-left { - border-left-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_2-right { - border-right-color: rgba(255, 255, 255, 0.2) !important; -} - -.g-brd-white-opacity-0_3-top { - border-top-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_3-bottom { - border-bottom-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_3-left { - border-left-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_3-right { - border-right-color: rgba(255, 255, 255, 0.3) !important; -} - -.g-brd-white-opacity-0_4-top { - border-top-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_4-bottom { - border-bottom-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_4-left { - border-left-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_4-right { - border-right-color: rgba(255, 255, 255, 0.4) !important; -} - -.g-brd-white-opacity-0_5-top { - border-top-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_5-bottom { - border-bottom-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_5-left { - border-left-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_5-right { - border-right-color: rgba(255, 255, 255, 0.5) !important; -} - -.g-brd-white-opacity-0_6-top { - border-top-color: rgba(255, 255, 255, 0.6) !important; -} - -.g-brd-white-opacity-0_6-bottom { - border-bottom-color: rgba(255, 255, 255, 0.6) !important; -} - -.g-brd-white-opacity-0_6-left { - border-left-color: rgba(255, 255, 255, 0.6) !important; -} - -.g-brd-white-opacity-0_6-right { - border-right-color: rgba(255, 255, 255, 0.6) !important; -} - -/* Gray Colors */ -.g-brd-gray-dark-v1-top { - border-top-color: #111 !important; -} - -.g-brd-gray-dark-v1-bottom { - border-bottom-color: #111 !important; -} - -.g-brd-gray-dark-v1-left { - border-left-color: #111 !important; -} - -.g-brd-gray-dark-v1-right { - border-right-color: #111 !important; -} - -.g-brd-gray-dark-v2-top { - border-top-color: #333 !important; -} - -.g-brd-gray-dark-v2-bottom { - border-bottom-color: #333 !important; -} - -.g-brd-gray-dark-v2-left { - border-left-color: #333 !important; -} - -.g-brd-gray-dark-v2-right { - border-right-color: #333 !important; -} - -.g-brd-gray-dark-v3-top { - border-top-color: #555 !important; -} - -.g-brd-gray-dark-v3-bottom { - border-bottom-color: #555 !important; -} - -.g-brd-gray-dark-v3-left { - border-left-color: #555 !important; -} - -.g-brd-gray-dark-v3-right { - border-right-color: #555 !important; -} - -.g-brd-gray-dark-v4-top { - border-top-color: #777 !important; -} - -.g-brd-gray-dark-v4-bottom { - border-bottom-color: #777 !important; -} - -.g-brd-gray-dark-v4-left { - border-left-color: #777 !important; -} - -.g-brd-gray-dark-v4-right { - border-right-color: #777 !important; -} - -.g-brd-gray-dark-v5-top { - border-top-color: #999 !important; -} - -.g-brd-gray-dark-v5-bottom { - border-bottom-color: #999 !important; -} - -.g-brd-gray-dark-v5-left { - border-left-color: #999 !important; -} - -.g-brd-gray-dark-v5-right { - border-right-color: #999 !important; -} - -.g-brd-gray-light-v1-top { - border-top-color: #bbb !important; -} - -.g-brd-gray-light-v1-bottom { - border-bottom-color: #bbb !important; -} - -.g-brd-gray-light-v1-left { - border-left-color: #bbb !important; -} - -.g-brd-gray-light-v1-right { - border-right-color: #bbb !important; -} - -.g-brd-gray-light-v2-top { - border-top-color: #ccc !important; -} - -.g-brd-gray-light-v2-bottom { - border-bottom-color: #ccc !important; -} - -.g-brd-gray-light-v2-left { - border-left-color: #ccc !important; -} - -.g-brd-gray-light-v2-right { - border-right-color: #ccc !important; -} - -.g-brd-gray-light-v3-top { - border-top-color: #ddd !important; -} - -.g-brd-gray-light-v3-bottom { - border-bottom-color: #ddd !important; -} - -.g-brd-gray-light-v3-left { - border-left-color: #ddd !important; -} - -.g-brd-gray-light-v3-right { - border-right-color: #ddd !important; -} - -.g-brd-gray-light-v4-top { - border-top-color: #eee !important; -} - -.g-brd-gray-light-v4-bottom { - border-bottom-color: #eee !important; -} - -.g-brd-gray-light-v4-left { - border-left-color: #eee !important; -} - -.g-brd-gray-light-v4-right { - border-right-color: #eee !important; -} - -.g-brd-gray-light-v5-top { - border-top-color: #f7f7f7 !important; -} - -.g-brd-gray-light-v5-bottom { - border-bottom-color: #f7f7f7 !important; -} - -.g-brd-gray-light-v5-left { - border-left-color: #f7f7f7 !important; -} - -.g-brd-gray-light-v5-right { - border-right-color: #f7f7f7 !important; -} - -/* Transparent */ -.g-brd-transparent-top { - border-top-color: transparent !important; -} - -.g-brd-transparent-bottom { - border-bottom-color: transparent !important; -} - -.g-brd-transparent-left { - border-left-color: transparent !important; -} - -.g-brd-transparent-right { - border-right-color: transparent !important; -} - -/* Complementary Colors -------------------------------------*/ -/* Color Green */ -.g-brd-green-top { - border-top-color: #72c02c !important; -} - -.g-brd-green-bottom { - border-bottom-color: #72c02c !important; -} - -.g-brd-green-left { - border-left-color: #72c02c !important; -} - -.g-brd-green-right { - border-right-color: #72c02c !important; -} - -/* Color Blue */ -.g-brd-blue-top { - border-top-color: #3398dc !important; -} - -.g-brd-blue-bottom { - border-bottom-color: #3398dc !important; -} - -.g-brd-blue-left { - border-left-color: #3398dc !important; -} - -.g-brd-blue-right { - border-right-color: #3398dc !important; -} - -/* Color Light Blue */ -.g-brd-lightblue-top { - border-top-color: #edf2f8 !important; -} - -.g-brd-lightblue-bottom { - border-bottom-color: #edf2f8 !important; -} - -.g-brd-lightblue-left { - border-left-color: #edf2f8 !important; -} - -.g-brd-lightblue-right { - border-right-color: #edf2f8 !important; -} - -.g-brd-lightblue-v1-top { - border-top-color: #d6e2ee !important; -} - -.g-brd-lightblue-v1-bottom { - border-bottom-color: #d6e2ee !important; -} - -.g-brd-lightblue-v1-left { - border-left-color: #d6e2ee !important; -} - -.g-brd-lightblue-v1-right { - border-right-color: #d6e2ee !important; -} - -/* Color Dark Blue */ -.g-brd-darkblue-top { - border-top-color: #009 !important; -} - -.g-brd-darkblue-bottom { - border-bottom-color: #009 !important; -} - -.g-brd-darkblue-left { - border-left-color: #009 !important; -} - -.g-brd-darkblue-right { - border-right-color: #009 !important; -} - -/* Color Indigo */ -.g-brd-indigo-top { - border-top-color: #4263a3 !important; -} - -.g-brd-indigo-bottom { - border-bottom-color: #4263a3 !important; -} - -.g-brd-indigo-left { - border-left-color: #4263a3 !important; -} - -.g-brd-indigo-right { - border-right-color: #4263a3 !important; -} - -/* Color Red */ -.g-brd-red-top { - border-top-color: #f00 !important; -} - -.g-brd-red-bottom { - border-bottom-color: #f00 !important; -} - -.g-brd-red-left { - border-left-color: #f00 !important; -} - -.g-brd-red-right { - border-right-color: #f00 !important; -} - -/* Color Light Red */ -.g-brd-lightred-top { - border-top-color: #e64b3b !important; -} - -.g-brd-lightred-bottom { - border-bottom-color: #e64b3b !important; -} - -.g-brd-lightred-left { - border-left-color: #e64b3b !important; -} - -.g-brd-lightred-right { - border-right-color: #e64b3b !important; -} - -/* Color Dark Red */ -.g-brd-darkred-top { - border-top-color: #a10f2b !important; -} - -.g-brd-darkred-bottom { - border-bottom-color: #a10f2b !important; -} - -.g-brd-darkred-left { - border-left-color: #a10f2b !important; -} - -.g-brd-darkred-right { - border-right-color: #a10f2b !important; -} - -/* Color Purple */ -.g-brd-purple-top { - border-top-color: #9a69cb !important; -} - -.g-brd-purple-bottom { - border-bottom-color: #9a69cb !important; -} - -.g-brd-purple-left { - border-left-color: #9a69cb !important; -} - -.g-brd-purple-right { - border-right-color: #9a69cb !important; -} - -/* Color Dark Purple */ -.g-brd-darkpurple-top { - border-top-color: #6639b6 !important; -} - -.g-brd-darkpurple-bottom { - border-bottom-color: #6639b6 !important; -} - -.g-brd-darkpurple-left { - border-left-color: #6639b6 !important; -} - -.g-brd-darkpurple-right { - border-right-color: #6639b6 !important; -} - -/* Color Pink */ -.g-brd-pink-top { - border-top-color: #e81c62 !important; -} - -.g-brd-pink-bottom { - border-bottom-color: #e81c62 !important; -} - -.g-brd-pink-left { - border-left-color: #e81c62 !important; -} - -.g-brd-pink-right { - border-right-color: #e81c62 !important; -} - -/* Color Orange */ -.g-brd-orange-top { - border-top-color: #e57d20 !important; -} - -.g-brd-orange-bottom { - border-bottom-color: #e57d20 !important; -} - -.g-brd-orange-left { - border-left-color: #e57d20 !important; -} - -.g-brd-orange-right { - border-right-color: #e57d20 !important; -} - -/* Color Deep Orange */ -.g-brd-deeporange-top { - border-top-color: #fe541e !important; -} - -.g-brd-deeporange-bottom { - border-bottom-color: #fe541e !important; -} - -.g-brd-deeporange-left { - border-left-color: #fe541e !important; -} - -.g-brd-deeporange-right { - border-right-color: #fe541e !important; -} - -/* Color Yellow */ -.g-brd-yellow-top { - border-top-color: #ebc71d !important; -} - -.g-brd-yellow-bottom { - border-bottom-color: #ebc71d !important; -} - -.g-brd-yellow-left { - border-left-color: #ebc71d !important; -} - -.g-brd-yellow-right { - border-right-color: #ebc71d !important; -} - -/* Color Aqua */ -.g-brd-aqua-top { - border-top-color: #29d6e6 !important; -} - -.g-brd-aqua-bottom { - border-bottom-color: #29d6e6 !important; -} - -.g-brd-aqua-left { - border-left-color: #29d6e6 !important; -} - -.g-brd-aqua-right { - border-right-color: #29d6e6 !important; -} - -/* Color Cyan */ -.g-brd-cyan-top { - border-top-color: #00bed6 !important; -} - -.g-brd-cyan-bottom { - border-bottom-color: #00bed6 !important; -} - -.g-brd-cyan-left { - border-left-color: #00bed6 !important; -} - -.g-brd-cyan-right { - border-right-color: #00bed6 !important; -} - -/* Color Teal */ -.g-brd-teal-top { - border-top-color: #18ba9b !important; -} - -.g-brd-teal-bottom { - border-bottom-color: #18ba9b !important; -} - -.g-brd-teal-left { - border-left-color: #18ba9b !important; -} - -.g-brd-teal-right { - border-right-color: #18ba9b !important; -} - -/* Color Brown */ -.g-brd-brown-top { - border-top-color: #9c8061 !important; -} - -.g-brd-brown-bottom { - border-bottom-color: #9c8061 !important; -} - -.g-brd-brown-left { - border-left-color: #9c8061 !important; -} - -.g-brd-brown-right { - border-right-color: #9c8061 !important; -} - -/* Color Blue Gray */ -.g-brd-bluegray-top { - border-top-color: #585f69 !important; -} - -.g-brd-bluegray-bottom { - border-bottom-color: #585f69 !important; -} - -.g-brd-bluegray-left { - border-left-color: #585f69 !important; -} - -.g-brd-bluegray-right { - border-right-color: #585f69 !important; -} - -/* O */ -.g-brd-primary-top--hover:hover { - border-top-color: #e74c3c !important; -} - -.g-brd-primary-top--hover:hover::after { - border-top-color: #e74c3c; -} - -.g-brd-primary-top--active.active { - border-top-color: #e74c3c !important; -} - -.g-brd-primary-top--active.active::after { - border-top-color: #e74c3c; -} - -.g-brd-primary-bottom--hover:hover { - border-bottom-color: #e74c3c !important; -} - -.g-brd-primary-bottom--hover:hover::after { - border-bottom-color: #e74c3c; -} - -.g-brd-primary-bottom--active.active { - border-bottom-color: #e74c3c !important; -} - -.g-brd-primary-bottom--active.active::after { - border-bottom-color: #e74c3c; -} - -.g-brd-pinterest { - border-color: #c8232c !important; -} - -.g-brd-pinterest::after { - border-color: #c8232c !important; -} - -.g-brd-pinterest-top--hover:hover { - border-top-color: #c8232c !important; -} - -.g-brd-pinterest-top--hover:hover::after { - border-top-color: #c8232c; -} - -.g-brd-pinterest-top--active.active { - border-top-color: #c8232c !important; -} - -.g-brd-pinterest-top--active.active::after { - border-top-color: #c8232c; -} - -.g-brd-pinterest-bottom--hover:hover { - border-bottom-color: #c8232c !important; -} - -.g-brd-pinterest-bottom--hover:hover::after { - border-bottom-color: #c8232c; -} - -.g-brd-pinterest-bottom--active.active { - border-bottom-color: #c8232c !important; -} - -.g-brd-pinterest-bottom--active.active::after { - border-bottom-color: #c8232c; -} - -/*------------------------------------ - Social Border Colors -------------------------------------*/ -/* Facebook */ -.g-brd-facebook { - border-color: #3b5998; -} - -.g-brd-facebook--hover:hover { - border-color: #3b5998 !important; -} - -/* Twitter */ -.g-brd-twitter { - border-color: #00acee; -} - -.g-brd-twitter--hover:hover { - border-color: #00acee !important; -} - -/* Skype */ -.g-brd-skype { - border-color: #00aff0; -} - -.g-brd-skype--hover:hover { - border-color: #00aff0 !important; -} - -/* Pinterest */ -.g-brd-pinterest { - border-color: #c8232c; -} - -.g-brd-pinterest--hover:hover { - border-color: #c8232c !important; -} - -/* Vine */ -.g-brd-vine { - border-color: #00bf8f; -} - -.g-brd-vine--hover:hover { - border-color: #00bf8f !important; -} - -/* Youtube */ -.g-brd-youtube { - border-color: #c4302b; -} - -.g-brd-youtube--hover:hover { - border-color: #c4302b !important; -} - -/* Google plus */ -.g-brd-google-plus { - border-color: #dd4b39; -} - -.g-brd-google-plus--hover:hover { - border-color: #dd4b39 !important; -} - -/* Dribbble */ -.g-brd-dribbble { - border-color: #ea4c89; -} - -.g-brd-dribbble--hover:hover { - border-color: #ea4c89 !important; -} - -/* VK */ -.g-brd-vk { - border-color: #2b587a; -} - -.g-brd-vk--hover:hover { - border-color: #2b587a !important; -} - -/* Linkedin */ -.g-brd-linkedin { - border-color: #0e76a8; -} - -.g-brd-linkedin--hover:hover { - border-color: #0e76a8 !important; -} - -/* Instagram */ -.g-brd-instagram { - border-color: #3f729b; -} - -.g-brd-instagram--hover:hover { - border-color: #3f729b !important; -} - -/*------------------------------------ - Border Gradient Colors -------------------------------------*/ -/* Cyan Gradient */ -.g-brd-cyan-gradient-opacity-v1 { - -webkit-border-image: -webkit-linear-gradient(290deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%); - -o-border-image: -o-linear-gradient(290deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%); - border-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%); - border-image-slice: 1; -} - -/*------------------------------------ - Typography Font Family -------------------------------------*/ -.g-font-secondary { - font-family: "Open Sans", Helvetica, Arial, sans-serif; -} - -.g-font-code { - font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -.g-font-niconne { - font-family: "Niconne", cursive; -} - -/*------------------------------------ - Typography Font Size -------------------------------------*/ -.g-font-size-default { - font-size: 1rem !important; -} - -.g-font-size-70x { - font-size: 70% !important; -} - -.g-font-size-75x { - font-size: 75% !important; -} - -.g-font-size-80x { - font-size: 80% !important; -} - -.g-font-size-85x { - font-size: 85% !important; -} - -.g-font-size-90x { - font-size: 90% !important; -} - -.g-font-size-95x { - font-size: 95% !important; -} - -.g-font-size-0 { - font-size: 0; -} - -.g-font-size-5 { - font-size: 0.35714rem !important; -} - -.g-font-size-8 { - font-size: 0.57143rem !important; -} - -.g-font-size-9 { - font-size: 0.64286rem !important; -} - -.g-font-size-10 { - font-size: 0.71429rem !important; -} - -.g-font-size-11 { - font-size: 0.78571rem !important; -} - -.g-font-size-12 { - font-size: 0.85714rem !important; -} - -.g-font-size-13 { - font-size: 0.92857rem !important; -} - -.g-font-size-14 { - font-size: 1rem !important; -} - -.g-font-size-15 { - font-size: 1.07143rem !important; -} - -.g-font-size-16 { - font-size: 1.14286rem !important; -} - -.g-font-size-17 { - font-size: 1.21429rem !important; -} - -.g-font-size-18 { - font-size: 1.28571rem !important; -} - -.g-font-size-20 { - font-size: 1.42857rem !important; -} - -.g-font-size-22 { - font-size: 1.57143rem !important; -} - -.g-font-size-23 { - font-size: 1.64286rem !important; -} - -.g-font-size-24 { - font-size: 1.71429rem !important; -} - -.g-font-size-25 { - font-size: 1.78571rem !important; -} - -.g-font-size-26 { - font-size: 1.85714rem !important; -} - -.g-font-size-27 { - font-size: 1.92857rem !important; -} - -.g-font-size-28 { - font-size: 2rem !important; -} - -.g-font-size-30 { - font-size: 2.14286rem !important; -} - -.g-font-size-32 { - font-size: 2.28571rem !important; -} - -.g-font-size-33 { - font-size: 2.35714rem !important; -} - -.g-font-size-35 { - font-size: 2.5rem !important; -} - -.g-font-size-36 { - font-size: 2.57143rem !important; -} - -.g-font-size-38 { - font-size: 2.71429rem !important; -} - -.g-font-size-40 { - font-size: 2.85714rem !important; -} - -.g-font-size-42 { - font-size: 3rem !important; -} - -.g-font-size-45 { - font-size: 3.21429rem !important; -} - -.g-font-size-46 { - font-size: 3.28571rem !important; -} - -.g-font-size-48 { - font-size: 3.42857rem !important; -} - -.g-font-size-50 { - font-size: 3.57143rem !important; -} - -.g-font-size-55 { - font-size: 3.92857rem !important; -} - -.g-font-size-56 { - font-size: 4rem !important; -} - -.g-font-size-60 { - font-size: 4.28571rem !important; -} - -.g-font-size-65 { - font-size: 4.64286rem !important; -} - -.g-font-size-70 { - line-height: 70px; - font-size: 5rem !important; -} - -.g-font-size-75 { - font-size: 5.35714rem !important; -} - -.g-font-size-76 { - font-size: 5.42857rem !important; -} - -.g-font-size-80 { - font-size: 5.71429rem !important; -} - -.g-font-size-86 { - font-size: 6.14286rem !important; -} - -.g-font-size-90 { - font-size: 6.42857rem !important; -} - -.g-font-size-120 { - font-size: 8.57143rem !important; -} - -.g-font-size-200 { - line-height: 210px; - font-size: 14.28571rem !important; -} - -.g-font-size-180 { - font-size: 12.85714rem !important; -} - -@media (min-width: 576px) { - .g-font-size-20--sm { - font-size: 1.42857rem !important; - } - .g-font-size-25--sm { - font-size: 1.78571rem !important; - } - .g-font-size-40--sm { - font-size: 2.85714rem !important; - } - .g-font-size-50--sm { - font-size: 3.57143rem !important; - } - .g-font-size-240--sm { - font-size: 17.14286rem !important; - } -} - -@media (min-width: 768px) { - .g-font-size-default--md { - font-size: 1rem !important; - } - .g-font-size-12--md { - font-size: 0.85714rem !important; - } - .g-font-size-16--md { - font-size: 1.14286rem !important; - } - .g-font-size-18--md { - font-size: 1.28571rem !important; - } - .g-font-size-20--md { - font-size: 1.42857rem !important; - } - .g-font-size-24--md { - font-size: 1.71429rem !important; - } - .g-font-size-25--md { - font-size: 1.78571rem !important; - } - .g-font-size-26--md { - font-size: 1.85714rem !important; - } - .g-font-size-27--md { - font-size: 1.92857rem !important; - } - .g-font-size-28--md { - font-size: 2rem !important; - } - .g-font-size-30--md { - font-size: 2.14286rem !important; - } - .g-font-size-32--md { - font-size: 2.28571rem !important; - } - .g-font-size-35--md { - font-size: 2.5rem !important; - } - .g-font-size-36--md { - font-size: 2.57143rem !important; - } - .g-font-size-40--md { - font-size: 2.85714rem !important; - } - .g-font-size-45--md { - font-size: 3.21429rem !important; - } - .g-font-size-46--md { - font-size: 3.28571rem !important; - } - .g-font-size-48--md { - font-size: 3.42857rem !important; - } - .g-font-size-50--md { - font-size: 3.57143rem !important; - } - .g-font-size-55--md { - font-size: 3.92857rem !important; - } - .g-font-size-56--md { - font-size: 4rem !important; - } - .g-font-size-60--md { - font-size: 4.28571rem !important; - } - .g-font-size-65--md { - font-size: 4.64286rem !important; - } - .g-font-size-70--md { - font-size: 5rem !important; - } - .g-font-size-75--md { - font-size: 5.35714rem !important; - } - .g-font-size-76--md { - font-size: 5.42857rem !important; - } - .g-font-size-90--md { - font-size: 6.42857rem !important; - } - .g-font-size-130--md { - font-size: 9.28571rem !important; - } -} - -@media (min-width: 992px) { - .g-font-size-default--lg { - font-size: 1rem !important; - } - .g-font-size-16--lg { - font-size: 1.14286rem !important; - } - .g-font-size-18--lg { - font-size: 1.28571rem !important; - } - .g-font-size-26--lg { - font-size: 1.85714rem !important; - } - .g-font-size-32--lg { - font-size: 2.28571rem !important; - } - .g-font-size-35--lg { - font-size: 2.5rem !important; - } - .g-font-size-36--lg { - font-size: 2.57143rem !important; - } - .g-font-size-60--lg { - font-size: 4.28571rem !important; - } - .g-font-size-75--lg { - font-size: 5.35714rem !important; - } - .g-font-size-76--lg { - font-size: 5.42857rem !important; - } - .g-font-size-420--lg { - font-size: 30rem !important; - } -} - -@media (min-width: 1200px) { - .g-font-size-17--xl { - font-size: 1.21429rem !important; - } -} - -@media (max-width: 575px) { - .g-font-size-25 { - font-size: 1.78571rem !important; - } -} - -/*------------------------------------ - Typography Font Weight -------------------------------------*/ -.g-font-weight-100 { - font-weight: 100 !important; -} - -.g-font-weight-200 { - font-weight: 200 !important; -} - -.g-font-weight-300 { - font-weight: 300 !important; -} - -.g-font-weight-400 { - font-weight: 400 !important; -} - -.g-font-weight-500 { - font-weight: 500 !important; -} - -.g-font-weight-600 { - font-weight: 600 !important; -} - -.g-font-weight-700 { - font-weight: 700 !important; -} - -.g-font-weight-800 { - font-weight: 800 !important; -} - -.g-font-weight-900 { - font-weight: 900 !important; -} - -@media (min-width: 768px) { - .g-font-weight-100--md { - font-weight: 100 !important; - } - .g-font-weight-200--md { - font-weight: 200 !important; - } - .g-font-weight-300--md { - font-weight: 300 !important; - } - .g-font-weight-400--md { - font-weight: 400 !important; - } - .g-font-weight-500--md { - font-weight: 500 !important; - } - .g-font-weight-600--md { - font-weight: 600 !important; - } - .g-font-weight-700--md { - font-weight: 700 !important; - } - .g-font-weight-800--md { - font-weight: 800 !important; - } - .g-font-weight-900--md { - font-weight: 900 !important; - } -} - -/*------------------------------------ - Typography Text Transform -------------------------------------*/ -.g-text-transform-none { - text-transform: none !important; -} - -/*------------------------------------ - Typography Text Decoration -------------------------------------*/ -.g-text-underline { - text-decoration: underline; -} - -.g-text-underline--none--hover:focus, .g-text-underline--none--hover:hover { - text-decoration: none; -} - -.g-text-strike { - text-decoration: line-through; -} - -/*------------------------------------ - Typography Letter Spacing -------------------------------------*/ -.g-letter-spacing-minus-2 { - letter-spacing: -0.14286rem; -} - -.g-letter-spacing-0_5 { - letter-spacing: 0.03571rem; -} - -.g-letter-spacing-1_5 { - letter-spacing: 0.10714rem; -} - -.g-letter-spacing-0 { - letter-spacing: 0px; -} - -.g-letter-spacing-1 { - letter-spacing: 0.07143rem; -} - -.g-letter-spacing-2 { - letter-spacing: 0.14286rem; -} - -.g-letter-spacing-3 { - letter-spacing: 0.21429rem; -} - -.g-letter-spacing-4 { - letter-spacing: 0.28571rem; -} - -.g-letter-spacing-5 { - letter-spacing: 0.35714rem; -} - -.g-letter-spacing-6 { - letter-spacing: 0.42857rem; -} - -.g-letter-spacing-7 { - letter-spacing: 0.5rem; -} - -.g-letter-spacing-8 { - letter-spacing: 0.57143rem; -} - -.g-letter-spacing-9 { - letter-spacing: 0.64286rem; -} - -.g-letter-spacing-10 { - letter-spacing: 0.71429rem; -} - -.g-letter-spacing-11 { - letter-spacing: 0.78571rem; -} - -.g-letter-spacing-12 { - letter-spacing: 0.85714rem; -} - -/*------------------------------------ - Typography Line Height -------------------------------------*/ -.g-line-height-0 { - line-height: 0 !important; -} - -.g-line-height-0_7 { - line-height: .7 !important; -} - -.g-line-height-0_8 { - line-height: .8 !important; -} - -.g-line-height-0_9 { - line-height: .9 !important; -} - -.g-line-height-1 { - line-height: 1 !important; -} - -.g-line-height-1_1 { - line-height: 1.1 !important; -} - -.g-line-height-1_2 { - line-height: 1.2 !important; -} - -.g-line-height-1_3 { - line-height: 1.3 !important; -} - -.g-line-height-1_4 { - line-height: 1.4 !important; -} - -.g-line-height-1_5 { - line-height: 1.5 !important; -} - -.g-line-height-1_6 { - line-height: 1.6 !important; -} - -.g-line-height-1_8 { - line-height: 1.8 !important; -} - -.g-line-height-2 { - line-height: 2 !important; -} - -/*------------------------------------ - Typography Font Style -------------------------------------*/ -.g-font-style-normal { - font-style: normal; -} - -.g-font-style-italic { - font-style: italic; -} - -/*------------------------------------ - List Style Types -------------------------------------*/ -.g-list-style-circle { - list-style-type: circle; -} - -.g-list-style-disc { - list-style-type: disc; -} - -.g-list-style-square { - list-style-type: square; -} - -.g-list-style-lower-roman { - list-style-type: lower-roman; -} - -.g-list-style-upper-roman { - list-style-type: upper-roman; -} - -.g-list-style-lower-latin { - list-style-type: lower-latin; -} - -.g-list-style-upper-latin { - list-style-type: upper-latin; -} - -/*------------------------------------ - Text Types -------------------------------------*/ -.g-text-break-word { - word-wrap: break-word; -} - -/*------------------------------------ - Quotes -------------------------------------*/ -/* Quote v1 */ -.u-quote-v1::before { - content: "\“"; - font-size: 36px; - line-height: 0.75em; - text-align: center; - font-weight: 600; - display: block; -} - -.u-quote-v1::after { - display: none; -} - -/*------------------------------------ - Positions -------------------------------------*/ -.g-pos-rel { - position: relative !important; -} - -.g-pos-abs { - position: absolute !important; -} - -.g-pos-stc { - position: static !important; -} - -.g-pos-fix { - position: fixed !important; -} - -@media (min-width: 576px) { - .g-pos-rel--sm { - position: relative !important; - } - .g-pos-fix--sm { - position: fixed !important; - } - .g-pos-abs--sm { - position: absolute !important; - } - .g-pos-stc--sm { - position: static !important; - } -} - -@media (min-width: 768px) { - .g-pos-rel--md { - position: relative !important; - } - .g-pos-fix--md { - position: fixed !important; - } - .g-pos-abs--md { - position: absolute !important; - } - .g-pos-stc--sm { - position: static !important; - } -} - -@media (min-width: 992px) { - .g-pos-rel--lg { - position: relative !important; - } - .g-pos-fix--lg { - position: fixed !important; - } - .g-pos-abs--lg { - position: absolute !important; - } - .g-pos-stc--lg { - position: static !important; - } -} - -/*------------------------------------ - Position Spaces -------------------------------------*/ -/* Top */ -.g-top-auto { - /* P */ - top: auto; -} - -.g-parent:hover .g-top-auto--parent-hover { - top: auto; -} - -.g-top-0 { - top: 0; -} - -.g-top-0--hover:hover { - top: 0; -} - -.g-parent:hover .g-top-0--parent-hover { - top: 0; -} - -.g-top-1 { - top: 0.07143rem; -} - -.g-top-2 { - top: 0.14286rem; -} - -.g-top-3 { - top: 0.21429rem; -} - -.g-top-5 { - top: 0.35714rem !important; -} - -.g-top-7 { - top: 0.5rem !important; -} - -.g-top-10 { - top: 0.71429rem !important; -} - -.g-top-15 { - top: 1.07143rem; -} - -.g-top-20 { - top: 1.42857rem; -} - -.g-top-25 { - top: 1.78571rem; -} - -.g-top-30 { - top: 2.14286rem; -} - -.g-top-35 { - top: 2.5rem; -} - -.g-top-55 { - top: 3.92857rem; -} - -.g-top-65 { - top: 4.64286rem; -} - -.g-top-100 { - top: 7.14286rem; -} - -.g-top-15x { - top: 15%; -} - -.g-top-20x { - top: 20%; -} - -.g-top-25x { - top: 25%; -} - -.g-top-30x { - top: 30%; -} - -.g-top-35x { - top: 35%; -} - -.g-top-50x { - top: 50%; -} - -.g-top-100x { - top: 100%; -} - -/* Top Minis */ -.g-top-minus-1 { - top: -0.07143rem; -} - -.g-top-minus-2 { - top: -0.14286rem; -} - -.g-top-minus-3 { - top: -0.21429rem !important; -} - -.g-top-minus-4 { - top: -0.28571rem; -} - -.g-top-minus-5 { - top: -0.35714rem; -} - -.g-top-minus-6 { - top: -0.42857rem; -} - -.g-top-minus-8 { - top: -0.57143rem; -} - -.g-top-minus-10 { - top: -0.71429rem; -} - -.g-top-minus-15 { - top: -1.07143rem; -} - -.g-top-minus-20 { - top: -1.42857rem; -} - -.g-top-minus-30 { - top: -2.14286rem; -} - -.g-top-minus-35 { - top: -2.5rem; -} - -.g-top-minus-40 { - top: -2.85714rem; -} - -.g-top-minus-70 { - top: -5rem; -} - -.g-top-minus-120 { - top: -8.57143rem; -} - -.g-top-minus-25x { - top: -25%; -} - -.g-top-minus-80x { - top: -80%; -} - -/* Left */ -.g-left-auto { - /* P */ - left: auto; -} - -.g-left-0 { - left: 0; -} - -.g-left-0--hover:hover { - left: 0; -} - -.g-parent:hover .g-left-0--parent-hover { - left: 0; -} - -.g-left-2 { - left: 0.14286rem; -} - -.g-left-5 { - left: 0.35714rem; -} - -.g-left-10 { - left: 0.71429rem; -} - -.g-left-15 { - left: 1.07143rem !important; -} - -.g-left-20 { - left: 1.42857rem; -} - -.g-left-30 { - left: 2.14286rem; -} - -.g-left-40 { - left: 2.85714rem; - /* O */ -} - -.g-left-45 { - left: 3.21429rem; - /* P */ -} - -.g-left-75 { - left: 5.35714rem; -} - -.g-left-110 { - left: 7.85714rem; -} - -.g-left-130 { - left: 9.28571rem; -} - -.g-left-200 { - left: 14.28571rem; -} - -.g-left-15x { - left: 15%; -} - -.g-left-35x { - left: 35%; -} - -.g-left-50x { - left: 50%; -} - -.g-left-100x { - left: 100%; -} - -/* Left Minus */ -.g-left-minus-3 { - left: -0.21429rem; -} - -.g-left-minus-6 { - left: -0.42857rem; -} - -.g-left-minus-7 { - left: -0.5rem; -} - -.g-left-minus-10 { - left: -0.71429rem; -} - -.g-left-minus-15 { - left: -1.07143rem; -} - -.g-left-minus-20 { - left: -1.42857rem; -} - -.g-left-minus-25 { - left: -1.78571rem; -} - -.g-left-minus-30 { - left: -2.14286rem; -} - -.g-left-minus-40 { - left: -2.85714rem; -} - -.g-left-minus-50 { - left: -3.57143rem; -} - -.g-parent:hover .g-left-minus-50--parent-hover { - left: -3.57143rem; -} - -/* Right */ -.g-right-auto { - /* P */ - right: auto; -} - -.g-right-0 { - right: 0; -} - -.g-right-0--hover:hover { - right: 0; -} - -.g-parent:hover .g-right-0--parent-hover { - right: 0; -} - -.g-right-5 { - right: 0.35714rem !important; -} - -.g-right-7 { - right: 0.5rem !important; -} - -.g-right-10 { - right: 0.71429rem !important; -} - -.g-right-15 { - right: 1.07143rem !important; -} - -.g-right-20 { - right: 1.42857rem; -} - -.g-right-30 { - right: 2.14286rem; -} - -.g-right-40 { - right: 2.85714rem; -} - -.g-right-45 { - right: 3.21429rem; - /* P */ -} - -.g-right-55 { - right: 3.92857rem; - /* O */ -} - -.g-right-65 { - right: 4.64286rem; -} - -.g-right-100 { - right: 7.14286rem; -} - -.g-right-110 { - right: 7.85714rem; -} - -.g-right-130 { - right: 9.28571rem; -} - -.g-right-15x { - right: 15%; -} - -.g-right-35x { - right: 35%; -} - -.g-right-50x { - right: 50%; -} - -.g-right-100x { - right: 100%; -} - -/* Right Minus */ -.g-right-minus-3 { - right: -0.21429rem !important; -} - -.g-right-minus-6 { - right: -0.42857rem; -} - -.g-right-minus-5 { - right: -0.35714rem; -} - -.g-right-minus-10 { - right: -0.71429rem; -} - -.g-right-minus-13 { - right: -0.92857rem; -} - -.g-right-minus-15 { - right: -1.07143rem; -} - -.g-right-minus-20 { - right: -1.42857rem; -} - -.g-right-minus-25 { - right: -1.78571rem; -} - -.g-right-minus-40 { - right: -2.85714rem; -} - -.g-right-minus-50 { - right: -3.57143rem; -} - -/* Bottom */ -.g-bottom-auto { - /* P */ - bottom: auto; -} - -.g-bottom-0 { - bottom: 0; -} - -.g-bottom-0--hover:hover { - bottom: 0; -} - -.g-parent:hover .g-bottom-0--parent-hover { - bottom: 0; -} - -.g-bottom-6 { - bottom: 0.42857rem; -} - -.g-bottom-10 { - bottom: 0.71429rem; -} - -.g-bottom-20 { - bottom: 1.42857rem; -} - -.g-bottom-30 { - bottom: 2.14286rem; -} - -.g-bottom-40 { - bottom: 2.85714rem; -} - -.g-bottom-50 { - bottom: 3.57143rem; -} - -.g-parent:hover .g-bottom-50--parent-hover { - bottom: 3.57143rem; -} - -.g-bottom-60 { - bottom: 4.28571rem; -} - -.g-bottom-80 { - bottom: 5.71429rem; -} - -.g-bottom-minus-20 { - bottom: -1.42857rem; -} - -.g-bottom-minus-30 { - bottom: -2.14286rem; -} - -.g-bottom-minus-40 { - bottom: -2.85714rem; -} - -.g-bottom-minus-70 { - bottom: -5rem; -} - -.g-bottom-minus-35x { - bottom: -35%; -} - -.g-bottom-15x { - bottom: 15%; -} - -.g-bottom-minus-25x { - bottom: -25%; -} - -.g-bottom-100x { - bottom: 100%; -} - -/* Z */ -@media (min-width: 576px) { - .g-top-auto--sm { - top: auto; - } - .g-left-auto--sm { - left: auto; - } - .g-left-minus-20--sm { - left: -20px; - } - .g-right-minus-20--sm { - right: -20px; - } -} - -/* O */ -@media (min-width: 768px) { - .g-right-0--md { - right: 0; - } - .g-right-minus-15--md { - right: -1.07143rem; - } - .g-left-minus-15--md { - left: -1.07143rem; - } - .g-top-minus-20--md { - top: -1.42857rem; - } - .g-right-minus-25--md { - right: -1.78571rem; - } - .g-right-100--md { - right: 7.14286rem; - } - .g-bottom-minus-50--md { - bottom: -3.57143rem; - } - .g-left-auto--md { - left: auto; - } - .g-left-minus-25--md { - left: -1.78571rem; - } - .g-left-130--md { - left: 9.28571rem; - } - .g-left-35x--md { - left: 35%; - } - .g-left-50x--md { - left: 50%; - } - .g-right-130--md { - right: 9.28571rem; - } - .g-right-35x--md { - right: 35%; - } - .g-right-50x--md { - right: 50%; - } -} - -@media (min-width: 992px) { - .g-top-0--lg { - top: 0; - } - .g-right-0--lg { - right: 0; - } - .g-left-minus-35--lg { - left: -2.5rem; - } - .g-left-40--lg { - left: 2.85714rem; - } - .g-right-minus-35--lg { - right: -2.5rem; - } - .g-right-40--lg { - right: 2.85714rem; - } -} - -/*------------------------------------ - Block Alignments -------------------------------------*/ -/* Absolute (Position, X, Y) */ -.g-absolute-centered { - position: absolute !important; - top: 50% !important; - left: 50% !important; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-backface-visibility: hidden; -} - -.g-absolute-centered--x { - position: absolute !important; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; -} - -@media (min-width: 576px) { - .g-absolute-centered--x--sm { - position: absolute !important; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; - } -} - -@media (min-width: 768px) { - .g-absolute-centered--x--md { - position: absolute !important; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; - } -} - -.g-absolute-centered--y { - position: absolute !important; - top: 50% !important; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-backface-visibility: hidden; -} - -@media (min-width: 768px) { - .g-absolute-centered--y--md { - position: absolute !important; - top: 50% !important; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-backface-visibility: hidden; - } -} - -@media (min-width: 992px) { - .g-absolute-centered--y--lg { - position: absolute !important; - top: 50% !important; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-backface-visibility: hidden; - } -} - -/* O */ -.g-transform-origin--top-left { - -webkit-transform-origin: top left; - -ms-transform-origin: top left; - transform-origin: top left; -} - -.g-transform-origin--top-right { - -webkit-transform-origin: top right; - -ms-transform-origin: top right; - transform-origin: top right; -} - -.g-absolute-centered--y--scl-0_6 { - position: absolute; - top: 50%; - -webkit-transform: scale(0.6) translateY(-50%); - -ms-transform: scale(0.6) translateY(-50%); - transform: scale(0.6) translateY(-50%); -} - -/* Relative (Position, X, Y) */ -.g-relative-centered { - position: relative; - top: 50% !important; - left: 50% !important; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-backface-visibility: hidden; -} - -.g-relative-centered--x { - position: relative; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; -} - -.g-relative-centered--y { - position: relative; - top: 50% !important; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - -webkit-backface-visibility: hidden; -} - -/* Flex centered */ -.g-flex-centered { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.g-flex-centered-item { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.g-flex-centered-item--top { - -ms-flex-item-align: start; - align-self: flex-start; -} - -.g-flex-centered-item--bottom { - -ms-flex-item-align: end; - align-self: flex-end; -} - -/* Flex right */ -.g-flex-right--xs { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -/* Flex middle */ -.g-flex-middle { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-flow: column nowrap; - flex-flow: column nowrap; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.g-flex-middle-item { - margin-top: auto; - margin-bottom: auto; -} - -.g-flex-middle-item--top { - margin-top: 0; - margin-bottom: 0; -} - -.g-flex-middle-item--bottom { - margin-top: auto; - margin-bottom: 0; -} - -.g-flex-middle-item--fixed { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - max-width: 50%; -} - -@media (min-width: 768px) { - /* Flex right */ - .g-flex-right--md { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .g-flex-centered--md { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - /* O */ - .g-absolute-centered--y--scl-1--md { - position: absolute; - top: 50%; - -webkit-transform: scale(1) translateY(-50%); - -ms-transform: scale(1) translateY(-50%); - transform: scale(1) translateY(-50%); - } -} - -/* Z */ -@media (min-width: 576px) { - .g-absolute-centered--sm { - position: absolute !important; - top: 50% !important; - left: 50% !important; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - -webkit-backface-visibility: hidden; - } -} - -/* O */ -@media (min-width: 576px) { - .g-absolute-centered--x-sm--reset { - position: static !important; - left: auto !important; - -webkit-transform: translateX(0) !important; - -ms-transform: translateX(0) !important; - transform: translateX(0) !important; - } -} - -@media (min-width: 992px) { - .g-absolute-centered--x--lg { - position: absolute !important; - left: 50% !important; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - -webkit-backface-visibility: hidden; - } - .g-flex-centered--lg { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*------------------------------------ - Alignments -------------------------------------*/ -.g-valign-super { - vertical-align: super !important; -} - -.g-valign-sub { - vertical-align: sub !important; -} - -.g-valign-top { - vertical-align: top !important; -} - -.g-valign-middle { - vertical-align: middle !important; -} - -.g-valign-bottom { - vertical-align: bottom !important; -} - -/*------------------------------------ - Blur -------------------------------------*/ -.g-blur-30 { - -webkit-filter: blur(30px); - filter: blur(30px); -} - -.g-blur-30--hover:hover { - -webkit-filter: blur(30px); - filter: blur(30px); -} - -.g-parent:hover .g-blur-30--parent-hover { - -webkit-filter: blur(30px); - filter: blur(30px); -} - -/*------------------------------------ - Box-shadows -------------------------------------*/ -.g-box-shadow-none { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -/*------------------------------------ - Clear -------------------------------------*/ -.g-clear { - clear: both; -} - -.g-clear--left { - clear: left; -} - -.g-clear--right { - clear: right; -} - -/*------------------------------------ - Cursors -------------------------------------*/ -.g-cursor-pointer { - cursor: pointer; -} - -/*------------------------------------ - Overflows -------------------------------------*/ -.g-overflow-hidden { - overflow: hidden; -} - -.g-overflow-visible { - overflow: visible; -} - -.g-overflow-x-hidden { - overflow-x: hidden; -} - -.g-overflow-x-auto { - overflow-x: auto !important; -} - -.g-overflow-x-scroll { - overflow-x: scroll; -} - -.g-overflow-y-auto { - overflow-y: auto; -} - -.g-overflow-y-hidden { - overflow-y: hidden; -} - -@media (min-width: 768px) { - .g-overflow-x-visible--md { - overflow-x: visible; - } -} - -@media (min-width: 992px) { - .g-overflow-x-visible--lg { - overflow-x: visible; - } -} - -/*------------------------------------ - Transitions -------------------------------------*/ -/*.g-transition { - &-0_2 { - transition: .2s ease-out; - } - &-0_3 { - transition: .3s ease-out; - } - &-0_6 { - transition: .6s ease-out; - &-ease { - transition: .6s ease; - } - } -} - -[class*="g-color-"][class*="--hover"] { - transition: color .2s ease-out; -} -[class*="g-bg-"][class*="--hover"] { - transition: background-color .3s ease-out; -} -[class*="g-color-"][class*="--hover"][class*="g-bg-"][class*="--hover"] { - transition: .3s ease-out; -}*/ -[class*="g-transition"] { - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -[class*="g-transition"]::before, [class*="g-transition"]::after, -[class*="g-transition"] path, -[class*="g-transition"] polygon { - -webkit-transition-property: all; - -o-transition-property: all; - transition-property: all; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-delay: 0s; - -o-transition-delay: 0s; - transition-delay: 0s; -} - -.g-transition-0 { - -webkit-transition-duration: 0s; - -o-transition-duration: 0s; - transition-duration: 0s; -} - -.g-transition-0::before, .g-transition-0::after, -.g-transition-0 path, -.g-transition-0 polygon { - -webkit-transition-duration: 0s; - -o-transition-duration: 0s; - transition-duration: 0s; -} - -.g-transition-0_2 { - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; -} - -.g-transition-0_2::before, .g-transition-0_2::after, -.g-transition-0_2 path, -.g-transition-0_2 polygon { - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; -} - -.g-transition-0_3 { - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; -} - -.g-transition-0_3::before, .g-transition-0_3::after, -.g-transition-0_3 path, -.g-transition-0_3 polygon { - -webkit-transition-duration: .3s; - -o-transition-duration: .3s; - transition-duration: .3s; -} - -.g-transition-0_5 { - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; -} - -.g-transition-0_5::before, .g-transition-0_5::after, -.g-transition-0_5 path, -.g-transition-0_5 polygon { - -webkit-transition-duration: .5s; - -o-transition-duration: .5s; - transition-duration: .5s; -} - -.g-transition-0_6 { - -webkit-transition-duration: .6s; - -o-transition-duration: .6s; - transition-duration: .6s; -} - -.g-transition-0_6::before, .g-transition-0_6::after, -.g-transition-0_6 path, -.g-transition-0_6 polygon { - -webkit-transition-duration: .6s; - -o-transition-duration: .6s; - transition-duration: .6s; -} - -.g-transition-delay-0_11 { - -webkit-transition-delay: .11s; - -o-transition-delay: .11s; - transition-delay: .11s; -} - -.g-transition-delay-0_11::before, .g-transition-delay-0_11::after, -.g-transition-delay-0_11 path, -.g-transition-delay-0_11 polygon { - -webkit-transition-delay: .11s; - -o-transition-delay: .11s; - transition-delay: .11s; -} - -.g-transition-delay-0_2 { - -webkit-transition-delay: .2s; - -o-transition-delay: .2s; - transition-delay: .2s; -} - -.g-transition-delay-0_2::before, .g-transition-delay-0_2::after, -.g-transition-delay-0_2 path, -.g-transition-delay-0_2 polygon { - -webkit-transition-delay: .2s; - -o-transition-delay: .2s; - transition-delay: .2s; -} - -.g-transition-delay-0_45 { - -webkit-transition-delay: .45s; - -o-transition-delay: .45s; - transition-delay: .45s; -} - -.g-transition-delay-0_45::before, .g-transition-delay-0_45::after, -.g-transition-delay-0_45 path, -.g-transition-delay-0_45 polygon { - -webkit-transition-delay: .45s; - -o-transition-delay: .45s; - transition-delay: .45s; -} - -.g-transition--ease-out { - -webkit-transition-timing-function: ease-out; - -o-transition-timing-function: ease-out; - transition-timing-function: ease-out; -} - -.g-transition--ease-out::before, .g-transition--ease-out::after, -.g-transition--ease-out path, -.g-transition--ease-out polygon { - -webkit-transition-timing-function: ease-out; - -o-transition-timing-function: ease-out; - transition-timing-function: ease-out; -} - -.g-transition--ease-in { - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.g-transition--ease-in::before, .g-transition--ease-in::after, -.g-transition--ease-in path, -.g-transition--ease-in polygon { - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -.g-transition--ease-in-out { - -webkit-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; -} - -.g-transition--ease-in-out::before, .g-transition--ease-in-out::after, -.g-transition--ease-in-out path, -.g-transition--ease-in-out polygon { - -webkit-transition-timing-function: ease-in-out; - -o-transition-timing-function: ease-in-out; - transition-timing-function: ease-in-out; -} - -.g-transition--linear { - -webkit-transition-timing-function: linear; - -o-transition-timing-function: linear; - transition-timing-function: linear; -} - -.g-transition--linear::before, .g-transition--linear::after, -.g-transition--linear path, -.g-transition--linear polygon { - -webkit-transition-timing-function: linear; - -o-transition-timing-function: linear; - transition-timing-function: linear; -} - -/*------------------------------------ - Transforms -------------------------------------*/ -.g-transform-scale-0_5 { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); -} - -.g-transform-scale-0_5--hover:hover { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); -} - -.g-parent:hover .g-transform-scale-0_5--parent-hover { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - transform: scale(0.5); -} - -.g-transform-scale-0_8 { - -webkit-transform: scale(0.8); - -ms-transform: scale(0.8); - transform: scale(0.8); -} - -.g-transform-scale-0_8--hover:hover { - -webkit-transform: scale(0.8); - -ms-transform: scale(0.8); - transform: scale(0.8); -} - -.g-parent:hover .g-transform-scale-0_8--parent-hover { - -webkit-transform: scale(0.8); - -ms-transform: scale(0.8); - transform: scale(0.8); -} - -.g-transform-scale-0_85 { - -webkit-transform: scale(0.85); - -ms-transform: scale(0.85); - transform: scale(0.85); -} - -.g-transform-scale-0_85--hover:hover { - -webkit-transform: scale(0.85); - -ms-transform: scale(0.85); - transform: scale(0.85); -} - -.g-parent:hover .g-transform-scale-0_85--parent-hover { - -webkit-transform: scale(0.85); - -ms-transform: scale(0.85); - transform: scale(0.85); -} - -.g-transform-scale-0_9 { - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.g-transform-scale-0_9--hover:hover { - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.g-parent:hover .g-transform-scale-0_9--parent-hover { - -webkit-transform: scale(0.9); - -ms-transform: scale(0.9); - transform: scale(0.9); -} - -.g-transform-scale-1 { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.g-transform-scale-1--hover:hover { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.g-parent:hover .g-transform-scale-1--parent-hover { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.g-transform-scale-1_05 { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); -} - -.g-transform-scale-1_05--hover:hover { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - z-index: 2; -} - -.g-parent:hover .g-transform-scale-1_05--parent-hover { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); -} - -.g-transform-scale-1_1 { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); -} - -.g-transform-scale-1_1--hover:hover { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - z-index: 2; -} - -.g-parent:hover .g-transform-scale-1_1--parent-hover { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); -} - -.g-transform-scale-1_2 { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -.g-transform-scale-1_2--hover:hover { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -.g-parent:hover .g-transform-scale-1_2--parent-hover { - -webkit-transform: scale(1.2); - -ms-transform: scale(1.2); - transform: scale(1.2); -} - -.g-transform-translate-x-100x { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.g-transform-translate-x-100x--hover:hover { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.g-parent:hover .g-transform-translate-x-100x--parent-hover { - -webkit-transform: translateX(100%); - -ms-transform: translateX(100%); - transform: translateX(100%); -} - -.g-transform-translate-x-minus-100x { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.g-transform-translate-x-minus-100x--hover:hover { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.g-parent:hover .g-transform-translate-x-minus-100x--parent-hover { - -webkit-transform: translateX(-100%); - -ms-transform: translateX(-100%); - transform: translateX(-100%); -} - -.g-transform-translate-y-5 { - -webkit-transform: translateY(5px); - -ms-transform: translateY(5px); - transform: translateY(5px); -} - -.g-transform-translate-y-5--hover:hover { - -webkit-transform: translateY(5px); - -ms-transform: translateY(5px); - transform: translateY(5px); -} - -.g-parent:hover .g-transform-translate-y-5--parent-hover { - -webkit-transform: translateY(5px); - -ms-transform: translateY(5px); - transform: translateY(5px); -} - -.g-transform-translate-y-100x { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.g-transform-translate-y-100x--hover:hover { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.g-parent:hover .g-transform-translate-y-100x--parent-hover { - -webkit-transform: translateY(100%); - -ms-transform: translateY(100%); - transform: translateY(100%); -} - -.g-transform-translate-y-minus-5 { - -webkit-transform: translateY(-5px); - -ms-transform: translateY(-5px); - transform: translateY(-5px); -} - -.g-transform-translate-y-minus-5--hover:hover { - -webkit-transform: translateY(-5px); - -ms-transform: translateY(-5px); - transform: translateY(-5px); -} - -.g-parent:hover .g-transform-translate-y-minus-5--parent-hover { - -webkit-transform: translateY(-5px); - -ms-transform: translateY(-5px); - transform: translateY(-5px); -} - -.g-transform-translate-y-minus-70 { - -webkit-transform: translateY(-70px); - -ms-transform: translateY(-70px); - transform: translateY(-70px); -} - -.g-transform-translate-y-minus-70--hover:hover { - -webkit-transform: translateY(-70px); - -ms-transform: translateY(-70px); - transform: translateY(-70px); -} - -.g-parent:hover .g-transform-translate-y-minus-70--parent-hover { - -webkit-transform: translateY(-70px); - -ms-transform: translateY(-70px); - transform: translateY(-70px); -} - -.g-transform-translate-y-minus-100x { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -.g-transform-translate-y-minus-100x--hover:hover { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -.g-parent:hover .g-transform-translate-y-minus-100x--parent-hover { - -webkit-transform: translateY(-100%); - -ms-transform: translateY(-100%); - transform: translateY(-100%); -} - -/*------------------------------------ - Opacity -------------------------------------*/ -.opacity-0 { - opacity: 0 !important; -} - -.g-opacity-0_3 { - opacity: .3 !important; -} - -.g-opacity-0_4 { - opacity: .4 !important; -} - -.g-opacity-0_5 { - opacity: .5 !important; -} - -.g-opacity-0_6 { - opacity: .6 !important; -} - -.g-opacity-0_7 { - opacity: .7 !important; -} - -.g-opacity-0_8 { - opacity: .8 !important; -} - -.g-opacity-1 { - opacity: 1 !important; -} - -.opacity-0--hover:hover { - opacity: 0 !important; -} - -.g-parent:hover .opacity-0--parent-hover { - opacity: 0 !important; -} - -.g-opacity-0_3--hover:hover { - opacity: .3 !important; -} - -.g-parent:hover .g-opacity-0_3--parent-hover { - opacity: .3 !important; -} - -.g-opacity-0_5--hover:hover { - opacity: .5 !important; -} - -.g-parent:hover .g-opacity-0_5--parent-hover { - opacity: .5 !important; -} - -.g-opacity-0_6--hover:hover { - opacity: .6 !important; -} - -.g-parent:hover .g-opacity-0_6--parent-hover { - opacity: .6 !important; -} - -.g-opacity-0_7--hover:hover { - opacity: .7 !important; -} - -.g-parent:hover .g-opacity-0_7--parent-hover { - opacity: .7 !important; -} - -.g-opacity-0_8--hover:hover { - opacity: .8 !important; -} - -.g-parent:hover .g-opacity-0_8--parent-hover { - opacity: .8 !important; -} - -.u-block-hover:hover .g-opacity-1--hover, .g-opacity-1--hover:hover { - opacity: 1 !important; -} - -.g-parent:hover .g-opacity-1--parent-hover { - opacity: 1 !important; -} - -/*------------------------------------ - Z-Index -------------------------------------*/ -.g-z-index-auto { - z-index: auto; -} - -.g-z-index-1 { - z-index: 1; -} - -.g-z-index-2 { - z-index: 2; -} - -.g-z-index-3 { - z-index: 3; -} - -.g-z-index-3--hover:hover { - z-index: 3; -} - -.g-z-index-4 { - z-index: 4; -} - -.g-z-index-4--hover:hover { - z-index: 4; -} - -.g-z-index-99 { - z-index: 99; -} - -.g-z-index-9999 { - z-index: 9999; -} - -.g-z-index-minus-1 { - z-index: -1; -} - -/*------------------------------------ - Resize -------------------------------------*/ -.g-resize-none { - resize: none; -} - -/*------------------------------------ - Placeholder -------------------------------------*/ -.g-placeholder-white::-webkit-input-placeholder { - opacity: 1; - color: #fff; -} -.g-placeholder-white:-ms-input-placeholder { - opacity: 1; - color: #fff; -} -.g-placeholder-white::-ms-input-placeholder { - opacity: 1; - color: #fff; -} -.g-placeholder-white::placeholder { - opacity: 1; - color: #fff; -} - -.g-placeholder-white::-webkit-input-placeholder { - opacity: 1; - color: #fff; -} - -.g-placeholder-primary::-webkit-input-placeholder { - color: #fff; -} - -.g-placeholder-primary:-ms-input-placeholder { - color: #fff; -} - -.g-placeholder-primary::-ms-input-placeholder { - color: #fff; -} - -.g-placeholder-primary::placeholder { - color: #fff; -} - -.g-placeholder-inherit::-webkit-input-placeholder { - color: inherit; - opacity: 1; -} - -.g-placeholder-inherit:-ms-input-placeholder { - color: inherit; - opacity: 1; -} - -.g-placeholder-inherit::-ms-input-placeholder { - color: inherit; - opacity: 1; -} - -.g-placeholder-inherit::placeholder { - color: inherit; - opacity: 1; -} - -.g-placeholder-inherit::-moz-placeholder { - color: inherit; - opacity: 1; -} - -.g-placeholder-inherit::-webkit-input-placeholder { - color: inherit; - opacity: 1; -} - -/*------------------------------------ - Offsets -------------------------------------*/ -@media (min-width: 768px) { - .g-offset-md-1 { - margin-left: 8.333333%; - } -} - -@media (min-width: 992px) { - .g-offset-lg-1 { - margin-left: 8.333333%; - } - .g-offset-lg-4 { - margin-left: 33.333333%; - } -} - -/*------------------------------------ - Colors -------------------------------------*/ -/* Basic Colors -------------------------------------*/ -/* Inherit Colors */ -.g-color-inherit { - color: inherit !important; -} - -/* Main Colors */ -.g-color-main { - color: #a49da6 !important; -} - -.g-color-main--hover:hover { - color: #a49da6 !important; -} - -/* Primary Colors */ -.g-color-primary { - color: #e74c3c !important; -} - -.u-block-hover:hover .g-color-primary--hover, .g-color-primary--hover:hover { - color: #e74c3c !important; -} - -.g-parent:hover .g-color-primary--parent-hover { - color: #e74c3c !important; -} - -.g-color-primary-opacity-0_3 { - color: rgba(231, 76, 60, 0.3) !important; -} - -.g-color-primary-opacity-0_4 { - color: rgba(231, 76, 60, 0.4) !important; -} - -.g-color-primary--active.active { - color: #e74c3c !important; -} - -.active .g-color-primary--parent-active { - color: #e74c3c !important; -} - -.g-color-primary--before::before, .g-color-primary--after::after { - color: #e74c3c; -} - -/* Secondary Colors */ -.g-color-secondary { - color: #e74b3c !important; -} - -.u-block-hover:hover .g-color-secondary--hover, .g-color-secondary--hover:hover { - color: #e74b3c !important; -} - -.g-parent:hover .g-color-secondary--parent-hover { - color: #e74b3c !important; -} - -/* Black Colors */ -.g-color-black { - color: #000 !important; -} - -.g-color-black--hover:hover { - color: #000 !important; -} - -.g-parent:hover .g-color-black--parent-hover { - color: #000 !important; -} - -.g-color-black-opacity-0_1 { - color: rgba(0, 0, 0, 0.1) !important; -} - -.g-color-black-opacity-0_3 { - color: rgba(0, 0, 0, 0.3) !important; -} - -.g-color-black-opacity-0_5 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.g-color-black-opacity-0_6 { - color: rgba(0, 0, 0, 0.6) !important; -} - -.g-color-black-opacity-0_7 { - color: rgba(0, 0, 0, 0.7) !important; -} - -.g-color-black-opacity-0_8 { - color: rgba(0, 0, 0, 0.8) !important; -} - -.g-color-black-opacity-0_8--child * { - color: rgba(0, 0, 0, 0.8) !important; -} - -.g-color-black-opacity-0_9 { - color: rgba(0, 0, 0, 0.9) !important; -} - -/* White Colors */ -.g-color-white { - color: #fff !important; -} - -.g-color-white--opened-menu:not(.collapsed) { - color: #fff !important; -} - -.u-block-hover:hover .g-color-white--hover, .g-color-white--hover:hover { - color: #fff !important; -} - -.g-parent:hover .g-color-white--parent-hover { - color: #fff !important; -} - -.g-color-white--active.active { - color: #fff !important; -} - -.active .g-color-white--parent-active { - color: #fff !important; -} - -.g-color-white--child * { - color: #fff !important; -} - -.g-color-white-opacity-0_1 { - color: rgba(255, 255, 255, 0.1) !important; -} - -.g-color-white-opacity-0_2 { - color: rgba(255, 255, 255, 0.2) !important; -} - -.g-color-white-opacity-0_3 { - color: rgba(255, 255, 255, 0.3) !important; -} - -.g-color-white-opacity-0_5, .g-color-white-opacity-0_5--hover:hover { - color: rgba(255, 255, 255, 0.5) !important; -} - -.g-color-white-opacity-0_6 { - color: rgba(255, 255, 255, 0.6) !important; -} - -.g-parent:hover .g-color-white-opacity-0_6--parent-hover { - color: rgba(255, 255, 255, 0.6) !important; -} - -.g-color-white-opacity-0_7, .g-color-white-opacity-0_7--hover:hover { - color: rgba(255, 255, 255, 0.7) !important; -} - -.g-color-white-opacity-0_75 { - color: rgba(255, 255, 255, 0.75) !important; -} - -.g-color-white-opacity-0_8 { - color: rgba(255, 255, 255, 0.8) !important; -} - -.g-color-white-opacity-0_8--child * { - color: rgba(255, 255, 255, 0.8) !important; -} - -.g-color-white-opacity-0_9, .g-color-white-opacity-0_9--hover:hover { - color: rgba(255, 255, 255, 0.9) !important; -} - -.u-block-hover:hover .g-color-white-opacity-0_7--hover { - color: rgba(255, 255, 255, 0.7) !important; -} - -/* Gray Colors */ -.g-color-gray-light-v1 { - color: #bbb !important; -} - -.g-color-gray-light-v1--hover:hover { - color: #bbb !important; -} - -.g-color-gray-light-v2 { - color: #ccc !important; -} - -.g-color-gray-light-v2--hover:hover { - color: #ccc !important; -} - -.g-color-gray-light-v3 { - color: #ddd !important; -} - -.g-color-gray-light-v3--hover:hover { - color: #ddd !important; -} - -.g-color-gray-light-v4 { - color: #eee !important; -} - -.g-color-gray-light-v4--hover:hover { - color: #eee !important; -} - -.g-color-gray-light-v4-opacity-0_6 { - color: rgba(238, 238, 238, 0.6) !important; -} - -.g-color-gray-light-v5 { - color: #f7f7f7 !important; -} - -.g-color-gray-light-v5--hover:hover { - color: #f7f7f7 !important; -} - -.g-color-gray-dark-v1 { - color: #111 !important; -} - -.g-color-gray-dark-v1--hover:hover { - color: #111 !important; -} - -.g-color-gray-dark-v2 { - color: #333 !important; -} - -.g-color-gray-dark-v2--hover:hover { - color: #333 !important; -} - -.g-color-gray-dark-v2-opacity-0_75 { - color: rgba(51, 51, 51, 0.75) !important; -} - -.g-color-gray-dark-v3 { - color: #555 !important; -} - -.g-color-gray-dark-v3--hover:hover { - color: #555 !important; -} - -.g-color-gray-dark-v4 { - color: #777 !important; -} - -.g-color-gray-dark-v4--hover:hover { - color: #777 !important; -} - -.g-color-gray-dark-v5 { - color: #999 !important; -} - -.g-color-gray-dark-v5--hover:hover { - color: #999 !important; -} - -.g-parent:hover .g-color-gray-dark-v5--parent-hover { - color: #999 !important; -} - -/* Complementary Colors -------------------------------------*/ -/* Color Green */ -.g-color-green { - color: #72c02c !important; -} - -/* Color Blue */ -.g-color-blue { - color: #3398dc !important; -} - -.g-color-blue--hover:hover { - color: #3398dc !important; -} - -.g-color-blue-dark-v1 { - color: #175a88 !important; -} - -/* Color Light Blue */ -.g-color-lightblue { - color: #edf2f8 !important; -} - -.g-color-lightblue--hover:hover { - color: #edf2f8 !important; -} - -.g-color-lightblue-v1 { - color: #d6e2ee !important; -} - -.g-color-lightblue-v1--hover:hover { - color: #d6e2ee !important; -} - -/* Color Dark Blue */ -.g-color-darkblue { - color: #009 !important; -} - -.g-color-darkblue--hover:hover { - color: #009 !important; -} - -/* Color Indigo */ -.g-color-indigo { - color: #4263a3 !important; -} - -.g-color-indigo--hover:hover { - color: #4263a3 !important; -} - -/* Color Red */ -.g-color-red { - color: #f00 !important; -} - -.g-color-red--hover:hover { - color: #f00 !important; -} - -*:hover > .g-color-red--parent-hover { - color: #f00 !important; -} - -/* Color Light Red */ -.g-color-lightred { - color: #e64b3b !important; -} - -.g-color-lightred--hover:hover { - color: #e64b3b !important; -} - -/* Color Dark Red */ -.g-color-darkred { - color: #a10f2b !important; -} - -.g-color-darkred--hover:hover { - color: #a10f2b !important; -} - -/* Color Purple */ -.g-color-purple { - color: #9a69cb; -} - -.g-color-purple--hover:hover { - color: #9a69cb !important; -} - -.g-color-purple-dark-v1 { - color: #552c7e !important; -} - -/* Color Dark Purple */ -.g-color-darkpurple { - color: #6639b6 !important; -} - -.g-color-darkpurple--hover:hover { - color: #6639b6 !important; -} - -/* Color Pink */ -.g-color-pink { - color: #e81c62; -} - -.g-color-pink--hover:hover { - color: #e81c62 !important; -} - -.g-color-pink-dark-v1 { - color: #6f0b2d !important; -} - -/* Color Orange */ -.g-color-orange { - color: #e57d20 !important; -} - -.g-color-orange--hover:hover { - color: #e57d20 !important; -} - -/* Color Deep Orange */ -.g-color-deeporange { - color: #fe541e !important; -} - -.g-color-deeporange--hover:hover { - color: #fe541e !important; -} - -/* Color Yellow */ -.g-color-yellow { - color: #ebc71d !important; -} - -.g-color-yellow--hover:hover { - color: #ebc71d !important; -} - -/* Color Aqua */ -.g-color-aqua { - color: #29d6e6; -} - -.g-color-aqua--hover:hover { - color: #29d6e6 !important; -} - -.g-color-aqua-dark-v1 { - color: #11848e !important; -} - -/* Color Cyan */ -.g-color-cyan { - color: #00bed6 !important; -} - -.g-color-cyan--hover:hover { - color: #00bed6 !important; -} - -/* Color Teal */ -.g-color-teal { - color: #18ba9b !important; -} - -.g-color-teal--hover:hover { - color: #18ba9b !important; -} - -/* Color Brown */ -.g-color-brown { - color: #9c8061 !important; -} - -.g-color-brown--hover:hover { - color: #9c8061 !important; -} - -/* Color Blue Gray */ -.g-color-bluegray { - color: #585f69 !important; -} - -.g-color-bluegray--hover:hover { - color: #585f69 !important; -} - -/*------------------------------------ - Social Colors -------------------------------------*/ -/* Facebook */ -.g-color-facebook { - color: #3b5998; -} - -.g-color-facebook:hover { - color: #344e86; -} - -.g-color-facebook--hover:hover { - color: #3b5998 !important; -} - -/* Twitter */ -.g-color-twitter { - color: #00acee; -} - -.g-color-twitter:hover { - color: #009ad5; -} - -.g-color-twitter--hover:hover { - color: #00acee !important; -} - -/* Skype */ -.g-color-skype { - color: #00aff0; -} - -.g-color-skype:hover { - color: #009cd7; -} - -.g-color-skype--hover:hover { - color: #00aff0 !important; -} - -/* Pinterest */ -.g-color-pinterest { - color: #c8232c; -} - -.g-color-pinterest:hover { - color: #b21f27; -} - -.g-color-pinterest--hover:hover { - color: #c8232c !important; -} - -/* Vine */ -.g-color-vine { - color: #00bf8f; -} - -.g-color-vine:hover { - color: #00a67c; -} - -.g-color-vine--hover:hover { - color: #00bf8f !important; -} - -/* Youtube */ -.g-color-youtube { - color: #c4302b; -} - -.g-color-youtube:hover { - color: #af2b26; -} - -.g-color-youtube--hover:hover { - color: #c4302b !important; -} - -/* Google plus */ -.g-color-google-plus { - color: #dd4b39; -} - -.g-color-google-plus:hover { - color: #d73925; -} - -.g-color-google-plus--hover:hover { - color: #dd4b39 !important; -} - -/* Dribbble */ -.g-color-dribbble { - color: #ea4c89; -} - -.g-color-dribbble:hover { - color: #e7357a; -} - -.g-color-dribbble--hover:hover { - color: #ea4c89 !important; -} - -/* VK */ -.g-color-vk { - color: #2b587a; -} - -.g-color-vk:hover { - color: #244a67; -} - -.g-color-vk--hover:hover { - color: #2b587a !important; -} - -/* Linkedin */ -.g-color-linkedin { - color: #0e76a8; -} - -.g-color-linkedin:hover { - color: #0c6590; -} - -.g-color-linkedin--hover:hover { - color: #0e76a8 !important; -} - -/* Instagram */ -.g-color-instagram { - color: #3f729b; -} - -.g-color-instagram:hover { - color: #386589; -} - -.g-color-instagram--hover:hover { - color: #3f729b !important; -} - -/*------------------------------------ - Gradient Colors -------------------------------------*/ -/* Cyan Gradient */ -.g-color-cyan-gradient-opacity-v1 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(290deg, rgba(0, 0, 153, 0.55), rgba(0, 190, 214, 0.6)); - background-image: -o-linear-gradient(290deg, rgba(0, 0, 153, 0.55), rgba(0, 190, 214, 0.6)); - background-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55), rgba(0, 190, 214, 0.6)); - background-clip: text; - -webkit-background-clip: text; - text-fill-color: transparent; - -webkit-text-fill-color: transparent; -} - -/* Blue Gradient */ -.g-color-blue-gradient-opacity-v1 { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(350deg, #8654da, rgba(66, 229, 248, 0.8)); - background-image: -o-linear-gradient(350deg, #8654da, rgba(66, 229, 248, 0.8)); - background-image: linear-gradient(-260deg, #8654da, rgba(66, 229, 248, 0.8)); - background-clip: text; - -webkit-background-clip: text; - text-fill-color: transparent; - -webkit-text-fill-color: transparent; -} - -/*------------------------------------ - Widths -------------------------------------*/ -/* Width in Percentage (%) */ -.g-width-30x { - width: 30% !important; - /* P */ -} - -.g-width-40x { - width: 40% !important; - /* P */ -} - -.g-width-50x { - width: 50% !important; - /* P */ -} - -.g-width-60x { - width: 60% !important; - /* P */ -} - -.g-width-70x { - width: 70% !important; - /* P */ -} - -.g-width-80x { - width: 80% !important; - /* P */ -} - -.g-width-90x { - width: 90% !important; - /* P */ -} - -@media (max-width: 445px) { - .w-100--2xs { - width: 100% !important; - } -} - -@media (min-width: 576px) { - .g-width-20x--sm { - width: 20% !important; - } - .g-width-25x--sm { - width: 25% !important; - } - .g-width-33_3x--sm { - width: 33.333333% !important; - } - .g-width-40x--sm { - width: 40% !important; - } - .g-width-60x--sm { - width: 60% !important; - } - .g-width-16_6x--sm { - width: 16.666666% !important; - } - .g-width-66_6x--sm { - width: 66.666666% !important; - } -} - -@media (min-width: 768px) { - /* P */ - .g-width-20x--md { - width: 20% !important; - /* P */ - } - .g-width-25x--md { - width: 25% !important; - /* P */ - } - .g-width-30x--md { - width: 30% !important; - /* P */ - } - .g-width-35x--md { - width: 35% !important; - /* P */ - } - .g-width-40x--md { - width: 40% !important; - /* P */ - } - .g-width-45x--md { - width: 45% !important; - /* P */ - } - .g-width-50x--md { - width: 50% !important; - /* P */ - } - .g-width-55x--md { - width: 55% !important; - /* P */ - } - .g-width-60x--md { - width: 60% !important; - /* P */ - } - .g-width-65x--md { - width: 65% !important; - /* P */ - } - .g-width-70x--md { - width: 70% !important; - /* P */ - } - .g-width-75x--md { - width: 75% !important; - /* P */ - } - .g-width-80x--md { - width: 80% !important; - /* P */ - } - .g-width-85x--md { - width: 85% !important; - /* P */ - } - .g-width-90x--md { - width: 90% !important; - /* P */ - } - .g-width-33_3x--md { - /* P */ - width: 33.333333% !important; - } - .g-width-16_6x--md { - /* P */ - width: 16.666666% !important; - } - .g-width-66_6x--md { - /* P */ - width: 66.666666% !important; - } -} - -.g-width-auto { - width: auto !important; - /* P */ -} - -/* Max Width in Percentage (%) */ -.g-width-1x { - max-width: 1%; -} - -.g-width-80x { - max-width: 80%; -} - -.g-width-90x { - max-width: 90%; -} - -.g-width-95x { - width: 95%; -} - -.g-max-width-60x { - max-width: 60%; -} - -.g-max-width-100x { - max-width: 100%; -} - -/* Min Width in Percentage (%) */ -.g-min-width-100x { - min-width: 100%; -} - -/* Width Viewport Width (vw) */ -.g-width-50vw { - width: 50vw !important; - /* P */ -} - -.g-width-100vw { - width: 100vw !important; - /* P */ -} - -/* Width in Pixels (px) */ -.g-width-3 { - width: 3px !important; - /* O */ -} - -.g-width-10 { - width: 10px !important; - /* O */ -} - -.g-width-12 { - width: 12px !important; - /* Z */ -} - -.g-width-16 { - width: 16px !important; - /* O */ -} - -.g-width-18 { - width: 18px !important; - /* O */ -} - -.g-width-20 { - width: 20px !important; - /* O */ -} - -.g-width-24 { - width: 24px !important; - /* O */ -} - -.g-width-25 { - width: 25px !important; -} - -.g-width-26 { - width: 26px !important; - /* P */ -} - -.g-width-28 { - width: 28px !important; - /* O */ -} - -.g-width-30 { - width: 30px !important; - /* P */ -} - -.g-width-32 { - width: 32px !important; - /* O */ -} - -.g-width-35 { - width: 35px !important; - /* P */ -} - -.g-width-36 { - width: 36px !important; - /* O */ -} - -.g-width-40 { - width: 40px !important; - /* P */ -} - -.g-width-45 { - width: 45px !important; - /* P */ -} - -.g-width-48 { - width: 48px !important; - /* P */ -} - -.g-width-50 { - width: 50px !important; - /* P */ -} - -.g-width-54 { - width: 54px !important; - /* P */ -} - -.g-width-55 { - width: 55px !important; - /* P */ -} - -.g-width-60 { - width: 60px !important; - /* P */ -} - -.g-width-64 { - width: 64px !important; - /* P */ -} - -.g-width-70 { - width: 70px !important; - /* P */ -} - -.g-width-75 { - width: 75px !important; - /* O */ -} - -.g-width-80 { - width: 80px !important; - /* P */ -} - -.g-width-85 { - width: 85px !important; - /* P */ -} - -.g-width-95 { - width: 95px !important; - /* P */ -} - -.g-width-100 { - width: 100px !important; - /* P */ -} - -.g-width-105 { - width: 105px; -} - -.g-width-110 { - width: 110px !important; - /* O */ -} - -.g-width-115 { - width: 115px !important; - /* O */ -} - -.g-width-120 { - width: 120px !important; - /* P */ -} - -.g-width-125 { - width: 125px !important; - /* P */ -} - -.g-width-130 { - width: 130px !important; - /* P */ -} - -.g-width-135 { - width: 135px !important; - /* O */ -} - -.g-width-140 { - width: 140px !important; - /* P */ -} - -.g-width-150 { - width: 150px !important; -} - -.g-width-160 { - width: 160px !important; - /* P */ -} - -.g-width-170 { - width: 170px !important; - /* P */ -} - -.g-width-180 { - width: 180px !important; - /* O */ -} - -.g-width-200 { - width: 200px !important; - /* P */ -} - -.g-width-220 { - width: 220px !important; -} - -.g-width-215 { - width: 215px !important; -} - -.g-width-235 { - width: 235px !important; -} - -.g-width-250 { - /* RG-Q */ - width: 250px !important; - /* P */ - max-width: 100%; -} - -.g-width-270 { - width: 270px !important; - /* O */ - max-width: 100%; -} - -.g-width-300 { - width: 300px !important; - /* P */ - max-width: 100%; -} - -.g-width-400 { - width: 400px !important; - /* O */ - max-width: 100%; -} - -.g-width-340 { - width: 340px !important; - /* O */ - max-width: 100%; -} - -.g-width-360 { - width: 360px !important; - /* O */ - max-width: 100%; -} - -.g-width-370 { - width: 370px !important; - /* P */ - max-width: 100%; -} - -.g-width-380 { - width: 380px !important; - /* O */ - max-width: 100%; -} - -.g-width-410 { - width: 410px !important; - /* O */ -} - -.g-width-460 { - width: 460px !important; - /* O */ - max-width: 100%; -} - -.g-width-465 { - width: 465px !important; - /* O */ - max-width: 100%; -} - -.g-width-485 { - width: 485px !important; - /* O */ - max-width: 100%; -} - -.g-width-560 { - width: 560px !important; - /* O */ - max-width: 100%; -} - -.g-width-590 { - width: 590px !important; - max-width: 100%; -} - -.g-width-600 { - width: 600px !important; - /* O */ - max-width: 100%; -} - -.g-width-630 { - width: 630px !important; - /* O */ - max-width: 100%; -} - -.g-width-680 { - width: 680px !important; - /* O */ - max-width: 100%; -} - -.g-width-720 { - width: 720px !important; - /* O */ - max-width: 100%; -} - -.g-width-760 { - width: 760px !important; - max-width: 100%; -} - -.g-width-770 { - width: 770px !important; - max-width: 100%; -} - -.g-width-780 { - /* RG-Q */ - width: 780px !important; - /* P */ - max-width: 100%; -} - -.g-width-900 { - width: 900px !important; - /* P */ - max-width: 100%; -} - -.g-width-945 { - width: 945px !important; - max-width: 100%; -} - -.g-width-1025 { - width: 1025px !important; - max-width: 100%; -} - -/* Max Width in Pixels (px) */ -.g-max-width-100 { - max-width: 100px; -} - -.g-max-width-120 { - max-width: 120px; -} - -.g-max-width-170 { - max-width: 170px; - /* O */ -} - -.g-max-width-190 { - max-width: 190px; -} - -.g-max-width-200 { - max-width: 200px; -} - -.g-max-width-250 { - max-width: 250px; -} - -.g-max-width-300 { - max-width: 300px; -} - -.g-max-width-400 { - max-width: 400px; -} - -.g-max-width-500 { - max-width: 500px; -} - -.g-max-width-540 { - max-width: 540px; -} - -.g-max-width-550 { - max-width: 550px; -} - -.g-max-width-570 { - max-width: 570px; -} - -.g-max-width-600 { - max-width: 600px; -} - -.g-max-width-645 { - max-width: 645px; -} - -.g-max-width-670 { - max-width: 670px; -} - -.g-max-width-700 { - max-width: 700px; -} - -.g-max-width-750 { - max-width: 750px; -} - -.g-max-width-770 { - max-width: 770px; -} - -.g-max-width-780 { - max-width: 780px; -} - -.g-max-width-800 { - max-width: 800px; -} - -.g-max-width-840 { - max-width: 840px; -} - -.g-max-width-870 { - max-width: 870px; -} - -.g-max-width-960 { - max-width: 960px; -} - -/* Min Width in Pixels (px) */ -.g-min-width-35 { - min-width: 35px; -} - -.g-min-width-40 { - min-width: 40px; -} - -.g-min-width-65 { - min-width: 65px; -} - -.g-min-width-110 { - min-width: 110px; -} - -.g-min-width-130 { - min-width: 130px; -} - -.g-min-width-150 { - min-width: 150px; -} - -.g-min-width-170 { - min-width: 170px; -} - -.g-min-width-200 { - min-width: 200px; -} - -.g-min-width-220 { - min-width: 220px; -} - -.g-min-width-300 { - min-width: 300px; -} - -.g-min-width-400 { - min-width: 400px; -} - -@media (min-width: 576px) { - .g-width-50x--sm { - width: 50% !important; - /* P */ - } - .g-width-80x--sm { - width: 80% !important; - /* R */ - } - .g-width-100--sm { - width: 100px !important; - /* P */ - } - .g-width-150--sm { - width: 150px !important; - /* O */ - } - .g-width-170--sm { - width: 170px !important; - /* O */ - } - .g-width-180--sm { - width: 180px !important; - } - .g-min-width-180--sm { - min-width: 180px; - } - .g-width-485--sm { - width: 485px !important; - /* O */ - max-width: 100%; - } - .g-width-auto--sm { - width: auto !important; - } - .g-max-width-300--sm { - max-width: 300px; - } -} - -@media (min-width: 768px) { - .g-width-40--md { - width: 40px !important; - /* O */ - } - .g-width-45--md { - width: 45px !important; - /* O */ - } - .g-width-60--md { - width: 60px !important; - /* O */ - } - .g-width-80--md { - width: 80px !important; - /* O */ - } - .g-width-50x--md { - width: 50% !important; - /* P */ - } - .g-width-60x--md { - width: 60% !important; - /* P */ - } - .g-width-80x--md { - width: 80% !important; - /* R */ - } - .g-width-45--md { - width: 45px !important; - } - .g-width-100--md { - width: 100px !important; - /* O */ - } - .g-width-125--md { - width: 125px !important; - /* P */ - } - .g-width-135--md { - width: 135px !important; - } - .g-width-140--md { - width: 140px !important; - /* R */ - } - .g-width-155--md { - width: 155px !important; - /* R */ - } - .g-width-180--md { - width: 180px !important; - } - .g-width-225--md { - width: 225px !important; - } - .g-width-160--md { - width: 160px !important; - } - .g-width-165--md { - width: 165px !important; - } - .g-width-170--md { - width: 170px !important; - /* P */ - } - .g-width-185--md { - width: 185px !important; - /* O */ - } - .g-width-280--md { - width: 280px !important; - /* O */ - } - .g-width-780--md { - width: 780px !important; - /* O */ - max-width: 100%; - } - .g-max-width-200--md { - max-width: 200px; - } - .g-max-width-400--md { - max-width: 400px; - } - .g-min-width-110--md { - min-width: 110px; - } - .g-width-auto--md { - width: auto !important; - /* P */ - } -} - -@media (min-width: 992px) { - .g-width-100x--lg { - width: 100% !important; - /* P */ - } - .g-width-155--lg { - width: 155px !important; - /* O */ - } - .g-width-165--lg { - width: 165px !important; - } - .g-width-200--lg { - width: 200px !important; - /* O */ - max-width: 100%; - } - .g-width-250--lg { - /* RG-Q */ - width: 250px !important; - /* P */ - max-width: 100%; - } - .g-width-485--lg { - width: 485px !important; - /* O */ - max-width: 100%; - } - .g-width-auto--lg { - width: auto !important; - /* P */ - } - .g-max-width-200--lg { - max-width: 200px; - } -} - -@media (min-width: 1200px) { - .g-min-width-315--xl { - min-width: 315px; - } -} - -* > .g-width-70--hover { - -webkit-transition-property: width; - -o-transition-property: width; - transition-property: width; - -webkit-transition-duration: .2s; - -o-transition-duration: .2s; - transition-duration: .2s; - -webkit-transition-timing-function: ease-in; - -o-transition-timing-function: ease-in; - transition-timing-function: ease-in; -} - -*:hover > .g-width-70--hover { - width: 70px; -} - -/*------------------------------------ - Heights -------------------------------------*/ -/* Height in Percentage (%) */ -.g-height-50x { - height: 50%; -} - -.g-height-80x { - height: 80%; -} - -.g-height-90x { - height: 90%; -} - -.g-height-95x { - height: 95%; -} - -.g-height-100x { - height: 100%; -} - -/* Max Height in Percentage (%) */ -.g-max-height-100x { - max-height: 100%; -} - -/* Max Height in Viewport Height (vh) */ -.g-max-height-70vh { - max-height: 70vh !important; -} - -.g-max-height-90vh { - height: 90vh !important; -} - -/* Min Height in Percentage (%) */ -.g-min-height-100x { - min-height: 100%; -} - -/* Height in Viewport Height (vh) */ -.g-height-50vh { - height: 50vh !important; -} - -.g-height-70vh { - height: 70vh; -} - -.g-height-75vh { - height: 75vh; -} - -.g-height-100vh { - height: 100vh !important; -} - -/* Min Height in Viewport Height (vh) */ -.g-min-height-50vh { - min-height: 50vh; -} - -.g-min-height-60vh { - min-height: 60vh; -} - -.g-min-height-70vh { - min-height: 70vh; -} - -.g-min-height-80vh { - min-height: 80vh; -} - -.g-min-height-100vh { - min-height: 100vh; -} - -/* Auto Height */ -.g-height-auto { - height: auto; -} - -@media (min-width: 576px) { - .g-height-100vh--sm { - height: 100vh !important; - } - .g-height-auto--sm { - height: auto; - } - .g-height-100x--sm { - height: 100%; - } -} - -@media (min-width: 768px) { - .g-height-auto--md { - height: auto; - } - .g-min-height-100vh--md { - min-height: 100vh; - } -} - -@media (min-width: 992px) { - .g-height-100vh--lg { - height: 100vh !important; - } - .g-height-auto--lg { - height: auto; - } -} - -@media (min-width: 1200px) { - .g-height-auto--xl { - height: auto; - } -} - -/* Height in Pixels (px) */ -.g-height-1 { - height: 1px; -} - -.g-height-2 { - height: 2px; -} - -.g-height-4 { - height: 4px; -} - -.g-height-5 { - height: 5px !important; -} - -.g-height-6 { - height: 6px !important; -} - -.g-height-10 { - height: 10px !important; -} - -.g-height-12 { - height: 12px !important; -} - -.g-height-16 { - height: 16px !important; -} - -.g-height-18 { - height: 18px; -} - -.g-height-20 { - height: 20px !important; -} - -.g-height-22 { - height: 22px !important; -} - -.g-height-24 { - height: 24px; -} - -.g-height-25 { - height: 25px; -} - -.g-height-26 { - height: 26px; -} - -.g-height-28 { - height: 28px !important; - /* O */ -} - -.g-height-30 { - height: 30px !important; -} - -.g-height-32 { - height: 32px; - /* O */ -} - -.g-height-35 { - height: 35px !important; -} - -.g-height-40 { - height: 40px; -} - -.g-height-45 { - height: 45px; -} - -.g-height-48 { - height: 48px; - /* O */ -} - -.g-height-50 { - height: 50px; -} - -.g-height-55 { - height: 55px; -} - -.g-height-60 { - height: 60px; -} - -.g-height-64 { - height: 64px; -} - -.g-height-70 { - height: 70px; -} - -.g-height-75 { - height: 75px; - /* O */ -} - -.g-height-80 { - height: 80px !important; -} - -.g-height-85 { - height: 85px; -} - -.g-height-88 { - height: 88px; -} - -.g-height-90 { - height: 90px; -} - -.g-height-95 { - height: 95px !important; -} - -.g-height-100 { - height: 100px !important; -} - -.g-height-105 { - height: 105px; -} - -.g-height-115 { - height: 115px !important; - /* O */ -} - -.g-height-120 { - height: 120px; -} - -.g-height-125 { - height: 125px; -} - -.g-height-130 { - height: 130px; -} - -.g-height-140 { - height: 140px; -} - -.g-height-150 { - height: 150px; -} - -.g-height-160 { - height: 160px; -} - -.g-height-170 { - height: 170px; - /* O */ -} - -.g-height-180 { - height: 180px !important; - /* O */ -} - -.g-height-200 { - height: 200px; -} - -.g-height-220 { - height: 220px; -} - -.g-height-250 { - height: 250px; -} - -.g-height-280 { - height: 280px; -} - -.g-height-300 { - height: 300px; -} - -.g-height-350 { - height: 350px; -} - -.g-height-400 { - height: 400px; -} - -.g-height-450 { - height: 450px; -} - -.g-height-460 { - height: 460px; - /* O */ - max-height: 100% !important; -} - -.g-height-500 { - height: 500px; -} - -.g-height-600 { - height: 600px; -} - -.g-height-680 { - height: 680px; -} - -/* Min Height in Pixels (px) */ -.g-min-height-4 { - min-height: 4px; -} - -.g-min-height-35 { - min-height: 35px; -} - -.g-min-height-170 { - min-height: 170px; -} - -.g-min-height-200 { - min-height: 200px; -} - -.g-min-height-250 { - min-height: 250px; -} - -.g-min-height-275 { - min-height: 275px; -} - -.g-min-height-300 { - min-height: 300px; -} - -.g-min-height-312 { - min-height: 312px; -} - -.g-min-height-360 { - min-height: 360px; -} - -.g-min-height-400 { - min-height: 400px; -} - -.g-min-height-450 { - min-height: 450px; -} - -.g-min-height-500 { - min-height: 500px; -} - -.g-min-height-600 { - min-height: 600px; -} - -@media (min-width: 576px) { - .g-height-350--sm { - height: 350px; - } - .g-height-680--sm { - height: 680px; - } -} - -@media (min-width: 768px) { - .g-height-40--md { - height: 40px !important; - } - .g-height-45--md { - height: 45px !important; - } - .g-height-60--md { - height: 60px !important; - } - .g-height-100--md { - height: 100px !important; - } - .g-height-170--md { - height: 170px !important; - } - .g-height-350--md { - height: 350px; - } - .g-height-500--md { - height: 500px; - } - .g-height-680--md { - height: 680px; - } - .g-height-100x--md { - height: 100%; - } - .g-height-100vh--md { - height: 100vh; - } - .g-min-height-230--md { - min-height: 230px; - } - .g-min-height-500--md { - min-height: 500px; - } -} - -@media (min-width: 992px) { - .g-height-80--lg { - height: 80px !important; - } - .g-height-200--lg { - height: 200px !important; - } - .g-height-230--lg { - height: 230px; - } - .g-height-350--lg { - height: 350px; - } - .g-height-680--lg { - height: 680px; - } -} - -@media (min-width: 1200px) { - .g-height-350--xl { - height: 350px; - } - .g-height-680--xl { - height: 680px; - } -} - -/*------------------------------------ - Margin Spaces -------------------------------------*/ -/* Margin Spaces (xs) -------------------------------------*/ -@media (min-width: 0) { - .g-ma-0 { - margin: 0 !important; - } - .g-mx-0 { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .g-ml-0 { - margin-left: 0 !important; - } - .g-mr-0 { - margin-right: 0 !important; - } - .g-mt-0 { - margin-top: 0 !important; - } - .g-mb-0 { - margin-bottom: 0 !important; - } - .g-mx-1 { - margin-left: 0.07143rem !important; - margin-right: 0.07143rem !important; - } - .g-mx-2 { - margin-left: 0.14286rem !important; - margin-right: 0.14286rem !important; - } - .g-mx-3 { - margin-left: 0.21429rem !important; - margin-right: 0.21429rem !important; - } - .g-mx-4 { - margin-left: 0.28571rem !important; - margin-right: 0.28571rem !important; - } - .g-mx-5 { - margin-left: 0.35714rem !important; - margin-right: 0.35714rem !important; - } - .g-mx-6 { - margin-left: 0.42857rem !important; - margin-right: 0.42857rem !important; - } - .g-mx-7 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .g-mx-8 { - margin-left: 0.57143rem !important; - margin-right: 0.57143rem !important; - } - .g-mx-9 { - margin-left: 0.64286rem !important; - margin-right: 0.64286rem !important; - } - .g-mx-10 { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-10 { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-15 { - margin-left: 1.07143rem !important; - margin-right: 1.07143rem !important; - } - .g-mx-20 { - margin-left: 1.42857rem !important; - margin-right: 1.42857rem !important; - } - .g-mx-25 { - margin-left: 1.78571rem !important; - margin-right: 1.78571rem !important; - } - .g-mx-30 { - margin-left: 2.14286rem !important; - margin-right: 2.14286rem !important; - } - .g-mx-35 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; - } - .g-mx-40 { - margin-left: 2.85714rem !important; - margin-right: 2.85714rem !important; - } - .g-mx-45 { - margin-left: 3.21429rem !important; - margin-right: 3.21429rem !important; - } - .g-mx-50 { - margin-left: 3.57143rem !important; - margin-right: 3.57143rem !important; - } - .g-mx-55 { - margin-left: 3.92857rem !important; - margin-right: 3.92857rem !important; - } - .g-mx-60 { - margin-left: 4.28571rem !important; - margin-right: 4.28571rem !important; - } - .g-mx-65 { - margin-left: 4.64286rem !important; - margin-right: 4.64286rem !important; - } - .g-mx-70 { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .g-mx-75 { - margin-left: 5.35714rem !important; - margin-right: 5.35714rem !important; - } - .g-mx-80 { - margin-left: 5.71429rem !important; - margin-right: 5.71429rem !important; - } - .g-mx-85 { - margin-left: 6.07143rem !important; - margin-right: 6.07143rem !important; - } - .g-mx-90 { - margin-left: 6.42857rem !important; - margin-right: 6.42857rem !important; - } - .g-mx-95 { - margin-left: 6.78571rem !important; - margin-right: 6.78571rem !important; - } - .g-mx-100 { - margin-left: 7.14286rem !important; - margin-right: 7.14286rem !important; - } - .g-my-1 { - margin-top: 0.07143rem !important; - margin-bottom: 0.07143rem !important; - } - .g-my-2 { - margin-top: 0.14286rem !important; - margin-bottom: 0.14286rem !important; - } - .g-my-3 { - margin-top: 0.21429rem !important; - margin-bottom: 0.21429rem !important; - } - .g-my-4 { - margin-top: 0.28571rem !important; - margin-bottom: 0.28571rem !important; - } - .g-my-5 { - margin-top: 0.35714rem !important; - margin-bottom: 0.35714rem !important; - } - .g-my-6 { - margin-top: 0.42857rem !important; - margin-bottom: 0.42857rem !important; - } - .g-my-7 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .g-my-8 { - margin-top: 0.57143rem !important; - margin-bottom: 0.57143rem !important; - } - .g-my-9 { - margin-top: 0.64286rem !important; - margin-bottom: 0.64286rem !important; - } - .g-my-10 { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-10 { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-15 { - margin-top: 1.07143rem !important; - margin-bottom: 1.07143rem !important; - } - .g-my-20 { - margin-top: 1.42857rem !important; - margin-bottom: 1.42857rem !important; - } - .g-my-25 { - margin-top: 1.78571rem !important; - margin-bottom: 1.78571rem !important; - } - .g-my-30 { - margin-top: 2.14286rem !important; - margin-bottom: 2.14286rem !important; - } - .g-my-35 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .g-my-40 { - margin-top: 2.85714rem !important; - margin-bottom: 2.85714rem !important; - } - .g-my-45 { - margin-top: 3.21429rem !important; - margin-bottom: 3.21429rem !important; - } - .g-my-50 { - margin-top: 3.57143rem !important; - margin-bottom: 3.57143rem !important; - } - .g-my-55 { - margin-top: 3.92857rem !important; - margin-bottom: 3.92857rem !important; - } - .g-my-60 { - margin-top: 4.28571rem !important; - margin-bottom: 4.28571rem !important; - } - .g-my-65 { - margin-top: 4.64286rem !important; - margin-bottom: 4.64286rem !important; - } - .g-my-70 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .g-my-75 { - margin-top: 5.35714rem !important; - margin-bottom: 5.35714rem !important; - } - .g-my-80 { - margin-top: 5.71429rem !important; - margin-bottom: 5.71429rem !important; - } - .g-my-85 { - margin-top: 6.07143rem !important; - margin-bottom: 6.07143rem !important; - } - .g-my-90 { - margin-top: 6.42857rem !important; - margin-bottom: 6.42857rem !important; - } - .g-my-95 { - margin-top: 6.78571rem !important; - margin-bottom: 6.78571rem !important; - } - .g-my-100 { - margin-top: 7.14286rem !important; - margin-bottom: 7.14286rem !important; - } - .g-mt-1 { - margin-top: 0.07143rem !important; - } - .g-mt-minus-1 { - margin-top: -0.07143rem !important; - } - .g-mt-2 { - margin-top: 0.14286rem !important; - } - .g-mt-minus-2 { - margin-top: -0.14286rem !important; - } - .g-mt-3 { - margin-top: 0.21429rem !important; - } - .g-mt-minus-3 { - margin-top: -0.21429rem !important; - } - .g-mt-4 { - margin-top: 0.28571rem !important; - } - .g-mt-minus-4 { - margin-top: -0.28571rem !important; - } - .g-mt-5 { - margin-top: 0.35714rem !important; - } - .g-mt-minus-5 { - margin-top: -0.35714rem !important; - } - .g-mt-6 { - margin-top: 0.42857rem !important; - } - .g-mt-minus-6 { - margin-top: -0.42857rem !important; - } - .g-mt-7 { - margin-top: 0.5rem !important; - } - .g-mt-minus-7 { - margin-top: -0.5rem !important; - } - .g-mt-8 { - margin-top: 0.57143rem !important; - } - .g-mt-minus-8 { - margin-top: -0.57143rem !important; - } - .g-mt-9 { - margin-top: 0.64286rem !important; - } - .g-mt-minus-9 { - margin-top: -0.64286rem !important; - } - .g-mt-10 { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10 { - margin-top: -0.71429rem !important; - } - .g-mt-11 { - margin-top: 0.78571rem !important; - } - .g-mt-minus-11 { - margin-top: -0.78571rem !important; - } - .g-mt-12 { - margin-top: 0.85714rem !important; - } - .g-mt-minus-12 { - margin-top: -0.85714rem !important; - } - .g-mt-13 { - margin-top: 0.92857rem !important; - } - .g-mt-minus-13 { - margin-top: -0.92857rem !important; - } - .g-mt-14 { - margin-top: 1rem !important; - } - .g-mt-minus-14 { - margin-top: -1rem !important; - } - .g-mt-15 { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15 { - margin-top: -1.07143rem !important; - } - .g-mt-16 { - margin-top: 1.14286rem !important; - } - .g-mt-minus-16 { - margin-top: -1.14286rem !important; - } - .g-mt-17 { - margin-top: 1.21429rem !important; - } - .g-mt-minus-17 { - margin-top: -1.21429rem !important; - } - .g-mt-18 { - margin-top: 1.28571rem !important; - } - .g-mt-minus-18 { - margin-top: -1.28571rem !important; - } - .g-mt-19 { - margin-top: 1.35714rem !important; - } - .g-mt-minus-19 { - margin-top: -1.35714rem !important; - } - .g-mt-20 { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20 { - margin-top: -1.42857rem !important; - } - .g-mt-10 { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10 { - margin-top: -0.71429rem !important; - } - .g-mt-15 { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15 { - margin-top: -1.07143rem !important; - } - .g-mt-20 { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20 { - margin-top: -1.42857rem !important; - } - .g-mt-25 { - margin-top: 1.78571rem !important; - } - .g-mt-minus-25 { - margin-top: -1.78571rem !important; - } - .g-mt-30 { - margin-top: 2.14286rem !important; - } - .g-mt-minus-30 { - margin-top: -2.14286rem !important; - } - .g-mt-35 { - margin-top: 2.5rem !important; - } - .g-mt-minus-35 { - margin-top: -2.5rem !important; - } - .g-mt-40 { - margin-top: 2.85714rem !important; - } - .g-mt-minus-40 { - margin-top: -2.85714rem !important; - } - .g-mt-45 { - margin-top: 3.21429rem !important; - } - .g-mt-minus-45 { - margin-top: -3.21429rem !important; - } - .g-mt-50 { - margin-top: 3.57143rem !important; - } - .g-mt-minus-50 { - margin-top: -3.57143rem !important; - } - .g-mt-55 { - margin-top: 3.92857rem !important; - } - .g-mt-minus-55 { - margin-top: -3.92857rem !important; - } - .g-mt-60 { - margin-top: 4.28571rem !important; - } - .g-mt-minus-60 { - margin-top: -4.28571rem !important; - } - .g-mt-65 { - margin-top: 4.64286rem !important; - } - .g-mt-minus-65 { - margin-top: -4.64286rem !important; - } - .g-mt-70 { - margin-top: 5rem !important; - } - .g-mt-minus-70 { - margin-top: -5rem !important; - } - .g-mt-75 { - margin-top: 5.35714rem !important; - } - .g-mt-minus-75 { - margin-top: -5.35714rem !important; - } - .g-mt-80 { - margin-top: 5.71429rem !important; - } - .g-mt-minus-80 { - margin-top: -5.71429rem !important; - } - .g-mt-85 { - margin-top: 6.07143rem !important; - } - .g-mt-minus-85 { - margin-top: -6.07143rem !important; - } - .g-mt-90 { - margin-top: 6.42857rem !important; - } - .g-mt-minus-90 { - margin-top: -6.42857rem !important; - } - .g-mt-95 { - margin-top: 6.78571rem !important; - } - .g-mt-minus-95 { - margin-top: -6.78571rem !important; - } - .g-mt-100 { - margin-top: 7.14286rem !important; - } - .g-mt-minus-100 { - margin-top: -7.14286rem !important; - } - .g-mt-105 { - margin-top: 7.5rem !important; - } - .g-mt-minus-105 { - margin-top: -7.5rem !important; - } - .g-mt-110 { - margin-top: 7.85714rem !important; - } - .g-mt-minus-110 { - margin-top: -7.85714rem !important; - } - .g-mt-115 { - margin-top: 8.21429rem !important; - } - .g-mt-minus-115 { - margin-top: -8.21429rem !important; - } - .g-mt-120 { - margin-top: 8.57143rem !important; - } - .g-mt-minus-120 { - margin-top: -8.57143rem !important; - } - .g-mt-125 { - margin-top: 8.92857rem !important; - } - .g-mt-minus-125 { - margin-top: -8.92857rem !important; - } - .g-mt-130 { - margin-top: 9.28571rem !important; - } - .g-mt-minus-130 { - margin-top: -9.28571rem !important; - } - .g-mt-135 { - margin-top: 9.64286rem !important; - } - .g-mt-minus-135 { - margin-top: -9.64286rem !important; - } - .g-mt-140 { - margin-top: 10rem !important; - } - .g-mt-minus-140 { - margin-top: -10rem !important; - } - .g-mt-145 { - margin-top: 10.35714rem !important; - } - .g-mt-minus-145 { - margin-top: -10.35714rem !important; - } - .g-mt-150 { - margin-top: 10.71429rem !important; - } - .g-mt-minus-150 { - margin-top: -10.71429rem !important; - } - .g-mt-155 { - margin-top: 11.07143rem !important; - } - .g-mt-minus-155 { - margin-top: -11.07143rem !important; - } - .g-mt-160 { - margin-top: 11.42857rem !important; - } - .g-mt-minus-160 { - margin-top: -11.42857rem !important; - } - .g-mt-165 { - margin-top: 11.78571rem !important; - } - .g-mt-minus-165 { - margin-top: -11.78571rem !important; - } - .g-mt-170 { - margin-top: 12.14286rem !important; - } - .g-mt-minus-170 { - margin-top: -12.14286rem !important; - } - .g-mb-1 { - margin-bottom: 0.07143rem !important; - } - .g-mb-minus-1 { - margin-bottom: -0.07143rem !important; - } - .g-mb-2 { - margin-bottom: 0.14286rem !important; - } - .g-mb-minus-2 { - margin-bottom: -0.14286rem !important; - } - .g-mb-3 { - margin-bottom: 0.21429rem !important; - } - .g-mb-minus-3 { - margin-bottom: -0.21429rem !important; - } - .g-mb-4 { - margin-bottom: 0.28571rem !important; - } - .g-mb-minus-4 { - margin-bottom: -0.28571rem !important; - } - .g-mb-5 { - margin-bottom: 0.35714rem !important; - } - .g-mb-minus-5 { - margin-bottom: -0.35714rem !important; - } - .g-mb-6 { - margin-bottom: 0.42857rem !important; - } - .g-mb-minus-6 { - margin-bottom: -0.42857rem !important; - } - .g-mb-7 { - margin-bottom: 0.5rem !important; - } - .g-mb-minus-7 { - margin-bottom: -0.5rem !important; - } - .g-mb-8 { - margin-bottom: 0.57143rem !important; - } - .g-mb-minus-8 { - margin-bottom: -0.57143rem !important; - } - .g-mb-9 { - margin-bottom: 0.64286rem !important; - } - .g-mb-minus-9 { - margin-bottom: -0.64286rem !important; - } - .g-mb-10 { - margin-bottom: 0.71429rem !important; - } - .g-mb-minus-10 { - margin-bottom: -0.71429rem !important; - } - .g-mb-11 { - margin-bottom: 0.78571rem !important; - } - .g-mb-minus-11 { - margin-bottom: -0.78571rem !important; - } - .g-mb-12 { - margin-bottom: 0.85714rem !important; - } - .g-mb-minus-12 { - margin-bottom: -0.85714rem !important; - } - .g-mb-13 { - margin-bottom: 0.92857rem !important; - } - .g-mb-minus-13 { - margin-bottom: -0.92857rem !important; - } - .g-mb-14 { - margin-bottom: 1rem !important; - } - .g-mb-minus-14 { - margin-bottom: -1rem !important; - } - .g-mb-15 { - margin-bottom: 1.07143rem !important; - } - .g-mb-minus-15 { - margin-bottom: -1.07143rem !important; - } - .g-mb-16 { - margin-bottom: 1.14286rem !important; - } - .g-mb-minus-16 { - margin-bottom: -1.14286rem !important; - } - .g-mb-17 { - margin-bottom: 1.21429rem !important; - } - .g-mb-minus-17 { - margin-bottom: -1.21429rem !important; - } - .g-mb-18 { - margin-bottom: 1.28571rem !important; - } - .g-mb-minus-18 { - margin-bottom: -1.28571rem !important; - } - .g-mb-19 { - margin-bottom: 1.35714rem !important; - } - .g-mb-minus-19 { - margin-bottom: -1.35714rem !important; - } - .g-mb-20 { - margin-bottom: 1.42857rem !important; - } - .g-mb-minus-20 { - margin-bottom: -1.42857rem !important; - } - .g-mb-10 { - margin-bottom: 0.71429rem !important; - } - .g-mb-15 { - margin-bottom: 1.07143rem !important; - } - .g-mb-20 { - margin-bottom: 1.42857rem !important; - } - .g-mb-25 { - margin-bottom: 1.78571rem !important; - } - .g-mb-30 { - margin-bottom: 2.14286rem !important; - } - .g-mb-35 { - margin-bottom: 2.5rem !important; - } - .g-mb-40 { - margin-bottom: 2.85714rem !important; - } - .g-mb-45 { - margin-bottom: 3.21429rem !important; - } - .g-mb-50 { - margin-bottom: 3.57143rem !important; - } - .g-mb-55 { - margin-bottom: 3.92857rem !important; - } - .g-mb-60 { - margin-bottom: 4.28571rem !important; - } - .g-mb-65 { - margin-bottom: 4.64286rem !important; - } - .g-mb-70 { - margin-bottom: 5rem !important; - } - .g-mb-75 { - margin-bottom: 5.35714rem !important; - } - .g-mb-80 { - margin-bottom: 5.71429rem !important; - } - .g-mb-85 { - margin-bottom: 6.07143rem !important; - } - .g-mb-90 { - margin-bottom: 6.42857rem !important; - } - .g-mb-95 { - margin-bottom: 6.78571rem !important; - } - .g-mb-100 { - margin-bottom: 7.14286rem !important; - } - .g-mb-105 { - margin-bottom: 7.5rem !important; - } - .g-mb-110 { - margin-bottom: 7.85714rem !important; - } - .g-mb-115 { - margin-bottom: 8.21429rem !important; - } - .g-mb-120 { - margin-bottom: 8.57143rem !important; - } - .g-mb-125 { - margin-bottom: 8.92857rem !important; - } - .g-mb-130 { - margin-bottom: 9.28571rem !important; - } - .g-mb-135 { - margin-bottom: 9.64286rem !important; - } - .g-mb-140 { - margin-bottom: 10rem !important; - } - .g-mb-145 { - margin-bottom: 10.35714rem !important; - } - .g-mb-150 { - margin-bottom: 10.71429rem !important; - } - .g-mb-155 { - margin-bottom: 11.07143rem !important; - } - .g-mb-160 { - margin-bottom: 11.42857rem !important; - } - .g-mb-165 { - margin-bottom: 11.78571rem !important; - } - .g-mb-170 { - margin-bottom: 12.14286rem !important; - } - .g-ml-1 { - margin-left: 0.07143rem !important; - } - .g-ml-minus-1 { - margin-left: -0.07143rem !important; - } - .g-ml-2 { - margin-left: 0.14286rem !important; - } - .g-ml-minus-2 { - margin-left: -0.14286rem !important; - } - .g-ml-3 { - margin-left: 0.21429rem !important; - } - .g-ml-minus-3 { - margin-left: -0.21429rem !important; - } - .g-ml-4 { - margin-left: 0.28571rem !important; - } - .g-ml-minus-4 { - margin-left: -0.28571rem !important; - } - .g-ml-5 { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5 { - margin-left: -0.35714rem !important; - } - .g-ml-6 { - margin-left: 0.42857rem !important; - } - .g-ml-minus-6 { - margin-left: -0.42857rem !important; - } - .g-ml-7 { - margin-left: 0.5rem !important; - } - .g-ml-minus-7 { - margin-left: -0.5rem !important; - } - .g-ml-8 { - margin-left: 0.57143rem !important; - } - .g-ml-minus-8 { - margin-left: -0.57143rem !important; - } - .g-ml-9 { - margin-left: 0.64286rem !important; - } - .g-ml-minus-9 { - margin-left: -0.64286rem !important; - } - .g-ml-10 { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10 { - margin-left: -0.71429rem !important; - } - .g-ml-5 { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5 { - margin-left: -0.35714rem !important; - } - .g-ml-10 { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10 { - margin-left: -0.71429rem !important; - } - .g-ml-15 { - margin-left: 1.07143rem !important; - } - .g-ml-minus-15 { - margin-left: -1.07143rem !important; - } - .g-ml-20 { - margin-left: 1.42857rem !important; - } - .g-ml-minus-20 { - margin-left: -1.42857rem !important; - } - .g-ml-25 { - margin-left: 1.78571rem !important; - } - .g-ml-minus-25 { - margin-left: -1.78571rem !important; - } - .g-ml-30 { - margin-left: 2.14286rem !important; - } - .g-ml-minus-30 { - margin-left: -2.14286rem !important; - } - .g-ml-35 { - margin-left: 2.5rem !important; - } - .g-ml-minus-35 { - margin-left: -2.5rem !important; - } - .g-ml-40 { - margin-left: 2.85714rem !important; - } - .g-ml-minus-40 { - margin-left: -2.85714rem !important; - } - .g-ml-45 { - margin-left: 3.21429rem !important; - } - .g-ml-minus-45 { - margin-left: -3.21429rem !important; - } - .g-ml-50 { - margin-left: 3.57143rem !important; - } - .g-ml-minus-50 { - margin-left: -3.57143rem !important; - } - .g-mr-1 { - margin-right: 0.07143rem !important; - } - .g-mr-minus-1 { - margin-right: -0.07143rem !important; - } - .g-mr-2 { - margin-right: 0.14286rem !important; - } - .g-mr-minus-2 { - margin-right: -0.14286rem !important; - } - .g-mr-3 { - margin-right: 0.21429rem !important; - } - .g-mr-minus-3 { - margin-right: -0.21429rem !important; - } - .g-mr-4 { - margin-right: 0.28571rem !important; - } - .g-mr-minus-4 { - margin-right: -0.28571rem !important; - } - .g-mr-5 { - margin-right: 0.35714rem !important; - } - .g-mr-minus-5 { - margin-right: -0.35714rem !important; - } - .g-mr-6 { - margin-right: 0.42857rem !important; - } - .g-mr-minus-6 { - margin-right: -0.42857rem !important; - } - .g-mr-7 { - margin-right: 0.5rem !important; - } - .g-mr-minus-7 { - margin-right: -0.5rem !important; - } - .g-mr-8 { - margin-right: 0.57143rem !important; - } - .g-mr-minus-8 { - margin-right: -0.57143rem !important; - } - .g-mr-9 { - margin-right: 0.64286rem !important; - } - .g-mr-minus-9 { - margin-right: -0.64286rem !important; - } - .g-mr-10 { - margin-right: 0.71429rem !important; - } - .g-mr-minus-10 { - margin-right: -0.71429rem !important; - } - .g-mr-5 { - margin-right: 0.35714rem !important; - } - .g-mr-10 { - margin-right: 0.71429rem !important; - } - .g-mr-15 { - margin-right: 1.07143rem !important; - } - .g-mr-20 { - margin-right: 1.42857rem !important; - } - .g-mr-25 { - margin-right: 1.78571rem !important; - } - .g-mr-30 { - margin-right: 2.14286rem !important; - } - .g-mr-35 { - margin-right: 2.5rem !important; - } - .g-mr-40 { - margin-right: 2.85714rem !important; - } - .g-mr-45 { - margin-right: 3.21429rem !important; - } - .g-mr-50 { - margin-right: 3.57143rem !important; - } -} - -/* Margin Spaces (sm) -------------------------------------*/ -@media (min-width: 576px) { - .g-ma-0--sm { - margin: 0 !important; - } - .g-mx-0--sm { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-0--sm { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .g-ml-0--sm { - margin-left: 0 !important; - } - .g-mr-0--sm { - margin-right: 0 !important; - } - .g-mt-0--sm { - margin-top: 0 !important; - } - .g-mb-0--sm { - margin-bottom: 0 !important; - } - .g-mx-1--sm { - margin-left: 0.07143rem !important; - margin-right: 0.07143rem !important; - } - .g-mx-2--sm { - margin-left: 0.14286rem !important; - margin-right: 0.14286rem !important; - } - .g-mx-3--sm { - margin-left: 0.21429rem !important; - margin-right: 0.21429rem !important; - } - .g-mx-4--sm { - margin-left: 0.28571rem !important; - margin-right: 0.28571rem !important; - } - .g-mx-5--sm { - margin-left: 0.35714rem !important; - margin-right: 0.35714rem !important; - } - .g-mx-6--sm { - margin-left: 0.42857rem !important; - margin-right: 0.42857rem !important; - } - .g-mx-7--sm { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .g-mx-8--sm { - margin-left: 0.57143rem !important; - margin-right: 0.57143rem !important; - } - .g-mx-9--sm { - margin-left: 0.64286rem !important; - margin-right: 0.64286rem !important; - } - .g-mx-10--sm { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-10--sm { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-15--sm { - margin-left: 1.07143rem !important; - margin-right: 1.07143rem !important; - } - .g-mx-20--sm { - margin-left: 1.42857rem !important; - margin-right: 1.42857rem !important; - } - .g-mx-25--sm { - margin-left: 1.78571rem !important; - margin-right: 1.78571rem !important; - } - .g-mx-30--sm { - margin-left: 2.14286rem !important; - margin-right: 2.14286rem !important; - } - .g-mx-35--sm { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; - } - .g-mx-40--sm { - margin-left: 2.85714rem !important; - margin-right: 2.85714rem !important; - } - .g-mx-45--sm { - margin-left: 3.21429rem !important; - margin-right: 3.21429rem !important; - } - .g-mx-50--sm { - margin-left: 3.57143rem !important; - margin-right: 3.57143rem !important; - } - .g-mx-55--sm { - margin-left: 3.92857rem !important; - margin-right: 3.92857rem !important; - } - .g-mx-60--sm { - margin-left: 4.28571rem !important; - margin-right: 4.28571rem !important; - } - .g-mx-65--sm { - margin-left: 4.64286rem !important; - margin-right: 4.64286rem !important; - } - .g-mx-70--sm { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .g-mx-75--sm { - margin-left: 5.35714rem !important; - margin-right: 5.35714rem !important; - } - .g-mx-80--sm { - margin-left: 5.71429rem !important; - margin-right: 5.71429rem !important; - } - .g-mx-85--sm { - margin-left: 6.07143rem !important; - margin-right: 6.07143rem !important; - } - .g-mx-90--sm { - margin-left: 6.42857rem !important; - margin-right: 6.42857rem !important; - } - .g-mx-95--sm { - margin-left: 6.78571rem !important; - margin-right: 6.78571rem !important; - } - .g-mx-100--sm { - margin-left: 7.14286rem !important; - margin-right: 7.14286rem !important; - } - .g-my-1--sm { - margin-top: 0.07143rem !important; - margin-bottom: 0.07143rem !important; - } - .g-my-2--sm { - margin-top: 0.14286rem !important; - margin-bottom: 0.14286rem !important; - } - .g-my-3--sm { - margin-top: 0.21429rem !important; - margin-bottom: 0.21429rem !important; - } - .g-my-4--sm { - margin-top: 0.28571rem !important; - margin-bottom: 0.28571rem !important; - } - .g-my-5--sm { - margin-top: 0.35714rem !important; - margin-bottom: 0.35714rem !important; - } - .g-my-6--sm { - margin-top: 0.42857rem !important; - margin-bottom: 0.42857rem !important; - } - .g-my-7--sm { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .g-my-8--sm { - margin-top: 0.57143rem !important; - margin-bottom: 0.57143rem !important; - } - .g-my-9--sm { - margin-top: 0.64286rem !important; - margin-bottom: 0.64286rem !important; - } - .g-my-10--sm { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-10--sm { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-15--sm { - margin-top: 1.07143rem !important; - margin-bottom: 1.07143rem !important; - } - .g-my-20--sm { - margin-top: 1.42857rem !important; - margin-bottom: 1.42857rem !important; - } - .g-my-25--sm { - margin-top: 1.78571rem !important; - margin-bottom: 1.78571rem !important; - } - .g-my-30--sm { - margin-top: 2.14286rem !important; - margin-bottom: 2.14286rem !important; - } - .g-my-35--sm { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .g-my-40--sm { - margin-top: 2.85714rem !important; - margin-bottom: 2.85714rem !important; - } - .g-my-45--sm { - margin-top: 3.21429rem !important; - margin-bottom: 3.21429rem !important; - } - .g-my-50--sm { - margin-top: 3.57143rem !important; - margin-bottom: 3.57143rem !important; - } - .g-my-55--sm { - margin-top: 3.92857rem !important; - margin-bottom: 3.92857rem !important; - } - .g-my-60--sm { - margin-top: 4.28571rem !important; - margin-bottom: 4.28571rem !important; - } - .g-my-65--sm { - margin-top: 4.64286rem !important; - margin-bottom: 4.64286rem !important; - } - .g-my-70--sm { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .g-my-75--sm { - margin-top: 5.35714rem !important; - margin-bottom: 5.35714rem !important; - } - .g-my-80--sm { - margin-top: 5.71429rem !important; - margin-bottom: 5.71429rem !important; - } - .g-my-85--sm { - margin-top: 6.07143rem !important; - margin-bottom: 6.07143rem !important; - } - .g-my-90--sm { - margin-top: 6.42857rem !important; - margin-bottom: 6.42857rem !important; - } - .g-my-95--sm { - margin-top: 6.78571rem !important; - margin-bottom: 6.78571rem !important; - } - .g-my-100--sm { - margin-top: 7.14286rem !important; - margin-bottom: 7.14286rem !important; - } - .g-mt-1--sm { - margin-top: 0.07143rem !important; - } - .g-mt-minus-1--sm { - margin-top: -0.07143rem !important; - } - .g-mt-2--sm { - margin-top: 0.14286rem !important; - } - .g-mt-minus-2--sm { - margin-top: -0.14286rem !important; - } - .g-mt-3--sm { - margin-top: 0.21429rem !important; - } - .g-mt-minus-3--sm { - margin-top: -0.21429rem !important; - } - .g-mt-4--sm { - margin-top: 0.28571rem !important; - } - .g-mt-minus-4--sm { - margin-top: -0.28571rem !important; - } - .g-mt-5--sm { - margin-top: 0.35714rem !important; - } - .g-mt-minus-5--sm { - margin-top: -0.35714rem !important; - } - .g-mt-6--sm { - margin-top: 0.42857rem !important; - } - .g-mt-minus-6--sm { - margin-top: -0.42857rem !important; - } - .g-mt-7--sm { - margin-top: 0.5rem !important; - } - .g-mt-minus-7--sm { - margin-top: -0.5rem !important; - } - .g-mt-8--sm { - margin-top: 0.57143rem !important; - } - .g-mt-minus-8--sm { - margin-top: -0.57143rem !important; - } - .g-mt-9--sm { - margin-top: 0.64286rem !important; - } - .g-mt-minus-9--sm { - margin-top: -0.64286rem !important; - } - .g-mt-10--sm { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--sm { - margin-top: -0.71429rem !important; - } - .g-mt-11--sm { - margin-top: 0.78571rem !important; - } - .g-mt-minus-11--sm { - margin-top: -0.78571rem !important; - } - .g-mt-12--sm { - margin-top: 0.85714rem !important; - } - .g-mt-minus-12--sm { - margin-top: -0.85714rem !important; - } - .g-mt-13--sm { - margin-top: 0.92857rem !important; - } - .g-mt-minus-13--sm { - margin-top: -0.92857rem !important; - } - .g-mt-14--sm { - margin-top: 1rem !important; - } - .g-mt-minus-14--sm { - margin-top: -1rem !important; - } - .g-mt-15--sm { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--sm { - margin-top: -1.07143rem !important; - } - .g-mt-16--sm { - margin-top: 1.14286rem !important; - } - .g-mt-minus-16--sm { - margin-top: -1.14286rem !important; - } - .g-mt-17--sm { - margin-top: 1.21429rem !important; - } - .g-mt-minus-17--sm { - margin-top: -1.21429rem !important; - } - .g-mt-18--sm { - margin-top: 1.28571rem !important; - } - .g-mt-minus-18--sm { - margin-top: -1.28571rem !important; - } - .g-mt-19--sm { - margin-top: 1.35714rem !important; - } - .g-mt-minus-19--sm { - margin-top: -1.35714rem !important; - } - .g-mt-20--sm { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--sm { - margin-top: -1.42857rem !important; - } - .g-mt-10--sm { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--sm { - margin-top: -0.71429rem !important; - } - .g-mt-15--sm { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--sm { - margin-top: -1.07143rem !important; - } - .g-mt-20--sm { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--sm { - margin-top: -1.42857rem !important; - } - .g-mt-25--sm { - margin-top: 1.78571rem !important; - } - .g-mt-minus-25--sm { - margin-top: -1.78571rem !important; - } - .g-mt-30--sm { - margin-top: 2.14286rem !important; - } - .g-mt-minus-30--sm { - margin-top: -2.14286rem !important; - } - .g-mt-35--sm { - margin-top: 2.5rem !important; - } - .g-mt-minus-35--sm { - margin-top: -2.5rem !important; - } - .g-mt-40--sm { - margin-top: 2.85714rem !important; - } - .g-mt-minus-40--sm { - margin-top: -2.85714rem !important; - } - .g-mt-45--sm { - margin-top: 3.21429rem !important; - } - .g-mt-minus-45--sm { - margin-top: -3.21429rem !important; - } - .g-mt-50--sm { - margin-top: 3.57143rem !important; - } - .g-mt-minus-50--sm { - margin-top: -3.57143rem !important; - } - .g-mt-55--sm { - margin-top: 3.92857rem !important; - } - .g-mt-minus-55--sm { - margin-top: -3.92857rem !important; - } - .g-mt-60--sm { - margin-top: 4.28571rem !important; - } - .g-mt-minus-60--sm { - margin-top: -4.28571rem !important; - } - .g-mt-65--sm { - margin-top: 4.64286rem !important; - } - .g-mt-minus-65--sm { - margin-top: -4.64286rem !important; - } - .g-mt-70--sm { - margin-top: 5rem !important; - } - .g-mt-minus-70--sm { - margin-top: -5rem !important; - } - .g-mt-75--sm { - margin-top: 5.35714rem !important; - } - .g-mt-minus-75--sm { - margin-top: -5.35714rem !important; - } - .g-mt-80--sm { - margin-top: 5.71429rem !important; - } - .g-mt-minus-80--sm { - margin-top: -5.71429rem !important; - } - .g-mt-85--sm { - margin-top: 6.07143rem !important; - } - .g-mt-minus-85--sm { - margin-top: -6.07143rem !important; - } - .g-mt-90--sm { - margin-top: 6.42857rem !important; - } - .g-mt-minus-90--sm { - margin-top: -6.42857rem !important; - } - .g-mt-95--sm { - margin-top: 6.78571rem !important; - } - .g-mt-minus-95--sm { - margin-top: -6.78571rem !important; - } - .g-mt-100--sm { - margin-top: 7.14286rem !important; - } - .g-mt-minus-100--sm { - margin-top: -7.14286rem !important; - } - .g-mt-105--sm { - margin-top: 7.5rem !important; - } - .g-mt-minus-105--sm { - margin-top: -7.5rem !important; - } - .g-mt-110--sm { - margin-top: 7.85714rem !important; - } - .g-mt-minus-110--sm { - margin-top: -7.85714rem !important; - } - .g-mt-115--sm { - margin-top: 8.21429rem !important; - } - .g-mt-minus-115--sm { - margin-top: -8.21429rem !important; - } - .g-mt-120--sm { - margin-top: 8.57143rem !important; - } - .g-mt-minus-120--sm { - margin-top: -8.57143rem !important; - } - .g-mt-125--sm { - margin-top: 8.92857rem !important; - } - .g-mt-minus-125--sm { - margin-top: -8.92857rem !important; - } - .g-mt-130--sm { - margin-top: 9.28571rem !important; - } - .g-mt-minus-130--sm { - margin-top: -9.28571rem !important; - } - .g-mt-135--sm { - margin-top: 9.64286rem !important; - } - .g-mt-minus-135--sm { - margin-top: -9.64286rem !important; - } - .g-mt-140--sm { - margin-top: 10rem !important; - } - .g-mt-minus-140--sm { - margin-top: -10rem !important; - } - .g-mt-145--sm { - margin-top: 10.35714rem !important; - } - .g-mt-minus-145--sm { - margin-top: -10.35714rem !important; - } - .g-mt-150--sm { - margin-top: 10.71429rem !important; - } - .g-mt-minus-150--sm { - margin-top: -10.71429rem !important; - } - .g-mt-155--sm { - margin-top: 11.07143rem !important; - } - .g-mt-minus-155--sm { - margin-top: -11.07143rem !important; - } - .g-mt-160--sm { - margin-top: 11.42857rem !important; - } - .g-mt-minus-160--sm { - margin-top: -11.42857rem !important; - } - .g-mt-165--sm { - margin-top: 11.78571rem !important; - } - .g-mt-minus-165--sm { - margin-top: -11.78571rem !important; - } - .g-mt-170--sm { - margin-top: 12.14286rem !important; - } - .g-mt-minus-170--sm { - margin-top: -12.14286rem !important; - } - .g-mb-1--sm { - margin-bottom: 0.07143rem !important; - } - .g-mb-minus-1--sm { - margin-bottom: -0.07143rem !important; - } - .g-mb-2--sm { - margin-bottom: 0.14286rem !important; - } - .g-mb-minus-2--sm { - margin-bottom: -0.14286rem !important; - } - .g-mb-3--sm { - margin-bottom: 0.21429rem !important; - } - .g-mb-minus-3--sm { - margin-bottom: -0.21429rem !important; - } - .g-mb-4--sm { - margin-bottom: 0.28571rem !important; - } - .g-mb-minus-4--sm { - margin-bottom: -0.28571rem !important; - } - .g-mb-5--sm { - margin-bottom: 0.35714rem !important; - } - .g-mb-minus-5--sm { - margin-bottom: -0.35714rem !important; - } - .g-mb-6--sm { - margin-bottom: 0.42857rem !important; - } - .g-mb-minus-6--sm { - margin-bottom: -0.42857rem !important; - } - .g-mb-7--sm { - margin-bottom: 0.5rem !important; - } - .g-mb-minus-7--sm { - margin-bottom: -0.5rem !important; - } - .g-mb-8--sm { - margin-bottom: 0.57143rem !important; - } - .g-mb-minus-8--sm { - margin-bottom: -0.57143rem !important; - } - .g-mb-9--sm { - margin-bottom: 0.64286rem !important; - } - .g-mb-minus-9--sm { - margin-bottom: -0.64286rem !important; - } - .g-mb-10--sm { - margin-bottom: 0.71429rem !important; - } - .g-mb-minus-10--sm { - margin-bottom: -0.71429rem !important; - } - .g-mb-11--sm { - margin-bottom: 0.78571rem !important; - } - .g-mb-minus-11--sm { - margin-bottom: -0.78571rem !important; - } - .g-mb-12--sm { - margin-bottom: 0.85714rem !important; - } - .g-mb-minus-12--sm { - margin-bottom: -0.85714rem !important; - } - .g-mb-13--sm { - margin-bottom: 0.92857rem !important; - } - .g-mb-minus-13--sm { - margin-bottom: -0.92857rem !important; - } - .g-mb-14--sm { - margin-bottom: 1rem !important; - } - .g-mb-minus-14--sm { - margin-bottom: -1rem !important; - } - .g-mb-15--sm { - margin-bottom: 1.07143rem !important; - } - .g-mb-minus-15--sm { - margin-bottom: -1.07143rem !important; - } - .g-mb-16--sm { - margin-bottom: 1.14286rem !important; - } - .g-mb-minus-16--sm { - margin-bottom: -1.14286rem !important; - } - .g-mb-17--sm { - margin-bottom: 1.21429rem !important; - } - .g-mb-minus-17--sm { - margin-bottom: -1.21429rem !important; - } - .g-mb-18--sm { - margin-bottom: 1.28571rem !important; - } - .g-mb-minus-18--sm { - margin-bottom: -1.28571rem !important; - } - .g-mb-19--sm { - margin-bottom: 1.35714rem !important; - } - .g-mb-minus-19--sm { - margin-bottom: -1.35714rem !important; - } - .g-mb-20--sm { - margin-bottom: 1.42857rem !important; - } - .g-mb-minus-20--sm { - margin-bottom: -1.42857rem !important; - } - .g-mb-10--sm { - margin-bottom: 0.71429rem !important; - } - .g-mb-15--sm { - margin-bottom: 1.07143rem !important; - } - .g-mb-20--sm { - margin-bottom: 1.42857rem !important; - } - .g-mb-25--sm { - margin-bottom: 1.78571rem !important; - } - .g-mb-30--sm { - margin-bottom: 2.14286rem !important; - } - .g-mb-35--sm { - margin-bottom: 2.5rem !important; - } - .g-mb-40--sm { - margin-bottom: 2.85714rem !important; - } - .g-mb-45--sm { - margin-bottom: 3.21429rem !important; - } - .g-mb-50--sm { - margin-bottom: 3.57143rem !important; - } - .g-mb-55--sm { - margin-bottom: 3.92857rem !important; - } - .g-mb-60--sm { - margin-bottom: 4.28571rem !important; - } - .g-mb-65--sm { - margin-bottom: 4.64286rem !important; - } - .g-mb-70--sm { - margin-bottom: 5rem !important; - } - .g-mb-75--sm { - margin-bottom: 5.35714rem !important; - } - .g-mb-80--sm { - margin-bottom: 5.71429rem !important; - } - .g-mb-85--sm { - margin-bottom: 6.07143rem !important; - } - .g-mb-90--sm { - margin-bottom: 6.42857rem !important; - } - .g-mb-95--sm { - margin-bottom: 6.78571rem !important; - } - .g-mb-100--sm { - margin-bottom: 7.14286rem !important; - } - .g-mb-105--sm { - margin-bottom: 7.5rem !important; - } - .g-mb-110--sm { - margin-bottom: 7.85714rem !important; - } - .g-mb-115--sm { - margin-bottom: 8.21429rem !important; - } - .g-mb-120--sm { - margin-bottom: 8.57143rem !important; - } - .g-mb-125--sm { - margin-bottom: 8.92857rem !important; - } - .g-mb-130--sm { - margin-bottom: 9.28571rem !important; - } - .g-mb-135--sm { - margin-bottom: 9.64286rem !important; - } - .g-mb-140--sm { - margin-bottom: 10rem !important; - } - .g-mb-145--sm { - margin-bottom: 10.35714rem !important; - } - .g-mb-150--sm { - margin-bottom: 10.71429rem !important; - } - .g-mb-155--sm { - margin-bottom: 11.07143rem !important; - } - .g-mb-160--sm { - margin-bottom: 11.42857rem !important; - } - .g-mb-165--sm { - margin-bottom: 11.78571rem !important; - } - .g-mb-170--sm { - margin-bottom: 12.14286rem !important; - } - .g-ml-1--sm { - margin-left: 0.07143rem !important; - } - .g-ml-minus-1--sm { - margin-left: -0.07143rem !important; - } - .g-ml-2--sm { - margin-left: 0.14286rem !important; - } - .g-ml-minus-2--sm { - margin-left: -0.14286rem !important; - } - .g-ml-3--sm { - margin-left: 0.21429rem !important; - } - .g-ml-minus-3--sm { - margin-left: -0.21429rem !important; - } - .g-ml-4--sm { - margin-left: 0.28571rem !important; - } - .g-ml-minus-4--sm { - margin-left: -0.28571rem !important; - } - .g-ml-5--sm { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--sm { - margin-left: -0.35714rem !important; - } - .g-ml-6--sm { - margin-left: 0.42857rem !important; - } - .g-ml-minus-6--sm { - margin-left: -0.42857rem !important; - } - .g-ml-7--sm { - margin-left: 0.5rem !important; - } - .g-ml-minus-7--sm { - margin-left: -0.5rem !important; - } - .g-ml-8--sm { - margin-left: 0.57143rem !important; - } - .g-ml-minus-8--sm { - margin-left: -0.57143rem !important; - } - .g-ml-9--sm { - margin-left: 0.64286rem !important; - } - .g-ml-minus-9--sm { - margin-left: -0.64286rem !important; - } - .g-ml-10--sm { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--sm { - margin-left: -0.71429rem !important; - } - .g-ml-5--sm { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--sm { - margin-left: -0.35714rem !important; - } - .g-ml-10--sm { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--sm { - margin-left: -0.71429rem !important; - } - .g-ml-15--sm { - margin-left: 1.07143rem !important; - } - .g-ml-minus-15--sm { - margin-left: -1.07143rem !important; - } - .g-ml-20--sm { - margin-left: 1.42857rem !important; - } - .g-ml-minus-20--sm { - margin-left: -1.42857rem !important; - } - .g-ml-25--sm { - margin-left: 1.78571rem !important; - } - .g-ml-minus-25--sm { - margin-left: -1.78571rem !important; - } - .g-ml-30--sm { - margin-left: 2.14286rem !important; - } - .g-ml-minus-30--sm { - margin-left: -2.14286rem !important; - } - .g-ml-35--sm { - margin-left: 2.5rem !important; - } - .g-ml-minus-35--sm { - margin-left: -2.5rem !important; - } - .g-ml-40--sm { - margin-left: 2.85714rem !important; - } - .g-ml-minus-40--sm { - margin-left: -2.85714rem !important; - } - .g-ml-45--sm { - margin-left: 3.21429rem !important; - } - .g-ml-minus-45--sm { - margin-left: -3.21429rem !important; - } - .g-ml-50--sm { - margin-left: 3.57143rem !important; - } - .g-ml-minus-50--sm { - margin-left: -3.57143rem !important; - } - .g-mr-1--sm { - margin-right: 0.07143rem !important; - } - .g-mr-minus-1--sm { - margin-right: -0.07143rem !important; - } - .g-mr-2--sm { - margin-right: 0.14286rem !important; - } - .g-mr-minus-2--sm { - margin-right: -0.14286rem !important; - } - .g-mr-3--sm { - margin-right: 0.21429rem !important; - } - .g-mr-minus-3--sm { - margin-right: -0.21429rem !important; - } - .g-mr-4--sm { - margin-right: 0.28571rem !important; - } - .g-mr-minus-4--sm { - margin-right: -0.28571rem !important; - } - .g-mr-5--sm { - margin-right: 0.35714rem !important; - } - .g-mr-minus-5--sm { - margin-right: -0.35714rem !important; - } - .g-mr-6--sm { - margin-right: 0.42857rem !important; - } - .g-mr-minus-6--sm { - margin-right: -0.42857rem !important; - } - .g-mr-7--sm { - margin-right: 0.5rem !important; - } - .g-mr-minus-7--sm { - margin-right: -0.5rem !important; - } - .g-mr-8--sm { - margin-right: 0.57143rem !important; - } - .g-mr-minus-8--sm { - margin-right: -0.57143rem !important; - } - .g-mr-9--sm { - margin-right: 0.64286rem !important; - } - .g-mr-minus-9--sm { - margin-right: -0.64286rem !important; - } - .g-mr-10--sm { - margin-right: 0.71429rem !important; - } - .g-mr-minus-10--sm { - margin-right: -0.71429rem !important; - } - .g-mr-5--sm { - margin-right: 0.35714rem !important; - } - .g-mr-10--sm { - margin-right: 0.71429rem !important; - } - .g-mr-15--sm { - margin-right: 1.07143rem !important; - } - .g-mr-20--sm { - margin-right: 1.42857rem !important; - } - .g-mr-25--sm { - margin-right: 1.78571rem !important; - } - .g-mr-30--sm { - margin-right: 2.14286rem !important; - } - .g-mr-35--sm { - margin-right: 2.5rem !important; - } - .g-mr-40--sm { - margin-right: 2.85714rem !important; - } - .g-mr-45--sm { - margin-right: 3.21429rem !important; - } - .g-mr-50--sm { - margin-right: 3.57143rem !important; - } -} - -/* Margin Spaces (md) -------------------------------------*/ -@media (min-width: 768px) { - .g-ma-0--md { - margin: 0 !important; - } - .g-mx-0--md { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-0--md { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .g-ml-0--md { - margin-left: 0 !important; - } - .g-mr-0--md { - margin-right: 0 !important; - } - .g-mt-0--md { - margin-top: 0 !important; - } - .g-mb-0--md { - margin-bottom: 0 !important; - } - .g-mx-1--md { - margin-left: 0.07143rem !important; - margin-right: 0.07143rem !important; - } - .g-mx-2--md { - margin-left: 0.14286rem !important; - margin-right: 0.14286rem !important; - } - .g-mx-3--md { - margin-left: 0.21429rem !important; - margin-right: 0.21429rem !important; - } - .g-mx-4--md { - margin-left: 0.28571rem !important; - margin-right: 0.28571rem !important; - } - .g-mx-5--md { - margin-left: 0.35714rem !important; - margin-right: 0.35714rem !important; - } - .g-mx-6--md { - margin-left: 0.42857rem !important; - margin-right: 0.42857rem !important; - } - .g-mx-7--md { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .g-mx-8--md { - margin-left: 0.57143rem !important; - margin-right: 0.57143rem !important; - } - .g-mx-9--md { - margin-left: 0.64286rem !important; - margin-right: 0.64286rem !important; - } - .g-mx-10--md { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-10--md { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-15--md { - margin-left: 1.07143rem !important; - margin-right: 1.07143rem !important; - } - .g-mx-20--md { - margin-left: 1.42857rem !important; - margin-right: 1.42857rem !important; - } - .g-mx-25--md { - margin-left: 1.78571rem !important; - margin-right: 1.78571rem !important; - } - .g-mx-30--md { - margin-left: 2.14286rem !important; - margin-right: 2.14286rem !important; - } - .g-mx-35--md { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; - } - .g-mx-40--md { - margin-left: 2.85714rem !important; - margin-right: 2.85714rem !important; - } - .g-mx-45--md { - margin-left: 3.21429rem !important; - margin-right: 3.21429rem !important; - } - .g-mx-50--md { - margin-left: 3.57143rem !important; - margin-right: 3.57143rem !important; - } - .g-mx-55--md { - margin-left: 3.92857rem !important; - margin-right: 3.92857rem !important; - } - .g-mx-60--md { - margin-left: 4.28571rem !important; - margin-right: 4.28571rem !important; - } - .g-mx-65--md { - margin-left: 4.64286rem !important; - margin-right: 4.64286rem !important; - } - .g-mx-70--md { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .g-mx-75--md { - margin-left: 5.35714rem !important; - margin-right: 5.35714rem !important; - } - .g-mx-80--md { - margin-left: 5.71429rem !important; - margin-right: 5.71429rem !important; - } - .g-mx-85--md { - margin-left: 6.07143rem !important; - margin-right: 6.07143rem !important; - } - .g-mx-90--md { - margin-left: 6.42857rem !important; - margin-right: 6.42857rem !important; - } - .g-mx-95--md { - margin-left: 6.78571rem !important; - margin-right: 6.78571rem !important; - } - .g-mx-100--md { - margin-left: 7.14286rem !important; - margin-right: 7.14286rem !important; - } - .g-my-1--md { - margin-top: 0.07143rem !important; - margin-bottom: 0.07143rem !important; - } - .g-my-2--md { - margin-top: 0.14286rem !important; - margin-bottom: 0.14286rem !important; - } - .g-my-3--md { - margin-top: 0.21429rem !important; - margin-bottom: 0.21429rem !important; - } - .g-my-4--md { - margin-top: 0.28571rem !important; - margin-bottom: 0.28571rem !important; - } - .g-my-5--md { - margin-top: 0.35714rem !important; - margin-bottom: 0.35714rem !important; - } - .g-my-6--md { - margin-top: 0.42857rem !important; - margin-bottom: 0.42857rem !important; - } - .g-my-7--md { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .g-my-8--md { - margin-top: 0.57143rem !important; - margin-bottom: 0.57143rem !important; - } - .g-my-9--md { - margin-top: 0.64286rem !important; - margin-bottom: 0.64286rem !important; - } - .g-my-10--md { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-10--md { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-15--md { - margin-top: 1.07143rem !important; - margin-bottom: 1.07143rem !important; - } - .g-my-20--md { - margin-top: 1.42857rem !important; - margin-bottom: 1.42857rem !important; - } - .g-my-25--md { - margin-top: 1.78571rem !important; - margin-bottom: 1.78571rem !important; - } - .g-my-30--md { - margin-top: 2.14286rem !important; - margin-bottom: 2.14286rem !important; - } - .g-my-35--md { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .g-my-40--md { - margin-top: 2.85714rem !important; - margin-bottom: 2.85714rem !important; - } - .g-my-45--md { - margin-top: 3.21429rem !important; - margin-bottom: 3.21429rem !important; - } - .g-my-50--md { - margin-top: 3.57143rem !important; - margin-bottom: 3.57143rem !important; - } - .g-my-55--md { - margin-top: 3.92857rem !important; - margin-bottom: 3.92857rem !important; - } - .g-my-60--md { - margin-top: 4.28571rem !important; - margin-bottom: 4.28571rem !important; - } - .g-my-65--md { - margin-top: 4.64286rem !important; - margin-bottom: 4.64286rem !important; - } - .g-my-70--md { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .g-my-75--md { - margin-top: 5.35714rem !important; - margin-bottom: 5.35714rem !important; - } - .g-my-80--md { - margin-top: 5.71429rem !important; - margin-bottom: 5.71429rem !important; - } - .g-my-85--md { - margin-top: 6.07143rem !important; - margin-bottom: 6.07143rem !important; - } - .g-my-90--md { - margin-top: 6.42857rem !important; - margin-bottom: 6.42857rem !important; - } - .g-my-95--md { - margin-top: 6.78571rem !important; - margin-bottom: 6.78571rem !important; - } - .g-my-100--md { - margin-top: 7.14286rem !important; - margin-bottom: 7.14286rem !important; - } - .g-mt-1--md { - margin-top: 0.07143rem !important; - } - .g-mt-minus-1--md { - margin-top: -0.07143rem !important; - } - .g-mt-2--md { - margin-top: 0.14286rem !important; - } - .g-mt-minus-2--md { - margin-top: -0.14286rem !important; - } - .g-mt-3--md { - margin-top: 0.21429rem !important; - } - .g-mt-minus-3--md { - margin-top: -0.21429rem !important; - } - .g-mt-4--md { - margin-top: 0.28571rem !important; - } - .g-mt-minus-4--md { - margin-top: -0.28571rem !important; - } - .g-mt-5--md { - margin-top: 0.35714rem !important; - } - .g-mt-minus-5--md { - margin-top: -0.35714rem !important; - } - .g-mt-6--md { - margin-top: 0.42857rem !important; - } - .g-mt-minus-6--md { - margin-top: -0.42857rem !important; - } - .g-mt-7--md { - margin-top: 0.5rem !important; - } - .g-mt-minus-7--md { - margin-top: -0.5rem !important; - } - .g-mt-8--md { - margin-top: 0.57143rem !important; - } - .g-mt-minus-8--md { - margin-top: -0.57143rem !important; - } - .g-mt-9--md { - margin-top: 0.64286rem !important; - } - .g-mt-minus-9--md { - margin-top: -0.64286rem !important; - } - .g-mt-10--md { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--md { - margin-top: -0.71429rem !important; - } - .g-mt-11--md { - margin-top: 0.78571rem !important; - } - .g-mt-minus-11--md { - margin-top: -0.78571rem !important; - } - .g-mt-12--md { - margin-top: 0.85714rem !important; - } - .g-mt-minus-12--md { - margin-top: -0.85714rem !important; - } - .g-mt-13--md { - margin-top: 0.92857rem !important; - } - .g-mt-minus-13--md { - margin-top: -0.92857rem !important; - } - .g-mt-14--md { - margin-top: 1rem !important; - } - .g-mt-minus-14--md { - margin-top: -1rem !important; - } - .g-mt-15--md { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--md { - margin-top: -1.07143rem !important; - } - .g-mt-16--md { - margin-top: 1.14286rem !important; - } - .g-mt-minus-16--md { - margin-top: -1.14286rem !important; - } - .g-mt-17--md { - margin-top: 1.21429rem !important; - } - .g-mt-minus-17--md { - margin-top: -1.21429rem !important; - } - .g-mt-18--md { - margin-top: 1.28571rem !important; - } - .g-mt-minus-18--md { - margin-top: -1.28571rem !important; - } - .g-mt-19--md { - margin-top: 1.35714rem !important; - } - .g-mt-minus-19--md { - margin-top: -1.35714rem !important; - } - .g-mt-20--md { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--md { - margin-top: -1.42857rem !important; - } - .g-mt-10--md { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--md { - margin-top: -0.71429rem !important; - } - .g-mt-15--md { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--md { - margin-top: -1.07143rem !important; - } - .g-mt-20--md { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--md { - margin-top: -1.42857rem !important; - } - .g-mt-25--md { - margin-top: 1.78571rem !important; - } - .g-mt-minus-25--md { - margin-top: -1.78571rem !important; - } - .g-mt-30--md { - margin-top: 2.14286rem !important; - } - .g-mt-minus-30--md { - margin-top: -2.14286rem !important; - } - .g-mt-35--md { - margin-top: 2.5rem !important; - } - .g-mt-minus-35--md { - margin-top: -2.5rem !important; - } - .g-mt-40--md { - margin-top: 2.85714rem !important; - } - .g-mt-minus-40--md { - margin-top: -2.85714rem !important; - } - .g-mt-45--md { - margin-top: 3.21429rem !important; - } - .g-mt-minus-45--md { - margin-top: -3.21429rem !important; - } - .g-mt-50--md { - margin-top: 3.57143rem !important; - } - .g-mt-minus-50--md { - margin-top: -3.57143rem !important; - } - .g-mt-55--md { - margin-top: 3.92857rem !important; - } - .g-mt-minus-55--md { - margin-top: -3.92857rem !important; - } - .g-mt-60--md { - margin-top: 4.28571rem !important; - } - .g-mt-minus-60--md { - margin-top: -4.28571rem !important; - } - .g-mt-65--md { - margin-top: 4.64286rem !important; - } - .g-mt-minus-65--md { - margin-top: -4.64286rem !important; - } - .g-mt-70--md { - margin-top: 5rem !important; - } - .g-mt-minus-70--md { - margin-top: -5rem !important; - } - .g-mt-75--md { - margin-top: 5.35714rem !important; - } - .g-mt-minus-75--md { - margin-top: -5.35714rem !important; - } - .g-mt-80--md { - margin-top: 5.71429rem !important; - } - .g-mt-minus-80--md { - margin-top: -5.71429rem !important; - } - .g-mt-85--md { - margin-top: 6.07143rem !important; - } - .g-mt-minus-85--md { - margin-top: -6.07143rem !important; - } - .g-mt-90--md { - margin-top: 6.42857rem !important; - } - .g-mt-minus-90--md { - margin-top: -6.42857rem !important; - } - .g-mt-95--md { - margin-top: 6.78571rem !important; - } - .g-mt-minus-95--md { - margin-top: -6.78571rem !important; - } - .g-mt-100--md { - margin-top: 7.14286rem !important; - } - .g-mt-minus-100--md { - margin-top: -7.14286rem !important; - } - .g-mt-105--md { - margin-top: 7.5rem !important; - } - .g-mt-minus-105--md { - margin-top: -7.5rem !important; - } - .g-mt-110--md { - margin-top: 7.85714rem !important; - } - .g-mt-minus-110--md { - margin-top: -7.85714rem !important; - } - .g-mt-115--md { - margin-top: 8.21429rem !important; - } - .g-mt-minus-115--md { - margin-top: -8.21429rem !important; - } - .g-mt-120--md { - margin-top: 8.57143rem !important; - } - .g-mt-minus-120--md { - margin-top: -8.57143rem !important; - } - .g-mt-125--md { - margin-top: 8.92857rem !important; - } - .g-mt-minus-125--md { - margin-top: -8.92857rem !important; - } - .g-mt-130--md { - margin-top: 9.28571rem !important; - } - .g-mt-minus-130--md { - margin-top: -9.28571rem !important; - } - .g-mt-135--md { - margin-top: 9.64286rem !important; - } - .g-mt-minus-135--md { - margin-top: -9.64286rem !important; - } - .g-mt-140--md { - margin-top: 10rem !important; - } - .g-mt-minus-140--md { - margin-top: -10rem !important; - } - .g-mt-145--md { - margin-top: 10.35714rem !important; - } - .g-mt-minus-145--md { - margin-top: -10.35714rem !important; - } - .g-mt-150--md { - margin-top: 10.71429rem !important; - } - .g-mt-minus-150--md { - margin-top: -10.71429rem !important; - } - .g-mt-155--md { - margin-top: 11.07143rem !important; - } - .g-mt-minus-155--md { - margin-top: -11.07143rem !important; - } - .g-mt-160--md { - margin-top: 11.42857rem !important; - } - .g-mt-minus-160--md { - margin-top: -11.42857rem !important; - } - .g-mt-165--md { - margin-top: 11.78571rem !important; - } - .g-mt-minus-165--md { - margin-top: -11.78571rem !important; - } - .g-mt-170--md { - margin-top: 12.14286rem !important; - } - .g-mt-minus-170--md { - margin-top: -12.14286rem !important; - } - .g-mb-1--md { - margin-bottom: 0.07143rem !important; - } - .g-mb-minus-1--md { - margin-bottom: -0.07143rem !important; - } - .g-mb-2--md { - margin-bottom: 0.14286rem !important; - } - .g-mb-minus-2--md { - margin-bottom: -0.14286rem !important; - } - .g-mb-3--md { - margin-bottom: 0.21429rem !important; - } - .g-mb-minus-3--md { - margin-bottom: -0.21429rem !important; - } - .g-mb-4--md { - margin-bottom: 0.28571rem !important; - } - .g-mb-minus-4--md { - margin-bottom: -0.28571rem !important; - } - .g-mb-5--md { - margin-bottom: 0.35714rem !important; - } - .g-mb-minus-5--md { - margin-bottom: -0.35714rem !important; - } - .g-mb-6--md { - margin-bottom: 0.42857rem !important; - } - .g-mb-minus-6--md { - margin-bottom: -0.42857rem !important; - } - .g-mb-7--md { - margin-bottom: 0.5rem !important; - } - .g-mb-minus-7--md { - margin-bottom: -0.5rem !important; - } - .g-mb-8--md { - margin-bottom: 0.57143rem !important; - } - .g-mb-minus-8--md { - margin-bottom: -0.57143rem !important; - } - .g-mb-9--md { - margin-bottom: 0.64286rem !important; - } - .g-mb-minus-9--md { - margin-bottom: -0.64286rem !important; - } - .g-mb-10--md { - margin-bottom: 0.71429rem !important; - } - .g-mb-minus-10--md { - margin-bottom: -0.71429rem !important; - } - .g-mb-11--md { - margin-bottom: 0.78571rem !important; - } - .g-mb-minus-11--md { - margin-bottom: -0.78571rem !important; - } - .g-mb-12--md { - margin-bottom: 0.85714rem !important; - } - .g-mb-minus-12--md { - margin-bottom: -0.85714rem !important; - } - .g-mb-13--md { - margin-bottom: 0.92857rem !important; - } - .g-mb-minus-13--md { - margin-bottom: -0.92857rem !important; - } - .g-mb-14--md { - margin-bottom: 1rem !important; - } - .g-mb-minus-14--md { - margin-bottom: -1rem !important; - } - .g-mb-15--md { - margin-bottom: 1.07143rem !important; - } - .g-mb-minus-15--md { - margin-bottom: -1.07143rem !important; - } - .g-mb-16--md { - margin-bottom: 1.14286rem !important; - } - .g-mb-minus-16--md { - margin-bottom: -1.14286rem !important; - } - .g-mb-17--md { - margin-bottom: 1.21429rem !important; - } - .g-mb-minus-17--md { - margin-bottom: -1.21429rem !important; - } - .g-mb-18--md { - margin-bottom: 1.28571rem !important; - } - .g-mb-minus-18--md { - margin-bottom: -1.28571rem !important; - } - .g-mb-19--md { - margin-bottom: 1.35714rem !important; - } - .g-mb-minus-19--md { - margin-bottom: -1.35714rem !important; - } - .g-mb-20--md { - margin-bottom: 1.42857rem !important; - } - .g-mb-minus-20--md { - margin-bottom: -1.42857rem !important; - } - .g-mb-10--md { - margin-bottom: 0.71429rem !important; - } - .g-mb-15--md { - margin-bottom: 1.07143rem !important; - } - .g-mb-20--md { - margin-bottom: 1.42857rem !important; - } - .g-mb-25--md { - margin-bottom: 1.78571rem !important; - } - .g-mb-30--md { - margin-bottom: 2.14286rem !important; - } - .g-mb-35--md { - margin-bottom: 2.5rem !important; - } - .g-mb-40--md { - margin-bottom: 2.85714rem !important; - } - .g-mb-45--md { - margin-bottom: 3.21429rem !important; - } - .g-mb-50--md { - margin-bottom: 3.57143rem !important; - } - .g-mb-55--md { - margin-bottom: 3.92857rem !important; - } - .g-mb-60--md { - margin-bottom: 4.28571rem !important; - } - .g-mb-65--md { - margin-bottom: 4.64286rem !important; - } - .g-mb-70--md { - margin-bottom: 5rem !important; - } - .g-mb-75--md { - margin-bottom: 5.35714rem !important; - } - .g-mb-80--md { - margin-bottom: 5.71429rem !important; - } - .g-mb-85--md { - margin-bottom: 6.07143rem !important; - } - .g-mb-90--md { - margin-bottom: 6.42857rem !important; - } - .g-mb-95--md { - margin-bottom: 6.78571rem !important; - } - .g-mb-100--md { - margin-bottom: 7.14286rem !important; - } - .g-mb-105--md { - margin-bottom: 7.5rem !important; - } - .g-mb-110--md { - margin-bottom: 7.85714rem !important; - } - .g-mb-115--md { - margin-bottom: 8.21429rem !important; - } - .g-mb-120--md { - margin-bottom: 8.57143rem !important; - } - .g-mb-125--md { - margin-bottom: 8.92857rem !important; - } - .g-mb-130--md { - margin-bottom: 9.28571rem !important; - } - .g-mb-135--md { - margin-bottom: 9.64286rem !important; - } - .g-mb-140--md { - margin-bottom: 10rem !important; - } - .g-mb-145--md { - margin-bottom: 10.35714rem !important; - } - .g-mb-150--md { - margin-bottom: 10.71429rem !important; - } - .g-mb-155--md { - margin-bottom: 11.07143rem !important; - } - .g-mb-160--md { - margin-bottom: 11.42857rem !important; - } - .g-mb-165--md { - margin-bottom: 11.78571rem !important; - } - .g-mb-170--md { - margin-bottom: 12.14286rem !important; - } - .g-ml-1--md { - margin-left: 0.07143rem !important; - } - .g-ml-minus-1--md { - margin-left: -0.07143rem !important; - } - .g-ml-2--md { - margin-left: 0.14286rem !important; - } - .g-ml-minus-2--md { - margin-left: -0.14286rem !important; - } - .g-ml-3--md { - margin-left: 0.21429rem !important; - } - .g-ml-minus-3--md { - margin-left: -0.21429rem !important; - } - .g-ml-4--md { - margin-left: 0.28571rem !important; - } - .g-ml-minus-4--md { - margin-left: -0.28571rem !important; - } - .g-ml-5--md { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--md { - margin-left: -0.35714rem !important; - } - .g-ml-6--md { - margin-left: 0.42857rem !important; - } - .g-ml-minus-6--md { - margin-left: -0.42857rem !important; - } - .g-ml-7--md { - margin-left: 0.5rem !important; - } - .g-ml-minus-7--md { - margin-left: -0.5rem !important; - } - .g-ml-8--md { - margin-left: 0.57143rem !important; - } - .g-ml-minus-8--md { - margin-left: -0.57143rem !important; - } - .g-ml-9--md { - margin-left: 0.64286rem !important; - } - .g-ml-minus-9--md { - margin-left: -0.64286rem !important; - } - .g-ml-10--md { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--md { - margin-left: -0.71429rem !important; - } - .g-ml-5--md { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--md { - margin-left: -0.35714rem !important; - } - .g-ml-10--md { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--md { - margin-left: -0.71429rem !important; - } - .g-ml-15--md { - margin-left: 1.07143rem !important; - } - .g-ml-minus-15--md { - margin-left: -1.07143rem !important; - } - .g-ml-20--md { - margin-left: 1.42857rem !important; - } - .g-ml-minus-20--md { - margin-left: -1.42857rem !important; - } - .g-ml-25--md { - margin-left: 1.78571rem !important; - } - .g-ml-minus-25--md { - margin-left: -1.78571rem !important; - } - .g-ml-30--md { - margin-left: 2.14286rem !important; - } - .g-ml-minus-30--md { - margin-left: -2.14286rem !important; - } - .g-ml-35--md { - margin-left: 2.5rem !important; - } - .g-ml-minus-35--md { - margin-left: -2.5rem !important; - } - .g-ml-40--md { - margin-left: 2.85714rem !important; - } - .g-ml-minus-40--md { - margin-left: -2.85714rem !important; - } - .g-ml-45--md { - margin-left: 3.21429rem !important; - } - .g-ml-minus-45--md { - margin-left: -3.21429rem !important; - } - .g-ml-50--md { - margin-left: 3.57143rem !important; - } - .g-ml-minus-50--md { - margin-left: -3.57143rem !important; - } - .g-mr-1--md { - margin-right: 0.07143rem !important; - } - .g-mr-minus-1--md { - margin-right: -0.07143rem !important; - } - .g-mr-2--md { - margin-right: 0.14286rem !important; - } - .g-mr-minus-2--md { - margin-right: -0.14286rem !important; - } - .g-mr-3--md { - margin-right: 0.21429rem !important; - } - .g-mr-minus-3--md { - margin-right: -0.21429rem !important; - } - .g-mr-4--md { - margin-right: 0.28571rem !important; - } - .g-mr-minus-4--md { - margin-right: -0.28571rem !important; - } - .g-mr-5--md { - margin-right: 0.35714rem !important; - } - .g-mr-minus-5--md { - margin-right: -0.35714rem !important; - } - .g-mr-6--md { - margin-right: 0.42857rem !important; - } - .g-mr-minus-6--md { - margin-right: -0.42857rem !important; - } - .g-mr-7--md { - margin-right: 0.5rem !important; - } - .g-mr-minus-7--md { - margin-right: -0.5rem !important; - } - .g-mr-8--md { - margin-right: 0.57143rem !important; - } - .g-mr-minus-8--md { - margin-right: -0.57143rem !important; - } - .g-mr-9--md { - margin-right: 0.64286rem !important; - } - .g-mr-minus-9--md { - margin-right: -0.64286rem !important; - } - .g-mr-10--md { - margin-right: 0.71429rem !important; - } - .g-mr-minus-10--md { - margin-right: -0.71429rem !important; - } - .g-mr-5--md { - margin-right: 0.35714rem !important; - } - .g-mr-10--md { - margin-right: 0.71429rem !important; - } - .g-mr-15--md { - margin-right: 1.07143rem !important; - } - .g-mr-20--md { - margin-right: 1.42857rem !important; - } - .g-mr-25--md { - margin-right: 1.78571rem !important; - } - .g-mr-30--md { - margin-right: 2.14286rem !important; - } - .g-mr-35--md { - margin-right: 2.5rem !important; - } - .g-mr-40--md { - margin-right: 2.85714rem !important; - } - .g-mr-45--md { - margin-right: 3.21429rem !important; - } - .g-mr-50--md { - margin-right: 3.57143rem !important; - } -} - -/* Margin Spaces (lg) -------------------------------------*/ -@media (min-width: 992px) { - .g-ma-0--lg { - margin: 0 !important; - } - .g-mx-0--lg { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-0--lg { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .g-ml-0--lg { - margin-left: 0 !important; - } - .g-mr-0--lg { - margin-right: 0 !important; - } - .g-mt-0--lg { - margin-top: 0 !important; - } - .g-mb-0--lg { - margin-bottom: 0 !important; - } - .g-mx-1--lg { - margin-left: 0.07143rem !important; - margin-right: 0.07143rem !important; - } - .g-mx-2--lg { - margin-left: 0.14286rem !important; - margin-right: 0.14286rem !important; - } - .g-mx-3--lg { - margin-left: 0.21429rem !important; - margin-right: 0.21429rem !important; - } - .g-mx-4--lg { - margin-left: 0.28571rem !important; - margin-right: 0.28571rem !important; - } - .g-mx-5--lg { - margin-left: 0.35714rem !important; - margin-right: 0.35714rem !important; - } - .g-mx-6--lg { - margin-left: 0.42857rem !important; - margin-right: 0.42857rem !important; - } - .g-mx-7--lg { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .g-mx-8--lg { - margin-left: 0.57143rem !important; - margin-right: 0.57143rem !important; - } - .g-mx-9--lg { - margin-left: 0.64286rem !important; - margin-right: 0.64286rem !important; - } - .g-mx-10--lg { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-10--lg { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-15--lg { - margin-left: 1.07143rem !important; - margin-right: 1.07143rem !important; - } - .g-mx-20--lg { - margin-left: 1.42857rem !important; - margin-right: 1.42857rem !important; - } - .g-mx-25--lg { - margin-left: 1.78571rem !important; - margin-right: 1.78571rem !important; - } - .g-mx-30--lg { - margin-left: 2.14286rem !important; - margin-right: 2.14286rem !important; - } - .g-mx-35--lg { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; - } - .g-mx-40--lg { - margin-left: 2.85714rem !important; - margin-right: 2.85714rem !important; - } - .g-mx-45--lg { - margin-left: 3.21429rem !important; - margin-right: 3.21429rem !important; - } - .g-mx-50--lg { - margin-left: 3.57143rem !important; - margin-right: 3.57143rem !important; - } - .g-mx-55--lg { - margin-left: 3.92857rem !important; - margin-right: 3.92857rem !important; - } - .g-mx-60--lg { - margin-left: 4.28571rem !important; - margin-right: 4.28571rem !important; - } - .g-mx-65--lg { - margin-left: 4.64286rem !important; - margin-right: 4.64286rem !important; - } - .g-mx-70--lg { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .g-mx-75--lg { - margin-left: 5.35714rem !important; - margin-right: 5.35714rem !important; - } - .g-mx-80--lg { - margin-left: 5.71429rem !important; - margin-right: 5.71429rem !important; - } - .g-mx-85--lg { - margin-left: 6.07143rem !important; - margin-right: 6.07143rem !important; - } - .g-mx-90--lg { - margin-left: 6.42857rem !important; - margin-right: 6.42857rem !important; - } - .g-mx-95--lg { - margin-left: 6.78571rem !important; - margin-right: 6.78571rem !important; - } - .g-mx-100--lg { - margin-left: 7.14286rem !important; - margin-right: 7.14286rem !important; - } - .g-my-1--lg { - margin-top: 0.07143rem !important; - margin-bottom: 0.07143rem !important; - } - .g-my-2--lg { - margin-top: 0.14286rem !important; - margin-bottom: 0.14286rem !important; - } - .g-my-3--lg { - margin-top: 0.21429rem !important; - margin-bottom: 0.21429rem !important; - } - .g-my-4--lg { - margin-top: 0.28571rem !important; - margin-bottom: 0.28571rem !important; - } - .g-my-5--lg { - margin-top: 0.35714rem !important; - margin-bottom: 0.35714rem !important; - } - .g-my-6--lg { - margin-top: 0.42857rem !important; - margin-bottom: 0.42857rem !important; - } - .g-my-7--lg { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .g-my-8--lg { - margin-top: 0.57143rem !important; - margin-bottom: 0.57143rem !important; - } - .g-my-9--lg { - margin-top: 0.64286rem !important; - margin-bottom: 0.64286rem !important; - } - .g-my-10--lg { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-10--lg { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-15--lg { - margin-top: 1.07143rem !important; - margin-bottom: 1.07143rem !important; - } - .g-my-20--lg { - margin-top: 1.42857rem !important; - margin-bottom: 1.42857rem !important; - } - .g-my-25--lg { - margin-top: 1.78571rem !important; - margin-bottom: 1.78571rem !important; - } - .g-my-30--lg { - margin-top: 2.14286rem !important; - margin-bottom: 2.14286rem !important; - } - .g-my-35--lg { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .g-my-40--lg { - margin-top: 2.85714rem !important; - margin-bottom: 2.85714rem !important; - } - .g-my-45--lg { - margin-top: 3.21429rem !important; - margin-bottom: 3.21429rem !important; - } - .g-my-50--lg { - margin-top: 3.57143rem !important; - margin-bottom: 3.57143rem !important; - } - .g-my-55--lg { - margin-top: 3.92857rem !important; - margin-bottom: 3.92857rem !important; - } - .g-my-60--lg { - margin-top: 4.28571rem !important; - margin-bottom: 4.28571rem !important; - } - .g-my-65--lg { - margin-top: 4.64286rem !important; - margin-bottom: 4.64286rem !important; - } - .g-my-70--lg { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .g-my-75--lg { - margin-top: 5.35714rem !important; - margin-bottom: 5.35714rem !important; - } - .g-my-80--lg { - margin-top: 5.71429rem !important; - margin-bottom: 5.71429rem !important; - } - .g-my-85--lg { - margin-top: 6.07143rem !important; - margin-bottom: 6.07143rem !important; - } - .g-my-90--lg { - margin-top: 6.42857rem !important; - margin-bottom: 6.42857rem !important; - } - .g-my-95--lg { - margin-top: 6.78571rem !important; - margin-bottom: 6.78571rem !important; - } - .g-my-100--lg { - margin-top: 7.14286rem !important; - margin-bottom: 7.14286rem !important; - } - .g-mt-1--lg { - margin-top: 0.07143rem !important; - } - .g-mt-minus-1--lg { - margin-top: -0.07143rem !important; - } - .g-mt-2--lg { - margin-top: 0.14286rem !important; - } - .g-mt-minus-2--lg { - margin-top: -0.14286rem !important; - } - .g-mt-3--lg { - margin-top: 0.21429rem !important; - } - .g-mt-minus-3--lg { - margin-top: -0.21429rem !important; - } - .g-mt-4--lg { - margin-top: 0.28571rem !important; - } - .g-mt-minus-4--lg { - margin-top: -0.28571rem !important; - } - .g-mt-5--lg { - margin-top: 0.35714rem !important; - } - .g-mt-minus-5--lg { - margin-top: -0.35714rem !important; - } - .g-mt-6--lg { - margin-top: 0.42857rem !important; - } - .g-mt-minus-6--lg { - margin-top: -0.42857rem !important; - } - .g-mt-7--lg { - margin-top: 0.5rem !important; - } - .g-mt-minus-7--lg { - margin-top: -0.5rem !important; - } - .g-mt-8--lg { - margin-top: 0.57143rem !important; - } - .g-mt-minus-8--lg { - margin-top: -0.57143rem !important; - } - .g-mt-9--lg { - margin-top: 0.64286rem !important; - } - .g-mt-minus-9--lg { - margin-top: -0.64286rem !important; - } - .g-mt-10--lg { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--lg { - margin-top: -0.71429rem !important; - } - .g-mt-11--lg { - margin-top: 0.78571rem !important; - } - .g-mt-minus-11--lg { - margin-top: -0.78571rem !important; - } - .g-mt-12--lg { - margin-top: 0.85714rem !important; - } - .g-mt-minus-12--lg { - margin-top: -0.85714rem !important; - } - .g-mt-13--lg { - margin-top: 0.92857rem !important; - } - .g-mt-minus-13--lg { - margin-top: -0.92857rem !important; - } - .g-mt-14--lg { - margin-top: 1rem !important; - } - .g-mt-minus-14--lg { - margin-top: -1rem !important; - } - .g-mt-15--lg { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--lg { - margin-top: -1.07143rem !important; - } - .g-mt-16--lg { - margin-top: 1.14286rem !important; - } - .g-mt-minus-16--lg { - margin-top: -1.14286rem !important; - } - .g-mt-17--lg { - margin-top: 1.21429rem !important; - } - .g-mt-minus-17--lg { - margin-top: -1.21429rem !important; - } - .g-mt-18--lg { - margin-top: 1.28571rem !important; - } - .g-mt-minus-18--lg { - margin-top: -1.28571rem !important; - } - .g-mt-19--lg { - margin-top: 1.35714rem !important; - } - .g-mt-minus-19--lg { - margin-top: -1.35714rem !important; - } - .g-mt-20--lg { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--lg { - margin-top: -1.42857rem !important; - } - .g-mt-10--lg { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--lg { - margin-top: -0.71429rem !important; - } - .g-mt-15--lg { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--lg { - margin-top: -1.07143rem !important; - } - .g-mt-20--lg { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--lg { - margin-top: -1.42857rem !important; - } - .g-mt-25--lg { - margin-top: 1.78571rem !important; - } - .g-mt-minus-25--lg { - margin-top: -1.78571rem !important; - } - .g-mt-30--lg { - margin-top: 2.14286rem !important; - } - .g-mt-minus-30--lg { - margin-top: -2.14286rem !important; - } - .g-mt-35--lg { - margin-top: 2.5rem !important; - } - .g-mt-minus-35--lg { - margin-top: -2.5rem !important; - } - .g-mt-40--lg { - margin-top: 2.85714rem !important; - } - .g-mt-minus-40--lg { - margin-top: -2.85714rem !important; - } - .g-mt-45--lg { - margin-top: 3.21429rem !important; - } - .g-mt-minus-45--lg { - margin-top: -3.21429rem !important; - } - .g-mt-50--lg { - margin-top: 3.57143rem !important; - } - .g-mt-minus-50--lg { - margin-top: -3.57143rem !important; - } - .g-mt-55--lg { - margin-top: 3.92857rem !important; - } - .g-mt-minus-55--lg { - margin-top: -3.92857rem !important; - } - .g-mt-60--lg { - margin-top: 4.28571rem !important; - } - .g-mt-minus-60--lg { - margin-top: -4.28571rem !important; - } - .g-mt-65--lg { - margin-top: 4.64286rem !important; - } - .g-mt-minus-65--lg { - margin-top: -4.64286rem !important; - } - .g-mt-70--lg { - margin-top: 5rem !important; - } - .g-mt-minus-70--lg { - margin-top: -5rem !important; - } - .g-mt-75--lg { - margin-top: 5.35714rem !important; - } - .g-mt-minus-75--lg { - margin-top: -5.35714rem !important; - } - .g-mt-80--lg { - margin-top: 5.71429rem !important; - } - .g-mt-minus-80--lg { - margin-top: -5.71429rem !important; - } - .g-mt-85--lg { - margin-top: 6.07143rem !important; - } - .g-mt-minus-85--lg { - margin-top: -6.07143rem !important; - } - .g-mt-90--lg { - margin-top: 6.42857rem !important; - } - .g-mt-minus-90--lg { - margin-top: -6.42857rem !important; - } - .g-mt-95--lg { - margin-top: 6.78571rem !important; - } - .g-mt-minus-95--lg { - margin-top: -6.78571rem !important; - } - .g-mt-100--lg { - margin-top: 7.14286rem !important; - } - .g-mt-minus-100--lg { - margin-top: -7.14286rem !important; - } - .g-mt-105--lg { - margin-top: 7.5rem !important; - } - .g-mt-minus-105--lg { - margin-top: -7.5rem !important; - } - .g-mt-110--lg { - margin-top: 7.85714rem !important; - } - .g-mt-minus-110--lg { - margin-top: -7.85714rem !important; - } - .g-mt-115--lg { - margin-top: 8.21429rem !important; - } - .g-mt-minus-115--lg { - margin-top: -8.21429rem !important; - } - .g-mt-120--lg { - margin-top: 8.57143rem !important; - } - .g-mt-minus-120--lg { - margin-top: -8.57143rem !important; - } - .g-mt-125--lg { - margin-top: 8.92857rem !important; - } - .g-mt-minus-125--lg { - margin-top: -8.92857rem !important; - } - .g-mt-130--lg { - margin-top: 9.28571rem !important; - } - .g-mt-minus-130--lg { - margin-top: -9.28571rem !important; - } - .g-mt-135--lg { - margin-top: 9.64286rem !important; - } - .g-mt-minus-135--lg { - margin-top: -9.64286rem !important; - } - .g-mt-140--lg { - margin-top: 10rem !important; - } - .g-mt-minus-140--lg { - margin-top: -10rem !important; - } - .g-mt-145--lg { - margin-top: 10.35714rem !important; - } - .g-mt-minus-145--lg { - margin-top: -10.35714rem !important; - } - .g-mt-150--lg { - margin-top: 10.71429rem !important; - } - .g-mt-minus-150--lg { - margin-top: -10.71429rem !important; - } - .g-mt-155--lg { - margin-top: 11.07143rem !important; - } - .g-mt-minus-155--lg { - margin-top: -11.07143rem !important; - } - .g-mt-160--lg { - margin-top: 11.42857rem !important; - } - .g-mt-minus-160--lg { - margin-top: -11.42857rem !important; - } - .g-mt-165--lg { - margin-top: 11.78571rem !important; - } - .g-mt-minus-165--lg { - margin-top: -11.78571rem !important; - } - .g-mt-170--lg { - margin-top: 12.14286rem !important; - } - .g-mt-minus-170--lg { - margin-top: -12.14286rem !important; - } - .g-mb-1--lg { - margin-bottom: 0.07143rem !important; - } - .g-mb-minus-1--lg { - margin-bottom: -0.07143rem !important; - } - .g-mb-2--lg { - margin-bottom: 0.14286rem !important; - } - .g-mb-minus-2--lg { - margin-bottom: -0.14286rem !important; - } - .g-mb-3--lg { - margin-bottom: 0.21429rem !important; - } - .g-mb-minus-3--lg { - margin-bottom: -0.21429rem !important; - } - .g-mb-4--lg { - margin-bottom: 0.28571rem !important; - } - .g-mb-minus-4--lg { - margin-bottom: -0.28571rem !important; - } - .g-mb-5--lg { - margin-bottom: 0.35714rem !important; - } - .g-mb-minus-5--lg { - margin-bottom: -0.35714rem !important; - } - .g-mb-6--lg { - margin-bottom: 0.42857rem !important; - } - .g-mb-minus-6--lg { - margin-bottom: -0.42857rem !important; - } - .g-mb-7--lg { - margin-bottom: 0.5rem !important; - } - .g-mb-minus-7--lg { - margin-bottom: -0.5rem !important; - } - .g-mb-8--lg { - margin-bottom: 0.57143rem !important; - } - .g-mb-minus-8--lg { - margin-bottom: -0.57143rem !important; - } - .g-mb-9--lg { - margin-bottom: 0.64286rem !important; - } - .g-mb-minus-9--lg { - margin-bottom: -0.64286rem !important; - } - .g-mb-10--lg { - margin-bottom: 0.71429rem !important; - } - .g-mb-minus-10--lg { - margin-bottom: -0.71429rem !important; - } - .g-mb-11--lg { - margin-bottom: 0.78571rem !important; - } - .g-mb-minus-11--lg { - margin-bottom: -0.78571rem !important; - } - .g-mb-12--lg { - margin-bottom: 0.85714rem !important; - } - .g-mb-minus-12--lg { - margin-bottom: -0.85714rem !important; - } - .g-mb-13--lg { - margin-bottom: 0.92857rem !important; - } - .g-mb-minus-13--lg { - margin-bottom: -0.92857rem !important; - } - .g-mb-14--lg { - margin-bottom: 1rem !important; - } - .g-mb-minus-14--lg { - margin-bottom: -1rem !important; - } - .g-mb-15--lg { - margin-bottom: 1.07143rem !important; - } - .g-mb-minus-15--lg { - margin-bottom: -1.07143rem !important; - } - .g-mb-16--lg { - margin-bottom: 1.14286rem !important; - } - .g-mb-minus-16--lg { - margin-bottom: -1.14286rem !important; - } - .g-mb-17--lg { - margin-bottom: 1.21429rem !important; - } - .g-mb-minus-17--lg { - margin-bottom: -1.21429rem !important; - } - .g-mb-18--lg { - margin-bottom: 1.28571rem !important; - } - .g-mb-minus-18--lg { - margin-bottom: -1.28571rem !important; - } - .g-mb-19--lg { - margin-bottom: 1.35714rem !important; - } - .g-mb-minus-19--lg { - margin-bottom: -1.35714rem !important; - } - .g-mb-20--lg { - margin-bottom: 1.42857rem !important; - } - .g-mb-minus-20--lg { - margin-bottom: -1.42857rem !important; - } - .g-mb-10--lg { - margin-bottom: 0.71429rem !important; - } - .g-mb-15--lg { - margin-bottom: 1.07143rem !important; - } - .g-mb-20--lg { - margin-bottom: 1.42857rem !important; - } - .g-mb-25--lg { - margin-bottom: 1.78571rem !important; - } - .g-mb-30--lg { - margin-bottom: 2.14286rem !important; - } - .g-mb-35--lg { - margin-bottom: 2.5rem !important; - } - .g-mb-40--lg { - margin-bottom: 2.85714rem !important; - } - .g-mb-45--lg { - margin-bottom: 3.21429rem !important; - } - .g-mb-50--lg { - margin-bottom: 3.57143rem !important; - } - .g-mb-55--lg { - margin-bottom: 3.92857rem !important; - } - .g-mb-60--lg { - margin-bottom: 4.28571rem !important; - } - .g-mb-65--lg { - margin-bottom: 4.64286rem !important; - } - .g-mb-70--lg { - margin-bottom: 5rem !important; - } - .g-mb-75--lg { - margin-bottom: 5.35714rem !important; - } - .g-mb-80--lg { - margin-bottom: 5.71429rem !important; - } - .g-mb-85--lg { - margin-bottom: 6.07143rem !important; - } - .g-mb-90--lg { - margin-bottom: 6.42857rem !important; - } - .g-mb-95--lg { - margin-bottom: 6.78571rem !important; - } - .g-mb-100--lg { - margin-bottom: 7.14286rem !important; - } - .g-mb-105--lg { - margin-bottom: 7.5rem !important; - } - .g-mb-110--lg { - margin-bottom: 7.85714rem !important; - } - .g-mb-115--lg { - margin-bottom: 8.21429rem !important; - } - .g-mb-120--lg { - margin-bottom: 8.57143rem !important; - } - .g-mb-125--lg { - margin-bottom: 8.92857rem !important; - } - .g-mb-130--lg { - margin-bottom: 9.28571rem !important; - } - .g-mb-135--lg { - margin-bottom: 9.64286rem !important; - } - .g-mb-140--lg { - margin-bottom: 10rem !important; - } - .g-mb-145--lg { - margin-bottom: 10.35714rem !important; - } - .g-mb-150--lg { - margin-bottom: 10.71429rem !important; - } - .g-mb-155--lg { - margin-bottom: 11.07143rem !important; - } - .g-mb-160--lg { - margin-bottom: 11.42857rem !important; - } - .g-mb-165--lg { - margin-bottom: 11.78571rem !important; - } - .g-mb-170--lg { - margin-bottom: 12.14286rem !important; - } - .g-ml-1--lg { - margin-left: 0.07143rem !important; - } - .g-ml-minus-1--lg { - margin-left: -0.07143rem !important; - } - .g-ml-2--lg { - margin-left: 0.14286rem !important; - } - .g-ml-minus-2--lg { - margin-left: -0.14286rem !important; - } - .g-ml-3--lg { - margin-left: 0.21429rem !important; - } - .g-ml-minus-3--lg { - margin-left: -0.21429rem !important; - } - .g-ml-4--lg { - margin-left: 0.28571rem !important; - } - .g-ml-minus-4--lg { - margin-left: -0.28571rem !important; - } - .g-ml-5--lg { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--lg { - margin-left: -0.35714rem !important; - } - .g-ml-6--lg { - margin-left: 0.42857rem !important; - } - .g-ml-minus-6--lg { - margin-left: -0.42857rem !important; - } - .g-ml-7--lg { - margin-left: 0.5rem !important; - } - .g-ml-minus-7--lg { - margin-left: -0.5rem !important; - } - .g-ml-8--lg { - margin-left: 0.57143rem !important; - } - .g-ml-minus-8--lg { - margin-left: -0.57143rem !important; - } - .g-ml-9--lg { - margin-left: 0.64286rem !important; - } - .g-ml-minus-9--lg { - margin-left: -0.64286rem !important; - } - .g-ml-10--lg { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--lg { - margin-left: -0.71429rem !important; - } - .g-ml-5--lg { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--lg { - margin-left: -0.35714rem !important; - } - .g-ml-10--lg { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--lg { - margin-left: -0.71429rem !important; - } - .g-ml-15--lg { - margin-left: 1.07143rem !important; - } - .g-ml-minus-15--lg { - margin-left: -1.07143rem !important; - } - .g-ml-20--lg { - margin-left: 1.42857rem !important; - } - .g-ml-minus-20--lg { - margin-left: -1.42857rem !important; - } - .g-ml-25--lg { - margin-left: 1.78571rem !important; - } - .g-ml-minus-25--lg { - margin-left: -1.78571rem !important; - } - .g-ml-30--lg { - margin-left: 2.14286rem !important; - } - .g-ml-minus-30--lg { - margin-left: -2.14286rem !important; - } - .g-ml-35--lg { - margin-left: 2.5rem !important; - } - .g-ml-minus-35--lg { - margin-left: -2.5rem !important; - } - .g-ml-40--lg { - margin-left: 2.85714rem !important; - } - .g-ml-minus-40--lg { - margin-left: -2.85714rem !important; - } - .g-ml-45--lg { - margin-left: 3.21429rem !important; - } - .g-ml-minus-45--lg { - margin-left: -3.21429rem !important; - } - .g-ml-50--lg { - margin-left: 3.57143rem !important; - } - .g-ml-minus-50--lg { - margin-left: -3.57143rem !important; - } - .g-mr-1--lg { - margin-right: 0.07143rem !important; - } - .g-mr-minus-1--lg { - margin-right: -0.07143rem !important; - } - .g-mr-2--lg { - margin-right: 0.14286rem !important; - } - .g-mr-minus-2--lg { - margin-right: -0.14286rem !important; - } - .g-mr-3--lg { - margin-right: 0.21429rem !important; - } - .g-mr-minus-3--lg { - margin-right: -0.21429rem !important; - } - .g-mr-4--lg { - margin-right: 0.28571rem !important; - } - .g-mr-minus-4--lg { - margin-right: -0.28571rem !important; - } - .g-mr-5--lg { - margin-right: 0.35714rem !important; - } - .g-mr-minus-5--lg { - margin-right: -0.35714rem !important; - } - .g-mr-6--lg { - margin-right: 0.42857rem !important; - } - .g-mr-minus-6--lg { - margin-right: -0.42857rem !important; - } - .g-mr-7--lg { - margin-right: 0.5rem !important; - } - .g-mr-minus-7--lg { - margin-right: -0.5rem !important; - } - .g-mr-8--lg { - margin-right: 0.57143rem !important; - } - .g-mr-minus-8--lg { - margin-right: -0.57143rem !important; - } - .g-mr-9--lg { - margin-right: 0.64286rem !important; - } - .g-mr-minus-9--lg { - margin-right: -0.64286rem !important; - } - .g-mr-10--lg { - margin-right: 0.71429rem !important; - } - .g-mr-minus-10--lg { - margin-right: -0.71429rem !important; - } - .g-mr-5--lg { - margin-right: 0.35714rem !important; - } - .g-mr-10--lg { - margin-right: 0.71429rem !important; - } - .g-mr-15--lg { - margin-right: 1.07143rem !important; - } - .g-mr-20--lg { - margin-right: 1.42857rem !important; - } - .g-mr-25--lg { - margin-right: 1.78571rem !important; - } - .g-mr-30--lg { - margin-right: 2.14286rem !important; - } - .g-mr-35--lg { - margin-right: 2.5rem !important; - } - .g-mr-40--lg { - margin-right: 2.85714rem !important; - } - .g-mr-45--lg { - margin-right: 3.21429rem !important; - } - .g-mr-50--lg { - margin-right: 3.57143rem !important; - } -} - -/* Margin Spaces (xl) -------------------------------------*/ -/* P */ -@media (min-width: 1200px) { - .g-ma-0--xl { - margin: 0 !important; - } - .g-mx-0--xl { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-0--xl { - margin-top: 0 !important; - margin-bottom: 0 !important; - } - .g-ml-0--xl { - margin-left: 0 !important; - } - .g-mr-0--xl { - margin-right: 0 !important; - } - .g-mt-0--xl { - margin-top: 0 !important; - } - .g-mb-0--xl { - margin-bottom: 0 !important; - } - .g-mx-1--xl { - margin-left: 0.07143rem !important; - margin-right: 0.07143rem !important; - } - .g-mx-2--xl { - margin-left: 0.14286rem !important; - margin-right: 0.14286rem !important; - } - .g-mx-3--xl { - margin-left: 0.21429rem !important; - margin-right: 0.21429rem !important; - } - .g-mx-4--xl { - margin-left: 0.28571rem !important; - margin-right: 0.28571rem !important; - } - .g-mx-5--xl { - margin-left: 0.35714rem !important; - margin-right: 0.35714rem !important; - } - .g-mx-6--xl { - margin-left: 0.42857rem !important; - margin-right: 0.42857rem !important; - } - .g-mx-7--xl { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; - } - .g-mx-8--xl { - margin-left: 0.57143rem !important; - margin-right: 0.57143rem !important; - } - .g-mx-9--xl { - margin-left: 0.64286rem !important; - margin-right: 0.64286rem !important; - } - .g-mx-10--xl { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-10--xl { - margin-left: 0.71429rem !important; - margin-right: 0.71429rem !important; - } - .g-mx-15--xl { - margin-left: 1.07143rem !important; - margin-right: 1.07143rem !important; - } - .g-mx-20--xl { - margin-left: 1.42857rem !important; - margin-right: 1.42857rem !important; - } - .g-mx-25--xl { - margin-left: 1.78571rem !important; - margin-right: 1.78571rem !important; - } - .g-mx-30--xl { - margin-left: 2.14286rem !important; - margin-right: 2.14286rem !important; - } - .g-mx-35--xl { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; - } - .g-mx-40--xl { - margin-left: 2.85714rem !important; - margin-right: 2.85714rem !important; - } - .g-mx-45--xl { - margin-left: 3.21429rem !important; - margin-right: 3.21429rem !important; - } - .g-mx-50--xl { - margin-left: 3.57143rem !important; - margin-right: 3.57143rem !important; - } - .g-mx-55--xl { - margin-left: 3.92857rem !important; - margin-right: 3.92857rem !important; - } - .g-mx-60--xl { - margin-left: 4.28571rem !important; - margin-right: 4.28571rem !important; - } - .g-mx-65--xl { - margin-left: 4.64286rem !important; - margin-right: 4.64286rem !important; - } - .g-mx-70--xl { - margin-left: 5rem !important; - margin-right: 5rem !important; - } - .g-mx-75--xl { - margin-left: 5.35714rem !important; - margin-right: 5.35714rem !important; - } - .g-mx-80--xl { - margin-left: 5.71429rem !important; - margin-right: 5.71429rem !important; - } - .g-mx-85--xl { - margin-left: 6.07143rem !important; - margin-right: 6.07143rem !important; - } - .g-mx-90--xl { - margin-left: 6.42857rem !important; - margin-right: 6.42857rem !important; - } - .g-mx-95--xl { - margin-left: 6.78571rem !important; - margin-right: 6.78571rem !important; - } - .g-mx-100--xl { - margin-left: 7.14286rem !important; - margin-right: 7.14286rem !important; - } - .g-my-1--xl { - margin-top: 0.07143rem !important; - margin-bottom: 0.07143rem !important; - } - .g-my-2--xl { - margin-top: 0.14286rem !important; - margin-bottom: 0.14286rem !important; - } - .g-my-3--xl { - margin-top: 0.21429rem !important; - margin-bottom: 0.21429rem !important; - } - .g-my-4--xl { - margin-top: 0.28571rem !important; - margin-bottom: 0.28571rem !important; - } - .g-my-5--xl { - margin-top: 0.35714rem !important; - margin-bottom: 0.35714rem !important; - } - .g-my-6--xl { - margin-top: 0.42857rem !important; - margin-bottom: 0.42857rem !important; - } - .g-my-7--xl { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; - } - .g-my-8--xl { - margin-top: 0.57143rem !important; - margin-bottom: 0.57143rem !important; - } - .g-my-9--xl { - margin-top: 0.64286rem !important; - margin-bottom: 0.64286rem !important; - } - .g-my-10--xl { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-10--xl { - margin-top: 0.71429rem !important; - margin-bottom: 0.71429rem !important; - } - .g-my-15--xl { - margin-top: 1.07143rem !important; - margin-bottom: 1.07143rem !important; - } - .g-my-20--xl { - margin-top: 1.42857rem !important; - margin-bottom: 1.42857rem !important; - } - .g-my-25--xl { - margin-top: 1.78571rem !important; - margin-bottom: 1.78571rem !important; - } - .g-my-30--xl { - margin-top: 2.14286rem !important; - margin-bottom: 2.14286rem !important; - } - .g-my-35--xl { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; - } - .g-my-40--xl { - margin-top: 2.85714rem !important; - margin-bottom: 2.85714rem !important; - } - .g-my-45--xl { - margin-top: 3.21429rem !important; - margin-bottom: 3.21429rem !important; - } - .g-my-50--xl { - margin-top: 3.57143rem !important; - margin-bottom: 3.57143rem !important; - } - .g-my-55--xl { - margin-top: 3.92857rem !important; - margin-bottom: 3.92857rem !important; - } - .g-my-60--xl { - margin-top: 4.28571rem !important; - margin-bottom: 4.28571rem !important; - } - .g-my-65--xl { - margin-top: 4.64286rem !important; - margin-bottom: 4.64286rem !important; - } - .g-my-70--xl { - margin-top: 5rem !important; - margin-bottom: 5rem !important; - } - .g-my-75--xl { - margin-top: 5.35714rem !important; - margin-bottom: 5.35714rem !important; - } - .g-my-80--xl { - margin-top: 5.71429rem !important; - margin-bottom: 5.71429rem !important; - } - .g-my-85--xl { - margin-top: 6.07143rem !important; - margin-bottom: 6.07143rem !important; - } - .g-my-90--xl { - margin-top: 6.42857rem !important; - margin-bottom: 6.42857rem !important; - } - .g-my-95--xl { - margin-top: 6.78571rem !important; - margin-bottom: 6.78571rem !important; - } - .g-my-100--xl { - margin-top: 7.14286rem !important; - margin-bottom: 7.14286rem !important; - } - .g-mt-1--xl { - margin-top: 0.07143rem !important; - } - .g-mt-minus-1--xl { - margin-top: -0.07143rem !important; - } - .g-mt-2--xl { - margin-top: 0.14286rem !important; - } - .g-mt-minus-2--xl { - margin-top: -0.14286rem !important; - } - .g-mt-3--xl { - margin-top: 0.21429rem !important; - } - .g-mt-minus-3--xl { - margin-top: -0.21429rem !important; - } - .g-mt-4--xl { - margin-top: 0.28571rem !important; - } - .g-mt-minus-4--xl { - margin-top: -0.28571rem !important; - } - .g-mt-5--xl { - margin-top: 0.35714rem !important; - } - .g-mt-minus-5--xl { - margin-top: -0.35714rem !important; - } - .g-mt-6--xl { - margin-top: 0.42857rem !important; - } - .g-mt-minus-6--xl { - margin-top: -0.42857rem !important; - } - .g-mt-7--xl { - margin-top: 0.5rem !important; - } - .g-mt-minus-7--xl { - margin-top: -0.5rem !important; - } - .g-mt-8--xl { - margin-top: 0.57143rem !important; - } - .g-mt-minus-8--xl { - margin-top: -0.57143rem !important; - } - .g-mt-9--xl { - margin-top: 0.64286rem !important; - } - .g-mt-minus-9--xl { - margin-top: -0.64286rem !important; - } - .g-mt-10--xl { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--xl { - margin-top: -0.71429rem !important; - } - .g-mt-11--xl { - margin-top: 0.78571rem !important; - } - .g-mt-minus-11--xl { - margin-top: -0.78571rem !important; - } - .g-mt-12--xl { - margin-top: 0.85714rem !important; - } - .g-mt-minus-12--xl { - margin-top: -0.85714rem !important; - } - .g-mt-13--xl { - margin-top: 0.92857rem !important; - } - .g-mt-minus-13--xl { - margin-top: -0.92857rem !important; - } - .g-mt-14--xl { - margin-top: 1rem !important; - } - .g-mt-minus-14--xl { - margin-top: -1rem !important; - } - .g-mt-15--xl { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--xl { - margin-top: -1.07143rem !important; - } - .g-mt-16--xl { - margin-top: 1.14286rem !important; - } - .g-mt-minus-16--xl { - margin-top: -1.14286rem !important; - } - .g-mt-17--xl { - margin-top: 1.21429rem !important; - } - .g-mt-minus-17--xl { - margin-top: -1.21429rem !important; - } - .g-mt-18--xl { - margin-top: 1.28571rem !important; - } - .g-mt-minus-18--xl { - margin-top: -1.28571rem !important; - } - .g-mt-19--xl { - margin-top: 1.35714rem !important; - } - .g-mt-minus-19--xl { - margin-top: -1.35714rem !important; - } - .g-mt-20--xl { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--xl { - margin-top: -1.42857rem !important; - } - .g-mt-10--xl { - margin-top: 0.71429rem !important; - } - .g-mt-minus-10--xl { - margin-top: -0.71429rem !important; - } - .g-mt-15--xl { - margin-top: 1.07143rem !important; - } - .g-mt-minus-15--xl { - margin-top: -1.07143rem !important; - } - .g-mt-20--xl { - margin-top: 1.42857rem !important; - } - .g-mt-minus-20--xl { - margin-top: -1.42857rem !important; - } - .g-mt-25--xl { - margin-top: 1.78571rem !important; - } - .g-mt-minus-25--xl { - margin-top: -1.78571rem !important; - } - .g-mt-30--xl { - margin-top: 2.14286rem !important; - } - .g-mt-minus-30--xl { - margin-top: -2.14286rem !important; - } - .g-mt-35--xl { - margin-top: 2.5rem !important; - } - .g-mt-minus-35--xl { - margin-top: -2.5rem !important; - } - .g-mt-40--xl { - margin-top: 2.85714rem !important; - } - .g-mt-minus-40--xl { - margin-top: -2.85714rem !important; - } - .g-mt-45--xl { - margin-top: 3.21429rem !important; - } - .g-mt-minus-45--xl { - margin-top: -3.21429rem !important; - } - .g-mt-50--xl { - margin-top: 3.57143rem !important; - } - .g-mt-minus-50--xl { - margin-top: -3.57143rem !important; - } - .g-mt-55--xl { - margin-top: 3.92857rem !important; - } - .g-mt-minus-55--xl { - margin-top: -3.92857rem !important; - } - .g-mt-60--xl { - margin-top: 4.28571rem !important; - } - .g-mt-minus-60--xl { - margin-top: -4.28571rem !important; - } - .g-mt-65--xl { - margin-top: 4.64286rem !important; - } - .g-mt-minus-65--xl { - margin-top: -4.64286rem !important; - } - .g-mt-70--xl { - margin-top: 5rem !important; - } - .g-mt-minus-70--xl { - margin-top: -5rem !important; - } - .g-mt-75--xl { - margin-top: 5.35714rem !important; - } - .g-mt-minus-75--xl { - margin-top: -5.35714rem !important; - } - .g-mt-80--xl { - margin-top: 5.71429rem !important; - } - .g-mt-minus-80--xl { - margin-top: -5.71429rem !important; - } - .g-mt-85--xl { - margin-top: 6.07143rem !important; - } - .g-mt-minus-85--xl { - margin-top: -6.07143rem !important; - } - .g-mt-90--xl { - margin-top: 6.42857rem !important; - } - .g-mt-minus-90--xl { - margin-top: -6.42857rem !important; - } - .g-mt-95--xl { - margin-top: 6.78571rem !important; - } - .g-mt-minus-95--xl { - margin-top: -6.78571rem !important; - } - .g-mt-100--xl { - margin-top: 7.14286rem !important; - } - .g-mt-minus-100--xl { - margin-top: -7.14286rem !important; - } - .g-mt-105--xl { - margin-top: 7.5rem !important; - } - .g-mt-minus-105--xl { - margin-top: -7.5rem !important; - } - .g-mt-110--xl { - margin-top: 7.85714rem !important; - } - .g-mt-minus-110--xl { - margin-top: -7.85714rem !important; - } - .g-mt-115--xl { - margin-top: 8.21429rem !important; - } - .g-mt-minus-115--xl { - margin-top: -8.21429rem !important; - } - .g-mt-120--xl { - margin-top: 8.57143rem !important; - } - .g-mt-minus-120--xl { - margin-top: -8.57143rem !important; - } - .g-mt-125--xl { - margin-top: 8.92857rem !important; - } - .g-mt-minus-125--xl { - margin-top: -8.92857rem !important; - } - .g-mt-130--xl { - margin-top: 9.28571rem !important; - } - .g-mt-minus-130--xl { - margin-top: -9.28571rem !important; - } - .g-mt-135--xl { - margin-top: 9.64286rem !important; - } - .g-mt-minus-135--xl { - margin-top: -9.64286rem !important; - } - .g-mt-140--xl { - margin-top: 10rem !important; - } - .g-mt-minus-140--xl { - margin-top: -10rem !important; - } - .g-mt-145--xl { - margin-top: 10.35714rem !important; - } - .g-mt-minus-145--xl { - margin-top: -10.35714rem !important; - } - .g-mt-150--xl { - margin-top: 10.71429rem !important; - } - .g-mt-minus-150--xl { - margin-top: -10.71429rem !important; - } - .g-mt-155--xl { - margin-top: 11.07143rem !important; - } - .g-mt-minus-155--xl { - margin-top: -11.07143rem !important; - } - .g-mt-160--xl { - margin-top: 11.42857rem !important; - } - .g-mt-minus-160--xl { - margin-top: -11.42857rem !important; - } - .g-mt-165--xl { - margin-top: 11.78571rem !important; - } - .g-mt-minus-165--xl { - margin-top: -11.78571rem !important; - } - .g-mt-170--xl { - margin-top: 12.14286rem !important; - } - .g-mt-minus-170--xl { - margin-top: -12.14286rem !important; - } - .g-mb-1--xl { - margin-bottom: 0.07143rem !important; - } - .g-mb-minus-1--xl { - margin-bottom: -0.07143rem !important; - } - .g-mb-2--xl { - margin-bottom: 0.14286rem !important; - } - .g-mb-minus-2--xl { - margin-bottom: -0.14286rem !important; - } - .g-mb-3--xl { - margin-bottom: 0.21429rem !important; - } - .g-mb-minus-3--xl { - margin-bottom: -0.21429rem !important; - } - .g-mb-4--xl { - margin-bottom: 0.28571rem !important; - } - .g-mb-minus-4--xl { - margin-bottom: -0.28571rem !important; - } - .g-mb-5--xl { - margin-bottom: 0.35714rem !important; - } - .g-mb-minus-5--xl { - margin-bottom: -0.35714rem !important; - } - .g-mb-6--xl { - margin-bottom: 0.42857rem !important; - } - .g-mb-minus-6--xl { - margin-bottom: -0.42857rem !important; - } - .g-mb-7--xl { - margin-bottom: 0.5rem !important; - } - .g-mb-minus-7--xl { - margin-bottom: -0.5rem !important; - } - .g-mb-8--xl { - margin-bottom: 0.57143rem !important; - } - .g-mb-minus-8--xl { - margin-bottom: -0.57143rem !important; - } - .g-mb-9--xl { - margin-bottom: 0.64286rem !important; - } - .g-mb-minus-9--xl { - margin-bottom: -0.64286rem !important; - } - .g-mb-10--xl { - margin-bottom: 0.71429rem !important; - } - .g-mb-minus-10--xl { - margin-bottom: -0.71429rem !important; - } - .g-mb-11--xl { - margin-bottom: 0.78571rem !important; - } - .g-mb-minus-11--xl { - margin-bottom: -0.78571rem !important; - } - .g-mb-12--xl { - margin-bottom: 0.85714rem !important; - } - .g-mb-minus-12--xl { - margin-bottom: -0.85714rem !important; - } - .g-mb-13--xl { - margin-bottom: 0.92857rem !important; - } - .g-mb-minus-13--xl { - margin-bottom: -0.92857rem !important; - } - .g-mb-14--xl { - margin-bottom: 1rem !important; - } - .g-mb-minus-14--xl { - margin-bottom: -1rem !important; - } - .g-mb-15--xl { - margin-bottom: 1.07143rem !important; - } - .g-mb-minus-15--xl { - margin-bottom: -1.07143rem !important; - } - .g-mb-16--xl { - margin-bottom: 1.14286rem !important; - } - .g-mb-minus-16--xl { - margin-bottom: -1.14286rem !important; - } - .g-mb-17--xl { - margin-bottom: 1.21429rem !important; - } - .g-mb-minus-17--xl { - margin-bottom: -1.21429rem !important; - } - .g-mb-18--xl { - margin-bottom: 1.28571rem !important; - } - .g-mb-minus-18--xl { - margin-bottom: -1.28571rem !important; - } - .g-mb-19--xl { - margin-bottom: 1.35714rem !important; - } - .g-mb-minus-19--xl { - margin-bottom: -1.35714rem !important; - } - .g-mb-20--xl { - margin-bottom: 1.42857rem !important; - } - .g-mb-minus-20--xl { - margin-bottom: -1.42857rem !important; - } - .g-mb-10--xl { - margin-bottom: 0.71429rem !important; - } - .g-mb-15--xl { - margin-bottom: 1.07143rem !important; - } - .g-mb-20--xl { - margin-bottom: 1.42857rem !important; - } - .g-mb-25--xl { - margin-bottom: 1.78571rem !important; - } - .g-mb-30--xl { - margin-bottom: 2.14286rem !important; - } - .g-mb-35--xl { - margin-bottom: 2.5rem !important; - } - .g-mb-40--xl { - margin-bottom: 2.85714rem !important; - } - .g-mb-45--xl { - margin-bottom: 3.21429rem !important; - } - .g-mb-50--xl { - margin-bottom: 3.57143rem !important; - } - .g-mb-55--xl { - margin-bottom: 3.92857rem !important; - } - .g-mb-60--xl { - margin-bottom: 4.28571rem !important; - } - .g-mb-65--xl { - margin-bottom: 4.64286rem !important; - } - .g-mb-70--xl { - margin-bottom: 5rem !important; - } - .g-mb-75--xl { - margin-bottom: 5.35714rem !important; - } - .g-mb-80--xl { - margin-bottom: 5.71429rem !important; - } - .g-mb-85--xl { - margin-bottom: 6.07143rem !important; - } - .g-mb-90--xl { - margin-bottom: 6.42857rem !important; - } - .g-mb-95--xl { - margin-bottom: 6.78571rem !important; - } - .g-mb-100--xl { - margin-bottom: 7.14286rem !important; - } - .g-mb-105--xl { - margin-bottom: 7.5rem !important; - } - .g-mb-110--xl { - margin-bottom: 7.85714rem !important; - } - .g-mb-115--xl { - margin-bottom: 8.21429rem !important; - } - .g-mb-120--xl { - margin-bottom: 8.57143rem !important; - } - .g-mb-125--xl { - margin-bottom: 8.92857rem !important; - } - .g-mb-130--xl { - margin-bottom: 9.28571rem !important; - } - .g-mb-135--xl { - margin-bottom: 9.64286rem !important; - } - .g-mb-140--xl { - margin-bottom: 10rem !important; - } - .g-mb-145--xl { - margin-bottom: 10.35714rem !important; - } - .g-mb-150--xl { - margin-bottom: 10.71429rem !important; - } - .g-mb-155--xl { - margin-bottom: 11.07143rem !important; - } - .g-mb-160--xl { - margin-bottom: 11.42857rem !important; - } - .g-mb-165--xl { - margin-bottom: 11.78571rem !important; - } - .g-mb-170--xl { - margin-bottom: 12.14286rem !important; - } - .g-ml-1--xl { - margin-left: 0.07143rem !important; - } - .g-ml-minus-1--xl { - margin-left: -0.07143rem !important; - } - .g-ml-2--xl { - margin-left: 0.14286rem !important; - } - .g-ml-minus-2--xl { - margin-left: -0.14286rem !important; - } - .g-ml-3--xl { - margin-left: 0.21429rem !important; - } - .g-ml-minus-3--xl { - margin-left: -0.21429rem !important; - } - .g-ml-4--xl { - margin-left: 0.28571rem !important; - } - .g-ml-minus-4--xl { - margin-left: -0.28571rem !important; - } - .g-ml-5--xl { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--xl { - margin-left: -0.35714rem !important; - } - .g-ml-6--xl { - margin-left: 0.42857rem !important; - } - .g-ml-minus-6--xl { - margin-left: -0.42857rem !important; - } - .g-ml-7--xl { - margin-left: 0.5rem !important; - } - .g-ml-minus-7--xl { - margin-left: -0.5rem !important; - } - .g-ml-8--xl { - margin-left: 0.57143rem !important; - } - .g-ml-minus-8--xl { - margin-left: -0.57143rem !important; - } - .g-ml-9--xl { - margin-left: 0.64286rem !important; - } - .g-ml-minus-9--xl { - margin-left: -0.64286rem !important; - } - .g-ml-10--xl { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--xl { - margin-left: -0.71429rem !important; - } - .g-ml-5--xl { - margin-left: 0.35714rem !important; - } - .g-ml-minus-5--xl { - margin-left: -0.35714rem !important; - } - .g-ml-10--xl { - margin-left: 0.71429rem !important; - } - .g-ml-minus-10--xl { - margin-left: -0.71429rem !important; - } - .g-ml-15--xl { - margin-left: 1.07143rem !important; - } - .g-ml-minus-15--xl { - margin-left: -1.07143rem !important; - } - .g-ml-20--xl { - margin-left: 1.42857rem !important; - } - .g-ml-minus-20--xl { - margin-left: -1.42857rem !important; - } - .g-ml-25--xl { - margin-left: 1.78571rem !important; - } - .g-ml-minus-25--xl { - margin-left: -1.78571rem !important; - } - .g-ml-30--xl { - margin-left: 2.14286rem !important; - } - .g-ml-minus-30--xl { - margin-left: -2.14286rem !important; - } - .g-ml-35--xl { - margin-left: 2.5rem !important; - } - .g-ml-minus-35--xl { - margin-left: -2.5rem !important; - } - .g-ml-40--xl { - margin-left: 2.85714rem !important; - } - .g-ml-minus-40--xl { - margin-left: -2.85714rem !important; - } - .g-ml-45--xl { - margin-left: 3.21429rem !important; - } - .g-ml-minus-45--xl { - margin-left: -3.21429rem !important; - } - .g-ml-50--xl { - margin-left: 3.57143rem !important; - } - .g-ml-minus-50--xl { - margin-left: -3.57143rem !important; - } - .g-mr-1--xl { - margin-right: 0.07143rem !important; - } - .g-mr-minus-1--xl { - margin-right: -0.07143rem !important; - } - .g-mr-2--xl { - margin-right: 0.14286rem !important; - } - .g-mr-minus-2--xl { - margin-right: -0.14286rem !important; - } - .g-mr-3--xl { - margin-right: 0.21429rem !important; - } - .g-mr-minus-3--xl { - margin-right: -0.21429rem !important; - } - .g-mr-4--xl { - margin-right: 0.28571rem !important; - } - .g-mr-minus-4--xl { - margin-right: -0.28571rem !important; - } - .g-mr-5--xl { - margin-right: 0.35714rem !important; - } - .g-mr-minus-5--xl { - margin-right: -0.35714rem !important; - } - .g-mr-6--xl { - margin-right: 0.42857rem !important; - } - .g-mr-minus-6--xl { - margin-right: -0.42857rem !important; - } - .g-mr-7--xl { - margin-right: 0.5rem !important; - } - .g-mr-minus-7--xl { - margin-right: -0.5rem !important; - } - .g-mr-8--xl { - margin-right: 0.57143rem !important; - } - .g-mr-minus-8--xl { - margin-right: -0.57143rem !important; - } - .g-mr-9--xl { - margin-right: 0.64286rem !important; - } - .g-mr-minus-9--xl { - margin-right: -0.64286rem !important; - } - .g-mr-10--xl { - margin-right: 0.71429rem !important; - } - .g-mr-minus-10--xl { - margin-right: -0.71429rem !important; - } - .g-mr-5--xl { - margin-right: 0.35714rem !important; - } - .g-mr-10--xl { - margin-right: 0.71429rem !important; - } - .g-mr-15--xl { - margin-right: 1.07143rem !important; - } - .g-mr-20--xl { - margin-right: 1.42857rem !important; - } - .g-mr-25--xl { - margin-right: 1.78571rem !important; - } - .g-mr-30--xl { - margin-right: 2.14286rem !important; - } - .g-mr-35--xl { - margin-right: 2.5rem !important; - } - .g-mr-40--xl { - margin-right: 2.85714rem !important; - } - .g-mr-45--xl { - margin-right: 3.21429rem !important; - } - .g-mr-50--xl { - margin-right: 3.57143rem !important; - } -} - -/* Margins Around -------------------------------------*/ -.g-ma-1 { - margin: 0.07143rem !important; -} - -.g-ma-3 { - margin: 0.21429rem !important; -} - -.g-ma-5 { - margin: 0.35714rem !important; -} - -.g-ma-10 { - margin: 0.71429rem !important; -} - -.g-ma-20 { - margin: 1.42857rem !important; -} - -.g-ma-minus-1 { - margin: -0.07143rem !important; -} - -/* Minus Margins -------------------------------------*/ -/* Minus Margin Top */ -.g-mt-minus-1 { - margin-top: -0.07143rem; -} - -.g-mt-minus-20 { - margin-top: -1.42857rem; -} - -.g-mt-minus-25 { - margin-top: -1.78571rem; -} - -.g-mt-minus-30 { - margin-top: -2.14286rem; -} - -.g-mt-minus-40 { - margin-top: -2.85714rem; -} - -.g-mt-minus-70 { - margin-top: -5rem; -} - -.g-mt-minus-73 { - margin-top: -5.14286rem !important; -} - -.g-mt-minus-120 { - margin-top: -8.57143rem; -} - -.g-mt-minus-200 { - margin-top: -14.28571rem; -} - -.g-mt-minus-300 { - margin-top: -21.42857rem; -} - -/* Minus Margin Bottom */ -.g-mb-minus-70 { - margin-bottom: -5rem; -} - -/* Minus Margin Left */ -.g-ml-minus-20 { - margin-left: -1.42857rem; -} - -.g-ml-minus-23 { - margin-left: -1.64286rem; -} - -.g-ml-minus-35 { - margin-left: -2.5rem; -} - -.g-ml-minus-55 { - margin-left: -3.92857rem; -} - -.g-ml-minus-25 { - margin-left: -1.78571rem; -} - -.g-ml-minus-82 { - margin-left: -5.85714rem; -} - -.g-ml-minus-90 { - margin-left: -6.42857rem; -} - -.g-ml-minus-100 { - margin-left: -7.14286rem; -} - -.g-ml-minus-118 { - margin-left: -8.42857rem; -} - -.g-ml-minus-142 { - margin-left: -10.14286rem; -} - -/* Minus Margin Right */ -.g-mr-minus-50 { - margin-right: -3.57143rem; -} - -.g-mr-minus-100 { - margin-right: -7.14286rem; -} - -/* Margin Left and Right */ -.g-mx-minus-1 { - margin-left: -0.07143rem; - margin-right: -0.07143rem; -} - -.g-mx-minus-2 { - margin-left: -0.14286rem; - margin-right: -0.14286rem; -} - -.g-mx-minus-4 { - margin-left: -0.28571rem; - margin-right: -0.28571rem; -} - -.g-mx-minus-5 { - margin-left: -0.35714rem; - margin-right: -0.35714rem; -} - -.g-mx-minus-15 { - margin-left: -1.07143rem; - margin-right: -1.07143rem; -} - -.g-mx-minus-25 { - margin-left: -1.78571rem; - margin-right: -1.78571rem; -} - -.g-mx-minus-30 { - margin-left: -2.14286rem; - margin-right: -2.14286rem; -} - -/* Custon Spaces -------------------------------------*/ -/* Margin Top */ -.g-mt-10x { - margin-top: 10%; - /* O */ -} - -.g-mt-21 { - margin-top: 1.5rem; -} - -.g-mt-22 { - margin-top: 1.57143rem; -} - -.g-mt-28 { - margin-top: 2rem !important; -} - -.g-mt-32 { - margin-top: 2.28571rem !important; -} - -.g-mt-57 { - margin-top: 4.07143rem !important; -} - -.g-mt-500 { - margin-top: 35.71429rem; -} - -/* Margin Bottom */ -.g-mb-23 { - margin-bottom: 1.64286rem; -} - -.g-mb-28 { - margin-bottom: 2rem; -} - -.g-mb-500 { - margin-bottom: 35.71429rem; -} - -/* Margin Left */ -.g-ml-10x { - margin-left: 10%; - /* O */ -} - -.g-ml-12 { - margin-left: 0.85714rem; -} - -.g-ml-13 { - margin-left: 0.92857rem; -} - -.g-ml-20 { - margin-left: 1.42857rem; -} - -.g-ml-25 { - margin-left: 1.78571rem; -} - -.g-ml-35 { - margin-left: 2.5rem; -} - -.g-ml-43 { - margin-left: 3.07143rem; -} - -.g-ml-60 { - margin-left: 4.28571rem; -} - -.g-ml-75 { - margin-left: 5.35714rem; -} - -.g-ml-82 { - margin-left: 5.85714rem; -} - -.g-ml-85 { - margin-left: 6.07143rem; -} - -.g-ml-105 { - margin-left: 7.5rem; -} - -.g-ml-118 { - margin-left: 8.42857rem; -} - -.g-ml-142 { - margin-left: 10.14286rem; -} - -/* Margin Right */ -.g-mr-12 { - margin-right: 0.85714rem; -} - -.g-mr-60 { - margin-right: 4.28571rem; -} - -.g-mr-63 { - margin-right: 4.5rem; -} - -.g-mr-75 { - margin-right: 5.35714rem; -} - -.g-mr-85 { - margin-right: 6.07143rem !important; -} - -.g-mr-minus-10 { - margin-right: -0.71429rem; -} - -.g-mr-minus-13 { - margin-right: -0.92857rem; -} - -.g-mr-minus-15 { - margin-right: -1.07143rem; -} - -.g-mr-minus-23 { - margin-right: -1.64286rem; -} - -.g-mr-minus-30 { - margin-right: -2.14286rem; -} - -/* Margin Left and Right */ -.g-mx-minus-10 { - margin-left: -0.71429rem; - margin-right: -0.71429rem; -} - -.g-mx-minus-15 { - margin-left: -1.07143rem; - margin-right: -1.07143rem; -} - -.g-mx-minus-20 { - margin-left: -1.42857rem; - margin-right: -1.42857rem; -} - -.g-mx-minus-25 { - margin-left: -1.78571rem; - margin-right: -1.78571rem; -} - -.g-mx-minus-30 { - margin-left: -2.14286rem; - margin-right: -2.14286rem; -} - -/* Margin Top and Bottom */ -.g-my-minus-1 { - margin-top: -0.07143rem; - margin-bottom: -0.07143rem; -} - -.g-my-minus-2 { - margin-top: -0.14286rem; - margin-bottom: -0.14286rem; -} - -.g-my-minus-10 { - margin-top: -0.71429rem; - margin-bottom: -0.71429rem; -} - -.g-m-reset { - margin: 0 !important; -} - -@media (min-width: 576px) { - .g-mb-0--sm { - margin-bottom: 0 !important; - } - .g-mx-minus-10--sm { - margin-left: -0.71429rem; - margin-right: -0.71429rem; - } - .g-my-minus-5--sm { - margin-top: -0.35714rem; - margin-bottom: -0.35714rem; - } - .g-my-minus-10--sm { - margin-top: -0.71429rem; - margin-bottom: -0.71429rem; - } - .g-mx-minus-0 { - margin-left: 0 !important; - margin-right: 0 !important; - } - .g-my-minus-0 { - margin-top: 0; - margin-bottom: 0; - } - .g-mr-12--sm { - margin-right: 0.85714rem; - } -} - -@media (min-width: 768px) { - .g-mx-12--md { - margin-left: 0.85714rem !important; - margin-right: 0.85714rem !important; - } - .g-ml-12--md { - margin-left: 0.85714rem !important; - } - .g-mr-12--md { - margin-right: 0.85714rem !important; - } - .g-mb-0--md { - margin-bottom: 0 !important; - } - .g-ml-minus-1--md { - margin-left: -0.07143rem; - } - .g-ml-minus-9--md { - margin-left: -0.64286rem !important; - } - .g-ml-minus-15--md { - margin-left: -1.07143rem !important; - } - .g-ml-minus-23--md { - margin-left: -1.64286rem !important; - } - .g-ml-minus-25--md { - margin-left: -1.78571rem !important; - } - .g-mr-minus-1--md { - margin-right: -0.07143rem; - } - .g-mr-minus-9--md { - margin-right: -0.64286rem !important; - } - .g-mr-minus-13--md { - margin-right: -0.92857rem; - } - .g-mr-minus-23--md { - margin-right: -1.64286rem; - } - .g-ml-minus-82--md { - margin-left: -5.85714rem !important; - } - .g-mr-60--md { - margin-right: 4.28571rem !important; - } - .g-mr-63--md { - margin-right: 4.5rem !important; - } - .g-ml-85--md { - margin-left: 6.07143rem !important; - } - .g-ml-minus-90--md { - margin-left: -6.42857rem !important; - } - .g-m-reset--md { - margin: 0 !important; - } - .g-mt-130--md { - margin-top: 9.28571rem !important; - } - .g-mt-minus-76--md { - margin-top: -5.42857rem !important; - } - .g-my-30--md { - margin-top: 2.14286rem !important; - margin-bpttpm: 2.14286rem !important; - } -} - -@media (min-width: 992px) { - .g-mx-12--lg { - margin-left: 0.85714rem !important; - margin-right: 0.85714rem !important; - } - .g-mb-60--lg { - margin-bottom: 4.28571rem !important; - } - .g-ml-12--lg { - margin-left: 0.85714rem !important; - } - .g-mr-12--lg { - margin-right: 0.85714rem !important; - } - .g-mr-minus-1--lg { - margin-right: -0.07143rem; - } - .g-mr-minus-50--lg { - margin-right: -3.57143rem; - } - .g-mr-minus-100--lg { - margin-right: -7.14286rem; - } - .g-ml-minus-100--lg { - margin-left: -7.14286rem; - } - .g-ml-minus-100 { - margin-left: -7.14286rem; - } - .g-mx-minus-5--lg { - margin-left: -0.35714rem; - margin-right: -0.35714rem; - } - .g-mx-minus-10--lg { - margin-left: -0.71429rem; - margin-right: -0.71429rem; - } - .g-mx-minus-15--lg { - margin-left: -1.07143rem; - margin-right: -1.07143rem; - } - .g-ml-minus-50--lg { - margin-left: -3.57143rem; - } - .g-m-reset--lg { - margin: 0 !important; - } - .g-ml-100--lg { - margin-left: 7.14286rem; - } -} - -@media (min-width: 1200px) { - .g-mx-minus-10--xl { - margin-left: -0.71429rem; - margin-right: -0.71429rem; - } - .g-mx-minus-15--xl { - margin-left: -1.07143rem; - margin-right: -1.07143rem; - } - .g-m-reset--xl { - margin: 0 !important; - } - .g-mr-0--xl { - margin-right: 0px !important; - } -} - -/*------------------------------------ - Margins Extended -------------------------------------*/ -@media (min-width: 992px) { - /* Margin Top */ - .js-header-change-moment .g-mt-1--lg--scrolling { - margin-top: 0.07143rem !important; - } - .js-header-change-moment .g-mt-2--lg--scrolling { - margin-top: 0.14286rem !important; - } - .js-header-change-moment .g-mt-3--lg--scrolling { - margin-top: 0.21429rem !important; - } - .js-header-change-moment .g-mt-4--lg--scrolling { - margin-top: 0.28571rem !important; - } - .js-header-change-moment .g-mt-5--lg--scrolling { - margin-top: 0.35714rem !important; - } - .js-header-change-moment .g-mt-6--lg--scrolling { - margin-top: 0.42857rem !important; - } - .js-header-change-moment .g-mt-7--lg--scrolling { - margin-top: 0.5rem !important; - } - .js-header-change-moment .g-mt-8--lg--scrolling { - margin-top: 0.57143rem !important; - } - .js-header-change-moment .g-mt-9--lg--scrolling { - margin-top: 0.64286rem !important; - } - .js-header-change-moment .g-mt-10--lg--scrolling { - margin-top: 0.71429rem !important; - } - .js-header-change-moment .g-mt-11--lg--scrolling { - margin-top: 0.78571rem !important; - } - .js-header-change-moment .g-mt-12--lg--scrolling { - margin-top: 0.85714rem !important; - } - .js-header-change-moment .g-mt-13--lg--scrolling { - margin-top: 0.92857rem !important; - } - .js-header-change-moment .g-mt-14--lg--scrolling { - margin-top: 1rem !important; - } - .js-header-change-moment .g-mt-15--lg--scrolling { - margin-top: 1.07143rem !important; - } - .js-header-change-moment .g-mt-16--lg--scrolling { - margin-top: 1.14286rem !important; - } - .js-header-change-moment .g-mt-17--lg--scrolling { - margin-top: 1.21429rem !important; - } - .js-header-change-moment .g-mt-18--lg--scrolling { - margin-top: 1.28571rem !important; - } - .js-header-change-moment .g-mt-19--lg--scrolling { - margin-top: 1.35714rem !important; - } - .js-header-change-moment .g-mt-20--lg--scrolling { - margin-top: 1.42857rem !important; - } - .js-header-change-moment .g-mt-21--lg--scrolling { - margin-top: 1.5rem !important; - } - .js-header-change-moment .g-mt-22--lg--scrolling { - margin-top: 1.57143rem !important; - } - .js-header-change-moment .g-mt-23--lg--scrolling { - margin-top: 1.64286rem !important; - } - .js-header-change-moment .g-mt-24--lg--scrolling { - margin-top: 1.71429rem !important; - } - .js-header-change-moment .g-mt-25--lg--scrolling { - margin-top: 1.78571rem !important; - } -} - -/*------------------------------------ - Padding Spaces -------------------------------------*/ -/* Padding Spaces (xs) -------------------------------------*/ -@media (min-width: 0) { - .g-pa-0 { - padding: 0 !important; - } - .g-px-0 { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-pt-0 { - padding-top: 0 !important; - } - .g-pr-0 { - padding-right: 0 !important; - } - .g-pb-0 { - padding-bottom: 0 !important; - } - .g-pl-0 { - padding-left: 0 !important; - } - /* Padding Around */ - .g-pa-2 { - padding: 0.14286rem !important; - } - .g-pa-3 { - padding: 0.21429rem !important; - } - .g-pa-5 { - padding: 0.35714rem !important; - } - .g-pa-7 { - padding: 0.5rem !important; - } - .g-pa-10 { - padding: 0.71429rem !important; - } - .g-pa-15 { - padding: 1.07143rem !important; - } - .g-pa-20 { - padding: 1.42857rem !important; - } - .g-pa-25 { - padding: 1.78571rem !important; - } - .g-pa-30 { - padding: 2.14286rem !important; - } - .g-pa-35 { - padding: 2.5rem !important; - } - .g-pa-40 { - padding: 2.85714rem !important; - } - .g-pa-45 { - padding: 3.21429rem !important; - } - .g-pa-50 { - padding: 3.57143rem !important; - } - .g-pa-55 { - padding: 3.92857rem !important; - } - .g-pa-60 { - padding: 4.28571rem !important; - } - .g-pa-65 { - padding: 4.64286rem !important; - } - .g-pa-70 { - padding: 5rem !important; - } - .g-pa-75 { - padding: 5.35714rem !important; - } - .g-pa-80 { - padding: 5.71429rem !important; - } - .g-pa-85 { - padding: 6.07143rem !important; - } - .g-pa-90 { - padding: 6.42857rem !important; - } - .g-pa-95 { - padding: 6.78571rem !important; - } - .g-pa-100 { - padding: 7.14286rem !important; - } - .g-pa-105 { - padding: 7.5rem !important; - } - .g-pa-110 { - padding: 7.85714rem !important; - } - .g-pa-115 { - padding: 8.21429rem !important; - } - .g-pa-120 { - padding: 8.57143rem !important; - } - .g-pa-125 { - padding: 8.92857rem !important; - } - .g-pa-130 { - padding: 9.28571rem !important; - } - .g-pa-135 { - padding: 9.64286rem !important; - } - .g-pa-140 { - padding: 10rem !important; - } - .g-pa-145 { - padding: 10.35714rem !important; - } - .g-pa-150 { - padding: 10.71429rem !important; - } - /* Padding X */ - .g-px-1 { - padding-left: 0.07143rem !important; - padding-right: 0.07143rem !important; - } - .g-px-2 { - padding-left: 0.14286rem !important; - padding-right: 0.14286rem !important; - } - .g-px-3 { - padding-left: 0.21429rem !important; - padding-right: 0.21429rem !important; - } - .g-px-4 { - padding-left: 0.28571rem !important; - padding-right: 0.28571rem !important; - } - .g-px-5 { - padding-left: 0.35714rem !important; - padding-right: 0.35714rem !important; - } - .g-px-6 { - padding-left: 0.42857rem !important; - padding-right: 0.42857rem !important; - } - .g-px-7 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .g-px-8 { - padding-left: 0.57143rem !important; - padding-right: 0.57143rem !important; - } - .g-px-9 { - padding-left: 0.64286rem !important; - padding-right: 0.64286rem !important; - } - .g-px-10 { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-11 { - padding-left: 0.78571rem !important; - padding-right: 0.78571rem !important; - } - .g-px-12 { - padding-left: 0.85714rem !important; - padding-right: 0.85714rem !important; - } - .g-px-13 { - padding-left: 0.92857rem !important; - padding-right: 0.92857rem !important; - } - .g-px-14 { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .g-px-15 { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-16 { - padding-left: 1.14286rem !important; - padding-right: 1.14286rem !important; - } - .g-px-17 { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; - } - .g-px-18 { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-px-19 { - padding-left: 1.35714rem !important; - padding-right: 1.35714rem !important; - } - .g-px-10 { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-15 { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-20 { - padding-left: 1.42857rem !important; - padding-right: 1.42857rem !important; - } - .g-px-25 { - padding-left: 1.78571rem !important; - padding-right: 1.78571rem !important; - } - .g-px-30 { - padding-left: 2.14286rem !important; - padding-right: 2.14286rem !important; - } - .g-px-35 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; - } - .g-px-40 { - padding-left: 2.85714rem !important; - padding-right: 2.85714rem !important; - } - .g-px-45 { - padding-left: 3.21429rem !important; - padding-right: 3.21429rem !important; - } - .g-px-50 { - padding-left: 3.57143rem !important; - padding-right: 3.57143rem !important; - } - .g-px-55 { - padding-left: 3.92857rem !important; - padding-right: 3.92857rem !important; - } - .g-px-60 { - padding-left: 4.28571rem !important; - padding-right: 4.28571rem !important; - } - .g-px-65 { - padding-left: 4.64286rem !important; - padding-right: 4.64286rem !important; - } - .g-px-70 { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .g-px-75 { - padding-left: 5.35714rem !important; - padding-right: 5.35714rem !important; - } - .g-px-80 { - padding-left: 5.71429rem !important; - padding-right: 5.71429rem !important; - } - .g-px-85 { - padding-left: 6.07143rem !important; - padding-right: 6.07143rem !important; - } - .g-px-90 { - padding-left: 6.42857rem !important; - padding-right: 6.42857rem !important; - } - .g-px-95 { - padding-left: 6.78571rem !important; - padding-right: 6.78571rem !important; - } - .g-px-100 { - padding-left: 7.14286rem !important; - padding-right: 7.14286rem !important; - } - .g-px-105 { - padding-left: 7.5rem !important; - padding-right: 7.5rem !important; - } - .g-px-110 { - padding-left: 7.85714rem !important; - padding-right: 7.85714rem !important; - } - .g-px-115 { - padding-left: 8.21429rem !important; - padding-right: 8.21429rem !important; - } - .g-px-120 { - padding-left: 8.57143rem !important; - padding-right: 8.57143rem !important; - } - .g-px-125 { - padding-left: 8.92857rem !important; - padding-right: 8.92857rem !important; - } - .g-px-130 { - padding-left: 9.28571rem !important; - padding-right: 9.28571rem !important; - } - .g-px-135 { - padding-left: 9.64286rem !important; - padding-right: 9.64286rem !important; - } - .g-px-140 { - padding-left: 10rem !important; - padding-right: 10rem !important; - } - .g-px-145 { - padding-left: 10.35714rem !important; - padding-right: 10.35714rem !important; - } - .g-px-150 { - padding-left: 10.71429rem !important; - padding-right: 10.71429rem !important; - } - /* Padding Y */ - .g-py-1 { - padding-top: 0.07143rem !important; - padding-bottom: 0.07143rem !important; - } - .g-py-2 { - padding-top: 0.14286rem !important; - padding-bottom: 0.14286rem !important; - } - .g-py-3 { - padding-top: 0.21429rem !important; - padding-bottom: 0.21429rem !important; - } - .g-py-4 { - padding-top: 0.28571rem !important; - padding-bottom: 0.28571rem !important; - } - .g-py-5 { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-py-6 { - padding-top: 0.42857rem !important; - padding-bottom: 0.42857rem !important; - } - .g-py-7 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .g-py-8 { - padding-top: 0.57143rem !important; - padding-bottom: 0.57143rem !important; - } - .g-py-9 { - padding-top: 0.64286rem !important; - padding-bottom: 0.64286rem !important; - } - .g-py-10 { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - .g-py-11 { - padding-top: 0.78571rem !important; - padding-bottom: 0.78571rem !important; - } - .g-py-12 { - padding-top: 0.85714rem !important; - padding-bottom: 0.85714rem !important; - } - .g-py-13 { - padding-top: 0.92857rem !important; - padding-bottom: 0.92857rem !important; - } - .g-py-14 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .g-py-15 { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - .g-py-16 { - padding-top: 1.14286rem !important; - padding-bottom: 1.14286rem !important; - } - .g-py-17 { - padding-top: 1.21429rem !important; - padding-bottom: 1.21429rem !important; - } - .g-py-18 { - padding-top: 1.28571rem !important; - padding-bottom: 1.28571rem !important; - } - .g-py-19 { - padding-top: 1.35714rem !important; - padding-bottom: 1.35714rem !important; - } - /* P */ - .g-py-10 { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - /* P */ - .g-py-15 { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - /* P */ - .g-py-20 { - padding-top: 1.42857rem !important; - padding-bottom: 1.42857rem !important; - } - /* P */ - .g-py-25 { - padding-top: 1.78571rem !important; - padding-bottom: 1.78571rem !important; - } - /* P */ - .g-py-30 { - padding-top: 2.14286rem !important; - padding-bottom: 2.14286rem !important; - } - /* P */ - .g-py-35 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; - } - /* P */ - .g-py-40 { - padding-top: 2.85714rem !important; - padding-bottom: 2.85714rem !important; - } - /* P */ - .g-py-45 { - padding-top: 3.21429rem !important; - padding-bottom: 3.21429rem !important; - } - /* P */ - .g-py-50 { - padding-top: 3.57143rem !important; - padding-bottom: 3.57143rem !important; - } - /* P */ - .g-py-55 { - padding-top: 3.92857rem !important; - padding-bottom: 3.92857rem !important; - } - /* P */ - .g-py-60 { - padding-top: 4.28571rem !important; - padding-bottom: 4.28571rem !important; - } - /* P */ - .g-py-65 { - padding-top: 4.64286rem !important; - padding-bottom: 4.64286rem !important; - } - /* P */ - .g-py-70 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } - /* P */ - .g-py-75 { - padding-top: 5.35714rem !important; - padding-bottom: 5.35714rem !important; - } - /* P */ - .g-py-80 { - padding-top: 5.71429rem !important; - padding-bottom: 5.71429rem !important; - } - /* P */ - .g-py-85 { - padding-top: 6.07143rem !important; - padding-bottom: 6.07143rem !important; - } - /* P */ - .g-py-90 { - padding-top: 6.42857rem !important; - padding-bottom: 6.42857rem !important; - } - /* P */ - .g-py-95 { - padding-top: 6.78571rem !important; - padding-bottom: 6.78571rem !important; - } - /* P */ - .g-py-100 { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - /* P */ - .g-py-105 { - padding-top: 7.5rem !important; - padding-bottom: 7.5rem !important; - } - /* P */ - .g-py-110 { - padding-top: 7.85714rem !important; - padding-bottom: 7.85714rem !important; - } - /* P */ - .g-py-115 { - padding-top: 8.21429rem !important; - padding-bottom: 8.21429rem !important; - } - /* P */ - .g-py-120 { - padding-top: 8.57143rem !important; - padding-bottom: 8.57143rem !important; - } - /* P */ - .g-py-125 { - padding-top: 8.92857rem !important; - padding-bottom: 8.92857rem !important; - } - /* P */ - .g-py-130 { - padding-top: 9.28571rem !important; - padding-bottom: 9.28571rem !important; - } - /* P */ - .g-py-135 { - padding-top: 9.64286rem !important; - padding-bottom: 9.64286rem !important; - } - /* P */ - .g-py-140 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; - } - /* P */ - .g-py-145 { - padding-top: 10.35714rem !important; - padding-bottom: 10.35714rem !important; - } - /* P */ - .g-py-150 { - padding-top: 10.71429rem !important; - padding-bottom: 10.71429rem !important; - } - /* P */ - .g-py-155 { - padding-top: 11.07143rem !important; - padding-bottom: 11.07143rem !important; - } - /* P */ - .g-py-160 { - padding-top: 11.42857rem !important; - padding-bottom: 11.42857rem !important; - } - /* P */ - .g-py-165 { - padding-top: 11.78571rem !important; - padding-bottom: 11.78571rem !important; - } - /* P */ - .g-py-170 { - padding-top: 12.14286rem !important; - padding-bottom: 12.14286rem !important; - } - /* P */ - .g-py-175 { - padding-top: 12.5rem !important; - padding-bottom: 12.5rem !important; - } - /* P */ - .g-py-180 { - padding-top: 12.85714rem !important; - padding-bottom: 12.85714rem !important; - } - /* P */ - .g-py-185 { - padding-top: 13.21429rem !important; - padding-bottom: 13.21429rem !important; - } - /* P */ - .g-py-190 { - padding-top: 13.57143rem !important; - padding-bottom: 13.57143rem !important; - } - /* P */ - .g-py-195 { - padding-top: 13.92857rem !important; - padding-bottom: 13.92857rem !important; - } - /* P */ - .g-py-200 { - padding-top: 14.28571rem !important; - padding-bottom: 14.28571rem !important; - } - /* P */ - .g-py-205 { - padding-top: 14.64286rem !important; - padding-bottom: 14.64286rem !important; - } - /* P */ - .g-py-210 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; - } - /* Padding Top */ - .g-pt-0 { - padding-top: 0px !important; - } - .g-pt-1 { - padding-top: 0.07143rem !important; - } - .g-pt-2 { - padding-top: 0.14286rem !important; - } - .g-pt-3 { - padding-top: 0.21429rem !important; - } - .g-pt-4 { - padding-top: 0.28571rem !important; - } - .g-pt-5 { - padding-top: 0.35714rem !important; - } - .g-pt-6 { - padding-top: 0.42857rem !important; - } - .g-pt-7 { - padding-top: 0.5rem !important; - } - .g-pt-8 { - padding-top: 0.57143rem !important; - } - .g-pt-9 { - padding-top: 0.64286rem !important; - } - .g-pt-10 { - padding-top: 0.71429rem !important; - } - .g-pt-11 { - padding-top: 0.78571rem !important; - } - .g-pt-12 { - padding-top: 0.85714rem !important; - } - .g-pt-13 { - padding-top: 0.92857rem !important; - } - .g-pt-14 { - padding-top: 1rem !important; - } - .g-pt-15 { - padding-top: 1.07143rem !important; - } - .g-pt-16 { - padding-top: 1.14286rem !important; - } - .g-pt-17 { - padding-top: 1.21429rem !important; - } - .g-pt-18 { - padding-top: 1.28571rem !important; - } - .g-pt-19 { - padding-top: 1.35714rem !important; - } - .g-pt-10 { - padding-top: 0.71429rem !important; - } - .g-pt-15 { - padding-top: 1.07143rem !important; - } - .g-pt-20 { - padding-top: 1.42857rem !important; - } - .g-pt-25 { - padding-top: 1.78571rem !important; - } - .g-pt-30 { - padding-top: 2.14286rem !important; - } - .g-pt-35 { - padding-top: 2.5rem !important; - } - .g-pt-40 { - padding-top: 2.85714rem !important; - } - .g-pt-45 { - padding-top: 3.21429rem !important; - } - .g-pt-50 { - padding-top: 3.57143rem !important; - } - .g-pt-55 { - padding-top: 3.92857rem !important; - } - .g-pt-60 { - padding-top: 4.28571rem !important; - } - .g-pt-65 { - padding-top: 4.64286rem !important; - } - .g-pt-70 { - padding-top: 5rem !important; - } - .g-pt-75 { - padding-top: 5.35714rem !important; - } - .g-pt-80 { - padding-top: 5.71429rem !important; - } - .g-pt-85 { - padding-top: 6.07143rem !important; - } - .g-pt-90 { - padding-top: 6.42857rem !important; - } - .g-pt-95 { - padding-top: 6.78571rem !important; - } - .g-pt-100 { - padding-top: 7.14286rem !important; - } - .g-pt-105 { - padding-top: 7.5rem !important; - } - .g-pt-110 { - padding-top: 7.85714rem !important; - } - .g-pt-115 { - padding-top: 8.21429rem !important; - } - .g-pt-120 { - padding-top: 8.57143rem !important; - } - .g-pt-125 { - padding-top: 8.92857rem !important; - } - .g-pt-130 { - padding-top: 9.28571rem !important; - } - .g-pt-135 { - padding-top: 9.64286rem !important; - } - .g-pt-140 { - padding-top: 10rem !important; - } - .g-pt-145 { - padding-top: 10.35714rem !important; - } - .g-pt-150 { - padding-top: 10.71429rem !important; - } - /* Padding Right */ - .g-pr-0 { - padding-right: 0px !important; - } - .g-pr-1 { - padding-right: 0.07143rem !important; - } - .g-pr-2 { - padding-right: 0.14286rem !important; - } - .g-pr-3 { - padding-right: 0.21429rem !important; - } - .g-pr-4 { - padding-right: 0.28571rem !important; - } - .g-pr-5 { - padding-right: 0.35714rem !important; - } - .g-pr-6 { - padding-right: 0.42857rem !important; - } - .g-pr-7 { - padding-right: 0.5rem !important; - } - .g-pr-8 { - padding-right: 0.57143rem !important; - } - .g-pr-9 { - padding-right: 0.64286rem !important; - } - /* P */ - .g-pr-10 { - padding-right: 0.71429rem !important; - } - /* P */ - .g-pr-15 { - padding-right: 1.07143rem !important; - } - /* P */ - .g-pr-20 { - padding-right: 1.42857rem !important; - } - /* P */ - .g-pr-25 { - padding-right: 1.78571rem !important; - } - /* P */ - .g-pr-30 { - padding-right: 2.14286rem !important; - } - /* P */ - .g-pr-35 { - padding-right: 2.5rem !important; - } - /* P */ - .g-pr-40 { - padding-right: 2.85714rem !important; - } - /* P */ - .g-pr-45 { - padding-right: 3.21429rem !important; - } - /* P */ - .g-pr-50 { - padding-right: 3.57143rem !important; - } - /* P */ - .g-pr-55 { - padding-right: 3.92857rem !important; - } - /* P */ - .g-pr-60 { - padding-right: 4.28571rem !important; - } - /* P */ - .g-pr-65 { - padding-right: 4.64286rem !important; - } - /* P */ - .g-pr-70 { - padding-right: 5rem !important; - } - /* P */ - .g-pr-75 { - padding-right: 5.35714rem !important; - } - /* P */ - .g-pr-80 { - padding-right: 5.71429rem !important; - } - /* P */ - .g-pr-85 { - padding-right: 6.07143rem !important; - } - /* P */ - .g-pr-90 { - padding-right: 6.42857rem !important; - } - /* P */ - .g-pr-95 { - padding-right: 6.78571rem !important; - } - /* P */ - .g-pr-100 { - padding-right: 7.14286rem !important; - } - /* P */ - .g-pr-105 { - padding-right: 7.5rem !important; - } - /* P */ - .g-pr-110 { - padding-right: 7.85714rem !important; - } - /* P */ - .g-pr-115 { - padding-right: 8.21429rem !important; - } - /* P */ - .g-pr-120 { - padding-right: 8.57143rem !important; - } - /* P */ - .g-pr-125 { - padding-right: 8.92857rem !important; - } - /* P */ - .g-pr-130 { - padding-right: 9.28571rem !important; - } - /* P */ - .g-pr-135 { - padding-right: 9.64286rem !important; - } - /* P */ - .g-pr-140 { - padding-right: 10rem !important; - } - /* P */ - .g-pr-145 { - padding-right: 10.35714rem !important; - } - /* P */ - .g-pr-150 { - padding-right: 10.71429rem !important; - } - /* P */ - .g-pr-155 { - padding-right: 11.07143rem !important; - } - /* P */ - .g-pr-160 { - padding-right: 11.42857rem !important; - } - /* P */ - .g-pr-165 { - padding-right: 11.78571rem !important; - } - /* P */ - .g-pr-170 { - padding-right: 12.14286rem !important; - } - /* Padding Bottom */ - .g-pb-0 { - padding-bottom: 0px !important; - } - .g-pb-1 { - padding-bottom: 0.07143rem !important; - } - .g-pb-2 { - padding-bottom: 0.14286rem !important; - } - .g-pb-3 { - padding-bottom: 0.21429rem !important; - } - .g-pb-4 { - padding-bottom: 0.28571rem !important; - } - .g-pb-5 { - padding-bottom: 0.35714rem !important; - } - .g-pb-6 { - padding-bottom: 0.42857rem !important; - } - .g-pb-7 { - padding-bottom: 0.5rem !important; - } - .g-pb-8 { - padding-bottom: 0.57143rem !important; - } - .g-pb-9 { - padding-bottom: 0.64286rem !important; - } - .g-pb-10 { - padding-bottom: 0.71429rem !important; - } - .g-pb-15 { - padding-bottom: 1.07143rem !important; - } - .g-pb-20 { - padding-bottom: 1.42857rem !important; - } - .g-pb-25 { - padding-bottom: 1.78571rem !important; - } - .g-pb-30 { - padding-bottom: 2.14286rem !important; - } - .g-pb-35 { - padding-bottom: 2.5rem !important; - } - .g-pb-40 { - padding-bottom: 2.85714rem !important; - } - .g-pb-45 { - padding-bottom: 3.21429rem !important; - } - .g-pb-50 { - padding-bottom: 3.57143rem !important; - } - .g-pb-55 { - padding-bottom: 3.92857rem !important; - } - .g-pb-60 { - padding-bottom: 4.28571rem !important; - } - .g-pb-65 { - padding-bottom: 4.64286rem !important; - } - .g-pb-70 { - padding-bottom: 5rem !important; - } - .g-pb-75 { - padding-bottom: 5.35714rem !important; - } - .g-pb-80 { - padding-bottom: 5.71429rem !important; - } - .g-pb-85 { - padding-bottom: 6.07143rem !important; - } - .g-pb-90 { - padding-bottom: 6.42857rem !important; - } - .g-pb-95 { - padding-bottom: 6.78571rem !important; - } - .g-pb-100 { - padding-bottom: 7.14286rem !important; - } - .g-pb-105 { - padding-bottom: 7.5rem !important; - } - .g-pb-110 { - padding-bottom: 7.85714rem !important; - } - .g-pb-115 { - padding-bottom: 8.21429rem !important; - } - .g-pb-120 { - padding-bottom: 8.57143rem !important; - } - .g-pb-125 { - padding-bottom: 8.92857rem !important; - } - .g-pb-130 { - padding-bottom: 9.28571rem !important; - } - .g-pb-135 { - padding-bottom: 9.64286rem !important; - } - .g-pb-140 { - padding-bottom: 10rem !important; - } - .g-pb-145 { - padding-bottom: 10.35714rem !important; - } - .g-pb-150 { - padding-bottom: 10.71429rem !important; - } - /* Padding Left */ - .g-pl-0 { - padding-left: 0px !important; - } - .g-pl-1 { - padding-left: 0.07143rem !important; - } - .g-pl-2 { - padding-left: 0.14286rem !important; - } - .g-pl-3 { - padding-left: 0.21429rem !important; - } - .g-pl-4 { - padding-left: 0.28571rem !important; - } - .g-pl-5 { - padding-left: 0.35714rem !important; - } - .g-pl-6 { - padding-left: 0.42857rem !important; - } - .g-pl-7 { - padding-left: 0.5rem !important; - } - .g-pl-8 { - padding-left: 0.57143rem !important; - } - .g-pl-9 { - padding-left: 0.64286rem !important; - } - /* P */ - .g-pl-10 { - padding-left: 0.71429rem !important; - } - /* P */ - .g-pl-15 { - padding-left: 1.07143rem !important; - } - /* P */ - .g-pl-20 { - padding-left: 1.42857rem !important; - } - /* P */ - .g-pl-25 { - padding-left: 1.78571rem !important; - } - /* P */ - .g-pl-30 { - padding-left: 2.14286rem !important; - } - /* P */ - .g-pl-35 { - padding-left: 2.5rem !important; - } - /* P */ - .g-pl-40 { - padding-left: 2.85714rem !important; - } - /* P */ - .g-pl-45 { - padding-left: 3.21429rem !important; - } - /* P */ - .g-pl-50 { - padding-left: 3.57143rem !important; - } - /* P */ - .g-pl-55 { - padding-left: 3.92857rem !important; - } - /* P */ - .g-pl-60 { - padding-left: 4.28571rem !important; - } - /* P */ - .g-pl-65 { - padding-left: 4.64286rem !important; - } - /* P */ - .g-pl-70 { - padding-left: 5rem !important; - } - /* P */ - .g-pl-75 { - padding-left: 5.35714rem !important; - } - /* P */ - .g-pl-80 { - padding-left: 5.71429rem !important; - } - /* P */ - .g-pl-85 { - padding-left: 6.07143rem !important; - } - /* P */ - .g-pl-90 { - padding-left: 6.42857rem !important; - } - /* P */ - .g-pl-95 { - padding-left: 6.78571rem !important; - } - /* P */ - .g-pl-100 { - padding-left: 7.14286rem !important; - } - /* P */ - .g-pl-105 { - padding-left: 7.5rem !important; - } - /* P */ - .g-pl-110 { - padding-left: 7.85714rem !important; - } - /* P */ - .g-pl-115 { - padding-left: 8.21429rem !important; - } - /* P */ - .g-pl-120 { - padding-left: 8.57143rem !important; - } - /* P */ - .g-pl-125 { - padding-left: 8.92857rem !important; - } - /* P */ - .g-pl-130 { - padding-left: 9.28571rem !important; - } - /* P */ - .g-pl-135 { - padding-left: 9.64286rem !important; - } - /* P */ - .g-pl-140 { - padding-left: 10rem !important; - } - /* P */ - .g-pl-145 { - padding-left: 10.35714rem !important; - } - /* P */ - .g-pl-150 { - padding-left: 10.71429rem !important; - } - /* P */ - .g-pl-155 { - padding-left: 11.07143rem !important; - } - /* P */ - .g-pl-160 { - padding-left: 11.42857rem !important; - } - /* P */ - .g-pl-165 { - padding-left: 11.78571rem !important; - } - /* P */ - .g-pl-170 { - padding-left: 12.14286rem !important; - } -} - -/* Padding Spaces (sm) -------------------------------------*/ -@media (min-width: 576px) { - .g-pa-0--sm { - padding: 0 !important; - } - .g-px-0--sm { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0--sm { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-pt-0--sm { - padding-top: 0 !important; - } - .g-pr-0--sm { - padding-right: 0 !important; - } - .g-pb-0--sm { - padding-bottom: 0 !important; - } - .g-pl-0--sm { - padding-left: 0 !important; - } - /* Padding Around */ - .g-pa-2--sm { - padding: 0.14286rem !important; - } - .g-pa-3--sm { - padding: 0.21429rem !important; - } - .g-pa-5--sm { - padding: 0.35714rem !important; - } - .g-pa-7--sm { - padding: 0.5rem !important; - } - .g-pa-10--sm { - padding: 0.71429rem !important; - } - .g-pa-15--sm { - padding: 1.07143rem !important; - } - .g-pa-20--sm { - padding: 1.42857rem !important; - } - .g-pa-25--sm { - padding: 1.78571rem !important; - } - .g-pa-30--sm { - padding: 2.14286rem !important; - } - .g-pa-35--sm { - padding: 2.5rem !important; - } - .g-pa-40--sm { - padding: 2.85714rem !important; - } - .g-pa-45--sm { - padding: 3.21429rem !important; - } - .g-pa-50--sm { - padding: 3.57143rem !important; - } - .g-pa-55--sm { - padding: 3.92857rem !important; - } - .g-pa-60--sm { - padding: 4.28571rem !important; - } - .g-pa-65--sm { - padding: 4.64286rem !important; - } - .g-pa-70--sm { - padding: 5rem !important; - } - .g-pa-75--sm { - padding: 5.35714rem !important; - } - .g-pa-80--sm { - padding: 5.71429rem !important; - } - .g-pa-85--sm { - padding: 6.07143rem !important; - } - .g-pa-90--sm { - padding: 6.42857rem !important; - } - .g-pa-95--sm { - padding: 6.78571rem !important; - } - .g-pa-100--sm { - padding: 7.14286rem !important; - } - .g-pa-105--sm { - padding: 7.5rem !important; - } - .g-pa-110--sm { - padding: 7.85714rem !important; - } - .g-pa-115--sm { - padding: 8.21429rem !important; - } - .g-pa-120--sm { - padding: 8.57143rem !important; - } - .g-pa-125--sm { - padding: 8.92857rem !important; - } - .g-pa-130--sm { - padding: 9.28571rem !important; - } - .g-pa-135--sm { - padding: 9.64286rem !important; - } - .g-pa-140--sm { - padding: 10rem !important; - } - .g-pa-145--sm { - padding: 10.35714rem !important; - } - .g-pa-150--sm { - padding: 10.71429rem !important; - } - /* Padding X */ - .g-px-1--sm { - padding-left: 0.07143rem !important; - padding-right: 0.07143rem !important; - } - .g-px-2--sm { - padding-left: 0.14286rem !important; - padding-right: 0.14286rem !important; - } - .g-px-3--sm { - padding-left: 0.21429rem !important; - padding-right: 0.21429rem !important; - } - .g-px-4--sm { - padding-left: 0.28571rem !important; - padding-right: 0.28571rem !important; - } - .g-px-5--sm { - padding-left: 0.35714rem !important; - padding-right: 0.35714rem !important; - } - .g-px-6--sm { - padding-left: 0.42857rem !important; - padding-right: 0.42857rem !important; - } - .g-px-7--sm { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .g-px-8--sm { - padding-left: 0.57143rem !important; - padding-right: 0.57143rem !important; - } - .g-px-9--sm { - padding-left: 0.64286rem !important; - padding-right: 0.64286rem !important; - } - .g-px-10--sm { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-11--sm { - padding-left: 0.78571rem !important; - padding-right: 0.78571rem !important; - } - .g-px-12--sm { - padding-left: 0.85714rem !important; - padding-right: 0.85714rem !important; - } - .g-px-13--sm { - padding-left: 0.92857rem !important; - padding-right: 0.92857rem !important; - } - .g-px-14--sm { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .g-px-15--sm { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-16--sm { - padding-left: 1.14286rem !important; - padding-right: 1.14286rem !important; - } - .g-px-17--sm { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; - } - .g-px-18--sm { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-px-19--sm { - padding-left: 1.35714rem !important; - padding-right: 1.35714rem !important; - } - .g-px-10--sm { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-15--sm { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-20--sm { - padding-left: 1.42857rem !important; - padding-right: 1.42857rem !important; - } - .g-px-25--sm { - padding-left: 1.78571rem !important; - padding-right: 1.78571rem !important; - } - .g-px-30--sm { - padding-left: 2.14286rem !important; - padding-right: 2.14286rem !important; - } - .g-px-35--sm { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; - } - .g-px-40--sm { - padding-left: 2.85714rem !important; - padding-right: 2.85714rem !important; - } - .g-px-45--sm { - padding-left: 3.21429rem !important; - padding-right: 3.21429rem !important; - } - .g-px-50--sm { - padding-left: 3.57143rem !important; - padding-right: 3.57143rem !important; - } - .g-px-55--sm { - padding-left: 3.92857rem !important; - padding-right: 3.92857rem !important; - } - .g-px-60--sm { - padding-left: 4.28571rem !important; - padding-right: 4.28571rem !important; - } - .g-px-65--sm { - padding-left: 4.64286rem !important; - padding-right: 4.64286rem !important; - } - .g-px-70--sm { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .g-px-75--sm { - padding-left: 5.35714rem !important; - padding-right: 5.35714rem !important; - } - .g-px-80--sm { - padding-left: 5.71429rem !important; - padding-right: 5.71429rem !important; - } - .g-px-85--sm { - padding-left: 6.07143rem !important; - padding-right: 6.07143rem !important; - } - .g-px-90--sm { - padding-left: 6.42857rem !important; - padding-right: 6.42857rem !important; - } - .g-px-95--sm { - padding-left: 6.78571rem !important; - padding-right: 6.78571rem !important; - } - .g-px-100--sm { - padding-left: 7.14286rem !important; - padding-right: 7.14286rem !important; - } - .g-px-105--sm { - padding-left: 7.5rem !important; - padding-right: 7.5rem !important; - } - .g-px-110--sm { - padding-left: 7.85714rem !important; - padding-right: 7.85714rem !important; - } - .g-px-115--sm { - padding-left: 8.21429rem !important; - padding-right: 8.21429rem !important; - } - .g-px-120--sm { - padding-left: 8.57143rem !important; - padding-right: 8.57143rem !important; - } - .g-px-125--sm { - padding-left: 8.92857rem !important; - padding-right: 8.92857rem !important; - } - .g-px-130--sm { - padding-left: 9.28571rem !important; - padding-right: 9.28571rem !important; - } - .g-px-135--sm { - padding-left: 9.64286rem !important; - padding-right: 9.64286rem !important; - } - .g-px-140--sm { - padding-left: 10rem !important; - padding-right: 10rem !important; - } - .g-px-145--sm { - padding-left: 10.35714rem !important; - padding-right: 10.35714rem !important; - } - .g-px-150--sm { - padding-left: 10.71429rem !important; - padding-right: 10.71429rem !important; - } - /* Padding Y */ - .g-py-1--sm { - padding-top: 0.07143rem !important; - padding-bottom: 0.07143rem !important; - } - .g-py-2--sm { - padding-top: 0.14286rem !important; - padding-bottom: 0.14286rem !important; - } - .g-py-3--sm { - padding-top: 0.21429rem !important; - padding-bottom: 0.21429rem !important; - } - .g-py-4--sm { - padding-top: 0.28571rem !important; - padding-bottom: 0.28571rem !important; - } - .g-py-5--sm { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-py-6--sm { - padding-top: 0.42857rem !important; - padding-bottom: 0.42857rem !important; - } - .g-py-7--sm { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .g-py-8--sm { - padding-top: 0.57143rem !important; - padding-bottom: 0.57143rem !important; - } - .g-py-9--sm { - padding-top: 0.64286rem !important; - padding-bottom: 0.64286rem !important; - } - .g-py-10--sm { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - .g-py-11--sm { - padding-top: 0.78571rem !important; - padding-bottom: 0.78571rem !important; - } - .g-py-12--sm { - padding-top: 0.85714rem !important; - padding-bottom: 0.85714rem !important; - } - .g-py-13--sm { - padding-top: 0.92857rem !important; - padding-bottom: 0.92857rem !important; - } - .g-py-14--sm { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .g-py-15--sm { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - .g-py-16--sm { - padding-top: 1.14286rem !important; - padding-bottom: 1.14286rem !important; - } - .g-py-17--sm { - padding-top: 1.21429rem !important; - padding-bottom: 1.21429rem !important; - } - .g-py-18--sm { - padding-top: 1.28571rem !important; - padding-bottom: 1.28571rem !important; - } - .g-py-19--sm { - padding-top: 1.35714rem !important; - padding-bottom: 1.35714rem !important; - } - /* P */ - .g-py-10--sm { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - /* P */ - .g-py-15--sm { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - /* P */ - .g-py-20--sm { - padding-top: 1.42857rem !important; - padding-bottom: 1.42857rem !important; - } - /* P */ - .g-py-25--sm { - padding-top: 1.78571rem !important; - padding-bottom: 1.78571rem !important; - } - /* P */ - .g-py-30--sm { - padding-top: 2.14286rem !important; - padding-bottom: 2.14286rem !important; - } - /* P */ - .g-py-35--sm { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; - } - /* P */ - .g-py-40--sm { - padding-top: 2.85714rem !important; - padding-bottom: 2.85714rem !important; - } - /* P */ - .g-py-45--sm { - padding-top: 3.21429rem !important; - padding-bottom: 3.21429rem !important; - } - /* P */ - .g-py-50--sm { - padding-top: 3.57143rem !important; - padding-bottom: 3.57143rem !important; - } - /* P */ - .g-py-55--sm { - padding-top: 3.92857rem !important; - padding-bottom: 3.92857rem !important; - } - /* P */ - .g-py-60--sm { - padding-top: 4.28571rem !important; - padding-bottom: 4.28571rem !important; - } - /* P */ - .g-py-65--sm { - padding-top: 4.64286rem !important; - padding-bottom: 4.64286rem !important; - } - /* P */ - .g-py-70--sm { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } - /* P */ - .g-py-75--sm { - padding-top: 5.35714rem !important; - padding-bottom: 5.35714rem !important; - } - /* P */ - .g-py-80--sm { - padding-top: 5.71429rem !important; - padding-bottom: 5.71429rem !important; - } - /* P */ - .g-py-85--sm { - padding-top: 6.07143rem !important; - padding-bottom: 6.07143rem !important; - } - /* P */ - .g-py-90--sm { - padding-top: 6.42857rem !important; - padding-bottom: 6.42857rem !important; - } - /* P */ - .g-py-95--sm { - padding-top: 6.78571rem !important; - padding-bottom: 6.78571rem !important; - } - /* P */ - .g-py-100--sm { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - /* P */ - .g-py-105--sm { - padding-top: 7.5rem !important; - padding-bottom: 7.5rem !important; - } - /* P */ - .g-py-110--sm { - padding-top: 7.85714rem !important; - padding-bottom: 7.85714rem !important; - } - /* P */ - .g-py-115--sm { - padding-top: 8.21429rem !important; - padding-bottom: 8.21429rem !important; - } - /* P */ - .g-py-120--sm { - padding-top: 8.57143rem !important; - padding-bottom: 8.57143rem !important; - } - /* P */ - .g-py-125--sm { - padding-top: 8.92857rem !important; - padding-bottom: 8.92857rem !important; - } - /* P */ - .g-py-130--sm { - padding-top: 9.28571rem !important; - padding-bottom: 9.28571rem !important; - } - /* P */ - .g-py-135--sm { - padding-top: 9.64286rem !important; - padding-bottom: 9.64286rem !important; - } - /* P */ - .g-py-140--sm { - padding-top: 10rem !important; - padding-bottom: 10rem !important; - } - /* P */ - .g-py-145--sm { - padding-top: 10.35714rem !important; - padding-bottom: 10.35714rem !important; - } - /* P */ - .g-py-150--sm { - padding-top: 10.71429rem !important; - padding-bottom: 10.71429rem !important; - } - /* P */ - .g-py-155--sm { - padding-top: 11.07143rem !important; - padding-bottom: 11.07143rem !important; - } - /* P */ - .g-py-160--sm { - padding-top: 11.42857rem !important; - padding-bottom: 11.42857rem !important; - } - /* P */ - .g-py-165--sm { - padding-top: 11.78571rem !important; - padding-bottom: 11.78571rem !important; - } - /* P */ - .g-py-170--sm { - padding-top: 12.14286rem !important; - padding-bottom: 12.14286rem !important; - } - /* P */ - .g-py-175--sm { - padding-top: 12.5rem !important; - padding-bottom: 12.5rem !important; - } - /* P */ - .g-py-180--sm { - padding-top: 12.85714rem !important; - padding-bottom: 12.85714rem !important; - } - /* P */ - .g-py-185--sm { - padding-top: 13.21429rem !important; - padding-bottom: 13.21429rem !important; - } - /* P */ - .g-py-190--sm { - padding-top: 13.57143rem !important; - padding-bottom: 13.57143rem !important; - } - /* P */ - .g-py-195--sm { - padding-top: 13.92857rem !important; - padding-bottom: 13.92857rem !important; - } - /* P */ - .g-py-200--sm { - padding-top: 14.28571rem !important; - padding-bottom: 14.28571rem !important; - } - /* P */ - .g-py-205--sm { - padding-top: 14.64286rem !important; - padding-bottom: 14.64286rem !important; - } - /* P */ - .g-py-210--sm { - padding-top: 15rem !important; - padding-bottom: 15rem !important; - } - /* Padding Top */ - .g-pt-0--sm { - padding-top: 0px !important; - } - .g-pt-1--sm { - padding-top: 0.07143rem !important; - } - .g-pt-2--sm { - padding-top: 0.14286rem !important; - } - .g-pt-3--sm { - padding-top: 0.21429rem !important; - } - .g-pt-4--sm { - padding-top: 0.28571rem !important; - } - .g-pt-5--sm { - padding-top: 0.35714rem !important; - } - .g-pt-6--sm { - padding-top: 0.42857rem !important; - } - .g-pt-7--sm { - padding-top: 0.5rem !important; - } - .g-pt-8--sm { - padding-top: 0.57143rem !important; - } - .g-pt-9--sm { - padding-top: 0.64286rem !important; - } - .g-pt-10--sm { - padding-top: 0.71429rem !important; - } - .g-pt-11--sm { - padding-top: 0.78571rem !important; - } - .g-pt-12--sm { - padding-top: 0.85714rem !important; - } - .g-pt-13--sm { - padding-top: 0.92857rem !important; - } - .g-pt-14--sm { - padding-top: 1rem !important; - } - .g-pt-15--sm { - padding-top: 1.07143rem !important; - } - .g-pt-16--sm { - padding-top: 1.14286rem !important; - } - .g-pt-17--sm { - padding-top: 1.21429rem !important; - } - .g-pt-18--sm { - padding-top: 1.28571rem !important; - } - .g-pt-19--sm { - padding-top: 1.35714rem !important; - } - .g-pt-10--sm { - padding-top: 0.71429rem !important; - } - .g-pt-15--sm { - padding-top: 1.07143rem !important; - } - .g-pt-20--sm { - padding-top: 1.42857rem !important; - } - .g-pt-25--sm { - padding-top: 1.78571rem !important; - } - .g-pt-30--sm { - padding-top: 2.14286rem !important; - } - .g-pt-35--sm { - padding-top: 2.5rem !important; - } - .g-pt-40--sm { - padding-top: 2.85714rem !important; - } - .g-pt-45--sm { - padding-top: 3.21429rem !important; - } - .g-pt-50--sm { - padding-top: 3.57143rem !important; - } - .g-pt-55--sm { - padding-top: 3.92857rem !important; - } - .g-pt-60--sm { - padding-top: 4.28571rem !important; - } - .g-pt-65--sm { - padding-top: 4.64286rem !important; - } - .g-pt-70--sm { - padding-top: 5rem !important; - } - .g-pt-75--sm { - padding-top: 5.35714rem !important; - } - .g-pt-80--sm { - padding-top: 5.71429rem !important; - } - .g-pt-85--sm { - padding-top: 6.07143rem !important; - } - .g-pt-90--sm { - padding-top: 6.42857rem !important; - } - .g-pt-95--sm { - padding-top: 6.78571rem !important; - } - .g-pt-100--sm { - padding-top: 7.14286rem !important; - } - .g-pt-105--sm { - padding-top: 7.5rem !important; - } - .g-pt-110--sm { - padding-top: 7.85714rem !important; - } - .g-pt-115--sm { - padding-top: 8.21429rem !important; - } - .g-pt-120--sm { - padding-top: 8.57143rem !important; - } - .g-pt-125--sm { - padding-top: 8.92857rem !important; - } - .g-pt-130--sm { - padding-top: 9.28571rem !important; - } - .g-pt-135--sm { - padding-top: 9.64286rem !important; - } - .g-pt-140--sm { - padding-top: 10rem !important; - } - .g-pt-145--sm { - padding-top: 10.35714rem !important; - } - .g-pt-150--sm { - padding-top: 10.71429rem !important; - } - /* Padding Right */ - .g-pr-0--sm { - padding-right: 0px !important; - } - .g-pr-1--sm { - padding-right: 0.07143rem !important; - } - .g-pr-2--sm { - padding-right: 0.14286rem !important; - } - .g-pr-3--sm { - padding-right: 0.21429rem !important; - } - .g-pr-4--sm { - padding-right: 0.28571rem !important; - } - .g-pr-5--sm { - padding-right: 0.35714rem !important; - } - .g-pr-6--sm { - padding-right: 0.42857rem !important; - } - .g-pr-7--sm { - padding-right: 0.5rem !important; - } - .g-pr-8--sm { - padding-right: 0.57143rem !important; - } - .g-pr-9--sm { - padding-right: 0.64286rem !important; - } - /* P */ - .g-pr-10--sm { - padding-right: 0.71429rem !important; - } - /* P */ - .g-pr-15--sm { - padding-right: 1.07143rem !important; - } - /* P */ - .g-pr-20--sm { - padding-right: 1.42857rem !important; - } - /* P */ - .g-pr-25--sm { - padding-right: 1.78571rem !important; - } - /* P */ - .g-pr-30--sm { - padding-right: 2.14286rem !important; - } - /* P */ - .g-pr-35--sm { - padding-right: 2.5rem !important; - } - /* P */ - .g-pr-40--sm { - padding-right: 2.85714rem !important; - } - /* P */ - .g-pr-45--sm { - padding-right: 3.21429rem !important; - } - /* P */ - .g-pr-50--sm { - padding-right: 3.57143rem !important; - } - /* P */ - .g-pr-55--sm { - padding-right: 3.92857rem !important; - } - /* P */ - .g-pr-60--sm { - padding-right: 4.28571rem !important; - } - /* P */ - .g-pr-65--sm { - padding-right: 4.64286rem !important; - } - /* P */ - .g-pr-70--sm { - padding-right: 5rem !important; - } - /* P */ - .g-pr-75--sm { - padding-right: 5.35714rem !important; - } - /* P */ - .g-pr-80--sm { - padding-right: 5.71429rem !important; - } - /* P */ - .g-pr-85--sm { - padding-right: 6.07143rem !important; - } - /* P */ - .g-pr-90--sm { - padding-right: 6.42857rem !important; - } - /* P */ - .g-pr-95--sm { - padding-right: 6.78571rem !important; - } - /* P */ - .g-pr-100--sm { - padding-right: 7.14286rem !important; - } - /* P */ - .g-pr-105--sm { - padding-right: 7.5rem !important; - } - /* P */ - .g-pr-110--sm { - padding-right: 7.85714rem !important; - } - /* P */ - .g-pr-115--sm { - padding-right: 8.21429rem !important; - } - /* P */ - .g-pr-120--sm { - padding-right: 8.57143rem !important; - } - /* P */ - .g-pr-125--sm { - padding-right: 8.92857rem !important; - } - /* P */ - .g-pr-130--sm { - padding-right: 9.28571rem !important; - } - /* P */ - .g-pr-135--sm { - padding-right: 9.64286rem !important; - } - /* P */ - .g-pr-140--sm { - padding-right: 10rem !important; - } - /* P */ - .g-pr-145--sm { - padding-right: 10.35714rem !important; - } - /* P */ - .g-pr-150--sm { - padding-right: 10.71429rem !important; - } - /* P */ - .g-pr-155--sm { - padding-right: 11.07143rem !important; - } - /* P */ - .g-pr-160--sm { - padding-right: 11.42857rem !important; - } - /* P */ - .g-pr-165--sm { - padding-right: 11.78571rem !important; - } - /* P */ - .g-pr-170--sm { - padding-right: 12.14286rem !important; - } - /* Padding Bottom */ - .g-pb-0--sm { - padding-bottom: 0px !important; - } - .g-pb-1--sm { - padding-bottom: 0.07143rem !important; - } - .g-pb-2--sm { - padding-bottom: 0.14286rem !important; - } - .g-pb-3--sm { - padding-bottom: 0.21429rem !important; - } - .g-pb-4--sm { - padding-bottom: 0.28571rem !important; - } - .g-pb-5--sm { - padding-bottom: 0.35714rem !important; - } - .g-pb-6--sm { - padding-bottom: 0.42857rem !important; - } - .g-pb-7--sm { - padding-bottom: 0.5rem !important; - } - .g-pb-8--sm { - padding-bottom: 0.57143rem !important; - } - .g-pb-9--sm { - padding-bottom: 0.64286rem !important; - } - .g-pb-10--sm { - padding-bottom: 0.71429rem !important; - } - .g-pb-15--sm { - padding-bottom: 1.07143rem !important; - } - .g-pb-20--sm { - padding-bottom: 1.42857rem !important; - } - .g-pb-25--sm { - padding-bottom: 1.78571rem !important; - } - .g-pb-30--sm { - padding-bottom: 2.14286rem !important; - } - .g-pb-35--sm { - padding-bottom: 2.5rem !important; - } - .g-pb-40--sm { - padding-bottom: 2.85714rem !important; - } - .g-pb-45--sm { - padding-bottom: 3.21429rem !important; - } - .g-pb-50--sm { - padding-bottom: 3.57143rem !important; - } - .g-pb-55--sm { - padding-bottom: 3.92857rem !important; - } - .g-pb-60--sm { - padding-bottom: 4.28571rem !important; - } - .g-pb-65--sm { - padding-bottom: 4.64286rem !important; - } - .g-pb-70--sm { - padding-bottom: 5rem !important; - } - .g-pb-75--sm { - padding-bottom: 5.35714rem !important; - } - .g-pb-80--sm { - padding-bottom: 5.71429rem !important; - } - .g-pb-85--sm { - padding-bottom: 6.07143rem !important; - } - .g-pb-90--sm { - padding-bottom: 6.42857rem !important; - } - .g-pb-95--sm { - padding-bottom: 6.78571rem !important; - } - .g-pb-100--sm { - padding-bottom: 7.14286rem !important; - } - .g-pb-105--sm { - padding-bottom: 7.5rem !important; - } - .g-pb-110--sm { - padding-bottom: 7.85714rem !important; - } - .g-pb-115--sm { - padding-bottom: 8.21429rem !important; - } - .g-pb-120--sm { - padding-bottom: 8.57143rem !important; - } - .g-pb-125--sm { - padding-bottom: 8.92857rem !important; - } - .g-pb-130--sm { - padding-bottom: 9.28571rem !important; - } - .g-pb-135--sm { - padding-bottom: 9.64286rem !important; - } - .g-pb-140--sm { - padding-bottom: 10rem !important; - } - .g-pb-145--sm { - padding-bottom: 10.35714rem !important; - } - .g-pb-150--sm { - padding-bottom: 10.71429rem !important; - } - /* Padding Left */ - .g-pl-0--sm { - padding-left: 0px !important; - } - .g-pl-1--sm { - padding-left: 0.07143rem !important; - } - .g-pl-2--sm { - padding-left: 0.14286rem !important; - } - .g-pl-3--sm { - padding-left: 0.21429rem !important; - } - .g-pl-4--sm { - padding-left: 0.28571rem !important; - } - .g-pl-5--sm { - padding-left: 0.35714rem !important; - } - .g-pl-6--sm { - padding-left: 0.42857rem !important; - } - .g-pl-7--sm { - padding-left: 0.5rem !important; - } - .g-pl-8--sm { - padding-left: 0.57143rem !important; - } - .g-pl-9--sm { - padding-left: 0.64286rem !important; - } - /* P */ - .g-pl-10--sm { - padding-left: 0.71429rem !important; - } - /* P */ - .g-pl-15--sm { - padding-left: 1.07143rem !important; - } - /* P */ - .g-pl-20--sm { - padding-left: 1.42857rem !important; - } - /* P */ - .g-pl-25--sm { - padding-left: 1.78571rem !important; - } - /* P */ - .g-pl-30--sm { - padding-left: 2.14286rem !important; - } - /* P */ - .g-pl-35--sm { - padding-left: 2.5rem !important; - } - /* P */ - .g-pl-40--sm { - padding-left: 2.85714rem !important; - } - /* P */ - .g-pl-45--sm { - padding-left: 3.21429rem !important; - } - /* P */ - .g-pl-50--sm { - padding-left: 3.57143rem !important; - } - /* P */ - .g-pl-55--sm { - padding-left: 3.92857rem !important; - } - /* P */ - .g-pl-60--sm { - padding-left: 4.28571rem !important; - } - /* P */ - .g-pl-65--sm { - padding-left: 4.64286rem !important; - } - /* P */ - .g-pl-70--sm { - padding-left: 5rem !important; - } - /* P */ - .g-pl-75--sm { - padding-left: 5.35714rem !important; - } - /* P */ - .g-pl-80--sm { - padding-left: 5.71429rem !important; - } - /* P */ - .g-pl-85--sm { - padding-left: 6.07143rem !important; - } - /* P */ - .g-pl-90--sm { - padding-left: 6.42857rem !important; - } - /* P */ - .g-pl-95--sm { - padding-left: 6.78571rem !important; - } - /* P */ - .g-pl-100--sm { - padding-left: 7.14286rem !important; - } - /* P */ - .g-pl-105--sm { - padding-left: 7.5rem !important; - } - /* P */ - .g-pl-110--sm { - padding-left: 7.85714rem !important; - } - /* P */ - .g-pl-115--sm { - padding-left: 8.21429rem !important; - } - /* P */ - .g-pl-120--sm { - padding-left: 8.57143rem !important; - } - /* P */ - .g-pl-125--sm { - padding-left: 8.92857rem !important; - } - /* P */ - .g-pl-130--sm { - padding-left: 9.28571rem !important; - } - /* P */ - .g-pl-135--sm { - padding-left: 9.64286rem !important; - } - /* P */ - .g-pl-140--sm { - padding-left: 10rem !important; - } - /* P */ - .g-pl-145--sm { - padding-left: 10.35714rem !important; - } - /* P */ - .g-pl-150--sm { - padding-left: 10.71429rem !important; - } - /* P */ - .g-pl-155--sm { - padding-left: 11.07143rem !important; - } - /* P */ - .g-pl-160--sm { - padding-left: 11.42857rem !important; - } - /* P */ - .g-pl-165--sm { - padding-left: 11.78571rem !important; - } - /* P */ - .g-pl-170--sm { - padding-left: 12.14286rem !important; - } -} - -/* Padding Spaces (md) -------------------------------------*/ -/* P */ -@media (min-width: 768px) { - .g-pa-0--md { - padding: 0 !important; - } - .g-px-0--md { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0--md { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-pt-0--md { - padding-top: 0 !important; - } - .g-pr-0--md { - padding-right: 0 !important; - } - .g-pb-0--md { - padding-bottom: 0 !important; - } - .g-pl-0--md { - padding-left: 0 !important; - } - /* Padding Around */ - .g-pa-2--md { - padding: 0.14286rem !important; - } - .g-pa-3--md { - padding: 0.21429rem !important; - } - .g-pa-5--md { - padding: 0.35714rem !important; - } - .g-pa-7--md { - padding: 0.5rem !important; - } - .g-pa-10--md { - padding: 0.71429rem !important; - } - .g-pa-15--md { - padding: 1.07143rem !important; - } - .g-pa-20--md { - padding: 1.42857rem !important; - } - .g-pa-25--md { - padding: 1.78571rem !important; - } - .g-pa-30--md { - padding: 2.14286rem !important; - } - .g-pa-35--md { - padding: 2.5rem !important; - } - .g-pa-40--md { - padding: 2.85714rem !important; - } - .g-pa-45--md { - padding: 3.21429rem !important; - } - .g-pa-50--md { - padding: 3.57143rem !important; - } - .g-pa-55--md { - padding: 3.92857rem !important; - } - .g-pa-60--md { - padding: 4.28571rem !important; - } - .g-pa-65--md { - padding: 4.64286rem !important; - } - .g-pa-70--md { - padding: 5rem !important; - } - .g-pa-75--md { - padding: 5.35714rem !important; - } - .g-pa-80--md { - padding: 5.71429rem !important; - } - .g-pa-85--md { - padding: 6.07143rem !important; - } - .g-pa-90--md { - padding: 6.42857rem !important; - } - .g-pa-95--md { - padding: 6.78571rem !important; - } - .g-pa-100--md { - padding: 7.14286rem !important; - } - .g-pa-105--md { - padding: 7.5rem !important; - } - .g-pa-110--md { - padding: 7.85714rem !important; - } - .g-pa-115--md { - padding: 8.21429rem !important; - } - .g-pa-120--md { - padding: 8.57143rem !important; - } - .g-pa-125--md { - padding: 8.92857rem !important; - } - .g-pa-130--md { - padding: 9.28571rem !important; - } - .g-pa-135--md { - padding: 9.64286rem !important; - } - .g-pa-140--md { - padding: 10rem !important; - } - .g-pa-145--md { - padding: 10.35714rem !important; - } - .g-pa-150--md { - padding: 10.71429rem !important; - } - /* Padding X */ - .g-px-1--md { - padding-left: 0.07143rem !important; - padding-right: 0.07143rem !important; - } - .g-px-2--md { - padding-left: 0.14286rem !important; - padding-right: 0.14286rem !important; - } - .g-px-3--md { - padding-left: 0.21429rem !important; - padding-right: 0.21429rem !important; - } - .g-px-4--md { - padding-left: 0.28571rem !important; - padding-right: 0.28571rem !important; - } - .g-px-5--md { - padding-left: 0.35714rem !important; - padding-right: 0.35714rem !important; - } - .g-px-6--md { - padding-left: 0.42857rem !important; - padding-right: 0.42857rem !important; - } - .g-px-7--md { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .g-px-8--md { - padding-left: 0.57143rem !important; - padding-right: 0.57143rem !important; - } - .g-px-9--md { - padding-left: 0.64286rem !important; - padding-right: 0.64286rem !important; - } - .g-px-10--md { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-11--md { - padding-left: 0.78571rem !important; - padding-right: 0.78571rem !important; - } - .g-px-12--md { - padding-left: 0.85714rem !important; - padding-right: 0.85714rem !important; - } - .g-px-13--md { - padding-left: 0.92857rem !important; - padding-right: 0.92857rem !important; - } - .g-px-14--md { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .g-px-15--md { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-16--md { - padding-left: 1.14286rem !important; - padding-right: 1.14286rem !important; - } - .g-px-17--md { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; - } - .g-px-18--md { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-px-19--md { - padding-left: 1.35714rem !important; - padding-right: 1.35714rem !important; - } - .g-px-10--md { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-15--md { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-20--md { - padding-left: 1.42857rem !important; - padding-right: 1.42857rem !important; - } - .g-px-25--md { - padding-left: 1.78571rem !important; - padding-right: 1.78571rem !important; - } - .g-px-30--md { - padding-left: 2.14286rem !important; - padding-right: 2.14286rem !important; - } - .g-px-35--md { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; - } - .g-px-40--md { - padding-left: 2.85714rem !important; - padding-right: 2.85714rem !important; - } - .g-px-45--md { - padding-left: 3.21429rem !important; - padding-right: 3.21429rem !important; - } - .g-px-50--md { - padding-left: 3.57143rem !important; - padding-right: 3.57143rem !important; - } - .g-px-55--md { - padding-left: 3.92857rem !important; - padding-right: 3.92857rem !important; - } - .g-px-60--md { - padding-left: 4.28571rem !important; - padding-right: 4.28571rem !important; - } - .g-px-65--md { - padding-left: 4.64286rem !important; - padding-right: 4.64286rem !important; - } - .g-px-70--md { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .g-px-75--md { - padding-left: 5.35714rem !important; - padding-right: 5.35714rem !important; - } - .g-px-80--md { - padding-left: 5.71429rem !important; - padding-right: 5.71429rem !important; - } - .g-px-85--md { - padding-left: 6.07143rem !important; - padding-right: 6.07143rem !important; - } - .g-px-90--md { - padding-left: 6.42857rem !important; - padding-right: 6.42857rem !important; - } - .g-px-95--md { - padding-left: 6.78571rem !important; - padding-right: 6.78571rem !important; - } - .g-px-100--md { - padding-left: 7.14286rem !important; - padding-right: 7.14286rem !important; - } - .g-px-105--md { - padding-left: 7.5rem !important; - padding-right: 7.5rem !important; - } - .g-px-110--md { - padding-left: 7.85714rem !important; - padding-right: 7.85714rem !important; - } - .g-px-115--md { - padding-left: 8.21429rem !important; - padding-right: 8.21429rem !important; - } - .g-px-120--md { - padding-left: 8.57143rem !important; - padding-right: 8.57143rem !important; - } - .g-px-125--md { - padding-left: 8.92857rem !important; - padding-right: 8.92857rem !important; - } - .g-px-130--md { - padding-left: 9.28571rem !important; - padding-right: 9.28571rem !important; - } - .g-px-135--md { - padding-left: 9.64286rem !important; - padding-right: 9.64286rem !important; - } - .g-px-140--md { - padding-left: 10rem !important; - padding-right: 10rem !important; - } - .g-px-145--md { - padding-left: 10.35714rem !important; - padding-right: 10.35714rem !important; - } - .g-px-150--md { - padding-left: 10.71429rem !important; - padding-right: 10.71429rem !important; - } - /* Padding Y */ - .g-py-1--md { - padding-top: 0.07143rem !important; - padding-bottom: 0.07143rem !important; - } - .g-py-2--md { - padding-top: 0.14286rem !important; - padding-bottom: 0.14286rem !important; - } - .g-py-3--md { - padding-top: 0.21429rem !important; - padding-bottom: 0.21429rem !important; - } - .g-py-4--md { - padding-top: 0.28571rem !important; - padding-bottom: 0.28571rem !important; - } - .g-py-5--md { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-py-6--md { - padding-top: 0.42857rem !important; - padding-bottom: 0.42857rem !important; - } - .g-py-7--md { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .g-py-8--md { - padding-top: 0.57143rem !important; - padding-bottom: 0.57143rem !important; - } - .g-py-9--md { - padding-top: 0.64286rem !important; - padding-bottom: 0.64286rem !important; - } - .g-py-10--md { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - .g-py-11--md { - padding-top: 0.78571rem !important; - padding-bottom: 0.78571rem !important; - } - .g-py-12--md { - padding-top: 0.85714rem !important; - padding-bottom: 0.85714rem !important; - } - .g-py-13--md { - padding-top: 0.92857rem !important; - padding-bottom: 0.92857rem !important; - } - .g-py-14--md { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .g-py-15--md { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - .g-py-16--md { - padding-top: 1.14286rem !important; - padding-bottom: 1.14286rem !important; - } - .g-py-17--md { - padding-top: 1.21429rem !important; - padding-bottom: 1.21429rem !important; - } - .g-py-18--md { - padding-top: 1.28571rem !important; - padding-bottom: 1.28571rem !important; - } - .g-py-19--md { - padding-top: 1.35714rem !important; - padding-bottom: 1.35714rem !important; - } - /* P */ - .g-py-10--md { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - /* P */ - .g-py-15--md { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - /* P */ - .g-py-20--md { - padding-top: 1.42857rem !important; - padding-bottom: 1.42857rem !important; - } - /* P */ - .g-py-25--md { - padding-top: 1.78571rem !important; - padding-bottom: 1.78571rem !important; - } - /* P */ - .g-py-30--md { - padding-top: 2.14286rem !important; - padding-bottom: 2.14286rem !important; - } - /* P */ - .g-py-35--md { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; - } - /* P */ - .g-py-40--md { - padding-top: 2.85714rem !important; - padding-bottom: 2.85714rem !important; - } - /* P */ - .g-py-45--md { - padding-top: 3.21429rem !important; - padding-bottom: 3.21429rem !important; - } - /* P */ - .g-py-50--md { - padding-top: 3.57143rem !important; - padding-bottom: 3.57143rem !important; - } - /* P */ - .g-py-55--md { - padding-top: 3.92857rem !important; - padding-bottom: 3.92857rem !important; - } - /* P */ - .g-py-60--md { - padding-top: 4.28571rem !important; - padding-bottom: 4.28571rem !important; - } - /* P */ - .g-py-65--md { - padding-top: 4.64286rem !important; - padding-bottom: 4.64286rem !important; - } - /* P */ - .g-py-70--md { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } - /* P */ - .g-py-75--md { - padding-top: 5.35714rem !important; - padding-bottom: 5.35714rem !important; - } - /* P */ - .g-py-80--md { - padding-top: 5.71429rem !important; - padding-bottom: 5.71429rem !important; - } - /* P */ - .g-py-85--md { - padding-top: 6.07143rem !important; - padding-bottom: 6.07143rem !important; - } - /* P */ - .g-py-90--md { - padding-top: 6.42857rem !important; - padding-bottom: 6.42857rem !important; - } - /* P */ - .g-py-95--md { - padding-top: 6.78571rem !important; - padding-bottom: 6.78571rem !important; - } - /* P */ - .g-py-100--md { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - /* P */ - .g-py-105--md { - padding-top: 7.5rem !important; - padding-bottom: 7.5rem !important; - } - /* P */ - .g-py-110--md { - padding-top: 7.85714rem !important; - padding-bottom: 7.85714rem !important; - } - /* P */ - .g-py-115--md { - padding-top: 8.21429rem !important; - padding-bottom: 8.21429rem !important; - } - /* P */ - .g-py-120--md { - padding-top: 8.57143rem !important; - padding-bottom: 8.57143rem !important; - } - /* P */ - .g-py-125--md { - padding-top: 8.92857rem !important; - padding-bottom: 8.92857rem !important; - } - /* P */ - .g-py-130--md { - padding-top: 9.28571rem !important; - padding-bottom: 9.28571rem !important; - } - /* P */ - .g-py-135--md { - padding-top: 9.64286rem !important; - padding-bottom: 9.64286rem !important; - } - /* P */ - .g-py-140--md { - padding-top: 10rem !important; - padding-bottom: 10rem !important; - } - /* P */ - .g-py-145--md { - padding-top: 10.35714rem !important; - padding-bottom: 10.35714rem !important; - } - /* P */ - .g-py-150--md { - padding-top: 10.71429rem !important; - padding-bottom: 10.71429rem !important; - } - /* P */ - .g-py-155--md { - padding-top: 11.07143rem !important; - padding-bottom: 11.07143rem !important; - } - /* P */ - .g-py-160--md { - padding-top: 11.42857rem !important; - padding-bottom: 11.42857rem !important; - } - /* P */ - .g-py-165--md { - padding-top: 11.78571rem !important; - padding-bottom: 11.78571rem !important; - } - /* P */ - .g-py-170--md { - padding-top: 12.14286rem !important; - padding-bottom: 12.14286rem !important; - } - /* P */ - .g-py-175--md { - padding-top: 12.5rem !important; - padding-bottom: 12.5rem !important; - } - /* P */ - .g-py-180--md { - padding-top: 12.85714rem !important; - padding-bottom: 12.85714rem !important; - } - /* P */ - .g-py-185--md { - padding-top: 13.21429rem !important; - padding-bottom: 13.21429rem !important; - } - /* P */ - .g-py-190--md { - padding-top: 13.57143rem !important; - padding-bottom: 13.57143rem !important; - } - /* P */ - .g-py-195--md { - padding-top: 13.92857rem !important; - padding-bottom: 13.92857rem !important; - } - /* P */ - .g-py-200--md { - padding-top: 14.28571rem !important; - padding-bottom: 14.28571rem !important; - } - /* P */ - .g-py-205--md { - padding-top: 14.64286rem !important; - padding-bottom: 14.64286rem !important; - } - /* P */ - .g-py-210--md { - padding-top: 15rem !important; - padding-bottom: 15rem !important; - } - /* Padding Top */ - .g-pt-0--md { - padding-top: 0px !important; - } - .g-pt-1--md { - padding-top: 0.07143rem !important; - } - .g-pt-2--md { - padding-top: 0.14286rem !important; - } - .g-pt-3--md { - padding-top: 0.21429rem !important; - } - .g-pt-4--md { - padding-top: 0.28571rem !important; - } - .g-pt-5--md { - padding-top: 0.35714rem !important; - } - .g-pt-6--md { - padding-top: 0.42857rem !important; - } - .g-pt-7--md { - padding-top: 0.5rem !important; - } - .g-pt-8--md { - padding-top: 0.57143rem !important; - } - .g-pt-9--md { - padding-top: 0.64286rem !important; - } - .g-pt-10--md { - padding-top: 0.71429rem !important; - } - .g-pt-11--md { - padding-top: 0.78571rem !important; - } - .g-pt-12--md { - padding-top: 0.85714rem !important; - } - .g-pt-13--md { - padding-top: 0.92857rem !important; - } - .g-pt-14--md { - padding-top: 1rem !important; - } - .g-pt-15--md { - padding-top: 1.07143rem !important; - } - .g-pt-16--md { - padding-top: 1.14286rem !important; - } - .g-pt-17--md { - padding-top: 1.21429rem !important; - } - .g-pt-18--md { - padding-top: 1.28571rem !important; - } - .g-pt-19--md { - padding-top: 1.35714rem !important; - } - .g-pt-10--md { - padding-top: 0.71429rem !important; - } - .g-pt-15--md { - padding-top: 1.07143rem !important; - } - .g-pt-20--md { - padding-top: 1.42857rem !important; - } - .g-pt-25--md { - padding-top: 1.78571rem !important; - } - .g-pt-30--md { - padding-top: 2.14286rem !important; - } - .g-pt-35--md { - padding-top: 2.5rem !important; - } - .g-pt-40--md { - padding-top: 2.85714rem !important; - } - .g-pt-45--md { - padding-top: 3.21429rem !important; - } - .g-pt-50--md { - padding-top: 3.57143rem !important; - } - .g-pt-55--md { - padding-top: 3.92857rem !important; - } - .g-pt-60--md { - padding-top: 4.28571rem !important; - } - .g-pt-65--md { - padding-top: 4.64286rem !important; - } - .g-pt-70--md { - padding-top: 5rem !important; - } - .g-pt-75--md { - padding-top: 5.35714rem !important; - } - .g-pt-80--md { - padding-top: 5.71429rem !important; - } - .g-pt-85--md { - padding-top: 6.07143rem !important; - } - .g-pt-90--md { - padding-top: 6.42857rem !important; - } - .g-pt-95--md { - padding-top: 6.78571rem !important; - } - .g-pt-100--md { - padding-top: 7.14286rem !important; - } - .g-pt-105--md { - padding-top: 7.5rem !important; - } - .g-pt-110--md { - padding-top: 7.85714rem !important; - } - .g-pt-115--md { - padding-top: 8.21429rem !important; - } - .g-pt-120--md { - padding-top: 8.57143rem !important; - } - .g-pt-125--md { - padding-top: 8.92857rem !important; - } - .g-pt-130--md { - padding-top: 9.28571rem !important; - } - .g-pt-135--md { - padding-top: 9.64286rem !important; - } - .g-pt-140--md { - padding-top: 10rem !important; - } - .g-pt-145--md { - padding-top: 10.35714rem !important; - } - .g-pt-150--md { - padding-top: 10.71429rem !important; - } - /* Padding Right */ - .g-pr-0--md { - padding-right: 0px !important; - } - .g-pr-1--md { - padding-right: 0.07143rem !important; - } - .g-pr-2--md { - padding-right: 0.14286rem !important; - } - .g-pr-3--md { - padding-right: 0.21429rem !important; - } - .g-pr-4--md { - padding-right: 0.28571rem !important; - } - .g-pr-5--md { - padding-right: 0.35714rem !important; - } - .g-pr-6--md { - padding-right: 0.42857rem !important; - } - .g-pr-7--md { - padding-right: 0.5rem !important; - } - .g-pr-8--md { - padding-right: 0.57143rem !important; - } - .g-pr-9--md { - padding-right: 0.64286rem !important; - } - /* P */ - .g-pr-10--md { - padding-right: 0.71429rem !important; - } - /* P */ - .g-pr-15--md { - padding-right: 1.07143rem !important; - } - /* P */ - .g-pr-20--md { - padding-right: 1.42857rem !important; - } - /* P */ - .g-pr-25--md { - padding-right: 1.78571rem !important; - } - /* P */ - .g-pr-30--md { - padding-right: 2.14286rem !important; - } - /* P */ - .g-pr-35--md { - padding-right: 2.5rem !important; - } - /* P */ - .g-pr-40--md { - padding-right: 2.85714rem !important; - } - /* P */ - .g-pr-45--md { - padding-right: 3.21429rem !important; - } - /* P */ - .g-pr-50--md { - padding-right: 3.57143rem !important; - } - /* P */ - .g-pr-55--md { - padding-right: 3.92857rem !important; - } - /* P */ - .g-pr-60--md { - padding-right: 4.28571rem !important; - } - /* P */ - .g-pr-65--md { - padding-right: 4.64286rem !important; - } - /* P */ - .g-pr-70--md { - padding-right: 5rem !important; - } - /* P */ - .g-pr-75--md { - padding-right: 5.35714rem !important; - } - /* P */ - .g-pr-80--md { - padding-right: 5.71429rem !important; - } - /* P */ - .g-pr-85--md { - padding-right: 6.07143rem !important; - } - /* P */ - .g-pr-90--md { - padding-right: 6.42857rem !important; - } - /* P */ - .g-pr-95--md { - padding-right: 6.78571rem !important; - } - /* P */ - .g-pr-100--md { - padding-right: 7.14286rem !important; - } - /* P */ - .g-pr-105--md { - padding-right: 7.5rem !important; - } - /* P */ - .g-pr-110--md { - padding-right: 7.85714rem !important; - } - /* P */ - .g-pr-115--md { - padding-right: 8.21429rem !important; - } - /* P */ - .g-pr-120--md { - padding-right: 8.57143rem !important; - } - /* P */ - .g-pr-125--md { - padding-right: 8.92857rem !important; - } - /* P */ - .g-pr-130--md { - padding-right: 9.28571rem !important; - } - /* P */ - .g-pr-135--md { - padding-right: 9.64286rem !important; - } - /* P */ - .g-pr-140--md { - padding-right: 10rem !important; - } - /* P */ - .g-pr-145--md { - padding-right: 10.35714rem !important; - } - /* P */ - .g-pr-150--md { - padding-right: 10.71429rem !important; - } - /* P */ - .g-pr-155--md { - padding-right: 11.07143rem !important; - } - /* P */ - .g-pr-160--md { - padding-right: 11.42857rem !important; - } - /* P */ - .g-pr-165--md { - padding-right: 11.78571rem !important; - } - /* P */ - .g-pr-170--md { - padding-right: 12.14286rem !important; - } - /* Padding Bottom */ - .g-pb-0--md { - padding-bottom: 0px !important; - } - .g-pb-1--md { - padding-bottom: 0.07143rem !important; - } - .g-pb-2--md { - padding-bottom: 0.14286rem !important; - } - .g-pb-3--md { - padding-bottom: 0.21429rem !important; - } - .g-pb-4--md { - padding-bottom: 0.28571rem !important; - } - .g-pb-5--md { - padding-bottom: 0.35714rem !important; - } - .g-pb-6--md { - padding-bottom: 0.42857rem !important; - } - .g-pb-7--md { - padding-bottom: 0.5rem !important; - } - .g-pb-8--md { - padding-bottom: 0.57143rem !important; - } - .g-pb-9--md { - padding-bottom: 0.64286rem !important; - } - .g-pb-10--md { - padding-bottom: 0.71429rem !important; - } - .g-pb-15--md { - padding-bottom: 1.07143rem !important; - } - .g-pb-20--md { - padding-bottom: 1.42857rem !important; - } - .g-pb-25--md { - padding-bottom: 1.78571rem !important; - } - .g-pb-30--md { - padding-bottom: 2.14286rem !important; - } - .g-pb-35--md { - padding-bottom: 2.5rem !important; - } - .g-pb-40--md { - padding-bottom: 2.85714rem !important; - } - .g-pb-45--md { - padding-bottom: 3.21429rem !important; - } - .g-pb-50--md { - padding-bottom: 3.57143rem !important; - } - .g-pb-55--md { - padding-bottom: 3.92857rem !important; - } - .g-pb-60--md { - padding-bottom: 4.28571rem !important; - } - .g-pb-65--md { - padding-bottom: 4.64286rem !important; - } - .g-pb-70--md { - padding-bottom: 5rem !important; - } - .g-pb-75--md { - padding-bottom: 5.35714rem !important; - } - .g-pb-80--md { - padding-bottom: 5.71429rem !important; - } - .g-pb-85--md { - padding-bottom: 6.07143rem !important; - } - .g-pb-90--md { - padding-bottom: 6.42857rem !important; - } - .g-pb-95--md { - padding-bottom: 6.78571rem !important; - } - .g-pb-100--md { - padding-bottom: 7.14286rem !important; - } - .g-pb-105--md { - padding-bottom: 7.5rem !important; - } - .g-pb-110--md { - padding-bottom: 7.85714rem !important; - } - .g-pb-115--md { - padding-bottom: 8.21429rem !important; - } - .g-pb-120--md { - padding-bottom: 8.57143rem !important; - } - .g-pb-125--md { - padding-bottom: 8.92857rem !important; - } - .g-pb-130--md { - padding-bottom: 9.28571rem !important; - } - .g-pb-135--md { - padding-bottom: 9.64286rem !important; - } - .g-pb-140--md { - padding-bottom: 10rem !important; - } - .g-pb-145--md { - padding-bottom: 10.35714rem !important; - } - .g-pb-150--md { - padding-bottom: 10.71429rem !important; - } - /* Padding Left */ - .g-pl-0--md { - padding-left: 0px !important; - } - .g-pl-1--md { - padding-left: 0.07143rem !important; - } - .g-pl-2--md { - padding-left: 0.14286rem !important; - } - .g-pl-3--md { - padding-left: 0.21429rem !important; - } - .g-pl-4--md { - padding-left: 0.28571rem !important; - } - .g-pl-5--md { - padding-left: 0.35714rem !important; - } - .g-pl-6--md { - padding-left: 0.42857rem !important; - } - .g-pl-7--md { - padding-left: 0.5rem !important; - } - .g-pl-8--md { - padding-left: 0.57143rem !important; - } - .g-pl-9--md { - padding-left: 0.64286rem !important; - } - /* P */ - .g-pl-10--md { - padding-left: 0.71429rem !important; - } - /* P */ - .g-pl-15--md { - padding-left: 1.07143rem !important; - } - /* P */ - .g-pl-20--md { - padding-left: 1.42857rem !important; - } - /* P */ - .g-pl-25--md { - padding-left: 1.78571rem !important; - } - /* P */ - .g-pl-30--md { - padding-left: 2.14286rem !important; - } - /* P */ - .g-pl-35--md { - padding-left: 2.5rem !important; - } - /* P */ - .g-pl-40--md { - padding-left: 2.85714rem !important; - } - /* P */ - .g-pl-45--md { - padding-left: 3.21429rem !important; - } - /* P */ - .g-pl-50--md { - padding-left: 3.57143rem !important; - } - /* P */ - .g-pl-55--md { - padding-left: 3.92857rem !important; - } - /* P */ - .g-pl-60--md { - padding-left: 4.28571rem !important; - } - /* P */ - .g-pl-65--md { - padding-left: 4.64286rem !important; - } - /* P */ - .g-pl-70--md { - padding-left: 5rem !important; - } - /* P */ - .g-pl-75--md { - padding-left: 5.35714rem !important; - } - /* P */ - .g-pl-80--md { - padding-left: 5.71429rem !important; - } - /* P */ - .g-pl-85--md { - padding-left: 6.07143rem !important; - } - /* P */ - .g-pl-90--md { - padding-left: 6.42857rem !important; - } - /* P */ - .g-pl-95--md { - padding-left: 6.78571rem !important; - } - /* P */ - .g-pl-100--md { - padding-left: 7.14286rem !important; - } - /* P */ - .g-pl-105--md { - padding-left: 7.5rem !important; - } - /* P */ - .g-pl-110--md { - padding-left: 7.85714rem !important; - } - /* P */ - .g-pl-115--md { - padding-left: 8.21429rem !important; - } - /* P */ - .g-pl-120--md { - padding-left: 8.57143rem !important; - } - /* P */ - .g-pl-125--md { - padding-left: 8.92857rem !important; - } - /* P */ - .g-pl-130--md { - padding-left: 9.28571rem !important; - } - /* P */ - .g-pl-135--md { - padding-left: 9.64286rem !important; - } - /* P */ - .g-pl-140--md { - padding-left: 10rem !important; - } - /* P */ - .g-pl-145--md { - padding-left: 10.35714rem !important; - } - /* P */ - .g-pl-150--md { - padding-left: 10.71429rem !important; - } - /* P */ - .g-pl-155--md { - padding-left: 11.07143rem !important; - } - /* P */ - .g-pl-160--md { - padding-left: 11.42857rem !important; - } - /* P */ - .g-pl-165--md { - padding-left: 11.78571rem !important; - } - /* P */ - .g-pl-170--md { - padding-left: 12.14286rem !important; - } -} - -/* Padding Spaces (lg) P -------------------------------------*/ -/* P */ -@media (min-width: 992px) { - .g-pa-0--lg { - padding: 0 !important; - } - .g-px-0--lg { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0--lg { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-pt-0--lg { - padding-top: 0 !important; - } - .g-pr-0--lg { - padding-right: 0 !important; - } - .g-pb-0--lg { - padding-bottom: 0 !important; - } - .g-pl-0--lg { - padding-left: 0 !important; - } - /* Padding Around */ - .g-pa-2--lg { - padding: 0.14286rem !important; - } - .g-pa-3--lg { - padding: 0.21429rem !important; - } - .g-pa-5--lg { - padding: 0.35714rem !important; - } - .g-pa-7--lg { - padding: 0.5rem !important; - } - .g-pa-10--lg { - padding: 0.71429rem !important; - } - .g-pa-15--lg { - padding: 1.07143rem !important; - } - .g-pa-20--lg { - padding: 1.42857rem !important; - } - .g-pa-25--lg { - padding: 1.78571rem !important; - } - .g-pa-30--lg { - padding: 2.14286rem !important; - } - .g-pa-35--lg { - padding: 2.5rem !important; - } - .g-pa-40--lg { - padding: 2.85714rem !important; - } - .g-pa-45--lg { - padding: 3.21429rem !important; - } - .g-pa-50--lg { - padding: 3.57143rem !important; - } - .g-pa-55--lg { - padding: 3.92857rem !important; - } - .g-pa-60--lg { - padding: 4.28571rem !important; - } - .g-pa-65--lg { - padding: 4.64286rem !important; - } - .g-pa-70--lg { - padding: 5rem !important; - } - .g-pa-75--lg { - padding: 5.35714rem !important; - } - .g-pa-80--lg { - padding: 5.71429rem !important; - } - .g-pa-85--lg { - padding: 6.07143rem !important; - } - .g-pa-90--lg { - padding: 6.42857rem !important; - } - .g-pa-95--lg { - padding: 6.78571rem !important; - } - .g-pa-100--lg { - padding: 7.14286rem !important; - } - .g-pa-105--lg { - padding: 7.5rem !important; - } - .g-pa-110--lg { - padding: 7.85714rem !important; - } - .g-pa-115--lg { - padding: 8.21429rem !important; - } - .g-pa-120--lg { - padding: 8.57143rem !important; - } - .g-pa-125--lg { - padding: 8.92857rem !important; - } - .g-pa-130--lg { - padding: 9.28571rem !important; - } - .g-pa-135--lg { - padding: 9.64286rem !important; - } - .g-pa-140--lg { - padding: 10rem !important; - } - .g-pa-145--lg { - padding: 10.35714rem !important; - } - .g-pa-150--lg { - padding: 10.71429rem !important; - } - /* Padding X */ - .g-px-1--lg { - padding-left: 0.07143rem !important; - padding-right: 0.07143rem !important; - } - .g-px-2--lg { - padding-left: 0.14286rem !important; - padding-right: 0.14286rem !important; - } - .g-px-3--lg { - padding-left: 0.21429rem !important; - padding-right: 0.21429rem !important; - } - .g-px-4--lg { - padding-left: 0.28571rem !important; - padding-right: 0.28571rem !important; - } - .g-px-5--lg { - padding-left: 0.35714rem !important; - padding-right: 0.35714rem !important; - } - .g-px-6--lg { - padding-left: 0.42857rem !important; - padding-right: 0.42857rem !important; - } - .g-px-7--lg { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .g-px-8--lg { - padding-left: 0.57143rem !important; - padding-right: 0.57143rem !important; - } - .g-px-9--lg { - padding-left: 0.64286rem !important; - padding-right: 0.64286rem !important; - } - .g-px-10--lg { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-11--lg { - padding-left: 0.78571rem !important; - padding-right: 0.78571rem !important; - } - .g-px-12--lg { - padding-left: 0.85714rem !important; - padding-right: 0.85714rem !important; - } - .g-px-13--lg { - padding-left: 0.92857rem !important; - padding-right: 0.92857rem !important; - } - .g-px-14--lg { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .g-px-15--lg { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-16--lg { - padding-left: 1.14286rem !important; - padding-right: 1.14286rem !important; - } - .g-px-17--lg { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; - } - .g-px-18--lg { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-px-19--lg { - padding-left: 1.35714rem !important; - padding-right: 1.35714rem !important; - } - .g-px-10--lg { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-15--lg { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-20--lg { - padding-left: 1.42857rem !important; - padding-right: 1.42857rem !important; - } - .g-px-25--lg { - padding-left: 1.78571rem !important; - padding-right: 1.78571rem !important; - } - .g-px-30--lg { - padding-left: 2.14286rem !important; - padding-right: 2.14286rem !important; - } - .g-px-35--lg { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; - } - .g-px-40--lg { - padding-left: 2.85714rem !important; - padding-right: 2.85714rem !important; - } - .g-px-45--lg { - padding-left: 3.21429rem !important; - padding-right: 3.21429rem !important; - } - .g-px-50--lg { - padding-left: 3.57143rem !important; - padding-right: 3.57143rem !important; - } - .g-px-55--lg { - padding-left: 3.92857rem !important; - padding-right: 3.92857rem !important; - } - .g-px-60--lg { - padding-left: 4.28571rem !important; - padding-right: 4.28571rem !important; - } - .g-px-65--lg { - padding-left: 4.64286rem !important; - padding-right: 4.64286rem !important; - } - .g-px-70--lg { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .g-px-75--lg { - padding-left: 5.35714rem !important; - padding-right: 5.35714rem !important; - } - .g-px-80--lg { - padding-left: 5.71429rem !important; - padding-right: 5.71429rem !important; - } - .g-px-85--lg { - padding-left: 6.07143rem !important; - padding-right: 6.07143rem !important; - } - .g-px-90--lg { - padding-left: 6.42857rem !important; - padding-right: 6.42857rem !important; - } - .g-px-95--lg { - padding-left: 6.78571rem !important; - padding-right: 6.78571rem !important; - } - .g-px-100--lg { - padding-left: 7.14286rem !important; - padding-right: 7.14286rem !important; - } - .g-px-105--lg { - padding-left: 7.5rem !important; - padding-right: 7.5rem !important; - } - .g-px-110--lg { - padding-left: 7.85714rem !important; - padding-right: 7.85714rem !important; - } - .g-px-115--lg { - padding-left: 8.21429rem !important; - padding-right: 8.21429rem !important; - } - .g-px-120--lg { - padding-left: 8.57143rem !important; - padding-right: 8.57143rem !important; - } - .g-px-125--lg { - padding-left: 8.92857rem !important; - padding-right: 8.92857rem !important; - } - .g-px-130--lg { - padding-left: 9.28571rem !important; - padding-right: 9.28571rem !important; - } - .g-px-135--lg { - padding-left: 9.64286rem !important; - padding-right: 9.64286rem !important; - } - .g-px-140--lg { - padding-left: 10rem !important; - padding-right: 10rem !important; - } - .g-px-145--lg { - padding-left: 10.35714rem !important; - padding-right: 10.35714rem !important; - } - .g-px-150--lg { - padding-left: 10.71429rem !important; - padding-right: 10.71429rem !important; - } - /* Padding Y */ - .g-py-1--lg { - padding-top: 0.07143rem !important; - padding-bottom: 0.07143rem !important; - } - .g-py-2--lg { - padding-top: 0.14286rem !important; - padding-bottom: 0.14286rem !important; - } - .g-py-3--lg { - padding-top: 0.21429rem !important; - padding-bottom: 0.21429rem !important; - } - .g-py-4--lg { - padding-top: 0.28571rem !important; - padding-bottom: 0.28571rem !important; - } - .g-py-5--lg { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-py-6--lg { - padding-top: 0.42857rem !important; - padding-bottom: 0.42857rem !important; - } - .g-py-7--lg { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .g-py-8--lg { - padding-top: 0.57143rem !important; - padding-bottom: 0.57143rem !important; - } - .g-py-9--lg { - padding-top: 0.64286rem !important; - padding-bottom: 0.64286rem !important; - } - .g-py-10--lg { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - .g-py-11--lg { - padding-top: 0.78571rem !important; - padding-bottom: 0.78571rem !important; - } - .g-py-12--lg { - padding-top: 0.85714rem !important; - padding-bottom: 0.85714rem !important; - } - .g-py-13--lg { - padding-top: 0.92857rem !important; - padding-bottom: 0.92857rem !important; - } - .g-py-14--lg { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .g-py-15--lg { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - .g-py-16--lg { - padding-top: 1.14286rem !important; - padding-bottom: 1.14286rem !important; - } - .g-py-17--lg { - padding-top: 1.21429rem !important; - padding-bottom: 1.21429rem !important; - } - .g-py-18--lg { - padding-top: 1.28571rem !important; - padding-bottom: 1.28571rem !important; - } - .g-py-19--lg { - padding-top: 1.35714rem !important; - padding-bottom: 1.35714rem !important; - } - /* P */ - .g-py-10--lg { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - /* P */ - .g-py-15--lg { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - /* P */ - .g-py-20--lg { - padding-top: 1.42857rem !important; - padding-bottom: 1.42857rem !important; - } - /* P */ - .g-py-25--lg { - padding-top: 1.78571rem !important; - padding-bottom: 1.78571rem !important; - } - /* P */ - .g-py-30--lg { - padding-top: 2.14286rem !important; - padding-bottom: 2.14286rem !important; - } - /* P */ - .g-py-35--lg { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; - } - /* P */ - .g-py-40--lg { - padding-top: 2.85714rem !important; - padding-bottom: 2.85714rem !important; - } - /* P */ - .g-py-45--lg { - padding-top: 3.21429rem !important; - padding-bottom: 3.21429rem !important; - } - /* P */ - .g-py-50--lg { - padding-top: 3.57143rem !important; - padding-bottom: 3.57143rem !important; - } - /* P */ - .g-py-55--lg { - padding-top: 3.92857rem !important; - padding-bottom: 3.92857rem !important; - } - /* P */ - .g-py-60--lg { - padding-top: 4.28571rem !important; - padding-bottom: 4.28571rem !important; - } - /* P */ - .g-py-65--lg { - padding-top: 4.64286rem !important; - padding-bottom: 4.64286rem !important; - } - /* P */ - .g-py-70--lg { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } - /* P */ - .g-py-75--lg { - padding-top: 5.35714rem !important; - padding-bottom: 5.35714rem !important; - } - /* P */ - .g-py-80--lg { - padding-top: 5.71429rem !important; - padding-bottom: 5.71429rem !important; - } - /* P */ - .g-py-85--lg { - padding-top: 6.07143rem !important; - padding-bottom: 6.07143rem !important; - } - /* P */ - .g-py-90--lg { - padding-top: 6.42857rem !important; - padding-bottom: 6.42857rem !important; - } - /* P */ - .g-py-95--lg { - padding-top: 6.78571rem !important; - padding-bottom: 6.78571rem !important; - } - /* P */ - .g-py-100--lg { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - /* P */ - .g-py-105--lg { - padding-top: 7.5rem !important; - padding-bottom: 7.5rem !important; - } - /* P */ - .g-py-110--lg { - padding-top: 7.85714rem !important; - padding-bottom: 7.85714rem !important; - } - /* P */ - .g-py-115--lg { - padding-top: 8.21429rem !important; - padding-bottom: 8.21429rem !important; - } - /* P */ - .g-py-120--lg { - padding-top: 8.57143rem !important; - padding-bottom: 8.57143rem !important; - } - /* P */ - .g-py-125--lg { - padding-top: 8.92857rem !important; - padding-bottom: 8.92857rem !important; - } - /* P */ - .g-py-130--lg { - padding-top: 9.28571rem !important; - padding-bottom: 9.28571rem !important; - } - /* P */ - .g-py-135--lg { - padding-top: 9.64286rem !important; - padding-bottom: 9.64286rem !important; - } - /* P */ - .g-py-140--lg { - padding-top: 10rem !important; - padding-bottom: 10rem !important; - } - /* P */ - .g-py-145--lg { - padding-top: 10.35714rem !important; - padding-bottom: 10.35714rem !important; - } - /* P */ - .g-py-150--lg { - padding-top: 10.71429rem !important; - padding-bottom: 10.71429rem !important; - } - /* P */ - .g-py-155--lg { - padding-top: 11.07143rem !important; - padding-bottom: 11.07143rem !important; - } - /* P */ - .g-py-160--lg { - padding-top: 11.42857rem !important; - padding-bottom: 11.42857rem !important; - } - /* P */ - .g-py-165--lg { - padding-top: 11.78571rem !important; - padding-bottom: 11.78571rem !important; - } - /* P */ - .g-py-170--lg { - padding-top: 12.14286rem !important; - padding-bottom: 12.14286rem !important; - } - /* P */ - .g-py-175--lg { - padding-top: 12.5rem !important; - padding-bottom: 12.5rem !important; - } - /* P */ - .g-py-180--lg { - padding-top: 12.85714rem !important; - padding-bottom: 12.85714rem !important; - } - /* P */ - .g-py-185--lg { - padding-top: 13.21429rem !important; - padding-bottom: 13.21429rem !important; - } - /* P */ - .g-py-190--lg { - padding-top: 13.57143rem !important; - padding-bottom: 13.57143rem !important; - } - /* P */ - .g-py-195--lg { - padding-top: 13.92857rem !important; - padding-bottom: 13.92857rem !important; - } - /* P */ - .g-py-200--lg { - padding-top: 14.28571rem !important; - padding-bottom: 14.28571rem !important; - } - /* P */ - .g-py-205--lg { - padding-top: 14.64286rem !important; - padding-bottom: 14.64286rem !important; - } - /* P */ - .g-py-210--lg { - padding-top: 15rem !important; - padding-bottom: 15rem !important; - } - /* Padding Top */ - .g-pt-0--lg { - padding-top: 0px !important; - } - .g-pt-1--lg { - padding-top: 0.07143rem !important; - } - .g-pt-2--lg { - padding-top: 0.14286rem !important; - } - .g-pt-3--lg { - padding-top: 0.21429rem !important; - } - .g-pt-4--lg { - padding-top: 0.28571rem !important; - } - .g-pt-5--lg { - padding-top: 0.35714rem !important; - } - .g-pt-6--lg { - padding-top: 0.42857rem !important; - } - .g-pt-7--lg { - padding-top: 0.5rem !important; - } - .g-pt-8--lg { - padding-top: 0.57143rem !important; - } - .g-pt-9--lg { - padding-top: 0.64286rem !important; - } - .g-pt-10--lg { - padding-top: 0.71429rem !important; - } - .g-pt-11--lg { - padding-top: 0.78571rem !important; - } - .g-pt-12--lg { - padding-top: 0.85714rem !important; - } - .g-pt-13--lg { - padding-top: 0.92857rem !important; - } - .g-pt-14--lg { - padding-top: 1rem !important; - } - .g-pt-15--lg { - padding-top: 1.07143rem !important; - } - .g-pt-16--lg { - padding-top: 1.14286rem !important; - } - .g-pt-17--lg { - padding-top: 1.21429rem !important; - } - .g-pt-18--lg { - padding-top: 1.28571rem !important; - } - .g-pt-19--lg { - padding-top: 1.35714rem !important; - } - .g-pt-10--lg { - padding-top: 0.71429rem !important; - } - .g-pt-15--lg { - padding-top: 1.07143rem !important; - } - .g-pt-20--lg { - padding-top: 1.42857rem !important; - } - .g-pt-25--lg { - padding-top: 1.78571rem !important; - } - .g-pt-30--lg { - padding-top: 2.14286rem !important; - } - .g-pt-35--lg { - padding-top: 2.5rem !important; - } - .g-pt-40--lg { - padding-top: 2.85714rem !important; - } - .g-pt-45--lg { - padding-top: 3.21429rem !important; - } - .g-pt-50--lg { - padding-top: 3.57143rem !important; - } - .g-pt-55--lg { - padding-top: 3.92857rem !important; - } - .g-pt-60--lg { - padding-top: 4.28571rem !important; - } - .g-pt-65--lg { - padding-top: 4.64286rem !important; - } - .g-pt-70--lg { - padding-top: 5rem !important; - } - .g-pt-75--lg { - padding-top: 5.35714rem !important; - } - .g-pt-80--lg { - padding-top: 5.71429rem !important; - } - .g-pt-85--lg { - padding-top: 6.07143rem !important; - } - .g-pt-90--lg { - padding-top: 6.42857rem !important; - } - .g-pt-95--lg { - padding-top: 6.78571rem !important; - } - .g-pt-100--lg { - padding-top: 7.14286rem !important; - } - .g-pt-105--lg { - padding-top: 7.5rem !important; - } - .g-pt-110--lg { - padding-top: 7.85714rem !important; - } - .g-pt-115--lg { - padding-top: 8.21429rem !important; - } - .g-pt-120--lg { - padding-top: 8.57143rem !important; - } - .g-pt-125--lg { - padding-top: 8.92857rem !important; - } - .g-pt-130--lg { - padding-top: 9.28571rem !important; - } - .g-pt-135--lg { - padding-top: 9.64286rem !important; - } - .g-pt-140--lg { - padding-top: 10rem !important; - } - .g-pt-145--lg { - padding-top: 10.35714rem !important; - } - .g-pt-150--lg { - padding-top: 10.71429rem !important; - } - /* Padding Right */ - .g-pr-0--lg { - padding-right: 0px !important; - } - .g-pr-1--lg { - padding-right: 0.07143rem !important; - } - .g-pr-2--lg { - padding-right: 0.14286rem !important; - } - .g-pr-3--lg { - padding-right: 0.21429rem !important; - } - .g-pr-4--lg { - padding-right: 0.28571rem !important; - } - .g-pr-5--lg { - padding-right: 0.35714rem !important; - } - .g-pr-6--lg { - padding-right: 0.42857rem !important; - } - .g-pr-7--lg { - padding-right: 0.5rem !important; - } - .g-pr-8--lg { - padding-right: 0.57143rem !important; - } - .g-pr-9--lg { - padding-right: 0.64286rem !important; - } - /* P */ - .g-pr-10--lg { - padding-right: 0.71429rem !important; - } - /* P */ - .g-pr-15--lg { - padding-right: 1.07143rem !important; - } - /* P */ - .g-pr-20--lg { - padding-right: 1.42857rem !important; - } - /* P */ - .g-pr-25--lg { - padding-right: 1.78571rem !important; - } - /* P */ - .g-pr-30--lg { - padding-right: 2.14286rem !important; - } - /* P */ - .g-pr-35--lg { - padding-right: 2.5rem !important; - } - /* P */ - .g-pr-40--lg { - padding-right: 2.85714rem !important; - } - /* P */ - .g-pr-45--lg { - padding-right: 3.21429rem !important; - } - /* P */ - .g-pr-50--lg { - padding-right: 3.57143rem !important; - } - /* P */ - .g-pr-55--lg { - padding-right: 3.92857rem !important; - } - /* P */ - .g-pr-60--lg { - padding-right: 4.28571rem !important; - } - /* P */ - .g-pr-65--lg { - padding-right: 4.64286rem !important; - } - /* P */ - .g-pr-70--lg { - padding-right: 5rem !important; - } - /* P */ - .g-pr-75--lg { - padding-right: 5.35714rem !important; - } - /* P */ - .g-pr-80--lg { - padding-right: 5.71429rem !important; - } - /* P */ - .g-pr-85--lg { - padding-right: 6.07143rem !important; - } - /* P */ - .g-pr-90--lg { - padding-right: 6.42857rem !important; - } - /* P */ - .g-pr-95--lg { - padding-right: 6.78571rem !important; - } - /* P */ - .g-pr-100--lg { - padding-right: 7.14286rem !important; - } - /* P */ - .g-pr-105--lg { - padding-right: 7.5rem !important; - } - /* P */ - .g-pr-110--lg { - padding-right: 7.85714rem !important; - } - /* P */ - .g-pr-115--lg { - padding-right: 8.21429rem !important; - } - /* P */ - .g-pr-120--lg { - padding-right: 8.57143rem !important; - } - /* P */ - .g-pr-125--lg { - padding-right: 8.92857rem !important; - } - /* P */ - .g-pr-130--lg { - padding-right: 9.28571rem !important; - } - /* P */ - .g-pr-135--lg { - padding-right: 9.64286rem !important; - } - /* P */ - .g-pr-140--lg { - padding-right: 10rem !important; - } - /* P */ - .g-pr-145--lg { - padding-right: 10.35714rem !important; - } - /* P */ - .g-pr-150--lg { - padding-right: 10.71429rem !important; - } - /* P */ - .g-pr-155--lg { - padding-right: 11.07143rem !important; - } - /* P */ - .g-pr-160--lg { - padding-right: 11.42857rem !important; - } - /* P */ - .g-pr-165--lg { - padding-right: 11.78571rem !important; - } - /* P */ - .g-pr-170--lg { - padding-right: 12.14286rem !important; - } - /* Padding Bottom */ - .g-pb-0--lg { - padding-bottom: 0px !important; - } - .g-pb-1--lg { - padding-bottom: 0.07143rem !important; - } - .g-pb-2--lg { - padding-bottom: 0.14286rem !important; - } - .g-pb-3--lg { - padding-bottom: 0.21429rem !important; - } - .g-pb-4--lg { - padding-bottom: 0.28571rem !important; - } - .g-pb-5--lg { - padding-bottom: 0.35714rem !important; - } - .g-pb-6--lg { - padding-bottom: 0.42857rem !important; - } - .g-pb-7--lg { - padding-bottom: 0.5rem !important; - } - .g-pb-8--lg { - padding-bottom: 0.57143rem !important; - } - .g-pb-9--lg { - padding-bottom: 0.64286rem !important; - } - .g-pb-10--lg { - padding-bottom: 0.71429rem !important; - } - .g-pb-15--lg { - padding-bottom: 1.07143rem !important; - } - .g-pb-20--lg { - padding-bottom: 1.42857rem !important; - } - .g-pb-25--lg { - padding-bottom: 1.78571rem !important; - } - .g-pb-30--lg { - padding-bottom: 2.14286rem !important; - } - .g-pb-35--lg { - padding-bottom: 2.5rem !important; - } - .g-pb-40--lg { - padding-bottom: 2.85714rem !important; - } - .g-pb-45--lg { - padding-bottom: 3.21429rem !important; - } - .g-pb-50--lg { - padding-bottom: 3.57143rem !important; - } - .g-pb-55--lg { - padding-bottom: 3.92857rem !important; - } - .g-pb-60--lg { - padding-bottom: 4.28571rem !important; - } - .g-pb-65--lg { - padding-bottom: 4.64286rem !important; - } - .g-pb-70--lg { - padding-bottom: 5rem !important; - } - .g-pb-75--lg { - padding-bottom: 5.35714rem !important; - } - .g-pb-80--lg { - padding-bottom: 5.71429rem !important; - } - .g-pb-85--lg { - padding-bottom: 6.07143rem !important; - } - .g-pb-90--lg { - padding-bottom: 6.42857rem !important; - } - .g-pb-95--lg { - padding-bottom: 6.78571rem !important; - } - .g-pb-100--lg { - padding-bottom: 7.14286rem !important; - } - .g-pb-105--lg { - padding-bottom: 7.5rem !important; - } - .g-pb-110--lg { - padding-bottom: 7.85714rem !important; - } - .g-pb-115--lg { - padding-bottom: 8.21429rem !important; - } - .g-pb-120--lg { - padding-bottom: 8.57143rem !important; - } - .g-pb-125--lg { - padding-bottom: 8.92857rem !important; - } - .g-pb-130--lg { - padding-bottom: 9.28571rem !important; - } - .g-pb-135--lg { - padding-bottom: 9.64286rem !important; - } - .g-pb-140--lg { - padding-bottom: 10rem !important; - } - .g-pb-145--lg { - padding-bottom: 10.35714rem !important; - } - .g-pb-150--lg { - padding-bottom: 10.71429rem !important; - } - /* Padding Left */ - .g-pl-0--lg { - padding-left: 0px !important; - } - .g-pl-1--lg { - padding-left: 0.07143rem !important; - } - .g-pl-2--lg { - padding-left: 0.14286rem !important; - } - .g-pl-3--lg { - padding-left: 0.21429rem !important; - } - .g-pl-4--lg { - padding-left: 0.28571rem !important; - } - .g-pl-5--lg { - padding-left: 0.35714rem !important; - } - .g-pl-6--lg { - padding-left: 0.42857rem !important; - } - .g-pl-7--lg { - padding-left: 0.5rem !important; - } - .g-pl-8--lg { - padding-left: 0.57143rem !important; - } - .g-pl-9--lg { - padding-left: 0.64286rem !important; - } - /* P */ - .g-pl-10--lg { - padding-left: 0.71429rem !important; - } - /* P */ - .g-pl-15--lg { - padding-left: 1.07143rem !important; - } - /* P */ - .g-pl-20--lg { - padding-left: 1.42857rem !important; - } - /* P */ - .g-pl-25--lg { - padding-left: 1.78571rem !important; - } - /* P */ - .g-pl-30--lg { - padding-left: 2.14286rem !important; - } - /* P */ - .g-pl-35--lg { - padding-left: 2.5rem !important; - } - /* P */ - .g-pl-40--lg { - padding-left: 2.85714rem !important; - } - /* P */ - .g-pl-45--lg { - padding-left: 3.21429rem !important; - } - /* P */ - .g-pl-50--lg { - padding-left: 3.57143rem !important; - } - /* P */ - .g-pl-55--lg { - padding-left: 3.92857rem !important; - } - /* P */ - .g-pl-60--lg { - padding-left: 4.28571rem !important; - } - /* P */ - .g-pl-65--lg { - padding-left: 4.64286rem !important; - } - /* P */ - .g-pl-70--lg { - padding-left: 5rem !important; - } - /* P */ - .g-pl-75--lg { - padding-left: 5.35714rem !important; - } - /* P */ - .g-pl-80--lg { - padding-left: 5.71429rem !important; - } - /* P */ - .g-pl-85--lg { - padding-left: 6.07143rem !important; - } - /* P */ - .g-pl-90--lg { - padding-left: 6.42857rem !important; - } - /* P */ - .g-pl-95--lg { - padding-left: 6.78571rem !important; - } - /* P */ - .g-pl-100--lg { - padding-left: 7.14286rem !important; - } - /* P */ - .g-pl-105--lg { - padding-left: 7.5rem !important; - } - /* P */ - .g-pl-110--lg { - padding-left: 7.85714rem !important; - } - /* P */ - .g-pl-115--lg { - padding-left: 8.21429rem !important; - } - /* P */ - .g-pl-120--lg { - padding-left: 8.57143rem !important; - } - /* P */ - .g-pl-125--lg { - padding-left: 8.92857rem !important; - } - /* P */ - .g-pl-130--lg { - padding-left: 9.28571rem !important; - } - /* P */ - .g-pl-135--lg { - padding-left: 9.64286rem !important; - } - /* P */ - .g-pl-140--lg { - padding-left: 10rem !important; - } - /* P */ - .g-pl-145--lg { - padding-left: 10.35714rem !important; - } - /* P */ - .g-pl-150--lg { - padding-left: 10.71429rem !important; - } - /* P */ - .g-pl-155--lg { - padding-left: 11.07143rem !important; - } - /* P */ - .g-pl-160--lg { - padding-left: 11.42857rem !important; - } - /* P */ - .g-pl-165--lg { - padding-left: 11.78571rem !important; - } - /* P */ - .g-pl-170--lg { - padding-left: 12.14286rem !important; - } -} - -/* Padding Spaces (xl) P -------------------------------------*/ -@media (min-width: 1200px) { - .g-pa-0--xl { - padding: 0 !important; - } - .g-px-0--xl { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0--xl { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-pt-0--xl { - padding-top: 0 !important; - } - .g-pr-0--xl { - padding-right: 0 !important; - } - .g-pb-0--xl { - padding-bottom: 0 !important; - } - .g-pl-0--xl { - padding-left: 0 !important; - } - /* Padding Around */ - .g-pa-2--xl { - padding: 0.14286rem !important; - } - .g-pa-3--xl { - padding: 0.21429rem !important; - } - .g-pa-5--xl { - padding: 0.35714rem !important; - } - .g-pa-7--xl { - padding: 0.5rem !important; - } - .g-pa-10--xl { - padding: 0.71429rem !important; - } - .g-pa-15--xl { - padding: 1.07143rem !important; - } - .g-pa-20--xl { - padding: 1.42857rem !important; - } - .g-pa-25--xl { - padding: 1.78571rem !important; - } - .g-pa-30--xl { - padding: 2.14286rem !important; - } - .g-pa-35--xl { - padding: 2.5rem !important; - } - .g-pa-40--xl { - padding: 2.85714rem !important; - } - .g-pa-45--xl { - padding: 3.21429rem !important; - } - .g-pa-50--xl { - padding: 3.57143rem !important; - } - .g-pa-55--xl { - padding: 3.92857rem !important; - } - .g-pa-60--xl { - padding: 4.28571rem !important; - } - .g-pa-65--xl { - padding: 4.64286rem !important; - } - .g-pa-70--xl { - padding: 5rem !important; - } - .g-pa-75--xl { - padding: 5.35714rem !important; - } - .g-pa-80--xl { - padding: 5.71429rem !important; - } - .g-pa-85--xl { - padding: 6.07143rem !important; - } - .g-pa-90--xl { - padding: 6.42857rem !important; - } - .g-pa-95--xl { - padding: 6.78571rem !important; - } - .g-pa-100--xl { - padding: 7.14286rem !important; - } - .g-pa-105--xl { - padding: 7.5rem !important; - } - .g-pa-110--xl { - padding: 7.85714rem !important; - } - .g-pa-115--xl { - padding: 8.21429rem !important; - } - .g-pa-120--xl { - padding: 8.57143rem !important; - } - .g-pa-125--xl { - padding: 8.92857rem !important; - } - .g-pa-130--xl { - padding: 9.28571rem !important; - } - .g-pa-135--xl { - padding: 9.64286rem !important; - } - .g-pa-140--xl { - padding: 10rem !important; - } - .g-pa-145--xl { - padding: 10.35714rem !important; - } - .g-pa-150--xl { - padding: 10.71429rem !important; - } - /* Padding X */ - .g-px-1--xl { - padding-left: 0.07143rem !important; - padding-right: 0.07143rem !important; - } - .g-px-2--xl { - padding-left: 0.14286rem !important; - padding-right: 0.14286rem !important; - } - .g-px-3--xl { - padding-left: 0.21429rem !important; - padding-right: 0.21429rem !important; - } - .g-px-4--xl { - padding-left: 0.28571rem !important; - padding-right: 0.28571rem !important; - } - .g-px-5--xl { - padding-left: 0.35714rem !important; - padding-right: 0.35714rem !important; - } - .g-px-6--xl { - padding-left: 0.42857rem !important; - padding-right: 0.42857rem !important; - } - .g-px-7--xl { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - } - .g-px-8--xl { - padding-left: 0.57143rem !important; - padding-right: 0.57143rem !important; - } - .g-px-9--xl { - padding-left: 0.64286rem !important; - padding-right: 0.64286rem !important; - } - .g-px-10--xl { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-11--xl { - padding-left: 0.78571rem !important; - padding-right: 0.78571rem !important; - } - .g-px-12--xl { - padding-left: 0.85714rem !important; - padding-right: 0.85714rem !important; - } - .g-px-13--xl { - padding-left: 0.92857rem !important; - padding-right: 0.92857rem !important; - } - .g-px-14--xl { - padding-left: 1rem !important; - padding-right: 1rem !important; - } - .g-px-15--xl { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-16--xl { - padding-left: 1.14286rem !important; - padding-right: 1.14286rem !important; - } - .g-px-17--xl { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; - } - .g-px-18--xl { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-px-19--xl { - padding-left: 1.35714rem !important; - padding-right: 1.35714rem !important; - } - .g-px-10--xl { - padding-left: 0.71429rem !important; - padding-right: 0.71429rem !important; - } - .g-px-15--xl { - padding-left: 1.07143rem !important; - padding-right: 1.07143rem !important; - } - .g-px-20--xl { - padding-left: 1.42857rem !important; - padding-right: 1.42857rem !important; - } - .g-px-25--xl { - padding-left: 1.78571rem !important; - padding-right: 1.78571rem !important; - } - .g-px-30--xl { - padding-left: 2.14286rem !important; - padding-right: 2.14286rem !important; - } - .g-px-35--xl { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; - } - .g-px-40--xl { - padding-left: 2.85714rem !important; - padding-right: 2.85714rem !important; - } - .g-px-45--xl { - padding-left: 3.21429rem !important; - padding-right: 3.21429rem !important; - } - .g-px-50--xl { - padding-left: 3.57143rem !important; - padding-right: 3.57143rem !important; - } - .g-px-55--xl { - padding-left: 3.92857rem !important; - padding-right: 3.92857rem !important; - } - .g-px-60--xl { - padding-left: 4.28571rem !important; - padding-right: 4.28571rem !important; - } - .g-px-65--xl { - padding-left: 4.64286rem !important; - padding-right: 4.64286rem !important; - } - .g-px-70--xl { - padding-left: 5rem !important; - padding-right: 5rem !important; - } - .g-px-75--xl { - padding-left: 5.35714rem !important; - padding-right: 5.35714rem !important; - } - .g-px-80--xl { - padding-left: 5.71429rem !important; - padding-right: 5.71429rem !important; - } - .g-px-85--xl { - padding-left: 6.07143rem !important; - padding-right: 6.07143rem !important; - } - .g-px-90--xl { - padding-left: 6.42857rem !important; - padding-right: 6.42857rem !important; - } - .g-px-95--xl { - padding-left: 6.78571rem !important; - padding-right: 6.78571rem !important; - } - .g-px-100--xl { - padding-left: 7.14286rem !important; - padding-right: 7.14286rem !important; - } - .g-px-105--xl { - padding-left: 7.5rem !important; - padding-right: 7.5rem !important; - } - .g-px-110--xl { - padding-left: 7.85714rem !important; - padding-right: 7.85714rem !important; - } - .g-px-115--xl { - padding-left: 8.21429rem !important; - padding-right: 8.21429rem !important; - } - .g-px-120--xl { - padding-left: 8.57143rem !important; - padding-right: 8.57143rem !important; - } - .g-px-125--xl { - padding-left: 8.92857rem !important; - padding-right: 8.92857rem !important; - } - .g-px-130--xl { - padding-left: 9.28571rem !important; - padding-right: 9.28571rem !important; - } - .g-px-135--xl { - padding-left: 9.64286rem !important; - padding-right: 9.64286rem !important; - } - .g-px-140--xl { - padding-left: 10rem !important; - padding-right: 10rem !important; - } - .g-px-145--xl { - padding-left: 10.35714rem !important; - padding-right: 10.35714rem !important; - } - .g-px-150--xl { - padding-left: 10.71429rem !important; - padding-right: 10.71429rem !important; - } - /* Padding Y */ - .g-py-1--xl { - padding-top: 0.07143rem !important; - padding-bottom: 0.07143rem !important; - } - .g-py-2--xl { - padding-top: 0.14286rem !important; - padding-bottom: 0.14286rem !important; - } - .g-py-3--xl { - padding-top: 0.21429rem !important; - padding-bottom: 0.21429rem !important; - } - .g-py-4--xl { - padding-top: 0.28571rem !important; - padding-bottom: 0.28571rem !important; - } - .g-py-5--xl { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-py-6--xl { - padding-top: 0.42857rem !important; - padding-bottom: 0.42857rem !important; - } - .g-py-7--xl { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; - } - .g-py-8--xl { - padding-top: 0.57143rem !important; - padding-bottom: 0.57143rem !important; - } - .g-py-9--xl { - padding-top: 0.64286rem !important; - padding-bottom: 0.64286rem !important; - } - .g-py-10--xl { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - .g-py-11--xl { - padding-top: 0.78571rem !important; - padding-bottom: 0.78571rem !important; - } - .g-py-12--xl { - padding-top: 0.85714rem !important; - padding-bottom: 0.85714rem !important; - } - .g-py-13--xl { - padding-top: 0.92857rem !important; - padding-bottom: 0.92857rem !important; - } - .g-py-14--xl { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - } - .g-py-15--xl { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - .g-py-16--xl { - padding-top: 1.14286rem !important; - padding-bottom: 1.14286rem !important; - } - .g-py-17--xl { - padding-top: 1.21429rem !important; - padding-bottom: 1.21429rem !important; - } - .g-py-18--xl { - padding-top: 1.28571rem !important; - padding-bottom: 1.28571rem !important; - } - .g-py-19--xl { - padding-top: 1.35714rem !important; - padding-bottom: 1.35714rem !important; - } - /* P */ - .g-py-10--xl { - padding-top: 0.71429rem !important; - padding-bottom: 0.71429rem !important; - } - /* P */ - .g-py-15--xl { - padding-top: 1.07143rem !important; - padding-bottom: 1.07143rem !important; - } - /* P */ - .g-py-20--xl { - padding-top: 1.42857rem !important; - padding-bottom: 1.42857rem !important; - } - /* P */ - .g-py-25--xl { - padding-top: 1.78571rem !important; - padding-bottom: 1.78571rem !important; - } - /* P */ - .g-py-30--xl { - padding-top: 2.14286rem !important; - padding-bottom: 2.14286rem !important; - } - /* P */ - .g-py-35--xl { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; - } - /* P */ - .g-py-40--xl { - padding-top: 2.85714rem !important; - padding-bottom: 2.85714rem !important; - } - /* P */ - .g-py-45--xl { - padding-top: 3.21429rem !important; - padding-bottom: 3.21429rem !important; - } - /* P */ - .g-py-50--xl { - padding-top: 3.57143rem !important; - padding-bottom: 3.57143rem !important; - } - /* P */ - .g-py-55--xl { - padding-top: 3.92857rem !important; - padding-bottom: 3.92857rem !important; - } - /* P */ - .g-py-60--xl { - padding-top: 4.28571rem !important; - padding-bottom: 4.28571rem !important; - } - /* P */ - .g-py-65--xl { - padding-top: 4.64286rem !important; - padding-bottom: 4.64286rem !important; - } - /* P */ - .g-py-70--xl { - padding-top: 5rem !important; - padding-bottom: 5rem !important; - } - /* P */ - .g-py-75--xl { - padding-top: 5.35714rem !important; - padding-bottom: 5.35714rem !important; - } - /* P */ - .g-py-80--xl { - padding-top: 5.71429rem !important; - padding-bottom: 5.71429rem !important; - } - /* P */ - .g-py-85--xl { - padding-top: 6.07143rem !important; - padding-bottom: 6.07143rem !important; - } - /* P */ - .g-py-90--xl { - padding-top: 6.42857rem !important; - padding-bottom: 6.42857rem !important; - } - /* P */ - .g-py-95--xl { - padding-top: 6.78571rem !important; - padding-bottom: 6.78571rem !important; - } - /* P */ - .g-py-100--xl { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - /* P */ - .g-py-105--xl { - padding-top: 7.5rem !important; - padding-bottom: 7.5rem !important; - } - /* P */ - .g-py-110--xl { - padding-top: 7.85714rem !important; - padding-bottom: 7.85714rem !important; - } - /* P */ - .g-py-115--xl { - padding-top: 8.21429rem !important; - padding-bottom: 8.21429rem !important; - } - /* P */ - .g-py-120--xl { - padding-top: 8.57143rem !important; - padding-bottom: 8.57143rem !important; - } - /* P */ - .g-py-125--xl { - padding-top: 8.92857rem !important; - padding-bottom: 8.92857rem !important; - } - /* P */ - .g-py-130--xl { - padding-top: 9.28571rem !important; - padding-bottom: 9.28571rem !important; - } - /* P */ - .g-py-135--xl { - padding-top: 9.64286rem !important; - padding-bottom: 9.64286rem !important; - } - /* P */ - .g-py-140--xl { - padding-top: 10rem !important; - padding-bottom: 10rem !important; - } - /* P */ - .g-py-145--xl { - padding-top: 10.35714rem !important; - padding-bottom: 10.35714rem !important; - } - /* P */ - .g-py-150--xl { - padding-top: 10.71429rem !important; - padding-bottom: 10.71429rem !important; - } - /* P */ - .g-py-155--xl { - padding-top: 11.07143rem !important; - padding-bottom: 11.07143rem !important; - } - /* P */ - .g-py-160--xl { - padding-top: 11.42857rem !important; - padding-bottom: 11.42857rem !important; - } - /* P */ - .g-py-165--xl { - padding-top: 11.78571rem !important; - padding-bottom: 11.78571rem !important; - } - /* P */ - .g-py-170--xl { - padding-top: 12.14286rem !important; - padding-bottom: 12.14286rem !important; - } - /* P */ - .g-py-175--xl { - padding-top: 12.5rem !important; - padding-bottom: 12.5rem !important; - } - /* P */ - .g-py-180--xl { - padding-top: 12.85714rem !important; - padding-bottom: 12.85714rem !important; - } - /* P */ - .g-py-185--xl { - padding-top: 13.21429rem !important; - padding-bottom: 13.21429rem !important; - } - /* P */ - .g-py-190--xl { - padding-top: 13.57143rem !important; - padding-bottom: 13.57143rem !important; - } - /* P */ - .g-py-195--xl { - padding-top: 13.92857rem !important; - padding-bottom: 13.92857rem !important; - } - /* P */ - .g-py-200--xl { - padding-top: 14.28571rem !important; - padding-bottom: 14.28571rem !important; - } - /* P */ - .g-py-205--xl { - padding-top: 14.64286rem !important; - padding-bottom: 14.64286rem !important; - } - /* P */ - .g-py-210--xl { - padding-top: 15rem !important; - padding-bottom: 15rem !important; - } - /* Padding Top */ - .g-pt-0--xl { - padding-top: 0px !important; - } - .g-pt-1--xl { - padding-top: 0.07143rem !important; - } - .g-pt-2--xl { - padding-top: 0.14286rem !important; - } - .g-pt-3--xl { - padding-top: 0.21429rem !important; - } - .g-pt-4--xl { - padding-top: 0.28571rem !important; - } - .g-pt-5--xl { - padding-top: 0.35714rem !important; - } - .g-pt-6--xl { - padding-top: 0.42857rem !important; - } - .g-pt-7--xl { - padding-top: 0.5rem !important; - } - .g-pt-8--xl { - padding-top: 0.57143rem !important; - } - .g-pt-9--xl { - padding-top: 0.64286rem !important; - } - .g-pt-10--xl { - padding-top: 0.71429rem !important; - } - .g-pt-11--xl { - padding-top: 0.78571rem !important; - } - .g-pt-12--xl { - padding-top: 0.85714rem !important; - } - .g-pt-13--xl { - padding-top: 0.92857rem !important; - } - .g-pt-14--xl { - padding-top: 1rem !important; - } - .g-pt-15--xl { - padding-top: 1.07143rem !important; - } - .g-pt-16--xl { - padding-top: 1.14286rem !important; - } - .g-pt-17--xl { - padding-top: 1.21429rem !important; - } - .g-pt-18--xl { - padding-top: 1.28571rem !important; - } - .g-pt-19--xl { - padding-top: 1.35714rem !important; - } - .g-pt-10--xl { - padding-top: 0.71429rem !important; - } - .g-pt-15--xl { - padding-top: 1.07143rem !important; - } - .g-pt-20--xl { - padding-top: 1.42857rem !important; - } - .g-pt-25--xl { - padding-top: 1.78571rem !important; - } - .g-pt-30--xl { - padding-top: 2.14286rem !important; - } - .g-pt-35--xl { - padding-top: 2.5rem !important; - } - .g-pt-40--xl { - padding-top: 2.85714rem !important; - } - .g-pt-45--xl { - padding-top: 3.21429rem !important; - } - .g-pt-50--xl { - padding-top: 3.57143rem !important; - } - .g-pt-55--xl { - padding-top: 3.92857rem !important; - } - .g-pt-60--xl { - padding-top: 4.28571rem !important; - } - .g-pt-65--xl { - padding-top: 4.64286rem !important; - } - .g-pt-70--xl { - padding-top: 5rem !important; - } - .g-pt-75--xl { - padding-top: 5.35714rem !important; - } - .g-pt-80--xl { - padding-top: 5.71429rem !important; - } - .g-pt-85--xl { - padding-top: 6.07143rem !important; - } - .g-pt-90--xl { - padding-top: 6.42857rem !important; - } - .g-pt-95--xl { - padding-top: 6.78571rem !important; - } - .g-pt-100--xl { - padding-top: 7.14286rem !important; - } - .g-pt-105--xl { - padding-top: 7.5rem !important; - } - .g-pt-110--xl { - padding-top: 7.85714rem !important; - } - .g-pt-115--xl { - padding-top: 8.21429rem !important; - } - .g-pt-120--xl { - padding-top: 8.57143rem !important; - } - .g-pt-125--xl { - padding-top: 8.92857rem !important; - } - .g-pt-130--xl { - padding-top: 9.28571rem !important; - } - .g-pt-135--xl { - padding-top: 9.64286rem !important; - } - .g-pt-140--xl { - padding-top: 10rem !important; - } - .g-pt-145--xl { - padding-top: 10.35714rem !important; - } - .g-pt-150--xl { - padding-top: 10.71429rem !important; - } - /* Padding Right */ - .g-pr-0--xl { - padding-right: 0px !important; - } - .g-pr-1--xl { - padding-right: 0.07143rem !important; - } - .g-pr-2--xl { - padding-right: 0.14286rem !important; - } - .g-pr-3--xl { - padding-right: 0.21429rem !important; - } - .g-pr-4--xl { - padding-right: 0.28571rem !important; - } - .g-pr-5--xl { - padding-right: 0.35714rem !important; - } - .g-pr-6--xl { - padding-right: 0.42857rem !important; - } - .g-pr-7--xl { - padding-right: 0.5rem !important; - } - .g-pr-8--xl { - padding-right: 0.57143rem !important; - } - .g-pr-9--xl { - padding-right: 0.64286rem !important; - } - /* P */ - .g-pr-10--xl { - padding-right: 0.71429rem !important; - } - /* P */ - .g-pr-15--xl { - padding-right: 1.07143rem !important; - } - /* P */ - .g-pr-20--xl { - padding-right: 1.42857rem !important; - } - /* P */ - .g-pr-25--xl { - padding-right: 1.78571rem !important; - } - /* P */ - .g-pr-30--xl { - padding-right: 2.14286rem !important; - } - /* P */ - .g-pr-35--xl { - padding-right: 2.5rem !important; - } - /* P */ - .g-pr-40--xl { - padding-right: 2.85714rem !important; - } - /* P */ - .g-pr-45--xl { - padding-right: 3.21429rem !important; - } - /* P */ - .g-pr-50--xl { - padding-right: 3.57143rem !important; - } - /* P */ - .g-pr-55--xl { - padding-right: 3.92857rem !important; - } - /* P */ - .g-pr-60--xl { - padding-right: 4.28571rem !important; - } - /* P */ - .g-pr-65--xl { - padding-right: 4.64286rem !important; - } - /* P */ - .g-pr-70--xl { - padding-right: 5rem !important; - } - /* P */ - .g-pr-75--xl { - padding-right: 5.35714rem !important; - } - /* P */ - .g-pr-80--xl { - padding-right: 5.71429rem !important; - } - /* P */ - .g-pr-85--xl { - padding-right: 6.07143rem !important; - } - /* P */ - .g-pr-90--xl { - padding-right: 6.42857rem !important; - } - /* P */ - .g-pr-95--xl { - padding-right: 6.78571rem !important; - } - /* P */ - .g-pr-100--xl { - padding-right: 7.14286rem !important; - } - /* P */ - .g-pr-105--xl { - padding-right: 7.5rem !important; - } - /* P */ - .g-pr-110--xl { - padding-right: 7.85714rem !important; - } - /* P */ - .g-pr-115--xl { - padding-right: 8.21429rem !important; - } - /* P */ - .g-pr-120--xl { - padding-right: 8.57143rem !important; - } - /* P */ - .g-pr-125--xl { - padding-right: 8.92857rem !important; - } - /* P */ - .g-pr-130--xl { - padding-right: 9.28571rem !important; - } - /* P */ - .g-pr-135--xl { - padding-right: 9.64286rem !important; - } - /* P */ - .g-pr-140--xl { - padding-right: 10rem !important; - } - /* P */ - .g-pr-145--xl { - padding-right: 10.35714rem !important; - } - /* P */ - .g-pr-150--xl { - padding-right: 10.71429rem !important; - } - /* P */ - .g-pr-155--xl { - padding-right: 11.07143rem !important; - } - /* P */ - .g-pr-160--xl { - padding-right: 11.42857rem !important; - } - /* P */ - .g-pr-165--xl { - padding-right: 11.78571rem !important; - } - /* P */ - .g-pr-170--xl { - padding-right: 12.14286rem !important; - } - /* Padding Bottom */ - .g-pb-0--xl { - padding-bottom: 0px !important; - } - .g-pb-1--xl { - padding-bottom: 0.07143rem !important; - } - .g-pb-2--xl { - padding-bottom: 0.14286rem !important; - } - .g-pb-3--xl { - padding-bottom: 0.21429rem !important; - } - .g-pb-4--xl { - padding-bottom: 0.28571rem !important; - } - .g-pb-5--xl { - padding-bottom: 0.35714rem !important; - } - .g-pb-6--xl { - padding-bottom: 0.42857rem !important; - } - .g-pb-7--xl { - padding-bottom: 0.5rem !important; - } - .g-pb-8--xl { - padding-bottom: 0.57143rem !important; - } - .g-pb-9--xl { - padding-bottom: 0.64286rem !important; - } - .g-pb-10--xl { - padding-bottom: 0.71429rem !important; - } - .g-pb-15--xl { - padding-bottom: 1.07143rem !important; - } - .g-pb-20--xl { - padding-bottom: 1.42857rem !important; - } - .g-pb-25--xl { - padding-bottom: 1.78571rem !important; - } - .g-pb-30--xl { - padding-bottom: 2.14286rem !important; - } - .g-pb-35--xl { - padding-bottom: 2.5rem !important; - } - .g-pb-40--xl { - padding-bottom: 2.85714rem !important; - } - .g-pb-45--xl { - padding-bottom: 3.21429rem !important; - } - .g-pb-50--xl { - padding-bottom: 3.57143rem !important; - } - .g-pb-55--xl { - padding-bottom: 3.92857rem !important; - } - .g-pb-60--xl { - padding-bottom: 4.28571rem !important; - } - .g-pb-65--xl { - padding-bottom: 4.64286rem !important; - } - .g-pb-70--xl { - padding-bottom: 5rem !important; - } - .g-pb-75--xl { - padding-bottom: 5.35714rem !important; - } - .g-pb-80--xl { - padding-bottom: 5.71429rem !important; - } - .g-pb-85--xl { - padding-bottom: 6.07143rem !important; - } - .g-pb-90--xl { - padding-bottom: 6.42857rem !important; - } - .g-pb-95--xl { - padding-bottom: 6.78571rem !important; - } - .g-pb-100--xl { - padding-bottom: 7.14286rem !important; - } - .g-pb-105--xl { - padding-bottom: 7.5rem !important; - } - .g-pb-110--xl { - padding-bottom: 7.85714rem !important; - } - .g-pb-115--xl { - padding-bottom: 8.21429rem !important; - } - .g-pb-120--xl { - padding-bottom: 8.57143rem !important; - } - .g-pb-125--xl { - padding-bottom: 8.92857rem !important; - } - .g-pb-130--xl { - padding-bottom: 9.28571rem !important; - } - .g-pb-135--xl { - padding-bottom: 9.64286rem !important; - } - .g-pb-140--xl { - padding-bottom: 10rem !important; - } - .g-pb-145--xl { - padding-bottom: 10.35714rem !important; - } - .g-pb-150--xl { - padding-bottom: 10.71429rem !important; - } - /* Padding Left */ - .g-pl-0--xl { - padding-left: 0px !important; - } - .g-pl-1--xl { - padding-left: 0.07143rem !important; - } - .g-pl-2--xl { - padding-left: 0.14286rem !important; - } - .g-pl-3--xl { - padding-left: 0.21429rem !important; - } - .g-pl-4--xl { - padding-left: 0.28571rem !important; - } - .g-pl-5--xl { - padding-left: 0.35714rem !important; - } - .g-pl-6--xl { - padding-left: 0.42857rem !important; - } - .g-pl-7--xl { - padding-left: 0.5rem !important; - } - .g-pl-8--xl { - padding-left: 0.57143rem !important; - } - .g-pl-9--xl { - padding-left: 0.64286rem !important; - } - /* P */ - .g-pl-10--xl { - padding-left: 0.71429rem !important; - } - /* P */ - .g-pl-15--xl { - padding-left: 1.07143rem !important; - } - /* P */ - .g-pl-20--xl { - padding-left: 1.42857rem !important; - } - /* P */ - .g-pl-25--xl { - padding-left: 1.78571rem !important; - } - /* P */ - .g-pl-30--xl { - padding-left: 2.14286rem !important; - } - /* P */ - .g-pl-35--xl { - padding-left: 2.5rem !important; - } - /* P */ - .g-pl-40--xl { - padding-left: 2.85714rem !important; - } - /* P */ - .g-pl-45--xl { - padding-left: 3.21429rem !important; - } - /* P */ - .g-pl-50--xl { - padding-left: 3.57143rem !important; - } - /* P */ - .g-pl-55--xl { - padding-left: 3.92857rem !important; - } - /* P */ - .g-pl-60--xl { - padding-left: 4.28571rem !important; - } - /* P */ - .g-pl-65--xl { - padding-left: 4.64286rem !important; - } - /* P */ - .g-pl-70--xl { - padding-left: 5rem !important; - } - /* P */ - .g-pl-75--xl { - padding-left: 5.35714rem !important; - } - /* P */ - .g-pl-80--xl { - padding-left: 5.71429rem !important; - } - /* P */ - .g-pl-85--xl { - padding-left: 6.07143rem !important; - } - /* P */ - .g-pl-90--xl { - padding-left: 6.42857rem !important; - } - /* P */ - .g-pl-95--xl { - padding-left: 6.78571rem !important; - } - /* P */ - .g-pl-100--xl { - padding-left: 7.14286rem !important; - } - /* P */ - .g-pl-105--xl { - padding-left: 7.5rem !important; - } - /* P */ - .g-pl-110--xl { - padding-left: 7.85714rem !important; - } - /* P */ - .g-pl-115--xl { - padding-left: 8.21429rem !important; - } - /* P */ - .g-pl-120--xl { - padding-left: 8.57143rem !important; - } - /* P */ - .g-pl-125--xl { - padding-left: 8.92857rem !important; - } - /* P */ - .g-pl-130--xl { - padding-left: 9.28571rem !important; - } - /* P */ - .g-pl-135--xl { - padding-left: 9.64286rem !important; - } - /* P */ - .g-pl-140--xl { - padding-left: 10rem !important; - } - /* P */ - .g-pl-145--xl { - padding-left: 10.35714rem !important; - } - /* P */ - .g-pl-150--xl { - padding-left: 10.71429rem !important; - } - /* P */ - .g-pl-155--xl { - padding-left: 11.07143rem !important; - } - /* P */ - .g-pl-160--xl { - padding-left: 11.42857rem !important; - } - /* P */ - .g-pl-165--xl { - padding-left: 11.78571rem !important; - } - /* P */ - .g-pl-170--xl { - padding-left: 12.14286rem !important; - } -} - -/* Custom Paddings (xs) -------------------------------------*/ -.g-pa-0-20-20 { - padding: 0 1.42857rem 1.42857rem !important; -} - -.g-pa-4-11 { - padding: 0.28571rem 0.78571rem !important; -} - -.g-pa-4-13 { - padding: 0.28571rem 0.92857rem !important; -} - -.g-pa-5-10 { - padding: 0.35714rem 0.71429rem !important; -} - -.g-pa-5-15 { - padding: 0.35714rem 1.07143rem !important; -} - -.g-pa-6-8 { - padding: 0.42857rem 0.57143rem !important; -} - -.g-pa-7-14 { - padding: 0.5rem 1rem !important; -} - -.g-pa-7-16 { - padding: 0.5rem 1.14286rem !important; -} - -.g-pa-10-5-5 { - padding: 0.71429rem 0.35714rem 0.35714rem !important; -} - -.g-pa-10-15 { - padding: 0.71429rem 1.07143rem !important; -} - -.g-pa-10-16 { - padding: 0.71429rem 1.14286rem !important; -} - -.g-pa-10-20 { - padding: 0.71429rem 1.42857rem !important; -} - -.g-pa-10-30 { - padding: 0.71429rem 2.14286rem !important; -} - -.g-pa-12 { - padding: 0.85714rem !important; -} - -.g-pa-12-19 { - padding: 0.85714rem 1.35714rem !important; -} - -.g-pa-12-21 { - padding: 0.85714rem 1.5rem !important; -} - -.g-pa-12-5-7 { - padding: 0.85714rem 0.35714rem 0.5rem !important; -} - -.g-pa-14-18 { - padding: 1rem 1.28571rem !important; -} - -.g-pa-15-0 { - padding: 1.07143rem 0 !important; -} - -.g-pa-15-5 { - padding: 1.07143rem 0.35714rem !important; -} - -.g-pa-15-20-10 { - padding: 1.07143rem 1.42857rem 0.71429rem !important; -} - -.g-pa-15-20 { - padding: 1.07143rem 1.42857rem !important; -} - -.g-pa-15-30 { - padding: 1.07143rem 2.14286rem !important; -} - -.g-pa-17-23 { - padding: 1.21429rem 1.64286rem !important; -} - -.g-pa-20-10 { - padding: 1.42857rem 0.71429rem !important; -} - -.g-pa-20-20-15 { - padding: 1.42857rem 1.42857rem 1.07143rem !important; -} - -.g-pa-20-20-20-55 { - padding: 1.42857rem 1.42857rem 1.42857rem 3.92857rem !important; -} - -.g-pa-20-30-0 { - padding: 1.42857rem 2.14286rem 0 !important; -} - -.g-pa-20-40-25 { - padding: 1.42857rem 2.85714rem 1.78571rem !important; -} - -.g-pa-24 { - padding: 1.71429rem !important; -} - -.g-pa-25-20-30 { - padding: 1.78571rem 1.42857rem 2.14286rem !important; -} - -.g-pa-25-30-20 { - padding: 1.78571rem 2.14286rem 1.42857rem !important; -} - -.g-pa-25-30 { - padding: 1.78571rem 2.14286rem !important; -} - -.g-pa-30-10 { - padding: 2.14286rem 0.71429rem !important; -} - -.g-pa-30-15 { - padding: 2.14286rem 1.07143rem !important; -} - -.g-pa-30-20 { - padding: 2.14286rem 1.42857rem !important; -} - -.g-pa-30-30-20 { - padding: 2.14286rem 2.14286rem 1.42857rem !important; -} - -.g-pa-40 { - padding: 2.85714rem !important; -} - -.g-pa-40-20 { - padding: 2.85714rem 1.42857rem !important; -} - -.g-pa-40-30-30 { - padding: 2.85714rem 2.14286rem 2.14286rem !important; -} - -.g-pa-50-15-0 { - padding: 3.57143rem 1.07143rem 0 !important; -} - -.g-pa-15x { - padding: 15% !important; -} - -.g-px-17 { - padding-left: 1.21429rem !important; - padding-right: 1.21429rem !important; -} - -.g-px-18 { - padding-left: 1.28571rem !important; - /* O */ - padding-right: 1.28571rem !important; -} - -.g-py-23 { - padding-top: 1.64286rem !important; - /* O */ - padding-bottom: 1.64286rem !important; -} - -.g-py-235 { - padding-top: 16.78571rem !important; - /* O */ - padding-bottom: 16.78571rem !important; -} - -.g-pl-12 { - padding-left: 0.85714rem !important; -} - -.g-pl-17 { - padding-left: 1.21429rem !important; -} - -.g-pl-7--hover:hover { - padding-left: 0.5rem !important; -} - -.g-pl-25--hover:hover { - padding-left: 1.78571rem !important; -} - -.active.g-pl-25--active { - padding-left: 1.78571rem !important; -} - -.g-pl-60--xs { - padding-left: 4.28571rem !important; -} - -.pt-0 { - padding-top: 0 !important; -} - -.g-pt-11 { - padding-top: 0.78571rem !important; -} - -.g-pt-12 { - padding-top: 0.85714rem !important; -} - -.g-parent:hover .g-pt-25--parent-hover { - padding-top: 1.78571rem !important; -} - -.g-pt-130 { - padding-top: 9.28571rem !important; -} - -.g-pt-150 { - padding-top: 10.71429rem !important; -} - -.g-pt-170 { - padding-top: 12.14286rem !important; -} - -.g-pt-195 { - padding-top: 13.92857rem !important; -} - -.pb-0 { - padding-bottom: 0 !important; -} - -.g-pb-170 { - padding-bottom: 12.14286rem !important; -} - -.g-pb-180 { - padding-bottom: 12.85714rem !important; -} - -.g-pb-200 { - padding-bottom: 14.28571rem !important; -} - -.g-pb-250 { - padding-bottom: 17.85714rem !important; -} - -.g-pb-13 { - padding-bottom: 0.92857rem !important; -} - -.g-pb-16 { - padding-bottom: 1.14286rem !important; -} - -.g-pa-11 { - padding: 0.78571rem !important; -} - -.g-pa-12 { - padding: 0.85714rem !important; -} - -.g-pl-30--hover:hover { - padding-left: 2.14286rem !important; -} - -/* Custom Paddings (sm) -------------------------------------*/ -@media (min-width: 576px) { - .g-px-10x--sm { - padding-left: 10% !important; - padding-right: 10% !important; - } - .g-px-0--sm { - padding-left: 0 !important; - padding-right: 0 !important; - } - .g-py-0--sm { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-py-5--sm { - padding-top: 0.35714rem !important; - padding-bottom: 0.35714rem !important; - } - .g-pa-0-10x--sm { - padding-left: 10% !important; - padding-right: 10% !important; - } - .g-pa-0-35-35--sm { - padding: 0 2.5rem 2.5rem !important; - } - .g-pa-5-10--sm { - padding: 0.35714rem 0.71429rem !important; - } - .g-pa-8-16--sm { - padding: 0.57143rem 1.14286rem !important; - } - .g-pa-10-20--sm { - padding: 0.71429rem 1.42857rem !important; - } - .g-pa-15-20-10--sm { - padding: 1.07143rem 1.42857rem 0.71429rem !important; - } - .g-pa-20-20-0--sm { - padding: 1.42857rem 1.42857rem 0 !important; - } - .g-pa-20-20-10--sm { - padding: 1.42857rem 1.42857rem 0.71429rem !important; - } - .g-pa-20-30-0--sm { - padding: 1.42857rem 2.14286rem 0 !important; - } - .g-pa-20-30--sm { - padding: 1.42857rem 2.14286rem !important; - } - .g-pa-30-20--sm { - padding: 2.14286rem 1.42857rem !important; - } - .g-pa-30-25-20--sm { - padding: 2.14286rem 1.78571rem 1.42857rem !important; - } - .g-pa-30-30-20--sm { - padding: 2.14286rem 2.14286rem 1.42857rem !important; - } - .g-pa-30-50-40--sm { - padding: 2.14286rem 3.57143rem 2.85714rem !important; - } - .g-pa-30-80--sm { - padding: 2.14286rem 5.71429rem !important; - } - .g-pa-40-30-30--sm { - padding: 2.85714rem 2.14286rem 2.14286rem !important; - } - .g-pa-60-30--sm { - padding: 4.28571rem 2.14286rem !important; - } - .g-pa-70-50-50-30--sm { - padding: 5rem 3.57143rem 3.57143rem 2.14286rem !important; - } - .g-pa-80-40--sm { - padding: 5.71429rem 2.85714rem !important; - } - .g-pa-85-0-40--sm { - padding: 6.07143rem 0 2.85714rem !important; - } - .g-pa-100-30--sm { - padding: 7.14286rem 2.14286rem !important; - } - .g-pa-170-0-150--sm { - padding: 12.14286rem 0 10.71429rem !important; - } - .g-pl-300--sm { - padding-left: 21.42857rem !important; - } -} - -/* Custom Paddings (md) -------------------------------------*/ -@media (min-width: 768px) { - .g-pa-25-30--md { - padding: 1.78571rem 2.14286rem !important; - } - .g-pa-30-10--md { - padding: 2.14286rem 0.71429rem !important; - } - .g-pa-30-35--md { - padding: 2.14286rem 2.5rem !important; - } - .g-py-0--md { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-py-23--md { - padding-top: 1.64286rem !important; - padding-bottom: 1.64286rem !important; - } - .g-px-18--md { - padding-left: 1.28571rem !important; - padding-right: 1.28571rem !important; - } - .g-pt-135--md { - padding-top: 9.64286rem !important; - } - .g-pt-145--md { - padding-top: 10.35714rem !important; - } - .g-pt-150--md { - padding-top: 10.71429rem !important; - } - .g-pt-170--md { - padding-top: 12.14286rem !important; - } - .g-pt-175--md { - padding-top: 12.5rem !important; - } - .g-pb-70--md { - padding-bottom: 5rem !important; - } - .g-pb-170--md { - padding-bottom: 12.14286rem !important; - } - .g-pb-250--md { - padding-bottom: 17.85714rem !important; - } - .g-pl-300--md { - padding-left: 21.42857rem !important; - } -} - -/* Custom Paddings (lg) -------------------------------------*/ -@media (min-width: 992px) { - .g-py-0--lg { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-py-100--lg { - padding-top: 7.14286rem !important; - padding-bottom: 7.14286rem !important; - } - .g-px-200--lg { - padding-left: 14.28571rem !important; - padding-right: 14.28571rem !important; - } - .g-pt-170--lg { - padding-top: 12.14286rem !important; - } - .g-pb-200--lg { - padding-bottom: 14.28571rem !important; - } -} - -/* Custom Paddings (xl) -------------------------------------*/ -@media (min-width: 1200px) { - .g-py-0--xl { - padding-top: 0 !important; - padding-bottom: 0 !important; - } - .g-px-23--xl { - padding-left: 1.64286rem !important; - padding-right: 1.64286rem !important; - } -} - -/*------------------------------------ - Block Hidden -------------------------------------*/ -.g-hidden-xs-up { - display: none !important; -} - -@media (max-width: 575px) { - .g-hidden-xs-down { - display: none !important; - } -} - -@media (min-width: 576px) { - .g-hidden-sm-up { - display: none !important; - } -} - -@media (max-width: 767px) { - .g-hidden-sm-down { - display: none !important; - } -} - -@media (min-width: 768px) { - .g-hidden-md-up { - display: none !important; - } -} - -@media (max-width: 991px) { - .g-hidden-md-down { - display: none !important; - } -} - -@media (min-width: 992px) { - .g-hidden-lg-up { - display: none !important; - } -} - -@media (max-width: 1199px) { - .g-hidden-lg-down { - display: none !important; - } -} - -@media (min-width: 1200px) { - .g-hidden-xl-up { - display: none !important; - } -} - -.g-hidden-xl-down { - display: none !important; -} - -h1, .h1, -h2, .h2, -h3, .h3, -h4, .h4, -h5, .h5, -h6, .h6 { - color: #383339; -} - -a:hover, a:focus { - color: #e74c3c; -} - -/* Headings */ -.u-heading-v2-4--bottom::after { - margin-top: 2.14286rem; -} - -/* Hamburger */ -.hamburger { - padding: 0; -} - -.hamburger-box, -.hamburger-inner, -.hamburger-inner::after, -.hamburger-inner::before { - width: 1.57143rem; -} - -.hamburger-inner, -.hamburger-inner::after, -.hamburger-inner::before { - height: 0.14286rem; - border-radius: 0.07143rem; -} - -.dark-theme .hamburger-inner, .dark-theme -.hamburger-inner::after, .dark-theme -.hamburger-inner::before { - background-color: #fff; -} - -.hamburger-box:hover .hamburger-inner, .hamburger-box:hover -.hamburger-inner::after, .hamburger-box:hover -.hamburger-inner::before { - background-color: #e74c3c; -} - -.hamburger-box { - height: 1rem; -} - -.hamburger--slider .hamburger-inner { - top: 0; -} - -.hamburger--slider .hamburger-inner:before { - top: 6px; -} - -.hamburger--slider .hamburger-inner:after { - top: 12px; -} - -.hamburger--slider.is-active .hamburger-inner:after { - -webkit-transform: translate3d(0, -12px, 0) rotate(-90deg); - transform: translate3d(0, -12px, 0) rotate(-90deg); -} - -/* Main navigation */ -.navbar-nav .nav-item .nav-link { - color: #ffffff; - font-weight: 400; - font-size: 16.5px; -} - -.navbar-nav .nav-item .nav-link:hover, -.navbar-nav .nav-item.active .nav-link { - color: #ff4159; - font-weight: 400; - font-size: 16.5px; -} - -/* Colors */ -.g-color-primary-dark-v1 { - color: #e64433 !important; -} - -.g-theme-color-gray-light-v3 { - color: #89848a !important; -} - -/* Background */ -.g-bg-primary-dark-v1 { - background-color: #e64433 !important; -} - -.g-bg-primary-dark-v1--hover:hover { - background-color: #e64433 !important; -} - -.g-bg-primary-dark-v1-opacity-0_8 { - background-color: rgba(230, 68, 51, 0.8) !important; -} - -.g-bg-primary-dark-v1-opacity-0_9 { - background-color: rgba(230, 68, 51, 0.9) !important; -} - -.g-bg-primary-dark-v1-opacity-0_9--hover:hover { - background-color: rgba(230, 68, 51, 0.9) !important; -} - -.g-theme-bg-gray-dark-v1 { - background-color: #383339 !important; -} - -.g-theme-bg-gray-dark-v1-opacity-0_95 { - background-color: rgba(56, 51, 57, 0.95) !important; -} - -.g-theme-bg-gray-dark-v1-opacity-0_95--after::after { - background-color: rgba(56, 51, 57, 0.95) !important; -} - -.g-theme-bg-gray-dark-v2 { - background-color: #3e393f !important; -} - -.g-theme-bg-gray-dark-v2--hover:hover { - background-color: #3e393f !important; -} - -.g-theme-bg-gray-light-v4 { - background-color: #f8f8f8 !important; -} - -/* Border */ -.g-theme-brd-gray-dark-v3 { - border-color: #504a51 !important; -} - -.g-theme-brd-gray-dark-v4 { - border-color: #3f3a40 !important; -} - -.g-parent:hover .g-brd-primary--parent-hover { - border-color: #e74c3c !important; -} - -.g-parent:hover .g-brd-primary-dark--parent-hover { - border-color: #e64433 !important; -} - -/* Tabs */ -@media (min-width: 768px) { - .u-nav-v1-1.u-nav-primary .nav-link.active { - background-color: #e64433; - } - .u-nav-v1-1.u-nav-primary .nav-link, - .u-nav-v1-1.u-nav-primary .nav-link:focus, - .u-nav-v1-1.u-nav-primary .nav-link:hover { - color: #fff; - } -} - -/* Custom select */ -.u-select-v1 .chosen-results > li.highlighted { - background-color: rgba(231, 76, 60, 0.2); -} - -.u-select-v1 .chosen-results > li.result-selected { - background-color: rgba(231, 76, 60, 0.2); - border-bottom-color: rgba(231, 76, 60, 0.2); -} - -.progress-bar { - width: auto; - overflow: visible !important; -} diff --git a/public/assets/images/advs/first.png b/public/assets/images/advs/first.png new file mode 100644 index 00000000..af89e95b Binary files /dev/null and b/public/assets/images/advs/first.png differ diff --git a/public/assets/images/advs/second.png b/public/assets/images/advs/second.png new file mode 100644 index 00000000..ba2ff1bf Binary files /dev/null and b/public/assets/images/advs/second.png differ diff --git a/public/assets/images/advs/top_adv.png b/public/assets/images/advs/top_adv.png new file mode 100644 index 00000000..ef4cc3b0 Binary files /dev/null and b/public/assets/images/advs/top_adv.png differ diff --git a/public/assets/images/bg/konserty-item.png b/public/assets/images/bg/konserty-item.png new file mode 100644 index 00000000..938363ae Binary files /dev/null and b/public/assets/images/bg/konserty-item.png differ diff --git a/public/assets/images/bg/konserty.jpg b/public/assets/images/bg/konserty.jpg new file mode 100644 index 00000000..9464a01a Binary files /dev/null and b/public/assets/images/bg/konserty.jpg differ diff --git a/public/assets/images/bg/menu-bg.svg b/public/assets/images/bg/menu-bg.svg new file mode 100644 index 00000000..7f09cc33 --- /dev/null +++ b/public/assets/images/bg/menu-bg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/images/bg/secondary.png b/public/assets/images/bg/secondary.png new file mode 100644 index 00000000..badbc37e Binary files /dev/null and b/public/assets/images/bg/secondary.png differ diff --git a/public/assets/images/bg/teatr.png b/public/assets/images/bg/teatr.png new file mode 100644 index 00000000..3a9e1cf4 Binary files /dev/null and b/public/assets/images/bg/teatr.png differ diff --git a/public/assets/images/bg/time-bg.png b/public/assets/images/bg/time-bg.png new file mode 100644 index 00000000..5853e7d7 Binary files /dev/null and b/public/assets/images/bg/time-bg.png differ diff --git a/public/assets/images/icons/2d.svg b/public/assets/images/icons/2d.svg new file mode 100644 index 00000000..9829c0a7 --- /dev/null +++ b/public/assets/images/icons/2d.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + 2D + + diff --git a/public/assets/images/icons/3d.svg b/public/assets/images/icons/3d.svg new file mode 100644 index 00000000..84ba936c --- /dev/null +++ b/public/assets/images/icons/3d.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + 3D + + diff --git a/public/assets/images/icons/black-time-ramka.svg b/public/assets/images/icons/black-time-ramka.svg new file mode 100644 index 00000000..b41a49c5 --- /dev/null +++ b/public/assets/images/icons/black-time-ramka.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/globe.svg b/public/assets/images/icons/globe.svg new file mode 100644 index 00000000..e2309af3 --- /dev/null +++ b/public/assets/images/icons/globe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/images/icons/left.png b/public/assets/images/icons/left.png new file mode 100644 index 00000000..f2627e01 Binary files /dev/null and b/public/assets/images/icons/left.png differ diff --git a/public/assets/images/icons/pin/img1.png b/public/assets/images/icons/pin/img1.png new file mode 100644 index 00000000..3e320a9a Binary files /dev/null and b/public/assets/images/icons/pin/img1.png differ diff --git a/public/assets/images/icons/plus.svg b/public/assets/images/icons/plus.svg new file mode 100644 index 00000000..cc9dd7ca --- /dev/null +++ b/public/assets/images/icons/plus.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/images/icons/red-time-ramka.svg b/public/assets/images/icons/red-time-ramka.svg new file mode 100644 index 00000000..63f33bf2 --- /dev/null +++ b/public/assets/images/icons/red-time-ramka.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/right.png b/public/assets/images/icons/right.png new file mode 100644 index 00000000..0efe5532 Binary files /dev/null and b/public/assets/images/icons/right.png differ diff --git a/public/assets/images/icons/search.svg b/public/assets/images/icons/search.svg new file mode 100644 index 00000000..3c557597 --- /dev/null +++ b/public/assets/images/icons/search.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/images/icons/share.svg b/public/assets/images/icons/share.svg new file mode 100644 index 00000000..5464ec45 --- /dev/null +++ b/public/assets/images/icons/share.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/assets/images/icons/social/1.svg b/public/assets/images/icons/social/1.svg new file mode 100644 index 00000000..d8c1684e --- /dev/null +++ b/public/assets/images/icons/social/1.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/1r.svg b/public/assets/images/icons/social/1r.svg new file mode 100644 index 00000000..75eccf8e --- /dev/null +++ b/public/assets/images/icons/social/1r.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/2.svg b/public/assets/images/icons/social/2.svg new file mode 100644 index 00000000..80b84eb4 --- /dev/null +++ b/public/assets/images/icons/social/2.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/2r.svg b/public/assets/images/icons/social/2r.svg new file mode 100644 index 00000000..b0e72bc0 --- /dev/null +++ b/public/assets/images/icons/social/2r.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/3.svg b/public/assets/images/icons/social/3.svg new file mode 100644 index 00000000..090717ff --- /dev/null +++ b/public/assets/images/icons/social/3.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/3r.svg b/public/assets/images/icons/social/3r.svg new file mode 100644 index 00000000..fff82c96 --- /dev/null +++ b/public/assets/images/icons/social/3r.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/assets/images/icons/social/4.svg b/public/assets/images/icons/social/4.svg new file mode 100644 index 00000000..db6a9b90 --- /dev/null +++ b/public/assets/images/icons/social/4.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/images/icons/social/4r.svg b/public/assets/images/icons/social/4r.svg new file mode 100644 index 00000000..b3725ae0 --- /dev/null +++ b/public/assets/images/icons/social/4r.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/images/icons/t-left.png b/public/assets/images/icons/t-left.png new file mode 100644 index 00000000..3b00eccc Binary files /dev/null and b/public/assets/images/icons/t-left.png differ diff --git a/public/assets/images/icons/t-right.png b/public/assets/images/icons/t-right.png new file mode 100644 index 00000000..2c8eb847 Binary files /dev/null and b/public/assets/images/icons/t-right.png differ diff --git a/public/assets/images/icons/user.svg b/public/assets/images/icons/user.svg new file mode 100644 index 00000000..cdd09c62 --- /dev/null +++ b/public/assets/images/icons/user.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/images/icons/w-left.png b/public/assets/images/icons/w-left.png new file mode 100644 index 00000000..9e726595 Binary files /dev/null and b/public/assets/images/icons/w-left.png differ diff --git a/public/assets/images/icons/w-right.png b/public/assets/images/icons/w-right.png new file mode 100644 index 00000000..b868afa7 Binary files /dev/null and b/public/assets/images/icons/w-right.png differ diff --git a/public/assets/images/logo/bilet-logo.svg b/public/assets/images/logo/bilet-logo.svg new file mode 100644 index 00000000..c63453c0 --- /dev/null +++ b/public/assets/images/logo/bilet-logo.svg @@ -0,0 +1,37 @@ + + + + + + + + diff --git a/public/assets/img-temp/1920x1080/img1.jpg b/public/assets/img-temp/1920x1080/img1.jpg deleted file mode 100644 index 25a83064..00000000 Binary files a/public/assets/img-temp/1920x1080/img1.jpg and /dev/null differ diff --git a/public/assets/img-temp/1920x1080/img2.jpg b/public/assets/img-temp/1920x1080/img2.jpg deleted file mode 100644 index 04b7df93..00000000 Binary files a/public/assets/img-temp/1920x1080/img2.jpg and /dev/null differ diff --git a/public/assets/img/1.jpg b/public/assets/img/1.jpg deleted file mode 100644 index 8dca246d..00000000 Binary files a/public/assets/img/1.jpg and /dev/null differ diff --git a/public/assets/img/cards.jpg b/public/assets/img/cards.jpg deleted file mode 100644 index 104e5d62..00000000 Binary files a/public/assets/img/cards.jpg and /dev/null differ diff --git a/public/assets/img/film.jpg b/public/assets/img/film.jpg deleted file mode 100644 index 2e94b3d7..00000000 Binary files a/public/assets/img/film.jpg and /dev/null differ diff --git a/public/assets/img/logo.svg b/public/assets/img/logo.svg deleted file mode 100644 index 7520dfbc..00000000 --- a/public/assets/img/logo.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - diff --git a/public/assets/img/pin.png b/public/assets/img/pin.png deleted file mode 100644 index adbd70f5..00000000 Binary files a/public/assets/img/pin.png and /dev/null differ diff --git a/public/assets/img/seats.jpg b/public/assets/img/seats.jpg deleted file mode 100644 index 62bc4c67..00000000 Binary files a/public/assets/img/seats.jpg and /dev/null differ diff --git a/public/assets/img/video.jpg b/public/assets/img/video.jpg deleted file mode 100644 index 3288581f..00000000 Binary files a/public/assets/img/video.jpg and /dev/null differ diff --git a/public/assets/out/js/components/gmap/hs.map.js b/public/assets/javascript/components/gmap/hs.map.js similarity index 100% rename from public/assets/out/js/components/gmap/hs.map.js rename to public/assets/javascript/components/gmap/hs.map.js diff --git a/public/assets/out/js/components/hs.ajax-autocomplete.js b/public/assets/javascript/components/hs.ajax-autocomplete.js similarity index 100% rename from public/assets/out/js/components/hs.ajax-autocomplete.js rename to public/assets/javascript/components/hs.ajax-autocomplete.js diff --git a/public/assets/out/js/components/hs.autocomplete-local-search.js b/public/assets/javascript/components/hs.autocomplete-local-search.js similarity index 100% rename from public/assets/out/js/components/hs.autocomplete-local-search.js rename to public/assets/javascript/components/hs.autocomplete-local-search.js diff --git a/public/assets/out/js/components/hs.autocomplete.js b/public/assets/javascript/components/hs.autocomplete.js similarity index 100% rename from public/assets/out/js/components/hs.autocomplete.js rename to public/assets/javascript/components/hs.autocomplete.js diff --git a/public/assets/out/js/components/hs.bg-video.js b/public/assets/javascript/components/hs.bg-video.js similarity index 100% rename from public/assets/out/js/components/hs.bg-video.js rename to public/assets/javascript/components/hs.bg-video.js diff --git a/public/assets/out/js/components/hs.carousel.js b/public/assets/javascript/components/hs.carousel.js similarity index 100% rename from public/assets/out/js/components/hs.carousel.js rename to public/assets/javascript/components/hs.carousel.js diff --git a/public/assets/out/js/components/hs.chart-pie.js b/public/assets/javascript/components/hs.chart-pie.js similarity index 100% rename from public/assets/out/js/components/hs.chart-pie.js rename to public/assets/javascript/components/hs.chart-pie.js diff --git a/public/assets/out/js/components/hs.chart.js b/public/assets/javascript/components/hs.chart.js similarity index 100% rename from public/assets/out/js/components/hs.chart.js rename to public/assets/javascript/components/hs.chart.js diff --git a/public/assets/out/js/components/hs.count-qty.js b/public/assets/javascript/components/hs.count-qty.js similarity index 100% rename from public/assets/out/js/components/hs.count-qty.js rename to public/assets/javascript/components/hs.count-qty.js diff --git a/public/assets/out/js/components/hs.countdown.js b/public/assets/javascript/components/hs.countdown.js similarity index 100% rename from public/assets/out/js/components/hs.countdown.js rename to public/assets/javascript/components/hs.countdown.js diff --git a/public/assets/out/js/components/hs.counter.js b/public/assets/javascript/components/hs.counter.js similarity index 100% rename from public/assets/out/js/components/hs.counter.js rename to public/assets/javascript/components/hs.counter.js diff --git a/public/assets/out/js/components/hs.cubeportfolio.js b/public/assets/javascript/components/hs.cubeportfolio.js similarity index 100% rename from public/assets/out/js/components/hs.cubeportfolio.js rename to public/assets/javascript/components/hs.cubeportfolio.js diff --git a/public/assets/out/js/components/hs.datepicker-1.0.js b/public/assets/javascript/components/hs.datepicker-1.0.js similarity index 100% rename from public/assets/out/js/components/hs.datepicker-1.0.js rename to public/assets/javascript/components/hs.datepicker-1.0.js diff --git a/public/assets/out/js/components/hs.datepicker.js b/public/assets/javascript/components/hs.datepicker.js similarity index 100% rename from public/assets/out/js/components/hs.datepicker.js rename to public/assets/javascript/components/hs.datepicker.js diff --git a/public/assets/out/js/components/hs.dropdown.js b/public/assets/javascript/components/hs.dropdown.js similarity index 100% rename from public/assets/out/js/components/hs.dropdown.js rename to public/assets/javascript/components/hs.dropdown.js diff --git a/public/assets/out/js/components/hs.file-attachement.js b/public/assets/javascript/components/hs.file-attachement.js similarity index 100% rename from public/assets/out/js/components/hs.file-attachement.js rename to public/assets/javascript/components/hs.file-attachement.js diff --git a/public/assets/out/js/components/hs.go-to.js b/public/assets/javascript/components/hs.go-to.js similarity index 100% rename from public/assets/out/js/components/hs.go-to.js rename to public/assets/javascript/components/hs.go-to.js diff --git a/public/assets/out/js/components/hs.header-fullscreen.js b/public/assets/javascript/components/hs.header-fullscreen.js similarity index 100% rename from public/assets/out/js/components/hs.header-fullscreen.js rename to public/assets/javascript/components/hs.header-fullscreen.js diff --git a/public/assets/out/js/components/hs.header-side.js b/public/assets/javascript/components/hs.header-side.js similarity index 100% rename from public/assets/out/js/components/hs.header-side.js rename to public/assets/javascript/components/hs.header-side.js diff --git a/public/assets/out/js/components/hs.header.js b/public/assets/javascript/components/hs.header.js similarity index 100% rename from public/assets/out/js/components/hs.header.js rename to public/assets/javascript/components/hs.header.js diff --git a/public/assets/out/js/components/hs.map.pin.js b/public/assets/javascript/components/hs.map.pin.js similarity index 100% rename from public/assets/out/js/components/hs.map.pin.js rename to public/assets/javascript/components/hs.map.pin.js diff --git a/public/assets/out/js/components/hs.map.svg.js b/public/assets/javascript/components/hs.map.svg.js similarity index 100% rename from public/assets/out/js/components/hs.map.svg.js rename to public/assets/javascript/components/hs.map.svg.js diff --git a/public/assets/out/js/components/hs.markup-copy.js b/public/assets/javascript/components/hs.markup-copy.js similarity index 100% rename from public/assets/out/js/components/hs.markup-copy.js rename to public/assets/javascript/components/hs.markup-copy.js diff --git a/public/assets/out/js/components/hs.masked-input.js b/public/assets/javascript/components/hs.masked-input.js similarity index 100% rename from public/assets/out/js/components/hs.masked-input.js rename to public/assets/javascript/components/hs.masked-input.js diff --git a/public/assets/out/js/components/hs.modal-event.js b/public/assets/javascript/components/hs.modal-event.js similarity index 100% rename from public/assets/out/js/components/hs.modal-event.js rename to public/assets/javascript/components/hs.modal-event.js diff --git a/public/assets/out/js/components/hs.modal-window.js b/public/assets/javascript/components/hs.modal-window.js similarity index 100% rename from public/assets/out/js/components/hs.modal-window.js rename to public/assets/javascript/components/hs.modal-window.js diff --git a/public/assets/out/js/components/hs.navigation.js b/public/assets/javascript/components/hs.navigation.js similarity index 100% rename from public/assets/out/js/components/hs.navigation.js rename to public/assets/javascript/components/hs.navigation.js diff --git a/public/assets/out/js/components/hs.nl-form.js b/public/assets/javascript/components/hs.nl-form.js similarity index 100% rename from public/assets/out/js/components/hs.nl-form.js rename to public/assets/javascript/components/hs.nl-form.js diff --git a/public/assets/out/js/components/hs.onscroll-animation.js b/public/assets/javascript/components/hs.onscroll-animation.js similarity index 100% rename from public/assets/out/js/components/hs.onscroll-animation.js rename to public/assets/javascript/components/hs.onscroll-animation.js diff --git a/public/assets/out/js/components/hs.popup-old.js b/public/assets/javascript/components/hs.popup-old.js similarity index 100% rename from public/assets/out/js/components/hs.popup-old.js rename to public/assets/javascript/components/hs.popup-old.js diff --git a/public/assets/out/js/components/hs.popup.js b/public/assets/javascript/components/hs.popup.js similarity index 100% rename from public/assets/out/js/components/hs.popup.js rename to public/assets/javascript/components/hs.popup.js diff --git a/public/assets/out/js/components/hs.progress-bar.js b/public/assets/javascript/components/hs.progress-bar.js similarity index 100% rename from public/assets/out/js/components/hs.progress-bar.js rename to public/assets/javascript/components/hs.progress-bar.js diff --git a/public/assets/out/js/components/hs.rating.js b/public/assets/javascript/components/hs.rating.js similarity index 100% rename from public/assets/out/js/components/hs.rating.js rename to public/assets/javascript/components/hs.rating.js diff --git a/public/assets/out/js/components/hs.scroll-nav.js b/public/assets/javascript/components/hs.scroll-nav.js similarity index 100% rename from public/assets/out/js/components/hs.scroll-nav.js rename to public/assets/javascript/components/hs.scroll-nav.js diff --git a/public/assets/out/js/components/hs.scrollbar.js b/public/assets/javascript/components/hs.scrollbar.js similarity index 100% rename from public/assets/out/js/components/hs.scrollbar.js rename to public/assets/javascript/components/hs.scrollbar.js diff --git a/public/assets/out/js/components/hs.select.js b/public/assets/javascript/components/hs.select.js similarity index 100% rename from public/assets/out/js/components/hs.select.js rename to public/assets/javascript/components/hs.select.js diff --git a/public/assets/out/js/components/hs.slider.js b/public/assets/javascript/components/hs.slider.js similarity index 100% rename from public/assets/out/js/components/hs.slider.js rename to public/assets/javascript/components/hs.slider.js diff --git a/public/assets/out/js/components/hs.smart-menu.js b/public/assets/javascript/components/hs.smart-menu.js similarity index 100% rename from public/assets/out/js/components/hs.smart-menu.js rename to public/assets/javascript/components/hs.smart-menu.js diff --git a/public/assets/out/js/components/hs.step-form.js b/public/assets/javascript/components/hs.step-form.js similarity index 100% rename from public/assets/out/js/components/hs.step-form.js rename to public/assets/javascript/components/hs.step-form.js diff --git a/public/assets/out/js/components/hs.sticky-block.js b/public/assets/javascript/components/hs.sticky-block.js similarity index 100% rename from public/assets/out/js/components/hs.sticky-block.js rename to public/assets/javascript/components/hs.sticky-block.js diff --git a/public/assets/out/js/components/hs.tabs.js b/public/assets/javascript/components/hs.tabs.js similarity index 100% rename from public/assets/out/js/components/hs.tabs.js rename to public/assets/javascript/components/hs.tabs.js diff --git a/public/assets/out/js/components/hs.validation.js b/public/assets/javascript/components/hs.validation.js similarity index 100% rename from public/assets/out/js/components/hs.validation.js rename to public/assets/javascript/components/hs.validation.js diff --git a/public/assets/out/js/components/hs.video-audio.js b/public/assets/javascript/components/hs.video-audio.js similarity index 100% rename from public/assets/out/js/components/hs.video-audio.js rename to public/assets/javascript/components/hs.video-audio.js diff --git a/public/assets/out/js/components/text-animation/hs.text-slideshow.js b/public/assets/javascript/components/text-animation/hs.text-slideshow.js similarity index 100% rename from public/assets/out/js/components/text-animation/hs.text-slideshow.js rename to public/assets/javascript/components/text-animation/hs.text-slideshow.js diff --git a/public/assets/out/js/hs.core.js b/public/assets/javascript/hs.core.js similarity index 100% rename from public/assets/out/js/hs.core.js rename to public/assets/javascript/hs.core.js diff --git a/public/assets/out/animate.css b/public/assets/out/animate.css deleted file mode 100644 index 1e79e03a..00000000 --- a/public/assets/out/animate.css +++ /dev/null @@ -1,1579 +0,0 @@ -@charset "UTF-8"; - -/*! - * animate.css -http://daneden.me/animate - * Version - 3.5.2 - * Licensed under the MIT license - http://opensource.org/licenses/MIT - * - * Copyright (c) 2017 Daniel Eden - */ - -.animated { - animation-duration: 1s; - animation-fill-mode: both; -} - -.animated.infinite { - animation-iteration-count: infinite; -} - -.animated.hinge { - animation-duration: 2s; -} - -.animated.flipOutX, -.animated.flipOutY, -.animated.bounceIn, -.animated.bounceOut { - animation-duration: .75s; -} - -@keyframes bounce { - from, 20%, 53%, 80%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - transform: translate3d(0,0,0); - } - - 40%, 43% { - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - transform: translate3d(0, -30px, 0); - } - - 70% { - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - transform: translate3d(0, -15px, 0); - } - - 90% { - transform: translate3d(0,-4px,0); - } -} - -.bounce { - animation-name: bounce; - transform-origin: center bottom; -} - -@keyframes flash { - from, 50%, to { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -.flash { - animation-name: flash; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@keyframes pulse { - from { - transform: scale3d(1, 1, 1); - } - - 50% { - transform: scale3d(1.05, 1.05, 1.05); - } - - to { - transform: scale3d(1, 1, 1); - } -} - -.pulse { - animation-name: pulse; -} - -@keyframes rubberBand { - from { - transform: scale3d(1, 1, 1); - } - - 30% { - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - transform: scale3d(.95, 1.05, 1); - } - - 75% { - transform: scale3d(1.05, .95, 1); - } - - to { - transform: scale3d(1, 1, 1); - } -} - -.rubberBand { - animation-name: rubberBand; -} - -@keyframes shake { - from, to { - transform: translate3d(0, 0, 0); - } - - 10%, 30%, 50%, 70%, 90% { - transform: translate3d(-10px, 0, 0); - } - - 20%, 40%, 60%, 80% { - transform: translate3d(10px, 0, 0); - } -} - -.shake { - animation-name: shake; -} - -@keyframes headShake { - 0% { - transform: translateX(0); - } - - 6.5% { - transform: translateX(-6px) rotateY(-9deg); - } - - 18.5% { - transform: translateX(5px) rotateY(7deg); - } - - 31.5% { - transform: translateX(-3px) rotateY(-5deg); - } - - 43.5% { - transform: translateX(2px) rotateY(3deg); - } - - 50% { - transform: translateX(0); - } -} - -.headShake { - animation-timing-function: ease-in-out; - animation-name: headShake; -} - -@keyframes swing { - 20% { - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - transform: rotate3d(0, 0, 1, -5deg); - } - - to { - transform: rotate3d(0, 0, 1, 0deg); - } -} - -.swing { - transform-origin: top center; - animation-name: swing; -} - -@keyframes tada { - from { - transform: scale3d(1, 1, 1); - } - - 10%, 20% { - transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); - } - - 30%, 50%, 70%, 90% { - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, 60%, 80% { - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - to { - transform: scale3d(1, 1, 1); - } -} - -.tada { - animation-name: tada; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@keyframes wobble { - from { - transform: none; - } - - 15% { - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - to { - transform: none; - } -} - -.wobble { - animation-name: wobble; -} - -@keyframes jello { - from, 11.1%, to { - transform: none; - } - - 22.2% { - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } -} - -.jello { - animation-name: jello; - transform-origin: center; -} - -@keyframes bounceIn { - from, 20%, 40%, 60%, 80%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - transform: scale3d(.3, .3, .3); - } - - 20% { - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - transform: scale3d(.9, .9, .9); - } - - 60% { - opacity: 1; - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - transform: scale3d(.97, .97, .97); - } - - to { - opacity: 1; - transform: scale3d(1, 1, 1); - } -} - -.bounceIn { - animation-name: bounceIn; -} - -@keyframes bounceInDown { - from, 60%, 75%, 90%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - transform: translate3d(0, -3000px, 0); - } - - 60% { - opacity: 1; - transform: translate3d(0, 25px, 0); - } - - 75% { - transform: translate3d(0, -10px, 0); - } - - 90% { - transform: translate3d(0, 5px, 0); - } - - to { - transform: none; - } -} - -.bounceInDown { - animation-name: bounceInDown; -} - -@keyframes bounceInLeft { - from, 60%, 75%, 90%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - transform: translate3d(-3000px, 0, 0); - } - - 60% { - opacity: 1; - transform: translate3d(25px, 0, 0); - } - - 75% { - transform: translate3d(-10px, 0, 0); - } - - 90% { - transform: translate3d(5px, 0, 0); - } - - to { - transform: none; - } -} - -.bounceInLeft { - animation-name: bounceInLeft; -} - -@keyframes bounceInRight { - from, 60%, 75%, 90%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - transform: translate3d(3000px, 0, 0); - } - - 60% { - opacity: 1; - transform: translate3d(-25px, 0, 0); - } - - 75% { - transform: translate3d(10px, 0, 0); - } - - 90% { - transform: translate3d(-5px, 0, 0); - } - - to { - transform: none; - } -} - -.bounceInRight { - animation-name: bounceInRight; -} - -@keyframes bounceInUp { - from, 60%, 75%, 90%, to { - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - transform: translate3d(0, 3000px, 0); - } - - 60% { - opacity: 1; - transform: translate3d(0, -20px, 0); - } - - 75% { - transform: translate3d(0, 10px, 0); - } - - 90% { - transform: translate3d(0, -5px, 0); - } - - to { - transform: translate3d(0, 0, 0); - } -} - -.bounceInUp { - animation-name: bounceInUp; -} - -@keyframes bounceOut { - 20% { - transform: scale3d(.9, .9, .9); - } - - 50%, 55% { - opacity: 1; - transform: scale3d(1.1, 1.1, 1.1); - } - - to { - opacity: 0; - transform: scale3d(.3, .3, .3); - } -} - -.bounceOut { - animation-name: bounceOut; -} - -@keyframes bounceOutDown { - 20% { - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - transform: translate3d(0, -20px, 0); - } - - to { - opacity: 0; - transform: translate3d(0, 2000px, 0); - } -} - -.bounceOutDown { - animation-name: bounceOutDown; -} - -@keyframes bounceOutLeft { - 20% { - opacity: 1; - transform: translate3d(20px, 0, 0); - } - - to { - opacity: 0; - transform: translate3d(-2000px, 0, 0); - } -} - -.bounceOutLeft { - animation-name: bounceOutLeft; -} - -@keyframes bounceOutRight { - 20% { - opacity: 1; - transform: translate3d(-20px, 0, 0); - } - - to { - opacity: 0; - transform: translate3d(2000px, 0, 0); - } -} - -.bounceOutRight { - animation-name: bounceOutRight; -} - -@keyframes bounceOutUp { - 20% { - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - transform: translate3d(0, 20px, 0); - } - - to { - opacity: 0; - transform: translate3d(0, -2000px, 0); - } -} - -.bounceOutUp { - animation-name: bounceOutUp; -} - -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -.fadeIn { - animation-name: fadeIn; -} - -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100%, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInDown { - animation-name: fadeInDown; -} - -@keyframes fadeInDownBig { - from { - opacity: 0; - transform: translate3d(0, -2000px, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInDownBig { - animation-name: fadeInDownBig; -} - -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-100%, 0, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInLeft { - animation-name: fadeInLeft; -} - -@keyframes fadeInLeftBig { - from { - opacity: 0; - transform: translate3d(-2000px, 0, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInLeftBig { - animation-name: fadeInLeftBig; -} - -@keyframes fadeInRight { - from { - opacity: 0; - transform: translate3d(100%, 0, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInRight { - animation-name: fadeInRight; -} - -@keyframes fadeInRightBig { - from { - opacity: 0; - transform: translate3d(2000px, 0, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInRightBig { - animation-name: fadeInRightBig; -} - -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 100%, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInUp { - animation-name: fadeInUp; -} - -@keyframes fadeInUpBig { - from { - opacity: 0; - transform: translate3d(0, 2000px, 0); - } - - to { - opacity: 1; - transform: none; - } -} - -.fadeInUpBig { - animation-name: fadeInUpBig; -} - -@keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} - -.fadeOut { - animation-name: fadeOut; -} - -@keyframes fadeOutDown { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(0, 100%, 0); - } -} - -.fadeOutDown { - animation-name: fadeOutDown; -} - -@keyframes fadeOutDownBig { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(0, 2000px, 0); - } -} - -.fadeOutDownBig { - animation-name: fadeOutDownBig; -} - -@keyframes fadeOutLeft { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(-100%, 0, 0); - } -} - -.fadeOutLeft { - animation-name: fadeOutLeft; -} - -@keyframes fadeOutLeftBig { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(-2000px, 0, 0); - } -} - -.fadeOutLeftBig { - animation-name: fadeOutLeftBig; -} - -@keyframes fadeOutRight { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(100%, 0, 0); - } -} - -.fadeOutRight { - animation-name: fadeOutRight; -} - -@keyframes fadeOutRightBig { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(2000px, 0, 0); - } -} - -.fadeOutRightBig { - animation-name: fadeOutRightBig; -} - -@keyframes fadeOutUp { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(0, -100%, 0); - } -} - -.fadeOutUp { - animation-name: fadeOutUp; -} - -@keyframes fadeOutUpBig { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(0, -2000px, 0); - } -} - -.fadeOutUpBig { - animation-name: fadeOutUpBig; -} - -@keyframes flip { - from { - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - animation-timing-function: ease-out; - } - - 40% { - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - animation-timing-function: ease-out; - } - - 50% { - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - animation-timing-function: ease-in; - } - - 80% { - transform: perspective(400px) scale3d(.95, .95, .95); - animation-timing-function: ease-in; - } - - to { - transform: perspective(400px); - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - animation-name: flip; -} - -@keyframes flipInX { - from { - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - animation-timing-function: ease-in; - } - - 60% { - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - to { - transform: perspective(400px); - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: flipInX; -} - -@keyframes flipInY { - from { - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - animation-timing-function: ease-in; - } - - 60% { - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - to { - transform: perspective(400px); - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: flipInY; -} - -@keyframes flipOutX { - from { - transform: perspective(400px); - } - - 30% { - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - to { - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} - -.flipOutX { - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@keyframes flipOutY { - from { - transform: perspective(400px); - } - - 30% { - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - to { - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - animation-name: flipOutY; -} - -@keyframes lightSpeedIn { - from { - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - transform: skewX(20deg); - opacity: 1; - } - - 80% { - transform: skewX(-5deg); - opacity: 1; - } - - to { - transform: none; - opacity: 1; - } -} - -.lightSpeedIn { - animation-name: lightSpeedIn; - animation-timing-function: ease-out; -} - -@keyframes lightSpeedOut { - from { - opacity: 1; - } - - to { - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} - -.lightSpeedOut { - animation-name: lightSpeedOut; - animation-timing-function: ease-in; -} - -@keyframes rotateIn { - from { - transform-origin: center; - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - to { - transform-origin: center; - transform: none; - opacity: 1; - } -} - -.rotateIn { - animation-name: rotateIn; -} - -@keyframes rotateInDownLeft { - from { - transform-origin: left bottom; - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - to { - transform-origin: left bottom; - transform: none; - opacity: 1; - } -} - -.rotateInDownLeft { - animation-name: rotateInDownLeft; -} - -@keyframes rotateInDownRight { - from { - transform-origin: right bottom; - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - transform-origin: right bottom; - transform: none; - opacity: 1; - } -} - -.rotateInDownRight { - animation-name: rotateInDownRight; -} - -@keyframes rotateInUpLeft { - from { - transform-origin: left bottom; - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - transform-origin: left bottom; - transform: none; - opacity: 1; - } -} - -.rotateInUpLeft { - animation-name: rotateInUpLeft; -} - -@keyframes rotateInUpRight { - from { - transform-origin: right bottom; - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - to { - transform-origin: right bottom; - transform: none; - opacity: 1; - } -} - -.rotateInUpRight { - animation-name: rotateInUpRight; -} - -@keyframes rotateOut { - from { - transform-origin: center; - opacity: 1; - } - - to { - transform-origin: center; - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} - -.rotateOut { - animation-name: rotateOut; -} - -@keyframes rotateOutDownLeft { - from { - transform-origin: left bottom; - opacity: 1; - } - - to { - transform-origin: left bottom; - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - animation-name: rotateOutDownLeft; -} - -@keyframes rotateOutDownRight { - from { - transform-origin: right bottom; - opacity: 1; - } - - to { - transform-origin: right bottom; - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutDownRight { - animation-name: rotateOutDownRight; -} - -@keyframes rotateOutUpLeft { - from { - transform-origin: left bottom; - opacity: 1; - } - - to { - transform-origin: left bottom; - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - animation-name: rotateOutUpLeft; -} - -@keyframes rotateOutUpRight { - from { - transform-origin: right bottom; - opacity: 1; - } - - to { - transform-origin: right bottom; - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - animation-name: rotateOutUpRight; -} - -@keyframes hinge { - 0% { - transform-origin: top left; - animation-timing-function: ease-in-out; - } - - 20%, 60% { - transform: rotate3d(0, 0, 1, 80deg); - transform-origin: top left; - animation-timing-function: ease-in-out; - } - - 40%, 80% { - transform: rotate3d(0, 0, 1, 60deg); - transform-origin: top left; - animation-timing-function: ease-in-out; - opacity: 1; - } - - to { - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} - -.hinge { - animation-name: hinge; -} - -@keyframes jackInTheBox { - from { - opacity: 0; - transform: scale(0.1) rotate(30deg); - transform-origin: center bottom; - } - - 50% { - transform: rotate(-10deg); - } - - 70% { - transform: rotate(3deg); - } - - to { - opacity: 1; - transform: scale(1); - } -} - -.jackInTheBox { - animation-name: jackInTheBox; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@keyframes rollIn { - from { - opacity: 0; - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - to { - opacity: 1; - transform: none; - } -} - -.rollIn { - animation-name: rollIn; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@keyframes rollOut { - from { - opacity: 1; - } - - to { - opacity: 0; - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} - -.rollOut { - animation-name: rollOut; -} - -@keyframes zoomIn { - from { - opacity: 0; - transform: scale3d(.3, .3, .3); - } - - 50% { - opacity: 1; - } -} - -.zoomIn { - animation-name: zoomIn; -} - -@keyframes zoomInDown { - from { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInDown { - animation-name: zoomInDown; -} - -@keyframes zoomInLeft { - from { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInLeft { - animation-name: zoomInLeft; -} - -@keyframes zoomInRight { - from { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInRight { - animation-name: zoomInRight; -} - -@keyframes zoomInUp { - from { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInUp { - animation-name: zoomInUp; -} - -@keyframes zoomOut { - from { - opacity: 1; - } - - 50% { - opacity: 0; - transform: scale3d(.3, .3, .3); - } - - to { - opacity: 0; - } -} - -.zoomOut { - animation-name: zoomOut; -} - -@keyframes zoomOutDown { - 40% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); - transform-origin: center bottom; - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomOutDown { - animation-name: zoomOutDown; -} - -@keyframes zoomOutLeft { - 40% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); - } - - to { - opacity: 0; - transform: scale(.1) translate3d(-2000px, 0, 0); - transform-origin: left center; - } -} - -.zoomOutLeft { - animation-name: zoomOutLeft; -} - -@keyframes zoomOutRight { - 40% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); - } - - to { - opacity: 0; - transform: scale(.1) translate3d(2000px, 0, 0); - transform-origin: right center; - } -} - -.zoomOutRight { - animation-name: zoomOutRight; -} - -@keyframes zoomOutUp { - 40% { - opacity: 1; - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); - transform-origin: center bottom; - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomOutUp { - animation-name: zoomOutUp; -} - -@keyframes slideInDown { - from { - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - to { - transform: translate3d(0, 0, 0); - } -} - -.slideInDown { - animation-name: slideInDown; -} - -@keyframes slideInLeft { - from { - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - to { - transform: translate3d(0, 0, 0); - } -} - -.slideInLeft { - animation-name: slideInLeft; -} - -@keyframes slideInRight { - from { - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - to { - transform: translate3d(0, 0, 0); - } -} - -.slideInRight { - animation-name: slideInRight; -} - -@keyframes slideInUp { - from { - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - to { - transform: translate3d(0, 0, 0); - } -} - -.slideInUp { - animation-name: slideInUp; -} - -@keyframes slideOutDown { - from { - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - transform: translate3d(0, 100%, 0); - } -} - -.slideOutDown { - animation-name: slideOutDown; -} - -@keyframes slideOutLeft { - from { - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - transform: translate3d(-100%, 0, 0); - } -} - -.slideOutLeft { - animation-name: slideOutLeft; -} - -@keyframes slideOutRight { - from { - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - transform: translate3d(100%, 0, 0); - } -} - -.slideOutRight { - animation-name: slideOutRight; -} - -@keyframes slideOutUp { - from { - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - transform: translate3d(0, -100%, 0); - } -} - -.slideOutUp { - animation-name: slideOutUp; -} diff --git a/public/assets/out/appear.js b/public/assets/out/appear.js deleted file mode 100644 index b60f2fc2..00000000 --- a/public/assets/out/appear.js +++ /dev/null @@ -1,248 +0,0 @@ -/* appear.js 1.0.3 */ -appear = (function(){ - 'use strict'; - var scrollLastPos = null, scrollTimer = 0, scroll = {}; - - function track(){ - var newPos = window.scrollY || window.pageYOffset; // pageYOffset for IE9 - if ( scrollLastPos != null ){ - scroll.velocity = newPos - scrollLastPos; - scroll.delta = (scroll.velocity >= 0) ? scroll.velocity : (-1 * scroll.velocity); - - } - scrollLastPos = newPos; - if(scrollTimer){ - clearTimeout(scrollTimer); - } - scrollTimer = setTimeout(function(){ - scrollLastPos = null; - }, 30); - } - addEventListener('scroll', track, false); - - // determine if a given element (plus an additional "bounds" area around it) is in the viewport - function viewable(el, bounds){ - var rect = el.getBoundingClientRect(); - return ( - (rect.top + rect.height) >= 0 && - (rect.left + rect.width) >= 0 && - (rect.bottom - rect.height) <= ( (window.innerHeight || document.documentElement.clientHeight) + bounds) && - (rect.right - rect.width) <= ( (window.innerWidth || document.documentElement.clientWidth) + bounds) - ); - } - - return function(obj){ - - return (function(obj){ - var initd = false, elements = [], elementsLength, reappear = [], - appeared = 0, disappeared = 0, timer, deltaSet, opts = {}, done; - - // handle debouncing a function for better performance on scroll - function debounce(fn, delay) { - return function () { - var self = this, args = arguments; - clearTimeout(timer); - - timer = setTimeout(function () { - fn.apply(self, args); - }, delay); - }; - } - - // called on scroll and resize event, so debounce the actual function that does - // the heavy work of determining if an item is viewable and then "appearing" it - function checkAppear() { - if(scroll.delta < opts.delta.speed) { - if(!deltaSet) { - deltaSet = true; - doCheckAppear(); - setTimeout(function(){ - deltaSet = false; - }, opts.delta.timeout); - } - } - (debounce(function() { - doCheckAppear(); - }, opts.debounce)()); - } - - function begin() { - // initial appear check before any scroll or resize event - doCheckAppear(); - - // add relevant listeners - addEventListener('scroll', checkAppear, false); - addEventListener('resize', checkAppear, false); - } - - function end() { - elements = []; - if(timer) { - clearTimeout(timer); - } - removeListeners(); - } - - function removeListeners() { - - removeEventListener('scroll', checkAppear, false); - removeEventListener('resize', checkAppear, false); - } - - function doCheckAppear() { - if(done) { - return; - } - - elements.forEach(function(n, i){ - if(n && viewable(n, opts.bounds)) { - // only act if the element is eligible to reappear - if(reappear[i]) { - // mark this element as not eligible to appear - reappear[i] = false; - // increment the count of appeared items - appeared++; - - // call the appear fn - if(opts.appear) { - opts.appear(n); - } - // if not tracking reappears or disappears, need to remove node here - if(!opts.disappear && !opts.reappear) { - // stop tracking this node, which is now viewable - elements[i] = null; - } - } - } else { - if(reappear[i] === false) { - if(opts.disappear) { - opts.disappear(n); - } - // increment the dissappeared count - disappeared++; - - // if not tracking reappears, need to remove node here - if(!opts.reappear) { - // stop tracking this node, which is now viewable - elements[i] = null; - } - } - // element is out of view and eligible to be appeared again - reappear[i] = true; - } - }); - - // remove listeners if all items have (re)appeared - if(!opts.reappear && (!opts.appear || opts.appear && appeared === elementsLength) && (!opts.disappear || opts.disappear && disappeared === elementsLength)) { - // ensure done is only called once (could be called from a trailing debounce/throttle) - done = true; - removeListeners(); - // all items have appeared, so call the done fn - if(opts.done){ - opts.done(); - } - } - } - - function init() { - // make sure we only init once - if(initd) { - return; - } - initd = true; - - // call the obj init fn - if(opts.init) { - opts.init(); - } - // get the elements to work with - var els; - if(typeof opts.elements === 'function') { - els = opts.elements(); - } else { - els = opts.elements; - } - if(els) { - // put elements into an array object to work with - elementsLength = els.length; - for(var i = 0; i < elementsLength; i += 1) { - elements.push(els[i]); - reappear.push(true); - } - begin(); - } - } - - return function(obj) { - obj = obj || {}; - - // assign the fn to execute when a node is visible - opts = { - // a function to be run when the dom is ready (allows for any setup work) - init: obj.init, - // either an array of elements or a function that will return an htmlCollection - elements: obj.elements, - // function to call when an element is "viewable", will be passed the element to work with - appear: obj.appear, - // function to call when an element is no longer "viewable", will be passed the element to work with - disappear: obj.disappear, - // function to call when all the elements have "appeared" - done: obj.done, - // keep tracking the elements - reappear: obj.reappear, - // the extra border around an element to make it viewable outside of the true viewport - bounds: obj.bounds || 0, - // the debounce timeout - debounce: obj.debounce || 50, - // appear.js will also check for items on continuous slow scrolling - // you can controll how slow the scrolling should be (deltaSpeed) - // and when it will check again (deltaTimeout) after it has inspected the dom/viewport; - delta: { - speed: obj.deltaSpeed || 50, - timeout: obj.deltaTimeout || 500 - } - }; - - // add an event listener to init when dom is ready - addEventListener('DOMContentLoaded', init, false); - - var isIE10 = false; - if (Function('/*@cc_on return document.documentMode===10@*/')()){ - isIE10 = true; - } - var completeOrLoaded = document.readyState === 'complete' || document.readyState === 'loaded'; - - // call init if document is ready to be worked with and we missed the event - if (isIE10) { - if (completeOrLoaded) { - init(); - } - } else { - if (completeOrLoaded || document.readyState === 'interactive') { - init(); - } - } - - return { - // manually fire check for visibility of tracked elements - trigger: function trigger(){ - doCheckAppear(); - }, - // pause tracking of elements - pause: function pause(){ - removeListeners(); - }, - // resume tracking of elements after a pause - resume: function resume(){ - begin(); - }, - // provide a means to stop monitoring all elements - destroy: function destroy() { - end(); - } - }; - - }; - }()(obj)); - }; -}()); diff --git a/public/assets/out/chosen/.bower.json b/public/assets/out/chosen/.bower.json deleted file mode 100644 index 741de1d6..00000000 --- a/public/assets/out/chosen/.bower.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "chosen", - "description": "Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.", - "keywords": [ - "select", - "multiselect", - "dropdown", - "form", - "input", - "ui" - ], - "homepage": "https://harvesthq.github.io/chosen/", - "license": "https://github.com/harvesthq/chosen/blob/master/LICENSE.md", - "authors": [ - { - "name": "Patrick Filler", - "url": "https://github.com/pfiller" - }, - { - "name": "Christophe Coevoet", - "url": "https://github.com/stof" - }, - { - "name": "Ken Earley", - "url": "https://github.com/kenearley" - }, - { - "name": "Koen Punt", - "url": "https://github.com/koenpunt" - } - ], - "dependencies": { - "jquery": ">=1.4.4" - }, - "main": [ - "chosen.jquery.js", - "chosen.css", - "chosen-sprite@2x.png", - "chosen-sprite.png" - ], - "ignore": [], - "repository": { - "type": "git", - "url": "https://github.com/harvesthq/chosen.git" - }, - "version": "1.6.2", - "_release": "1.6.2", - "_resolution": { - "type": "version", - "tag": "v1.6.2", - "commit": "18b0f2a9ad5991cf84187d52e000769637c0b068" - }, - "_source": "https://github.com/harvesthq/bower-chosen.git", - "_target": "^1.6.2", - "_originalSource": "chosen", - "_direct": true -} \ No newline at end of file diff --git a/public/assets/out/chosen/.travis.yml b/public/assets/out/chosen/.travis.yml deleted file mode 100644 index 74c399b1..00000000 --- a/public/assets/out/chosen/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -sudo: false - -language: node_js - -node_js: - - "node" - -deploy: - provider: npm - email: chosenjs@getharvest.com - api_key: - secure: jilkDlYp31lPr5AxNTSoC7cgeJv1k+HFyD97RdscUm7Oc45397H//62twQY1w8gUtonjqoncSUe+deElbBs8Zm1RXoX3F3YdcrdhLgmpUFa6Qt2L1ttSJRJ/HOn7NxupwNAHCFiLib5ffFED6FvntHJG/A1693yQeR9lycMsmrQ= - on: - tags: true - repo: harvesthq/chosen-package diff --git a/public/assets/out/chosen/README.md b/public/assets/out/chosen/README.md deleted file mode 100644 index 1550abf8..00000000 --- a/public/assets/out/chosen/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# Chosen - -Chosen is a library for making long, unwieldy select boxes more user friendly. - -- jQuery support: 1.4+ -- Prototype support: 1.7+ - -For **documentation**, usage, and examples, see: -http://harvesthq.github.io/chosen/ - -For **downloads**, see: -https://github.com/harvesthq/chosen/releases/ - -### Bower Installation - -Chosen is available for Bower installation: -`bower install chosen` - -The compiled files for the Bower package are automatically generated and stored in a [2nd Chosen repository](https://github.com/harvesthq/bower-chosen). No pull requests will be accepted to that repository. - -### Contributing to this project - -We welcome all to participate in making Chosen the best software it can be. The repository is maintained by only a few people, but has accepted contributions from over 50 authors after reviewing hundreds of pull requests related to thousands of issues. You can help reduce the maintainers' workload (and increase your chance of having an accepted contribution to Chosen) by following the -[guidelines for contributing](contributing.md). - -* [Bug reports](contributing.md#bugs) -* [Feature requests](contributing.md#features) -* [Pull requests](contributing.md#pull-requests) - -### Chosen Credits - -- Concept and development by [Patrick Filler](http://patrickfiller.com) for [Harvest](http://getharvest.com/). -- Design and CSS by [Matthew Lettini](http://matthewlettini.com/) -- Repository maintained by [@pfiller](http://github.com/pfiller), [@kenearley](http://github.com/kenearley), [@stof](http://github.com/stof), [@koenpunt](http://github.com/koenpunt), and [@tjschuck](http://github.com/tjschuck). -- Chosen includes [contributions by many fine folks](https://github.com/harvesthq/chosen/contributors). diff --git a/public/assets/out/chosen/bower.json b/public/assets/out/chosen/bower.json deleted file mode 100644 index b657c41d..00000000 --- a/public/assets/out/chosen/bower.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "name": "chosen", - "description": "Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.", - "keywords": [ - "select", - "multiselect", - "dropdown", - "form", - "input", - "ui" - ], - "homepage": "https://harvesthq.github.io/chosen/", - "license": "https://github.com/harvesthq/chosen/blob/master/LICENSE.md", - "authors": [ - { - "name": "Patrick Filler", - "url": "https://github.com/pfiller" - }, - { - "name": "Christophe Coevoet", - "url": "https://github.com/stof" - }, - { - "name": "Ken Earley", - "url": "https://github.com/kenearley" - }, - { - "name": "Koen Punt", - "url": "https://github.com/koenpunt" - } - ], - "dependencies": { - "jquery": ">=1.4.4" - }, - "main": [ - "chosen.jquery.js", - "chosen.css", - "chosen-sprite@2x.png", - "chosen-sprite.png" - ], - "ignore": [], - "repository": { - "type": "git", - "url": "https://github.com/harvesthq/chosen.git" - } -} diff --git a/public/assets/out/chosen/chosen-sprite.png b/public/assets/out/chosen/chosen-sprite.png deleted file mode 100644 index c57da70b..00000000 Binary files a/public/assets/out/chosen/chosen-sprite.png and /dev/null differ diff --git a/public/assets/out/chosen/chosen-sprite@2x.png b/public/assets/out/chosen/chosen-sprite@2x.png deleted file mode 100644 index 6b505452..00000000 Binary files a/public/assets/out/chosen/chosen-sprite@2x.png and /dev/null differ diff --git a/public/assets/out/chosen/chosen.css b/public/assets/out/chosen/chosen.css deleted file mode 100644 index 7d5eab61..00000000 --- a/public/assets/out/chosen/chosen.css +++ /dev/null @@ -1,449 +0,0 @@ -/*! -Chosen, a Select Box Enhancer for jQuery and Prototype -by Patrick Filler for Harvest, http://getharvest.com - -Version 1.6.2 -Full source at https://github.com/harvesthq/chosen -Copyright (c) 2011-2016 Harvest http://getharvest.com - -MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md -This file is generated by `grunt build`, do not edit it by hand. -*/ - -/* @group Base */ -.chosen-container { - position: relative; - display: inline-block; - vertical-align: middle; - font-size: 13px; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} -.chosen-container * { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -.chosen-container .chosen-drop { - position: absolute; - top: 100%; - left: -9999px; - z-index: 1010; - width: 100%; - border: 1px solid #aaa; - border-top: 0; - background: #fff; - box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); -} -.chosen-container.chosen-with-drop .chosen-drop { - left: 0; -} -.chosen-container a { - cursor: pointer; -} -.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name { - margin-right: 4px; - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - font-weight: normal; - color: #999999; -} -.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after { - content: ":"; - padding-left: 2px; - vertical-align: top; -} - -/* @end */ -/* @group Single Chosen */ -.chosen-container-single .chosen-single { - position: relative; - display: block; - overflow: hidden; - padding: 0 0 0 8px; - height: 25px; - border: 1px solid #aaa; - border-radius: 5px; - background-color: #fff; - background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4)); - background: -webkit-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); - background: -moz-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); - background: -o-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); - background: linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); - background-clip: padding-box; - box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1); - color: #444; - text-decoration: none; - white-space: nowrap; - line-height: 24px; -} -.chosen-container-single .chosen-default { - color: #999; -} -.chosen-container-single .chosen-single span { - display: block; - overflow: hidden; - margin-right: 26px; - text-overflow: ellipsis; - white-space: nowrap; -} -.chosen-container-single .chosen-single-with-deselect span { - margin-right: 38px; -} -.chosen-container-single .chosen-single abbr { - position: absolute; - top: 6px; - right: 26px; - display: block; - width: 12px; - height: 12px; - background: url('chosen-sprite.png') -42px 1px no-repeat; - font-size: 1px; -} -.chosen-container-single .chosen-single abbr:hover { - background-position: -42px -10px; -} -.chosen-container-single.chosen-disabled .chosen-single abbr:hover { - background-position: -42px -10px; -} -.chosen-container-single .chosen-single div { - position: absolute; - top: 0; - right: 0; - display: block; - width: 18px; - height: 100%; -} -.chosen-container-single .chosen-single div b { - display: block; - width: 100%; - height: 100%; - background: url('chosen-sprite.png') no-repeat 0px 2px; -} -.chosen-container-single .chosen-search { - position: relative; - z-index: 1010; - margin: 0; - padding: 3px 4px; - white-space: nowrap; -} -.chosen-container-single .chosen-search input[type="text"] { - margin: 1px 0; - padding: 4px 20px 4px 5px; - width: 100%; - height: auto; - outline: 0; - border: 1px solid #aaa; - background: white url('chosen-sprite.png') no-repeat 100% -20px; - background: url('chosen-sprite.png') no-repeat 100% -20px; - font-size: 1em; - font-family: sans-serif; - line-height: normal; - border-radius: 0; -} -.chosen-container-single .chosen-drop { - margin-top: -1px; - border-radius: 0 0 4px 4px; - background-clip: padding-box; -} -.chosen-container-single.chosen-container-single-nosearch .chosen-search { - position: absolute; - left: -9999px; -} - -/* @end */ -/* @group Results */ -.chosen-container .chosen-results { - color: #444; - position: relative; - overflow-x: hidden; - overflow-y: auto; - margin: 0 4px 4px 0; - padding: 0 0 0 4px; - max-height: 240px; - -webkit-overflow-scrolling: touch; -} -.chosen-container .chosen-results li { - display: none; - margin: 0; - padding: 5px 6px; - list-style: none; - line-height: 15px; - word-wrap: break-word; - -webkit-touch-callout: none; -} -.chosen-container .chosen-results li.active-result { - display: list-item; - cursor: pointer; -} -.chosen-container .chosen-results li.disabled-result { - display: list-item; - color: #ccc; - cursor: default; -} -.chosen-container .chosen-results li.highlighted { - background-color: #3875d7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc)); - background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%); - background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%); - background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%); - background-image: linear-gradient(#3875d7 20%, #2a62bc 90%); - color: #fff; -} -.chosen-container .chosen-results li.no-results { - color: #777; - display: list-item; - background: #f4f4f4; -} -.chosen-container .chosen-results li.group-result { - display: list-item; - font-weight: bold; - cursor: default; -} -.chosen-container .chosen-results li.group-option { - padding-left: 15px; -} -.chosen-container .chosen-results li em { - font-style: normal; - text-decoration: underline; -} - -/* @end */ -/* @group Multi Chosen */ -.chosen-container-multi .chosen-choices { - position: relative; - overflow: hidden; - margin: 0; - padding: 0 5px; - width: 100%; - height: auto; - border: 1px solid #aaa; - background-color: #fff; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff)); - background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%); - background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%); - background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%); - background-image: linear-gradient(#eeeeee 1%, #ffffff 15%); - cursor: text; -} -.chosen-container-multi .chosen-choices li { - float: left; - list-style: none; -} -.chosen-container-multi .chosen-choices li.search-field { - margin: 0; - padding: 0; - white-space: nowrap; -} -.chosen-container-multi .chosen-choices li.search-field input[type="text"] { - margin: 1px 0; - padding: 0; - height: 25px; - outline: 0; - border: 0 !important; - background: transparent !important; - box-shadow: none; - color: #999; - font-size: 100%; - font-family: sans-serif; - line-height: normal; - border-radius: 0; -} -.chosen-container-multi .chosen-choices li.search-choice { - position: relative; - margin: 3px 5px 3px 0; - padding: 3px 20px 3px 5px; - border: 1px solid #aaa; - max-width: 100%; - border-radius: 3px; - background-color: #eeeeee; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); - background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-size: 100% 19px; - background-repeat: repeat-x; - background-clip: padding-box; - box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05); - color: #333; - line-height: 13px; - cursor: default; -} -.chosen-container-multi .chosen-choices li.search-choice span { - word-wrap: break-word; -} -.chosen-container-multi .chosen-choices li.search-choice .search-choice-close { - position: absolute; - top: 4px; - right: 3px; - display: block; - width: 12px; - height: 12px; - background: url('chosen-sprite.png') -42px 1px no-repeat; - font-size: 1px; -} -.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { - background-position: -42px -10px; -} -.chosen-container-multi .chosen-choices li.search-choice-disabled { - padding-right: 5px; - border: 1px solid #ccc; - background-color: #e4e4e4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); - background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); - color: #666; -} -.chosen-container-multi .chosen-choices li.search-choice-focus { - background: #d4d4d4; -} -.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { - background-position: -42px -10px; -} -.chosen-container-multi .chosen-results { - margin: 0; - padding: 0; -} -.chosen-container-multi .chosen-drop .result-selected { - display: list-item; - color: #ccc; - cursor: default; -} - -/* @end */ -/* @group Active */ -.chosen-container-active .chosen-single { - border: 1px solid #5897fb; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); -} -.chosen-container-active.chosen-with-drop .chosen-single { - border: 1px solid #aaa; - -moz-border-radius-bottomright: 0; - border-bottom-right-radius: 0; - -moz-border-radius-bottomleft: 0; - border-bottom-left-radius: 0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff)); - background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%); - background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%); - background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%); - background-image: linear-gradient(#eeeeee 20%, #ffffff 80%); - box-shadow: 0 1px 0 #fff inset; -} -.chosen-container-active.chosen-with-drop .chosen-single div { - border-left: none; - background: transparent; -} -.chosen-container-active.chosen-with-drop .chosen-single div b { - background-position: -18px 2px; -} -.chosen-container-active .chosen-choices { - border: 1px solid #5897fb; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); -} -.chosen-container-active .chosen-choices li.search-field input[type="text"] { - color: #222 !important; -} - -/* @end */ -/* @group Disabled Support */ -.chosen-disabled { - opacity: 0.5 !important; - cursor: default; -} -.chosen-disabled .chosen-single { - cursor: default; -} -.chosen-disabled .chosen-choices .search-choice .search-choice-close { - cursor: default; -} - -/* @end */ -/* @group Right to Left */ -.chosen-rtl { - text-align: right; -} -.chosen-rtl .chosen-single { - overflow: visible; - padding: 0 8px 0 0; -} -.chosen-rtl .chosen-single span { - margin-right: 0; - margin-left: 26px; - direction: rtl; -} -.chosen-rtl .chosen-single-with-deselect span { - margin-left: 38px; -} -.chosen-rtl .chosen-single div { - right: auto; - left: 3px; -} -.chosen-rtl .chosen-single abbr { - right: auto; - left: 26px; -} -.chosen-rtl .chosen-choices li { - float: right; -} -.chosen-rtl .chosen-choices li.search-field input[type="text"] { - direction: rtl; -} -.chosen-rtl .chosen-choices li.search-choice { - margin: 3px 5px 3px 0; - padding: 3px 5px 3px 19px; -} -.chosen-rtl .chosen-choices li.search-choice .search-choice-close { - right: auto; - left: 4px; -} -.chosen-rtl.chosen-container-single-nosearch .chosen-search, -.chosen-rtl .chosen-drop { - left: 9999px; -} -.chosen-rtl.chosen-container-single .chosen-results { - margin: 0 0 4px 4px; - padding: 0 4px 0 0; -} -.chosen-rtl .chosen-results li.group-option { - padding-right: 15px; - padding-left: 0; -} -.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { - border-right: none; -} -.chosen-rtl .chosen-search input[type="text"] { - padding: 4px 5px 4px 20px; - background: white url('chosen-sprite.png') no-repeat -30px -20px; - background: url('chosen-sprite.png') no-repeat -30px -20px; - direction: rtl; -} -.chosen-rtl.chosen-container-single .chosen-single div b { - background-position: 6px 2px; -} -.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { - background-position: -12px 2px; -} - -/* @end */ -/* @group Retina compatibility */ -@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) { - .chosen-rtl .chosen-search input[type="text"], - .chosen-container-single .chosen-single abbr, - .chosen-container-single .chosen-single div b, - .chosen-container-single .chosen-search input[type="text"], - .chosen-container-multi .chosen-choices .search-choice .search-choice-close, - .chosen-container .chosen-results-scroll-down span, - .chosen-container .chosen-results-scroll-up span { - background-image: url('chosen-sprite@2x.png') !important; - background-size: 52px 37px !important; - background-repeat: no-repeat !important; - } -} -/* @end */ - -/*Test comment*/ diff --git a/public/assets/out/chosen/chosen.jquery.js b/public/assets/out/chosen/chosen.jquery.js deleted file mode 100644 index 88e9cce9..00000000 --- a/public/assets/out/chosen/chosen.jquery.js +++ /dev/null @@ -1,1257 +0,0 @@ -(function() { - var $, AbstractChosen, Chosen, SelectParser, _ref, - __hasProp = {}.hasOwnProperty, - __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; - - SelectParser = (function() { - function SelectParser() { - this.options_index = 0; - this.parsed = []; - } - - SelectParser.prototype.add_node = function(child) { - if (child.nodeName.toUpperCase() === "OPTGROUP") { - return this.add_group(child); - } else { - return this.add_option(child); - } - }; - - SelectParser.prototype.add_group = function(group) { - var group_position, option, _i, _len, _ref, _results; - group_position = this.parsed.length; - this.parsed.push({ - array_index: group_position, - group: true, - label: this.escapeExpression(group.label), - title: group.title ? group.title : void 0, - children: 0, - disabled: group.disabled, - classes: group.className - }); - _ref = group.childNodes; - _results = []; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - option = _ref[_i]; - _results.push(this.add_option(option, group_position, group.disabled)); - } - return _results; - }; - - SelectParser.prototype.add_option = function(option, group_position, group_disabled) { - if (option.nodeName.toUpperCase() === "OPTION") { - if (option.text !== "") { - if (group_position != null) { - this.parsed[group_position].children += 1; - } - this.parsed.push({ - array_index: this.parsed.length, - options_index: this.options_index, - value: option.value, - text: option.text, - html: option.innerHTML, - title: option.title ? option.title : void 0, - selected: option.selected, - disabled: group_disabled === true ? group_disabled : option.disabled, - group_array_index: group_position, - group_label: group_position != null ? this.parsed[group_position].label : null, - classes: option.className, - style: option.style.cssText - }); - } else { - this.parsed.push({ - array_index: this.parsed.length, - options_index: this.options_index, - empty: true - }); - } - return this.options_index += 1; - } - }; - - SelectParser.prototype.escapeExpression = function(text) { - var map, unsafe_chars; - if ((text == null) || text === false) { - return ""; - } - if (!/[\&\<\>\"\'\`]/.test(text)) { - return text; - } - map = { - "<": "<", - ">": ">", - '"': """, - "'": "'", - "`": "`" - }; - unsafe_chars = /&(?!\w+;)|[\<\>\"\'\`]/g; - return text.replace(unsafe_chars, function(chr) { - return map[chr] || "&"; - }); - }; - - return SelectParser; - - })(); - - SelectParser.select_to_array = function(select) { - var child, parser, _i, _len, _ref; - parser = new SelectParser(); - _ref = select.childNodes; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - child = _ref[_i]; - parser.add_node(child); - } - return parser.parsed; - }; - - AbstractChosen = (function() { - function AbstractChosen(form_field, options) { - this.form_field = form_field; - this.options = options != null ? options : {}; - if (!AbstractChosen.browser_is_supported()) { - return; - } - this.is_multiple = this.form_field.multiple; - this.set_default_text(); - this.set_default_values(); - this.setup(); - this.set_up_html(); - this.register_observers(); - this.on_ready(); - } - - AbstractChosen.prototype.set_default_values = function() { - var _this = this; - this.click_test_action = function(evt) { - return _this.test_active_click(evt); - }; - this.activate_action = function(evt) { - return _this.activate_field(evt); - }; - this.active_field = false; - this.mouse_on_container = false; - this.results_showing = false; - this.result_highlighted = null; - this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false; - this.disable_search_threshold = this.options.disable_search_threshold || 0; - this.disable_search = this.options.disable_search || false; - this.enable_split_word_search = this.options.enable_split_word_search != null ? this.options.enable_split_word_search : true; - this.group_search = this.options.group_search != null ? this.options.group_search : true; - this.search_contains = this.options.search_contains || false; - this.single_backstroke_delete = this.options.single_backstroke_delete != null ? this.options.single_backstroke_delete : true; - this.max_selected_options = this.options.max_selected_options || Infinity; - this.inherit_select_classes = this.options.inherit_select_classes || false; - this.display_selected_options = this.options.display_selected_options != null ? this.options.display_selected_options : true; - this.display_disabled_options = this.options.display_disabled_options != null ? this.options.display_disabled_options : true; - this.include_group_label_in_selected = this.options.include_group_label_in_selected || false; - this.max_shown_results = this.options.max_shown_results || Number.POSITIVE_INFINITY; - return this.case_sensitive_search = this.options.case_sensitive_search || false; - }; - - AbstractChosen.prototype.set_default_text = function() { - if (this.form_field.getAttribute("data-placeholder")) { - this.default_text = this.form_field.getAttribute("data-placeholder"); - } else if (this.is_multiple) { - this.default_text = this.options.placeholder_text_multiple || this.options.placeholder_text || AbstractChosen.default_multiple_text; - } else { - this.default_text = this.options.placeholder_text_single || this.options.placeholder_text || AbstractChosen.default_single_text; - } - return this.results_none_found = this.form_field.getAttribute("data-no_results_text") || this.options.no_results_text || AbstractChosen.default_no_result_text; - }; - - AbstractChosen.prototype.choice_label = function(item) { - if (this.include_group_label_in_selected && (item.group_label != null)) { - return "" + item.group_label + "" + item.html; - } else { - return item.html; - } - }; - - AbstractChosen.prototype.mouse_enter = function() { - return this.mouse_on_container = true; - }; - - AbstractChosen.prototype.mouse_leave = function() { - return this.mouse_on_container = false; - }; - - AbstractChosen.prototype.input_focus = function(evt) { - var _this = this; - if (this.is_multiple) { - if (!this.active_field) { - return setTimeout((function() { - return _this.container_mousedown(); - }), 50); - } - } else { - if (!this.active_field) { - return this.activate_field(); - } - } - }; - - AbstractChosen.prototype.input_blur = function(evt) { - var _this = this; - if (!this.mouse_on_container) { - this.active_field = false; - return setTimeout((function() { - return _this.blur_test(); - }), 100); - } - }; - - AbstractChosen.prototype.results_option_build = function(options) { - var content, data, data_content, shown_results, _i, _len, _ref; - content = ''; - shown_results = 0; - _ref = this.results_data; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - data = _ref[_i]; - data_content = ''; - if (data.group) { - data_content = this.result_add_group(data); - } else { - data_content = this.result_add_option(data); - } - if (data_content !== '') { - shown_results++; - content += data_content; - } - if (options != null ? options.first : void 0) { - if (data.selected && this.is_multiple) { - this.choice_build(data); - } else if (data.selected && !this.is_multiple) { - this.single_set_selected_text(this.choice_label(data)); - } - } - if (shown_results >= this.max_shown_results) { - break; - } - } - return content; - }; - - AbstractChosen.prototype.result_add_option = function(option) { - var classes, option_el; - if (!option.search_match) { - return ''; - } - if (!this.include_option_in_results(option)) { - return ''; - } - classes = []; - if (!option.disabled && !(option.selected && this.is_multiple)) { - classes.push("active-result"); - } - if (option.disabled && !(option.selected && this.is_multiple)) { - classes.push("disabled-result"); - } - if (option.selected) { - classes.push("result-selected"); - } - if (option.group_array_index != null) { - classes.push("group-option"); - } - if (option.classes !== "") { - classes.push(option.classes); - } - option_el = document.createElement("li"); - option_el.className = classes.join(" "); - option_el.style.cssText = option.style; - option_el.setAttribute("data-option-array-index", option.array_index); - option_el.innerHTML = option.search_text; - if (option.title) { - option_el.title = option.title; - } - return this.outerHTML(option_el); - }; - - AbstractChosen.prototype.result_add_group = function(group) { - var classes, group_el; - if (!(group.search_match || group.group_match)) { - return ''; - } - if (!(group.active_options > 0)) { - return ''; - } - classes = []; - classes.push("group-result"); - if (group.classes) { - classes.push(group.classes); - } - group_el = document.createElement("li"); - group_el.className = classes.join(" "); - group_el.innerHTML = group.search_text; - if (group.title) { - group_el.title = group.title; - } - return this.outerHTML(group_el); - }; - - AbstractChosen.prototype.results_update_field = function() { - this.set_default_text(); - if (!this.is_multiple) { - this.results_reset_cleanup(); - } - this.result_clear_highlight(); - this.results_build(); - if (this.results_showing) { - return this.winnow_results(); - } - }; - - AbstractChosen.prototype.reset_single_select_options = function() { - var result, _i, _len, _ref, _results; - _ref = this.results_data; - _results = []; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - result = _ref[_i]; - if (result.selected) { - _results.push(result.selected = false); - } else { - _results.push(void 0); - } - } - return _results; - }; - - AbstractChosen.prototype.results_toggle = function() { - if (this.results_showing) { - return this.results_hide(); - } else { - return this.results_show(); - } - }; - - AbstractChosen.prototype.results_search = function(evt) { - if (this.results_showing) { - return this.winnow_results(); - } else { - return this.results_show(); - } - }; - - AbstractChosen.prototype.winnow_results = function() { - var escapedSearchText, option, regex, results, results_group, searchText, startpos, text, zregex, _i, _len, _ref; - this.no_results_clear(); - results = 0; - searchText = this.get_search_text(); - escapedSearchText = searchText.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); - zregex = new RegExp(escapedSearchText, 'i'); - regex = this.get_search_regex(escapedSearchText); - _ref = this.results_data; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - option = _ref[_i]; - option.search_match = false; - results_group = null; - if (this.include_option_in_results(option)) { - if (option.group) { - option.group_match = false; - option.active_options = 0; - } - if ((option.group_array_index != null) && this.results_data[option.group_array_index]) { - results_group = this.results_data[option.group_array_index]; - if (results_group.active_options === 0 && results_group.search_match) { - results += 1; - } - results_group.active_options += 1; - } - option.search_text = option.group ? option.label : option.html; - if (!(option.group && !this.group_search)) { - option.search_match = this.search_string_match(option.search_text, regex); - if (option.search_match && !option.group) { - results += 1; - } - if (option.search_match) { - if (searchText.length) { - startpos = option.search_text.search(zregex); - text = option.search_text.substr(0, startpos + searchText.length) + '' + option.search_text.substr(startpos + searchText.length); - option.search_text = text.substr(0, startpos) + '' + text.substr(startpos); - } - if (results_group != null) { - results_group.group_match = true; - } - } else if ((option.group_array_index != null) && this.results_data[option.group_array_index].search_match) { - option.search_match = true; - } - } - } - } - this.result_clear_highlight(); - if (results < 1 && searchText.length) { - this.update_results_content(""); - return this.no_results(searchText); - } else { - this.update_results_content(this.results_option_build()); - return this.winnow_results_set_highlight(); - } - }; - - AbstractChosen.prototype.get_search_regex = function(escaped_search_string) { - var regex_anchor, regex_flag; - regex_anchor = this.search_contains ? "" : "^"; - regex_flag = this.case_sensitive_search ? "" : "i"; - return new RegExp(regex_anchor + escaped_search_string, regex_flag); - }; - - AbstractChosen.prototype.search_string_match = function(search_string, regex) { - var part, parts, _i, _len; - if (regex.test(search_string)) { - return true; - } else if (this.enable_split_word_search && (search_string.indexOf(" ") >= 0 || search_string.indexOf("[") === 0)) { - parts = search_string.replace(/\[|\]/g, "").split(" "); - if (parts.length) { - for (_i = 0, _len = parts.length; _i < _len; _i++) { - part = parts[_i]; - if (regex.test(part)) { - return true; - } - } - } - } - }; - - AbstractChosen.prototype.choices_count = function() { - var option, _i, _len, _ref; - if (this.selected_option_count != null) { - return this.selected_option_count; - } - this.selected_option_count = 0; - _ref = this.form_field.options; - for (_i = 0, _len = _ref.length; _i < _len; _i++) { - option = _ref[_i]; - if (option.selected) { - this.selected_option_count += 1; - } - } - return this.selected_option_count; - }; - - AbstractChosen.prototype.choices_click = function(evt) { - evt.preventDefault(); - if (!(this.results_showing || this.is_disabled)) { - return this.results_show(); - } - }; - - AbstractChosen.prototype.keyup_checker = function(evt) { - var stroke, _ref; - stroke = (_ref = evt.which) != null ? _ref : evt.keyCode; - this.search_field_scale(); - switch (stroke) { - case 8: - if (this.is_multiple && this.backstroke_length < 1 && this.choices_count() > 0) { - return this.keydown_backstroke(); - } else if (!this.pending_backstroke) { - this.result_clear_highlight(); - return this.results_search(); - } - break; - case 13: - evt.preventDefault(); - if (this.results_showing) { - return this.result_select(evt); - } - break; - case 27: - if (this.results_showing) { - this.results_hide(); - } - return true; - case 9: - case 38: - case 40: - case 16: - case 91: - case 17: - case 18: - break; - default: - return this.results_search(); - } - }; - - AbstractChosen.prototype.clipboard_event_checker = function(evt) { - var _this = this; - return setTimeout((function() { - return _this.results_search(); - }), 50); - }; - - AbstractChosen.prototype.container_width = function() { - if (this.options.width != null) { - return this.options.width; - } else { - return "" + this.form_field.offsetWidth + "px"; - } - }; - - AbstractChosen.prototype.include_option_in_results = function(option) { - if (this.is_multiple && (!this.display_selected_options && option.selected)) { - return false; - } - if (!this.display_disabled_options && option.disabled) { - return false; - } - if (option.empty) { - return false; - } - return true; - }; - - AbstractChosen.prototype.search_results_touchstart = function(evt) { - this.touch_started = true; - return this.search_results_mouseover(evt); - }; - - AbstractChosen.prototype.search_results_touchmove = function(evt) { - this.touch_started = false; - return this.search_results_mouseout(evt); - }; - - AbstractChosen.prototype.search_results_touchend = function(evt) { - if (this.touch_started) { - return this.search_results_mouseup(evt); - } - }; - - AbstractChosen.prototype.outerHTML = function(element) { - var tmp; - if (element.outerHTML) { - return element.outerHTML; - } - tmp = document.createElement("div"); - tmp.appendChild(element); - return tmp.innerHTML; - }; - - AbstractChosen.browser_is_supported = function() { - if ("Microsoft Internet Explorer" === window.navigator.appName) { - return document.documentMode >= 8; - } - if (/iP(od|hone)/i.test(window.navigator.userAgent) || /IEMobile/i.test(window.navigator.userAgent) || /Windows Phone/i.test(window.navigator.userAgent) || /BlackBerry/i.test(window.navigator.userAgent) || /BB10/i.test(window.navigator.userAgent) || /Android.*Mobile/i.test(window.navigator.userAgent)) { - return false; - } - return true; - }; - - AbstractChosen.default_multiple_text = "Select Some Options"; - - AbstractChosen.default_single_text = "Select an Option"; - - AbstractChosen.default_no_result_text = "No results match"; - - return AbstractChosen; - - })(); - - $ = jQuery; - - $.fn.extend({ - chosen: function(options) { - if (!AbstractChosen.browser_is_supported()) { - return this; - } - return this.each(function(input_field) { - var $this, chosen; - $this = $(this); - chosen = $this.data('chosen'); - if (options === 'destroy') { - if (chosen instanceof Chosen) { - chosen.destroy(); - } - return; - } - if (!(chosen instanceof Chosen)) { - $this.data('chosen', new Chosen(this, options)); - } - }); - } - }); - - Chosen = (function(_super) { - __extends(Chosen, _super); - - function Chosen() { - _ref = Chosen.__super__.constructor.apply(this, arguments); - return _ref; - } - - Chosen.prototype.setup = function() { - this.form_field_jq = $(this.form_field); - this.current_selectedIndex = this.form_field.selectedIndex; - return this.is_rtl = this.form_field_jq.hasClass("chosen-rtl"); - }; - - Chosen.prototype.set_up_html = function() { - var container_classes, container_props; - container_classes = ["chosen-container"]; - container_classes.push("chosen-container-" + (this.is_multiple ? "multi" : "single")); - if (this.inherit_select_classes && this.form_field.className) { - container_classes.push(this.form_field.className); - } - if (this.is_rtl) { - container_classes.push("chosen-rtl"); - } - container_props = { - 'class': container_classes.join(' '), - 'style': "width: " + (this.container_width()) + ";", - 'title': this.form_field.title - }; - if (this.form_field.id.length) { - container_props.id = this.form_field.id.replace(/[^\w]/g, '_') + "_chosen"; - } - this.container = $("
", container_props); - if (this.is_multiple) { - this.container.html('
    '); - } else { - this.container.html('' + this.default_text + '
      '); - } - this.form_field_jq.hide().after(this.container); - this.dropdown = this.container.find('div.chosen-drop').first(); - this.search_field = this.container.find('input').first(); - this.search_results = this.container.find('ul.chosen-results').first(); - this.search_field_scale(); - this.search_no_results = this.container.find('li.no-results').first(); - if (this.is_multiple) { - this.search_choices = this.container.find('ul.chosen-choices').first(); - this.search_container = this.container.find('li.search-field').first(); - } else { - this.search_container = this.container.find('div.chosen-search').first(); - this.selected_item = this.container.find('.chosen-single').first(); - } - this.results_build(); - this.set_tab_index(); - return this.set_label_behavior(); - }; - - Chosen.prototype.on_ready = function() { - return this.form_field_jq.trigger("chosen:ready", { - chosen: this - }); - }; - - Chosen.prototype.register_observers = function() { - var _this = this; - this.container.bind('touchstart.chosen', function(evt) { - _this.container_mousedown(evt); - return evt.preventDefault(); - }); - this.container.bind('touchend.chosen', function(evt) { - _this.container_mouseup(evt); - return evt.preventDefault(); - }); - this.container.bind('mousedown.chosen', function(evt) { - _this.container_mousedown(evt); - }); - this.container.bind('mouseup.chosen', function(evt) { - _this.container_mouseup(evt); - }); - this.container.bind('mouseenter.chosen', function(evt) { - _this.mouse_enter(evt); - }); - this.container.bind('mouseleave.chosen', function(evt) { - _this.mouse_leave(evt); - }); - this.search_results.bind('mouseup.chosen', function(evt) { - _this.search_results_mouseup(evt); - }); - this.search_results.bind('mouseover.chosen', function(evt) { - _this.search_results_mouseover(evt); - }); - this.search_results.bind('mouseout.chosen', function(evt) { - _this.search_results_mouseout(evt); - }); - this.search_results.bind('mousewheel.chosen DOMMouseScroll.chosen', function(evt) { - _this.search_results_mousewheel(evt); - }); - this.search_results.bind('touchstart.chosen', function(evt) { - _this.search_results_touchstart(evt); - }); - this.search_results.bind('touchmove.chosen', function(evt) { - _this.search_results_touchmove(evt); - }); - this.search_results.bind('touchend.chosen', function(evt) { - _this.search_results_touchend(evt); - }); - this.form_field_jq.bind("chosen:updated.chosen", function(evt) { - _this.results_update_field(evt); - }); - this.form_field_jq.bind("chosen:activate.chosen", function(evt) { - _this.activate_field(evt); - }); - this.form_field_jq.bind("chosen:open.chosen", function(evt) { - _this.container_mousedown(evt); - }); - this.form_field_jq.bind("chosen:close.chosen", function(evt) { - _this.input_blur(evt); - }); - this.search_field.bind('blur.chosen', function(evt) { - _this.input_blur(evt); - }); - this.search_field.bind('keyup.chosen', function(evt) { - _this.keyup_checker(evt); - }); - this.search_field.bind('keydown.chosen', function(evt) { - _this.keydown_checker(evt); - }); - this.search_field.bind('focus.chosen', function(evt) { - _this.input_focus(evt); - }); - this.search_field.bind('cut.chosen', function(evt) { - _this.clipboard_event_checker(evt); - }); - this.search_field.bind('paste.chosen', function(evt) { - _this.clipboard_event_checker(evt); - }); - if (this.is_multiple) { - return this.search_choices.bind('click.chosen', function(evt) { - _this.choices_click(evt); - }); - } else { - return this.container.bind('click.chosen', function(evt) { - evt.preventDefault(); - }); - } - }; - - Chosen.prototype.destroy = function() { - $(this.container[0].ownerDocument).unbind("click.chosen", this.click_test_action); - if (this.search_field[0].tabIndex) { - this.form_field_jq[0].tabIndex = this.search_field[0].tabIndex; - } - this.container.remove(); - this.form_field_jq.removeData('chosen'); - return this.form_field_jq.show(); - }; - - Chosen.prototype.search_field_disabled = function() { - this.is_disabled = this.form_field_jq[0].disabled; - if (this.is_disabled) { - this.container.addClass('chosen-disabled'); - this.search_field[0].disabled = true; - if (!this.is_multiple) { - this.selected_item.unbind("focus.chosen", this.activate_action); - } - return this.close_field(); - } else { - this.container.removeClass('chosen-disabled'); - this.search_field[0].disabled = false; - if (!this.is_multiple) { - return this.selected_item.bind("focus.chosen", this.activate_action); - } - } - }; - - Chosen.prototype.container_mousedown = function(evt) { - if (!this.is_disabled) { - if (evt && evt.type === "mousedown" && !this.results_showing) { - evt.preventDefault(); - } - if (!((evt != null) && ($(evt.target)).hasClass("search-choice-close"))) { - if (!this.active_field) { - if (this.is_multiple) { - this.search_field.val(""); - } - $(this.container[0].ownerDocument).bind('click.chosen', this.click_test_action); - this.results_show(); - } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents("a.chosen-single").length)) { - evt.preventDefault(); - this.results_toggle(); - } - return this.activate_field(); - } - } - }; - - Chosen.prototype.container_mouseup = function(evt) { - if (evt.target.nodeName === "ABBR" && !this.is_disabled) { - return this.results_reset(evt); - } - }; - - Chosen.prototype.search_results_mousewheel = function(evt) { - var delta; - if (evt.originalEvent) { - delta = evt.originalEvent.deltaY || -evt.originalEvent.wheelDelta || evt.originalEvent.detail; - } - if (delta != null) { - evt.preventDefault(); - if (evt.type === 'DOMMouseScroll') { - delta = delta * 40; - } - return this.search_results.scrollTop(delta + this.search_results.scrollTop()); - } - }; - - Chosen.prototype.blur_test = function(evt) { - if (!this.active_field && this.container.hasClass("chosen-container-active")) { - return this.close_field(); - } - }; - - Chosen.prototype.close_field = function() { - $(this.container[0].ownerDocument).unbind("click.chosen", this.click_test_action); - this.active_field = false; - this.results_hide(); - this.container.removeClass("chosen-container-active"); - this.clear_backstroke(); - this.show_search_field_default(); - return this.search_field_scale(); - }; - - Chosen.prototype.activate_field = function() { - this.container.addClass("chosen-container-active"); - this.active_field = true; - this.search_field.val(this.search_field.val()); - return this.search_field.focus(); - }; - - Chosen.prototype.test_active_click = function(evt) { - var active_container; - active_container = $(evt.target).closest('.chosen-container'); - if (active_container.length && this.container[0] === active_container[0]) { - return this.active_field = true; - } else { - return this.close_field(); - } - }; - - Chosen.prototype.results_build = function() { - this.parsing = true; - this.selected_option_count = null; - this.results_data = SelectParser.select_to_array(this.form_field); - if (this.is_multiple) { - this.search_choices.find("li.search-choice").remove(); - } else if (!this.is_multiple) { - this.single_set_selected_text(); - if (this.disable_search || this.form_field.options.length <= this.disable_search_threshold) { - this.search_field[0].readOnly = true; - this.container.addClass("chosen-container-single-nosearch"); - } else { - this.search_field[0].readOnly = false; - this.container.removeClass("chosen-container-single-nosearch"); - } - } - this.update_results_content(this.results_option_build({ - first: true - })); - this.search_field_disabled(); - this.show_search_field_default(); - this.search_field_scale(); - return this.parsing = false; - }; - - Chosen.prototype.result_do_highlight = function(el) { - var high_bottom, high_top, maxHeight, visible_bottom, visible_top; - if (el.length) { - this.result_clear_highlight(); - this.result_highlight = el; - this.result_highlight.addClass("highlighted"); - maxHeight = parseInt(this.search_results.css("maxHeight"), 10); - visible_top = this.search_results.scrollTop(); - visible_bottom = maxHeight + visible_top; - high_top = this.result_highlight.position().top + this.search_results.scrollTop(); - high_bottom = high_top + this.result_highlight.outerHeight(); - if (high_bottom >= visible_bottom) { - return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0); - } else if (high_top < visible_top) { - return this.search_results.scrollTop(high_top); - } - } - }; - - Chosen.prototype.result_clear_highlight = function() { - if (this.result_highlight) { - this.result_highlight.removeClass("highlighted"); - } - return this.result_highlight = null; - }; - - Chosen.prototype.results_show = function() { - if (this.is_multiple && this.max_selected_options <= this.choices_count()) { - this.form_field_jq.trigger("chosen:maxselected", { - chosen: this - }); - return false; - } - this.container.addClass("chosen-with-drop"); - this.results_showing = true; - this.search_field.focus(); - this.search_field.val(this.search_field.val()); - this.winnow_results(); - return this.form_field_jq.trigger("chosen:showing_dropdown", { - chosen: this - }); - }; - - Chosen.prototype.update_results_content = function(content) { - return this.search_results.html(content); - }; - - Chosen.prototype.results_hide = function() { - if (this.results_showing) { - this.result_clear_highlight(); - this.container.removeClass("chosen-with-drop"); - this.form_field_jq.trigger("chosen:hiding_dropdown", { - chosen: this - }); - } - return this.results_showing = false; - }; - - Chosen.prototype.set_tab_index = function(el) { - var ti; - if (this.form_field.tabIndex) { - ti = this.form_field.tabIndex; - this.form_field.tabIndex = -1; - return this.search_field[0].tabIndex = ti; - } - }; - - Chosen.prototype.set_label_behavior = function() { - var _this = this; - this.form_field_label = this.form_field_jq.parents("label"); - if (!this.form_field_label.length && this.form_field.id.length) { - this.form_field_label = $("label[for='" + this.form_field.id + "']"); - } - if (this.form_field_label.length > 0) { - return this.form_field_label.bind('click.chosen', function(evt) { - if (_this.is_multiple) { - return _this.container_mousedown(evt); - } else { - return _this.activate_field(); - } - }); - } - }; - - Chosen.prototype.show_search_field_default = function() { - if (this.is_multiple && this.choices_count() < 1 && !this.active_field) { - this.search_field.val(this.default_text); - return this.search_field.addClass("default"); - } else { - this.search_field.val(""); - return this.search_field.removeClass("default"); - } - }; - - Chosen.prototype.search_results_mouseup = function(evt) { - var target; - target = $(evt.target).hasClass("active-result") ? $(evt.target) : $(evt.target).parents(".active-result").first(); - if (target.length) { - this.result_highlight = target; - this.result_select(evt); - return this.search_field.focus(); - } - }; - - Chosen.prototype.search_results_mouseover = function(evt) { - var target; - target = $(evt.target).hasClass("active-result") ? $(evt.target) : $(evt.target).parents(".active-result").first(); - if (target) { - return this.result_do_highlight(target); - } - }; - - Chosen.prototype.search_results_mouseout = function(evt) { - if ($(evt.target).hasClass("active-result" || $(evt.target).parents('.active-result').first())) { - return this.result_clear_highlight(); - } - }; - - Chosen.prototype.choice_build = function(item) { - var choice, close_link, - _this = this; - choice = $('
    • ', { - "class": "search-choice" - }).html("" + (this.choice_label(item)) + ""); - if (item.disabled) { - choice.addClass('search-choice-disabled'); - } else { - close_link = $('', { - "class": 'search-choice-close', - 'data-option-array-index': item.array_index - }); - close_link.bind('click.chosen', function(evt) { - return _this.choice_destroy_link_click(evt); - }); - choice.append(close_link); - } - return this.search_container.before(choice); - }; - - Chosen.prototype.choice_destroy_link_click = function(evt) { - evt.preventDefault(); - evt.stopPropagation(); - if (!this.is_disabled) { - return this.choice_destroy($(evt.target)); - } - }; - - Chosen.prototype.choice_destroy = function(link) { - if (this.result_deselect(link[0].getAttribute("data-option-array-index"))) { - this.show_search_field_default(); - if (this.is_multiple && this.choices_count() > 0 && this.search_field.val().length < 1) { - this.results_hide(); - } - link.parents('li').first().remove(); - return this.search_field_scale(); - } - }; - - Chosen.prototype.results_reset = function() { - this.reset_single_select_options(); - this.form_field.options[0].selected = true; - this.single_set_selected_text(); - this.show_search_field_default(); - this.results_reset_cleanup(); - this.form_field_jq.trigger("change"); - if (this.active_field) { - return this.results_hide(); - } - }; - - Chosen.prototype.results_reset_cleanup = function() { - this.current_selectedIndex = this.form_field.selectedIndex; - return this.selected_item.find("abbr").remove(); - }; - - Chosen.prototype.result_select = function(evt) { - var high, item; - if (this.result_highlight) { - high = this.result_highlight; - this.result_clear_highlight(); - if (this.is_multiple && this.max_selected_options <= this.choices_count()) { - this.form_field_jq.trigger("chosen:maxselected", { - chosen: this - }); - return false; - } - if (this.is_multiple) { - high.removeClass("active-result"); - } else { - this.reset_single_select_options(); - } - high.addClass("result-selected"); - item = this.results_data[high[0].getAttribute("data-option-array-index")]; - item.selected = true; - this.form_field.options[item.options_index].selected = true; - this.selected_option_count = null; - if (this.is_multiple) { - this.choice_build(item); - } else { - this.single_set_selected_text(this.choice_label(item)); - } - if (!((evt.metaKey || evt.ctrlKey) && this.is_multiple)) { - this.results_hide(); - } - this.show_search_field_default(); - if (this.is_multiple || this.form_field.selectedIndex !== this.current_selectedIndex) { - this.form_field_jq.trigger("change", { - 'selected': this.form_field.options[item.options_index].value - }); - } - this.current_selectedIndex = this.form_field.selectedIndex; - evt.preventDefault(); - return this.search_field_scale(); - } - }; - - Chosen.prototype.single_set_selected_text = function(text) { - if (text == null) { - text = this.default_text; - } - if (text === this.default_text) { - this.selected_item.addClass("chosen-default"); - } else { - this.single_deselect_control_build(); - this.selected_item.removeClass("chosen-default"); - } - return this.selected_item.find("span").html(text); - }; - - Chosen.prototype.result_deselect = function(pos) { - var result_data; - result_data = this.results_data[pos]; - if (!this.form_field.options[result_data.options_index].disabled) { - result_data.selected = false; - this.form_field.options[result_data.options_index].selected = false; - this.selected_option_count = null; - this.result_clear_highlight(); - if (this.results_showing) { - this.winnow_results(); - } - this.form_field_jq.trigger("change", { - deselected: this.form_field.options[result_data.options_index].value - }); - this.search_field_scale(); - return true; - } else { - return false; - } - }; - - Chosen.prototype.single_deselect_control_build = function() { - if (!this.allow_single_deselect) { - return; - } - if (!this.selected_item.find("abbr").length) { - this.selected_item.find("span").first().after(""); - } - return this.selected_item.addClass("chosen-single-with-deselect"); - }; - - Chosen.prototype.get_search_text = function() { - return $('
      ').text($.trim(this.search_field.val())).html(); - }; - - Chosen.prototype.winnow_results_set_highlight = function() { - var do_high, selected_results; - selected_results = !this.is_multiple ? this.search_results.find(".result-selected.active-result") : []; - do_high = selected_results.length ? selected_results.first() : this.search_results.find(".active-result").first(); - if (do_high != null) { - return this.result_do_highlight(do_high); - } - }; - - Chosen.prototype.no_results = function(terms) { - var no_results_html; - no_results_html = $('
    • ' + this.results_none_found + ' ""
    • '); - no_results_html.find("span").first().html(terms); - this.search_results.append(no_results_html); - return this.form_field_jq.trigger("chosen:no_results", { - chosen: this - }); - }; - - Chosen.prototype.no_results_clear = function() { - return this.search_results.find(".no-results").remove(); - }; - - Chosen.prototype.keydown_arrow = function() { - var next_sib; - if (this.results_showing && this.result_highlight) { - next_sib = this.result_highlight.nextAll("li.active-result").first(); - if (next_sib) { - return this.result_do_highlight(next_sib); - } - } else { - return this.results_show(); - } - }; - - Chosen.prototype.keyup_arrow = function() { - var prev_sibs; - if (!this.results_showing && !this.is_multiple) { - return this.results_show(); - } else if (this.result_highlight) { - prev_sibs = this.result_highlight.prevAll("li.active-result"); - if (prev_sibs.length) { - return this.result_do_highlight(prev_sibs.first()); - } else { - if (this.choices_count() > 0) { - this.results_hide(); - } - return this.result_clear_highlight(); - } - } - }; - - Chosen.prototype.keydown_backstroke = function() { - var next_available_destroy; - if (this.pending_backstroke) { - this.choice_destroy(this.pending_backstroke.find("a").first()); - return this.clear_backstroke(); - } else { - next_available_destroy = this.search_container.siblings("li.search-choice").last(); - if (next_available_destroy.length && !next_available_destroy.hasClass("search-choice-disabled")) { - this.pending_backstroke = next_available_destroy; - if (this.single_backstroke_delete) { - return this.keydown_backstroke(); - } else { - return this.pending_backstroke.addClass("search-choice-focus"); - } - } - } - }; - - Chosen.prototype.clear_backstroke = function() { - if (this.pending_backstroke) { - this.pending_backstroke.removeClass("search-choice-focus"); - } - return this.pending_backstroke = null; - }; - - Chosen.prototype.keydown_checker = function(evt) { - var stroke, _ref1; - stroke = (_ref1 = evt.which) != null ? _ref1 : evt.keyCode; - this.search_field_scale(); - if (stroke !== 8 && this.pending_backstroke) { - this.clear_backstroke(); - } - switch (stroke) { - case 8: - this.backstroke_length = this.search_field.val().length; - break; - case 9: - if (this.results_showing && !this.is_multiple) { - this.result_select(evt); - } - this.mouse_on_container = false; - break; - case 13: - if (this.results_showing) { - evt.preventDefault(); - } - break; - case 32: - if (this.disable_search) { - evt.preventDefault(); - } - break; - case 38: - evt.preventDefault(); - this.keyup_arrow(); - break; - case 40: - evt.preventDefault(); - this.keydown_arrow(); - break; - } - }; - - Chosen.prototype.search_field_scale = function() { - var div, f_width, h, style, style_block, styles, w, _i, _len; - if (this.is_multiple) { - h = 0; - w = 0; - style_block = "position:absolute; left: -1000px; top: -1000px; display:none;"; - styles = ['font-size', 'font-style', 'font-weight', 'font-family', 'line-height', 'text-transform', 'letter-spacing']; - for (_i = 0, _len = styles.length; _i < _len; _i++) { - style = styles[_i]; - style_block += style + ":" + this.search_field.css(style) + ";"; - } - div = $('
      ', { - 'style': style_block - }); - div.text(this.search_field.val()); - $('body').append(div); - w = div.width() + 25; - div.remove(); - f_width = this.container.outerWidth(); - if (w > f_width - 10) { - w = f_width - 10; - } - return this.search_field.css({ - 'width': w + 'px' - }); - } - }; - - return Chosen; - - })(AbstractChosen); - -}).call(this); diff --git a/public/assets/out/circles/circles.js b/public/assets/out/circles/circles.js deleted file mode 100644 index dbf27f47..00000000 --- a/public/assets/out/circles/circles.js +++ /dev/null @@ -1,357 +0,0 @@ -// circles -// copyright Artan Sinani -// https://github.com/lugolabs/circles - -/* - Lightwheight JavaScript library that generates circular graphs in SVG. - - Call Circles.create(options) with the following options: - - id - the DOM element that will hold the graph - radius - the radius of the circles - width - the width of the ring (optional, has value 10, if not specified) - value - init value of the circle (optional, defaults to 0) - maxValue - maximum value of the circle (optional, defaults to 100) - text - the text to display at the centre of the graph (optional, the current "htmlified" value will be shown if not specified) - if `null` or an empty string, no text will be displayed - can also be a function: the returned value will be the displayed text - ex1. function(currentValue) { - return '$'+currentValue; - } - ex2. function() { - return this.getPercent() + '%'; - } - colors - an array of colors, with the first item coloring the full circle - (optional, it will be `['#EEE', '#F00']` if not specified) - duration - value in ms of animation duration; (optional, defaults to 500); - if 0 or `null` is passed, the animation will not run - wrpClass - class name to apply on the generated element wrapping the whole circle. - textClass: - class name to apply on the generated element wrapping the text content. - - API: - updateRadius(radius) - regenerates the circle with the given radius (see spec/responsive.html for an example hot to create a responsive circle) - updateWidth(width) - regenerates the circle with the given stroke width - updateColors(colors) - change colors used to draw the circle - update(value, duration) - update value of circle. If value is set to true, force the update of displaying - getPercent() - returns the percentage value of the circle, based on its current value and its max value - getValue() - returns the value of the circle - getMaxValue() - returns the max value of the circle - getValueFromPercent(percentage) - returns the corresponding value of the circle based on its max value and given percentage - htmlifyNumber(number, integerPartClass, decimalPartClass) - returned HTML representation of given number with given classes names applied on tags - -*/ - -(function(root, factory) { - if(typeof exports === 'object') { - module.exports = factory(); - } - else if(typeof define === 'function' && define.amd) { - define([], factory); - } - else { - root.Circles = factory(); - } - - -}(this, function() { - - "use strict"; - - var requestAnimFrame = window.requestAnimationFrame || - window.webkitRequestAnimationFrame || - window.mozRequestAnimationFrame || - window.oRequestAnimationFrame || - window.msRequestAnimationFrame || - function (callback) { - setTimeout(callback, 1000 / 60); - }, - - Circles = function(options) { - var elId = options.id; - this._el = document.getElementById(elId); - - if (this._el === null) return; - - this._radius = options.radius || 10; - this._duration = options.duration === undefined ? 500 : options.duration; - - this._value = 0; - this._maxValue = options.maxValue || 100; - - this._text = options.text === undefined ? function(value){return this.htmlifyNumber(value);} : options.text; - this._strokeWidth = options.width || 10; - this._colors = options.colors || ['#EEE', '#F00']; - this._svg = null; - this._movingPath = null; - this._wrapContainer = null; - this._textContainer = null; - - this._wrpClass = options.wrpClass || 'circles-wrp'; - this._textClass = options.textClass || 'circles-text'; - - this._valClass = options.valueStrokeClass || 'circles-valueStroke'; - this._maxValClass = options.maxValueStrokeClass || 'circles-maxValueStroke'; - - this._styleWrapper = options.styleWrapper === false ? false : true; - this._styleText = options.styleText === false ? false : true; - - var endAngleRad = Math.PI / 180 * 270; - this._start = -Math.PI / 180 * 90; - this._startPrecise = this._precise(this._start); - this._circ = endAngleRad - this._start; - - this._generate().update(options.value || 0); - }; - - Circles.prototype = { - VERSION: '0.0.6', - - _generate: function() { - - this._svgSize = this._radius * 2; - this._radiusAdjusted = this._radius - (this._strokeWidth / 2); - - this._generateSvg()._generateText()._generateWrapper(); - - this._el.innerHTML = ''; - this._el.appendChild(this._wrapContainer); - - return this; - }, - - _setPercentage: function(percentage) { - this._movingPath.setAttribute('d', this._calculatePath(percentage, true)); - this._textContainer.innerHTML = this._getText(this.getValueFromPercent(percentage)); - }, - - _generateWrapper: function() { - this._wrapContainer = document.createElement('div'); - this._wrapContainer.className = this._wrpClass; - - if (this._styleWrapper) { - this._wrapContainer.style.position = 'relative'; - this._wrapContainer.style.display = 'inline-block'; - } - - this._wrapContainer.appendChild(this._svg); - this._wrapContainer.appendChild(this._textContainer); - - return this; - }, - - _generateText: function() { - - this._textContainer = document.createElement('div'); - this._textContainer.className = this._textClass; - - if (this._styleText) { - var style = { - position: 'absolute', - top: 0, - left: 0, - textAlign: 'center', - width: '100%', - fontSize: (this._radius * .7) + 'px', - height: this._svgSize + 'px', - lineHeight: this._svgSize + 'px' - }; - - for(var prop in style) { - this._textContainer.style[prop] = style[prop]; - } - } - - this._textContainer.innerHTML = this._getText(0); - return this; - }, - - _getText: function(value) { - if (!this._text) return ''; - - if (value === undefined) value = this._value; - - value = parseFloat(value.toFixed(2)); - - return typeof this._text === 'function' ? this._text.call(this, value) : this._text; - }, - - _generateSvg: function() { - - this._svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); - this._svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg'); - this._svg.setAttribute('width', this._svgSize); - this._svg.setAttribute('height', this._svgSize); - - this._generatePath(100, false, this._colors[0], this._maxValClass)._generatePath(1, true, this._colors[1], this._valClass); - - this._movingPath = this._svg.getElementsByTagName('path')[1]; - - return this; - }, - - _generatePath: function(percentage, open, color, pathClass) { - var path = document.createElementNS('http://www.w3.org/2000/svg', 'path'); - path.setAttribute('fill', 'transparent'); - path.setAttribute('stroke', color); - path.setAttribute('stroke-width', this._strokeWidth); - path.setAttribute('d', this._calculatePath(percentage, open)); - path.setAttribute('class', pathClass); - - this._svg.appendChild(path); - - return this; - }, - - _calculatePath: function(percentage, open) { - var end = this._start + ((percentage / 100) * this._circ), - endPrecise = this._precise(end); - return this._arc(endPrecise, open); - }, - - _arc: function(end, open) { - var endAdjusted = end - 0.001, - longArc = end - this._startPrecise < Math.PI ? 0 : 1; - - return [ - 'M', - this._radius + this._radiusAdjusted * Math.cos(this._startPrecise), - this._radius + this._radiusAdjusted * Math.sin(this._startPrecise), - 'A', // arcTo - this._radiusAdjusted, // x radius - this._radiusAdjusted, // y radius - 0, // slanting - longArc, // long or short arc - 1, // clockwise - this._radius + this._radiusAdjusted * Math.cos(endAdjusted), - this._radius + this._radiusAdjusted * Math.sin(endAdjusted), - open ? '' : 'Z' // close - ].join(' '); - }, - - _precise: function(value) { - return Math.round(value * 1000) / 1000; - }, - - /*== Public methods ==*/ - - htmlifyNumber: function(number, integerPartClass, decimalPartClass) { - - integerPartClass = integerPartClass || 'circles-integer'; - decimalPartClass = decimalPartClass || 'circles-decimals'; - - var parts = (number + '').split('.'), - html = '' + parts[0]+''; - - if (parts.length > 1) { - html += '.' + parts[1].substring(0, 2) + ''; - } - return html; - }, - - updateRadius: function(radius) { - this._radius = radius; - - return this._generate().update(true); - }, - - updateWidth: function(width) { - this._strokeWidth = width; - - return this._generate().update(true); - }, - - updateColors: function(colors) { - this._colors = colors; - - var paths = this._svg.getElementsByTagName('path'); - - paths[0].setAttribute('stroke', colors[0]); - paths[1].setAttribute('stroke', colors[1]); - - return this; - }, - - getPercent: function() { - return (this._value * 100) / this._maxValue; - }, - - getValueFromPercent: function(percentage) { - return (this._maxValue * percentage) / 100; - }, - - getValue: function() - { - return this._value; - }, - - getMaxValue: function() - { - return this._maxValue; - }, - - update: function(value, duration) { - if (value === true) {//Force update with current value - this._setPercentage(this.getPercent()); - return this; - } - - if (this._value == value || isNaN(value)) return this; - if (duration === undefined) duration = this._duration; - - var self = this, - oldPercentage = self.getPercent(), - delta = 1, - newPercentage, isGreater, steps, stepDuration; - - this._value = Math.min(this._maxValue, Math.max(0, value)); - - if (!duration) {//No duration, we can't skip the animation - this._setPercentage(this.getPercent()); - return this; - } - - newPercentage = self.getPercent(); - isGreater = newPercentage > oldPercentage; - - delta += newPercentage % 1; //If new percentage is not an integer, we add the decimal part to the delta - steps = Math.floor(Math.abs(newPercentage - oldPercentage) / delta); - stepDuration = duration / steps; - - - (function animate(lastFrame) { - if (isGreater) - oldPercentage += delta; - else - oldPercentage -= delta; - - if ((isGreater && oldPercentage >= newPercentage) || (!isGreater && oldPercentage <= newPercentage)) - { - requestAnimFrame(function(){ self._setPercentage(newPercentage); }); - return; - } - - requestAnimFrame(function() { self._setPercentage(oldPercentage); }); - - var now = Date.now(), - deltaTime = now - lastFrame; - - if (deltaTime >= stepDuration) { - animate(now); - } else { - setTimeout(function() { - animate(Date.now()); - }, stepDuration - deltaTime); - } - - })(Date.now()); - - return this; - } - }; - - Circles.create = function(options) { - return new Circles(options); - }; - - return Circles; -})); diff --git a/public/assets/out/circles/circles.min.js b/public/assets/out/circles/circles.min.js deleted file mode 100644 index e107d89b..00000000 --- a/public/assets/out/circles/circles.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/** - * circles - v0.0.6 - 2015-11-27 - * - * Copyright (c) 2015 lugolabs - * Licensed - */ -!function(a,b){"object"==typeof exports?module.exports=b():"function"==typeof define&&define.amd?define([],b):a.Circles=b()}(this,function(){"use strict";var a=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,1e3/60)},b=function(a){var b=a.id;if(this._el=document.getElementById(b),null!==this._el){this._radius=a.radius||10,this._duration=void 0===a.duration?500:a.duration,this._value=0,this._maxValue=a.maxValue||100,this._text=void 0===a.text?function(a){return this.htmlifyNumber(a)}:a.text,this._strokeWidth=a.width||10,this._colors=a.colors||["#EEE","#F00"],this._svg=null,this._movingPath=null,this._wrapContainer=null,this._textContainer=null,this._wrpClass=a.wrpClass||"circles-wrp",this._textClass=a.textClass||"circles-text",this._valClass=a.valueStrokeClass||"circles-valueStroke",this._maxValClass=a.maxValueStrokeClass||"circles-maxValueStroke",this._styleWrapper=a.styleWrapper===!1?!1:!0,this._styleText=a.styleText===!1?!1:!0;var c=Math.PI/180*270;this._start=-Math.PI/180*90,this._startPrecise=this._precise(this._start),this._circ=c-this._start,this._generate().update(a.value||0)}};return b.prototype={VERSION:"0.0.6",_generate:function(){return this._svgSize=2*this._radius,this._radiusAdjusted=this._radius-this._strokeWidth/2,this._generateSvg()._generateText()._generateWrapper(),this._el.innerHTML="",this._el.appendChild(this._wrapContainer),this},_setPercentage:function(a){this._movingPath.setAttribute("d",this._calculatePath(a,!0)),this._textContainer.innerHTML=this._getText(this.getValueFromPercent(a))},_generateWrapper:function(){return this._wrapContainer=document.createElement("div"),this._wrapContainer.className=this._wrpClass,this._styleWrapper&&(this._wrapContainer.style.position="relative",this._wrapContainer.style.display="inline-block"),this._wrapContainer.appendChild(this._svg),this._wrapContainer.appendChild(this._textContainer),this},_generateText:function(){if(this._textContainer=document.createElement("div"),this._textContainer.className=this._textClass,this._styleText){var a={position:"absolute",top:0,left:0,textAlign:"center",width:"100%",fontSize:.7*this._radius+"px",height:this._svgSize+"px",lineHeight:this._svgSize+"px"};for(var b in a)this._textContainer.style[b]=a[b]}return this._textContainer.innerHTML=this._getText(0),this},_getText:function(a){return this._text?(void 0===a&&(a=this._value),a=parseFloat(a.toFixed(2)),"function"==typeof this._text?this._text.call(this,a):this._text):""},_generateSvg:function(){return this._svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this._svg.setAttribute("xmlns","http://www.w3.org/2000/svg"),this._svg.setAttribute("width",this._svgSize),this._svg.setAttribute("height",this._svgSize),this._generatePath(100,!1,this._colors[0],this._maxValClass)._generatePath(1,!0,this._colors[1],this._valClass),this._movingPath=this._svg.getElementsByTagName("path")[1],this},_generatePath:function(a,b,c,d){var e=document.createElementNS("http://www.w3.org/2000/svg","path");return e.setAttribute("fill","transparent"),e.setAttribute("stroke",c),e.setAttribute("stroke-width",this._strokeWidth),e.setAttribute("d",this._calculatePath(a,b)),e.setAttribute("class",d),this._svg.appendChild(e),this},_calculatePath:function(a,b){var c=this._start+a/100*this._circ,d=this._precise(c);return this._arc(d,b)},_arc:function(a,b){var c=a-.001,d=a-this._startPrecise'+d[0]+"";return d.length>1&&(e+='.'+d[1].substring(0,2)+""),e},updateRadius:function(a){return this._radius=a,this._generate().update(!0)},updateWidth:function(a){return this._strokeWidth=a,this._generate().update(!0)},updateColors:function(a){this._colors=a;var b=this._svg.getElementsByTagName("path");return b[0].setAttribute("stroke",a[0]),b[1].setAttribute("stroke",a[1]),this},getPercent:function(){return 100*this._value/this._maxValue},getValueFromPercent:function(a){return this._maxValue*a/100},getValue:function(){return this._value},getMaxValue:function(){return this._maxValue},update:function(b,c){if(b===!0)return this._setPercentage(this.getPercent()),this;if(this._value==b||isNaN(b))return this;void 0===c&&(c=this._duration);var d,e,f,g,h=this,i=h.getPercent(),j=1;return this._value=Math.min(this._maxValue,Math.max(0,b)),c?(d=h.getPercent(),e=d>i,j+=d%1,f=Math.floor(Math.abs(d-i)/j),g=c/f,function k(b){if(e?i+=j:i-=j,e&&i>=d||!e&&d>=i)return void a(function(){h._setPercentage(d)});a(function(){h._setPercentage(i)});var c=Date.now(),f=c-b;f>=g?k(c):setTimeout(function(){k(Date.now())},g-f)}(Date.now()),this):(this._setPercentage(this.getPercent()),this)}},b.create=function(a){return new b(a)},b}); \ No newline at end of file diff --git a/public/assets/out/circles/spec/circlesSpec.js b/public/assets/out/circles/spec/circlesSpec.js deleted file mode 100644 index ae086e8f..00000000 --- a/public/assets/out/circles/spec/circlesSpec.js +++ /dev/null @@ -1,300 +0,0 @@ -describe('Circles', function() { - it('is defined', function() { - expect(typeof Circles).toEqual('function'); - }); - - var element, circle; - - function getText() - { - return element.firstChild.children[1]; - } - - function getSVG() - { - return element.firstChild.getElementsByTagName('svg')[0]; - } - - beforeEach(function() { - element = document.createElement('div'); - element.id = 'circles-1'; - document.body.appendChild(element); - }); - - afterEach(function() { - element.parentNode.removeChild(element); - }); - - describe('Creation', function() { - - it('returns a Circles instance', function() { - var circles = Circles.create({}); - expect(circles instanceof Circles).toBeTruthy(); - }); - - it('returns an instance with 0 as value', function() { - var circles = Circles.create({id: element.id}); - expect(circles.getValue()).toEqual(0); - }); - - it('returns an instance with 100 as max value', function() { - var circles = Circles.create({id: element.id}); - expect(circles.getMaxValue()).toEqual(100); - }); - - describe('Generated content', function() { - - beforeEach(function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null - }); - }); - - it('contains a wrapper with default class', function() { - - Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null, - wrpClass: 'wrapContainer' - }); - - expect(element.firstChild.className).toEqual('wrapContainer'); - }); - - it('contains a wrapper with provided class', function() { - expect(element.firstChild.className).toEqual('circles-wrp'); - }); - - it('contains a SVG tag', function() { - expect(getSVG() instanceof SVGSVGElement).toBeTruthy(); - }); - - it('contains two PATH tags into the SVG', function() { - expect(getSVG().getElementsByTagName('path').length).toEqual(2); - }); - - it('adds class attributes to the path', function() { - expect(getSVG().getElementsByTagName('path')[0].getAttribute('class')).toEqual('circles-maxValueStroke'); - }); - - it('adds provided class attributes to the path', function() { - - Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null, - maxValueStrokeClass: 'testMaxValueClass', - wrpClass: 'wrapContainer' - }); - - expect(getSVG().getElementsByTagName('path')[0].getAttribute('class')).toEqual('testMaxValueClass'); - }); - - it('contains the SVG without animation', function() { - var dValue = getSVG().getElementsByTagName('path')[1].getAttribute('d'); - expect(dValue).toEqual('M 59.988797973796764 5.000001140776291 A 55 55 0 0 1 92.3939094694214 104.44811165040569 '); - }); - - it("contains the SVG with animation", function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60 - }); - - var dValue = element.firstChild.getElementsByTagName('svg')[0].getElementsByTagName('path')[1].getAttribute('d'); - expect(dValue).toEqual('M 59.988797973796764 5.000001140776291 A 55 55 0 0 1 63.396635173034774 5.1049831997356705 '); - }); - - it('has styles by default', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - text: '%', - duration: null - }); - - expect(element.firstChild.style[0]).toBeTruthy(); - }); - - it('can have its styles overridden', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null, - text: '%', - styleWrapper: false - }); - - expect(element.firstChild.style[0]).toBeFalsy(); - }); - - }); - - describe('Text', function() { - - it('has a container', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null - }); - expect(getText() instanceof HTMLDivElement).toBeTruthy(); - }); - - it('has a container with default class', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null - }); - - expect(getText().className).toEqual('circles-text'); - }); - - it('has a container with provided class', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null, - textClass: 'textContainer' - }); - - expect(getText().className).toEqual('textContainer'); - }); - - it('contains the supplied text', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - text: '%', - duration: null - }); - - expect(getText().innerHTML).toEqual('%'); - }); - - it('can be managed by a function', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - text: function(value) - { - return value + '%'; - }, - duration: null - }); - - expect(getText().innerHTML).toEqual('40%'); - }); - - it('can be empty', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - text: null, - duration: null - }); - - expect(getText().innerHTML).toBeFalsy(); - }); - - it('has styles by default', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - text: '%', - duration: null - }); - - expect(getText().style[0]).toBeTruthy(); - }); - - it('can have its styles overridden', function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null, - text: '%', - styleText: false - }); - - expect(getText().style[0]).toBeFalsy(); - }); - - }); - }); - - describe('API', function() { - - beforeEach(function() { - circle = Circles.create({ - id: element.id, - value: 40, - radius: 60, - duration: null - }); - }); - - it('can update radius', function() { - circle.updateRadius(30); - - expect(getSVG().getAttribute('width') == 60).toBeTruthy(); - }); - - it('can update stroke width', function() { - circle.updateWidth(20); - - expect(getSVG().getElementsByTagName('path')[1].getAttribute('stroke-width') == 20).toBeTruthy(); - }); - - it('can update colors', function() { - circle.updateColors(['#000', '#fff']); - - var paths = getSVG().getElementsByTagName('path'); - - expect(paths[0].getAttribute('stroke') === '#000' && paths[1].getAttribute('stroke') === '#fff').toBeTruthy(); - }); - - it('can get correct percentage', function() { - expect(circle.getPercent()).toEqual(40); - }); - - it('can update value', function() { - circle.update(50); - expect(circle.getPercent()).toEqual(50); - }); - - it('can get correct value from percentage', function() { - - circle = Circles.create({ - id: element.id, - maxValue: 1000, - duration: null - }); - - expect(circle.getValueFromPercent(25)).toEqual(250); - }); - - it('can return HTML representation of a number', function() { - expect(circle.htmlifyNumber(12.43, 'int', 'float')).toEqual('12.43'); - }); - }); - -}); diff --git a/public/assets/out/circles/spec/index.html b/public/assets/out/circles/spec/index.html deleted file mode 100644 index 767ee34a..00000000 --- a/public/assets/out/circles/spec/index.html +++ /dev/null @@ -1,87 +0,0 @@ - - - Circles - - - -
      -
      -
      -
      -
      -
      -
      - - - - - -
      - - - - - \ No newline at end of file diff --git a/public/assets/out/circles/spec/karma.conf.js b/public/assets/out/circles/spec/karma.conf.js deleted file mode 100644 index a4c59e39..00000000 --- a/public/assets/out/circles/spec/karma.conf.js +++ /dev/null @@ -1,67 +0,0 @@ -// Karma configuration -// Generated on Sat Dec 21 2013 19:04:41 GMT+0000 (GMT) - - -// base path, that will be used to resolve files and exclude -basePath = ''; - - -// list of files / patterns to load in the browser -files = [ - JASMINE, - JASMINE_ADAPTER, - '../circles.js', - '*Spec.js' -]; - - -// list of files to exclude -exclude = [ - -]; - - -// test results reporter to use -// possible values: 'dots', 'progress', 'junit' -reporters = ['progress']; - - -// web server port -port = 9876; - - -// cli runner port -runnerPort = 9100; - - -// enable / disable colors in the output (reporters and logs) -colors = true; - - -// level of logging -// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG -logLevel = LOG_INFO; - - -// enable / disable watching file and executing tests whenever any file changes -autoWatch = true; - - -// Start these browsers, currently available: -// - Chrome -// - ChromeCanary -// - Firefox -// - Opera -// - Safari (only Mac) -// - PhantomJS -// - IE (only Windows) -browsers = ['Chrome']; - - -// If browser does not capture in given timeout [ms], kill it -captureTimeout = 60000; - - -// Continuous Integration mode -// if true, it capture browsers, run tests and exit -singleRun = false; diff --git a/public/assets/out/circles/spec/responsive.html b/public/assets/out/circles/spec/responsive.html deleted file mode 100644 index af38e702..00000000 --- a/public/assets/out/circles/spec/responsive.html +++ /dev/null @@ -1,58 +0,0 @@ - - - Circles - - - -
      -
      -
      -
      -
      -
      -
      - - - - - \ No newline at end of file diff --git a/public/assets/out/circles/spec/viewport.html b/public/assets/out/circles/spec/viewport.html deleted file mode 100644 index 3c3b8450..00000000 --- a/public/assets/out/circles/spec/viewport.html +++ /dev/null @@ -1,102 +0,0 @@ - - - Circles - - - -

      Example of animating the Circles only when visible

      -

      Scroll down to view them

      -

      - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas dignissim eleifend justo a vestibulum. Quisque rutrum nec magna sit amet tristique. Donec magna magna, faucibus in enim id, malesuada volutpat justo. Etiam tellus tortor, aliquet vitae vestibulum quis, commodo auctor justo. Suspendisse pharetra egestas tempor. Ut tempus metus vel tincidunt mattis. Aliquam quis odio volutpat, interdum ante in, pulvinar purus. Aliquam auctor libero vitae ante vehicula efficitur. Integer eros nisi, dapibus eget varius in, aliquet finibus nisi. Phasellus tempus mauris ligula, ut luctus dolor volutpat id. Praesent lobortis nisl quam, a vehicula nibh malesuada quis. Curabitur malesuada sed metus ut pretium. Morbi commodo mauris nec fermentum tristique. Morbi pharetra rhoncus diam, ut gravida est laoreet maximus. -

      -

      - Maecenas tellus metus, ultricies non ultrices vel, suscipit ac enim. Maecenas luctus molestie massa, id consequat lacus tempus vitae. In hac habitasse platea dictumst. Mauris hendrerit, tellus in cursus bibendum, nulla felis blandit erat, id sodales neque odio non tortor. Pellentesque a auctor leo. Mauris in velit nec est varius dignissim. Suspendisse eget ligula non lectus convallis imperdiet ut nec magna. Nam cursus odio non tortor tempor, at fermentum arcu tempus. Proin vitae laoreet nibh. In ullamcorper sem quis luctus sagittis. In consequat iaculis augue, ut consequat odio eleifend a. Duis imperdiet varius urna id faucibus. Curabitur suscipit purus vel sem sollicitudin, id dignissim dui consequat. -

      -

      - Suspendisse nec velit viverra, pretium leo a, malesuada enim. Phasellus scelerisque ultricies tortor, eu faucibus leo laoreet eget. Morbi urna mi, tincidunt nec libero vitae, tempor hendrerit nisi. Nunc sed risus ipsum. Integer porttitor, nunc vitae vestibulum blandit, neque dolor consectetur mi, gravida euismod sem arcu eu elit. Praesent pretium odio id ipsum convallis, ut convallis est lobortis. In porttitor vulputate est ultricies volutpat. Mauris ornare eget nulla in gravida. Nunc laoreet fermentum risus, et fermentum leo suscipit vitae. Praesent tincidunt ligula eget quam pulvinar maximus. Maecenas at mollis nisi, non sagittis erat. -

      -

      - Mauris quis vestibulum quam. Duis consequat sollicitudin tempor. Pellentesque cursus lacus ipsum, ut dictum nisl eleifend id. Nam quis nisl sodales, sodales nulla eu, placerat quam. Sed posuere mattis quam non condimentum. Pellentesque ut egestas nisl. Sed orci ante, laoreet quis sollicitudin sit amet, hendrerit at nisl. Curabitur vel dolor non nulla condimentum varius non nec orci. Sed tempor nisi erat, quis egestas enim tempor a. -

      -
      -
      -
      -
      -
      -

      - Sed aliquam felis nisl, elementum vehicula ipsum congue quis. Aenean sem sapien, rutrum et tincidunt sed, porta lacinia arcu. Nunc ut justo vel mi pharetra laoreet. Ut ornare ultrices pharetra. Ut rutrum orci pretium quam efficitur hendrerit. In aliquet laoreet est, non suscipit erat consequat eget. Quisque mollis rutrum tortor eget rutrum. Vivamus eu consequat diam, id lobortis justo. Phasellus tincidunt vel libero id pellentesque. Etiam leo justo, rhoncus ac mollis id, suscipit ac libero. -

      - - - - - - diff --git a/public/assets/out/custom.css b/public/assets/out/custom.css deleted file mode 100644 index c53bfb74..00000000 --- a/public/assets/out/custom.css +++ /dev/null @@ -1,277 +0,0 @@ -/* Hide the browser's default checkbox */ - .containerq input { - position: absolute; - opacity: 0; - cursor: pointer; - height: 0; - width: 0; - } - - /* Create a custom checkbox */ - .checkmark { - position: absolute; - top: 0; - left: 0; - height: 25px; - width: 25px; - background-color: #ffffff; - border-radius: 5px; - border: 1px solid #000000; - } - - /* On mouse-over, add a grey background color */ - .containerq:hover input ~ .checkmark { - background-color: #ccc; - - } - - /* When the checkbox is checked, add a blue background */ - .containerq input:checked ~ .checkmark { - background-color: #2196F3; - - } - - /* Create the checkmark/indicator (hidden when not checked) */ - .checkmark:after { - content: ""; - position: absolute; - display: none; - } - - /* Show the checkmark when checked */ - .containerq input:checked ~ .checkmark:after { - display: block; - } - - /* Style the checkmark/indicator */ - .containerq .checkmark:after { - left: 9px; - top: 5px; - width: 5px; - height: 10px; - border: solid white; - border-width: 0 3px 3px 0; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - transform: rotate(45deg); - } - .containerq input:checked ~ .checkmark { - background-color: #44405f; - } - - - .middle { - width: 100%; - text-align: left; - /* Made by */ - } - .middle h1 { - font-family: "Dax", sans-serif; - color: #fff; - } - .middle input[type="radio"] { - display: none; - } - .middle input[type="radio"]:checked + .box { - background-color: #FF4159; - border: 1px solid #c2c2c200; - margin-left: 1.5px; - margin-right: 1.5px; - } - .middle input[type="radio"]:checked + .box span { - color: white; - transform: translateY(25px); - } - .middle input[type="radio"]:checked + .box span:before { - transform: translateY(0px); - opacity: 1; - } - .middle .box { - width: 130px; - height: 130px; - background-color: #fff; - transition: all 250ms ease; - will-change: transition; - display: inline-block; - text-align: center; - cursor: pointer; - position: relative; - font-family: "Dax", sans-serif; - font-weight: 400; - border: 1px solid #C2C2C2; - border-radius: 23px; - margin-left: 1.5px; - margin-right: 1.5px; - } - .middle .box:active { - transform: translateY(10px); - } - .middle .box span { - position: absolute; - transform: translate(0, 30px); - left: 0; - right: 0; - transition: all 300ms ease; - font-size: 1.7em; - user-select: none; - color: #5E636A; - } - .middle .box span:before { - font-size: 1.2em; - font-family: FontAwesome; - display: block; - transform: translateY(-80px); - opacity: 0; - transition: all 300ms ease-in-out; - font-weight: normal; - color: white; - } - - .middle p { - color: #fff; - font-family: "Dax", sans-serif; - font-weight: 400; - } - .middle p span:after { - content: '\f0e7'; - font-family: FontAwesome; - color: yellow; - } - .date { - position: absolute; - transform: translate(0, 70px) !important; - left: 0; - right: 0; - transition: all 300ms ease; - font-size: 1.5em; - user-select: none; - color: #5E636A; - margin-right: 5px; - } - - - -/*for time radio button*/ - - .middleq { - width: 100%; - text-align: left; - /* Made by */ - } - .middleq h1 { - font-family: "Dax", sans-serif; - color: #fff; - } - .middleq input[type="radio"] { - display: none; - } - .middleq input[type="radio"]:checked + .box { - background-color: #FF4159; - border: 1px solid #c2c2c200; - margin-left: 1.5px; - margin-right: 1.5px; - } - .middleq input[type="radio"]:checked + .box span { - color: white; - transform: translateY(7px); - } - .middleq input[type="radio"]:checked + .box span:before { - transform: translateY(0px); - opacity: 1; - } - .middleq .box { - width: 160px; - height: 50px; - background-color: #fff; - transition: all 250ms ease; - will-change: transition; - display: inline-block; - text-align: center; - cursor: pointer; - position: relative; - font-family: "Dax", sans-serif; - font-weight: 400; - border: 1px solid #C2C2C2; - border-radius: 16px; - margin-left: 1.5px; - margin-right: 1.5px; - } - .middleq .box:active { - transform: translateY(5px); - } - .middleq .box span { - position: absolute; - transform: translate(0, 5px); - left: 0; - right: 0; - transition: all 300ms ease; - font-size: 1.7em; - user-select: none; - color: #5E636A; - } - .middleq .box span:before { - font-size: 1.2em; - font-family: FontAwesome; - display: block; - transform: translateY(-80px); - opacity: 0; - transition: all 300ms ease-in-out; - font-weight: normal; - color: white; - } - - .middleq p { - color: #fff; - font-family: "Dax", sans-serif; - font-weight: 400; - } - .middleq p span:after { - content: '\f0e7'; - font-family: FontAwesome; - color: yellow; - } - .dateq { - position: absolute; - transform: translate(0, 70px) !important; - left: 0; - right: 0; - transition: all 300ms ease; - font-size: 1.5em; - user-select: none; - color: #5E636A; - margin-right: 5px; - } - .u-accordion-brd-primary .u-accordion__header [aria-expanded="true"] { - border-color: #868E96 !important; - } - - .u-accordion-color-primary .u-accordion__header [aria-expanded="true"] { - color: #060606 !important; - } - ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ - font-weight: 600; /* Firefox */ - } - - :-ms-input-placeholder { /* Internet Explorer 10-11 */ - font-weight: 600; - } - - ::-ms-input-placeholder { /* Microsoft Edge */ - font-weight: 600; - } - - input.other::-webkit-input-placeholder { font-weight: 400;text-align: center;font-size: 22px;} - input.other::-moz-placeholder { font-weight: 400;text-align: center;font-size: 22px; } - input.other:-ms-input-placeholder { font-weight: 400;text-align: center;font-size: 22px; } - input.other:-moz-placeholder { font-weight: 400;text-align: center; font-size: 22px;} - - input.otherq::-webkit-input-placeholder { font-weight: 400;text-align: left;font-size: 22px;color: #5C5C5C;} - input.otherq::-moz-placeholder { font-weight: 400;text-align: left;font-size: 22px;color: #5C5C5C; } - input.otherq:-ms-input-placeholder { font-weight: 400;text-align: left;font-size: 22px;color: #5C5C5C; } - input.otherq:-moz-placeholder { font-weight: 400;text-align: left; font-size: 22px;color: #5C5C5C;} - - - input[type=text]:focus { - border: 2px solid #44405f; - } - \ No newline at end of file diff --git a/public/assets/out/gmaps/.bower.json b/public/assets/out/gmaps/.bower.json deleted file mode 100644 index 6134130e..00000000 --- a/public/assets/out/gmaps/.bower.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "gmaps", - "version": "0.4.25", - "main": "gmaps.js", - "homepage": "https://github.com/HPNeo/gmaps", - "_release": "0.4.25", - "_resolution": { - "type": "version", - "tag": "0.4.25", - "commit": "7f0534834308cdce4d20ead97a2efef435ac5b99" - }, - "_source": "https://github.com/HPNeo/gmaps.git", - "_target": "^0.4.25", - "_originalSource": "gmaps", - "_direct": true -} \ No newline at end of file diff --git a/public/assets/out/gmaps/CONTRIBUTING.md b/public/assets/out/gmaps/CONTRIBUTING.md deleted file mode 100644 index 62ec3e76..00000000 --- a/public/assets/out/gmaps/CONTRIBUTING.md +++ /dev/null @@ -1,31 +0,0 @@ -Since gmaps.js has been created to accomplish some goals about simplicity and cleanliness, the contributions must be guided by some rules, in order to keep gmaps.js simple to use and brief in code. - -## About requirements - -gmaps.js only requires JavaScript, so new features must be written in plain JavaScript and shouldn’t depend of external libraries like jQuery, Prototype, etc. - -## About examples and documentation - -Big changes, like support for new libraries or services, or custom features, need an example file (or files, depending of the magnitude of the contribution) and an entry in the documentation page. - -The example file must be included in the branch `gh-pages`, and be linked in the examples page. Example file in the `master` branch is optional. - -The documentation must explain in an simple way any argument passed in the method, and tell if it’s argument is optional or not. No examples are required here. - -## About new features - -The main goal of gmaps.js is to have full support to all features of native Google Maps API, so the primary goal of the contributions to cover the missing features. But other contributions are welcome. - -If the new feature has a functionality different from strictly work with maps (like animations, custom infoWindows or support for external services), it would be ideal to create an extension with this feature. - -## About coding standards - -* Default values must be defined. -* Functions must end with semi-colon. -* Function names in camel case. -* Two space for indentation. -* Use strict mode syntax. -* Don’t use prototype object to extend gmaps.js (except with extensions). -* Use apply for calling functions. - -_**Thanks for contributing with gmaps.js**_ diff --git a/public/assets/out/gmaps/Gruntfile.js b/public/assets/out/gmaps/Gruntfile.js deleted file mode 100644 index f75f0612..00000000 --- a/public/assets/out/gmaps/Gruntfile.js +++ /dev/null @@ -1,99 +0,0 @@ -/*global module:false*/ -module.exports = function(grunt) { - - 'use strict'; - - // Project configuration. - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - - meta : { - banner : '/*!\n' + - ' * GMaps.js v<%= pkg.version %>\n' + - ' * <%= pkg.homepage %>\n' + - ' *\n' + - ' * Copyright <%= grunt.template.today("yyyy") %>, <%= pkg.author %>\n' + - ' * Released under the <%= pkg.license %> License.\n' + - ' */\n\n' - }, - - concat: { - options: { - banner: '<%= meta.banner %>' - }, - dist: { - src: [ - 'lib/gmaps.core.js', - 'lib/gmaps.controls.js', - 'lib/gmaps.markers.js', - 'lib/gmaps.overlays.js', - 'lib/gmaps.geometry.js', - 'lib/gmaps.layers.js', - 'lib/gmaps.routes.js', - 'lib/gmaps.geofences.js', - 'lib/gmaps.static.js', - 'lib/gmaps.map_types.js', - 'lib/gmaps.styles.js', - 'lib/gmaps.streetview.js', - 'lib/gmaps.events.js', - 'lib/gmaps.utils.js', - 'lib/gmaps.native_extensions.js' - ], - dest: 'gmaps.js' - } - }, - - jasmine: { - options: { - template: 'test/template/jasmine-gmaps.html', - specs: 'test/spec/*Spec.js', - vendor: ['https://maps.google.com/maps/api/js?sensor=true'], - styles: 'test/style.css' - }, - src: 'gmaps.js' - }, - - watch : { - files : '<%= concat.dist.src %>', - tasks : 'default' - }, - - jshint : { - all : ['Gruntfile.js'] - }, - - uglify : { - options : { - sourceMap : true - }, - all : { - files: { - 'gmaps.min.js': [ 'gmaps.js' ] - } - } - }, - - umd : { - all : { - src : 'gmaps.js', - objectToExport : 'GMaps', - globalAlias : 'GMaps', - template : 'umd.hbs', - deps: { - amd: ['jquery', 'googlemaps!'] - } - } - } - - }); - - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-concat'); - grunt.loadNpmTasks('grunt-contrib-jasmine'); - grunt.loadNpmTasks('grunt-contrib-uglify'); - grunt.loadNpmTasks('grunt-umd'); - - grunt.registerTask('test', ['jshint', 'jasmine']); - grunt.registerTask('default', ['test', 'concat', 'umd', 'uglify']); -}; diff --git a/public/assets/out/gmaps/README.md b/public/assets/out/gmaps/README.md deleted file mode 100644 index eb4a3d12..00000000 --- a/public/assets/out/gmaps/README.md +++ /dev/null @@ -1,549 +0,0 @@ -**Important** - -If you're developer, I'm moving gmaps.js to NPM, you can give your opinion and check the migration progress in [Issue #404](https://github.com/hpneo/gmaps/issues/404) - ---- - -gmaps.js - A Javascript library that simplifies your life -========================================================= - -gmaps.js allows you to use the potential of Google Maps in a simple way. No more extensive documentation or large amount of code. - -Visit the examples in [hpneo.github.com/gmaps](http://hpneo.github.com/gmaps/) -Go to the API Documentation [hpneo.github.io/gmaps/documentation.html](http://hpneo.github.io/gmaps/documentation.html) - -Quick Start ------ - -1. Add a reference to Google Maps API -2. Add gmaps.js in your HTML -3. Enjoy! - -```html - - - - - - - - - -
      - - - -``` - -Use with AMD ------ - -With require.js, you need to load Google Maps JavaScript API first. For example, assuming you have a `googlemapsapi.js` file: - -```javascript -define(['async!http://maps.google.com/maps/api/js?v=3&sensor=false'], function() {}); -``` - -Next you have to define the dependency for gmaps.js: - -```javascript -require.config({ - paths: { - "googlemapsapi": "googlemapsapi", - }, - shim: { - gmaps: { - deps: ["googlemapsapi"], - exports: "GMaps" - } - } -}); -``` - -Also, you can use the [googlemaps-amd](https://github.com/aerisweather/googlemaps-amd) plugin. - -Build ------- - -If you would like to build gmaps from source run the following at the terminal: - -```sh -git clone https://github.com/HPNeo/gmaps.git -cd gmaps -npm install -grunt -``` - -Changelog ---------- - -0.4.25 ------------------------ -* Change findAbsolutePosition (see #494) - -0.4.24 ------------------------ -* Fix bug in getRoutes (see #373) - -0.4.23 ------------------------ -* Fix bug at trying to remove a large amount of markers inside a marker cluster (see #473) -* Check for Google Maps library before creating a GMaps object (see #467) -* Check the Google Maps API at instantiation instead of declaration (see #467) -* Add polyfill for google.maps.Rectangle.prototype.containsLatLng - -0.4.22 ------------------------ -* Render directions -* Added missing function for registering addListenerOnce - -0.4.21 ------------------------ -* Better check for `console.error` - -0.4.20 ------------------------ -* Show an error in the console, instead throwing an error - -0.4.19 ------------------------ -* Fix bug at hiding markers' context menu when the map is zooming - -0.4.18 ------------------------ -* Fix bug in `array_map` - -0.4.17 ------------------------ -* Remove the http so the library (Google Maps call) will also work under SSL without warnings -* Update route drawing methods to allow 'icons' option for drawPolyline -* Remove dependency on 'grunt-cli' having to be installed globally - -0.4.16 ------------------------ -* Fix removeMarkers - -0.4.15 ------------------------ -* Add overlay to mouseTarget when click event is set -* addControl/createControl now accepts HTML elements or HTML strings -* Add containsLatLng to google.maps.Circle - -0.4.14 ------------------------ -* Fix bug in drawPolygon -* Hide context menu before the zoom is changed - -0.4.13 ------------------------ -* Allow unitSystem setting in travelRoute -* Add functionality to remove controls -* Delegates non custom events to google.map -* Convert featureType and elementType toLowerCase in static maps - -0.4.12 ------------------------ -* Adds ability to listen for clicks on overlays - -0.4.11 ------------------------ -* Add RadarSearch to the places layer -* Update default control styles to match new Google Maps release. - -0.4.10 ------------------------ -* Fix and optimize removeMarkers -* Fix bug in addMarker (issue #270) - -0.4.9 ------------------------ -* Add UMD support (AMD, CommonJS, browser globals) -* Add retina support -* FitZoom only use visible markers - -0.4.8 ------------------------ -* Fix getRoutes - -0.4.7 ------------------------ -* Add callback for failure in getRoutes -* Update marker clusterer after remove marker -* Add support for string arrays to arrayToLatLng - -0.4.6 ------------------------ -* Allow initialising GMaps without new -* Added styled map support for static maps -* Fixed name display for styled maps -* Allow no zoom for static map request - -0.4.5 ------------------------ -* Fix IE8 bug using array_map -* Add Grunt and Bower support - -0.4.4 ------------------------ -* Fix buildContextMenu reference in addMarker - -0.4.3 ------------------------ -* Fix removePolylines and removePolygons - -0.4.2 ------------------------ -* Fix drawSteppedRoute - -0.4.1 ------------------------ -* Fix fitZoom - -0.4.0 ------------------------ -* Split gmaps.js in modules - -0.3.5 ------------------------ -* Enable new Google Maps style - -0.3.4 ------------------------ -* Add support for context menu in multiple maps - -0.3.3 ------------------------ -* Fix destination as address in getRoutes - -0.3.2 ------------------------ -* Support for removing Fusion Tables and GeoRSS/KML layers with removeLayer - -0.3.1 ------------------------ -* Improve event binding at adding markers, polylines or polygons - -0.3 ------------------------ -* Add native events to google.maps objects and custom events to GMaps maps -* Check for Google Maps library and defined element when initialize -* Allow route origins to be a string or array - -0.2.31 ------------------------ -* Fix context menu position bug - -0.2.30 ------------------------ -* New feature: StreetView Panoramas - -0.2.29 ------------------------ -* New methods: removePolyline and removePolygon -* Tests for Styled MapTypes - -0.2.28 ------------------------ -* Test suite -* Fix double event firing bug - -0.2.27 ------------------------ -* Allow create context menus for markers - -0.2.26 ------------------------ -* Fix bug in getElevations -* Rename fitBounds to fitLatLngBounds - -0.2.25 ------------------------ -* Support for GeoJSON in drawPolygon -* Use 'complete' instead of 'always' in GMaps.geolocate - -0.2.24 ------------------------ -* New feature: **Overlay Map Types** - -0.2.23 ------------------------ -* Add full support to google.maps.PolylineOptions -* New method: removeMarker - -0.2.22 ------------------------ -* New feature: **Map Types** - -0.2.21 ------------------------ -* Support to add google.maps.Marker objects in addMarker and addMarkers methods. - -0.2.20 ------------------------ -* Add support for other HTML block elements instead "div" (like "section"). - -0.2.19 ------------------------ -* Use MarkerClusterer to group markers - -0.2.18 ------------------------ -* Check if GMaps is defined before load extensions - -0.2.17 ------------------------ -* Fix bug with disableDefaultUI option in constructor - -0.2.16 ------------------------ -* Fix another bug in createMarker - -0.2.15 ------------------------ -* Fix bug in createMarker - -0.2.14 ------------------------ -* Adding IDs, classes and innerHTML to createControl. (**Note**: Use 'content' instead 'text' in createControl) - -0.2.13 ------------------------ -* Add support for Places library in addLayer - -0.2.12 ------------------------ -* Fix map events without MouseEvent object -* Fix bug in drawCircle and drawRectangle -* Fix bug in zoomIn and zoomOut -* New methods: removePolygon and removePolygons - -0.2.11 ------------------------ -* Add support to Panoramio in addLayer - -0.2.10 ------------------------ -* New method: toImage - -0.2.9 ------------------------ -* Extend the drawSteppedRoute and travelRoute functions - -0.2.8 ------------------------ -* New feature: **Layers** - -0.2.7 ------------------------ -* New method: removeRoutes -* Access all native methods of google.maps.Map class - -0.2.6 ------------------------ -* Support for multiple overlays - -0.2.5 ------------------------ -* Add support to all marker events -* Add suport for animations at show and remove overlays - -0.2.4.1 ------------------------ -* Create GMaps class only when Google Maps API is loaded - -0.2.4 ------------------------ -* New feature: **Elevation service** - -0.2.3 ------------------------ -* New method: getZoom - -0.2.2 ------------------------ -* Minor improvements to support Backbone.js -* Fix controls position - -0.2.1 ------------------------ -* More default values in GMaps constructor. - -0.2 ------------------------ -* Remove jQuery dependency. - -0.1.12.5 ------------------------ -* New method "removePolylines" and alias "cleanRoute" - -0.1.12.4 ------------------------ -* New methods: fitZoom and fitBounds - -0.1.12.3 ------------------------ -* New method: refresh - -0.1.12.2 ------------------------ -* New options in GMaps constructor: width and height - -0.1.12.1 ------------------------ -* New methods: loadFromFusionTables and loadFromKML - -0.1.12 ------------------------ -* New feature: **KML and GeoRSS** -* Fix bug in getFromFusionTables - -0.1.11 ------------------------ -* New feature: **Fusion Tables** - -0.1.10 ------------------------ -* New feature: **Custom controls** - -0.1.9 ------------------------ -* New feature: **Static maps** - -0.1.8.10 ------------------------ -* Better GMaps.Route methods - -0.1.8.9 ------------------------ -* Fix typo in Polyline events -* Add InfoWindow events - -0.1.8.8 ------------------------ -* Add Polyline events - -0.1.8.7 ------------------------ -* Add drag and dragstart events to Marker - -0.1.8.6 ------------------------ -* Add avoidHighways, avoidTolls, optimizeWaypoints, unitSystem and waypoints options in getRoutes -* New method: createMarker - -0.1.8.5 ------------------------ -* geolocation and geocode methods are static now (using them with GMaps.geolocation and GMaps.geocode) - -0.1.8.4 ------------------------ -* Fix typo in geocode method -* Allow all MapOptions in constructor (see 'MapOptions' section in Google Maps API Reference) - -0.1.8.3 ------------------------ -* Add pane option ('floatPane', 'floatShadow', 'mapPane', 'overlayImage', 'overlayLayer', 'overlayMouseTarget', 'overlayShadow') in drawOverlay -* New methods: removeOverlay and removeOverlays - -0.1.8.2 ------------------------ -* Change pane ('floatPane' to 'overlayLayer') in drawOverlay - -0.1.8.1 ------------------------ -* Fix bug in drawCircle - -0.1.8 ------------------------ -* New feature: **Overlays** -* New method: drawCircle - -0.1.7.1 ------------------------ -* Bug fix: zoomIn/zoomOut can change zoom by argument -* New method: setZoom - -0.1.7 ------------------------ -* New class: **GMaps.Route** - -0.1.6 ------------------------ -* New feature: **Geofence** (with markers) -* New method: **drawPolygon** -* Bug fix: Change reserved word in Context menu - -0.1.5 ------------------------ -* New feature: **Geocoding** -* New method: **drawSteppedRoute** (similar to travelRoute) - -0.1.4 ------------------------ -* New events in **addMarker** -* Add step_number property in **travelRoute** method - -0.1.3 ------------------------ -* New feature: **Context menu** (for map and marker only) -* New method: **travelRoute** -* Change setCenter to panTo in GMaps **setCenter** method -* Save entire route data in routes array (instead saving only route path) -* Context menu and Route example (using **travelRoute**) - -0.1.2 ------------------------ -* **drawPolyline** can accept both an array of LatLng objets or an array of coordinates -* New methods: **getRoutes** and **drawRoute** -* Route example - -0.1.1 ------------------------ -* Rename **drawRoute** method to **drawPolyline** (more accurate) -* Marker example - -0.1 - Initial release ------------------------ -* Map events -* Geolocation -* Add Markers -* Marker infoWindows -* Draw routes and circles -* Initial examples - -License ---------- -MIT License. Copyright 2014 Gustavo Leon. http://github.com/hpneo - -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the -Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of -the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/public/assets/out/gmaps/bower.json b/public/assets/out/gmaps/bower.json deleted file mode 100644 index ca863b07..00000000 --- a/public/assets/out/gmaps/bower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "gmaps", - "version": "0.4.25", - "main": "gmaps.js" -} diff --git a/public/assets/out/gmaps/docs/GMaps.html b/public/assets/out/gmaps/docs/GMaps.html deleted file mode 100644 index 3967fe98..00000000 --- a/public/assets/out/gmaps/docs/GMaps.html +++ /dev/null @@ -1,2562 +0,0 @@ - - - - - GMaps - Documentation - - - - - - - - - - - - - - - -
      - -
      - -

      GMaps

      - - - - - - - -
      - -
      - -

      - GMaps -

      - -

      GMaps

      - - -
      - -
      -
      - - - - -

      Constructor

      - - -

      new GMaps(options)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Creates a new GMaps instance, including a Google Maps map.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeDescription
      options - - -object - - - -

      options accepts all the MapOptions and events listed in the Google Maps API. Also accepts:

      -
        -
      • lat (number): Latitude of the map's center
      • -
      • lng (number): Longitude of the map's center
      • -
      • el (string or HTMLElement): container where the map will be rendered
      • -
      • markerClusterer (function): A function to create a marker cluster. You can use MarkerClusterer or MarkerClustererPlus.
      • -
      - - - - - - - - - - - - - - - - - -
      - - - - - - - - - - - - -

      Members

      - - - -

      controls :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of custom controls in the map UI

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      el :HTMLElement

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Container element

      -
      - - - -
      Type:
      -
        -
      • - -HTMLElement - - -
      • -
      - - - - - - - - -

      layers :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of KML/GeoRSS and FusionTable layers

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      map :google.maps.Map

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Google Maps map instance

      -
      - - - -
      Type:
      -
        -
      • - -google.maps.Map - - -
      • -
      - - - - - - - - -

      markerClusterer :object

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Marker Clusterer instance

      -
      - - - -
      Type:
      -
        -
      • - -object - - -
      • -
      - - - - - - - - -

      markers :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of map's markers

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      overlays :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of map's overlays

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      polygons :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of map's polygons

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      polylines :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of map's lines

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      routes :array

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of map's routes requested by GMaps#getRoutes, GMaps#renderRoute, GMaps#drawRoute, GMaps#travelRoute or GMaps#drawSteppedRoute

      -
      - - - -
      Type:
      -
        -
      • - -array - - -
      • -
      - - - - - - - - -

      singleLayers :object

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Collection of data layers (See GMaps#addLayer)

      -
      - - - -
      Type:
      -
        -
      • - -object - - -
      • -
      - - - - - - - - -

      zoom :number

      - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Current map's zoom

      -
      - - - -
      Type:
      -
        -
      • - -number - - -
      • -
      - - - - - - - - - - -

      Methods

      - - - - - - -

      addControl(options) → {HTMLElement}

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Add a custom control to the map UI.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeDescription
      options - - -object - - - -

      The options object should contain:

      -
        -
      • style (object): The keys and values of this object should be valid CSS properties and values.
      • -
      • id (string): The HTML id for the custom control.
      • -
      • classes (string): A string containing all the HTML classes for the custom control.
      • -
      • content (string or HTML element): The content of the custom control.
      • -
      • position (string): Any valid google.maps.ControlPosition value, in lower or upper case.
      • -
      • events (object): The keys of this object should be valid DOM events. The values should be functions.
      • -
      • disableDefaultStyles (boolean): If false, removes the default styles for the controls like font (family and size), and box shadow.
      • -
      - - - - - - - - - - - - - - -
      Returns:
      - - - - -
      -
      - Type -
      -
      - -HTMLElement - - -
      -
      - - - - - - - - - -

      fitLatLngBounds(latLngs)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Adjust the map zoom to include all the coordinates in the latLngs array.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeDescription
      latLngs - - -array - - - -

      Collection of google.maps.LatLng objects.

      - - - - - - - - - - - - - - - - - - - - - -

      fitZoom()

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Adjust the map zoom to include all the markers added in the map.

      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      getElement() → {HTMLElement}

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Return the HTML element container of the map.

      -
      - - - - - - - - - - - - - - - - - - - - - - - -
      Returns:
      - - -
      -

      the element container.

      -
      - - - -
      -
      - Type -
      -
      - -HTMLElement - - -
      -
      - - - - - - - - - -

      hideContextMenu()

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Hide the current context menu

      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      refresh()

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Trigger a resize event, useful if you need to repaint the current map (for changes in the viewport or display / hide actions).

      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

      removeControl(control) → {HTMLElement}

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Remove a control from the map. control should be a control returned by addControl().

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeDescription
      control - - -HTMLElement - - - -

      One of the controls returned by addControl().

      - - - - - - - - - - - - - - -
      Returns:
      - - -
      -

      the removed control.

      -
      - - - -
      -
      - Type -
      -
      - -HTMLElement - - -
      -
      - - - - - - - - - -

      setCenter(lat, lng, callbackopt)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Center the map using the lat and lng coordinates.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeAttributesDescription
      lat - - -number - - - - - - - - - -

      Latitude of the coordinate.

      lng - - -number - - - - - - - - - -

      Longitude of the coordinate.

      callback - - -function - - - - - - <optional>
      - - - - - -

      Callback that will be executed after the map is centered.

      - - - - - - - - - - - - - - - - - - - - - -

      setContextMenu(options)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Add a context menu for a map or a marker.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeDescription
      options - - -object - - - -

      The options object should contain:

      -
        -
      • control (string): Kind of control the context menu will be attached. Can be "map" or "marker".
      • -
      • options (array): A collection of context menu items:
          -
        • title (string): Item's title shown in the context menu.
        • -
        • name (string): Item's identifier.
        • -
        • action (function): Function triggered after selecting the context menu item.
        • -
        -
      • -
      - - - - - - - - - - - - - - - - - - - - - -

      zoomIn(magnitudeopt)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Increase the map's zoom.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeAttributesDescription
      magnitude - - -number - - - - - - <optional>
      - - - - - -

      The number of times the map will be zoomed in.

      - - - - - - - - - - - - - - - - - - - - - -

      zoomOut(magnitudeopt)

      - - - - - - -
      - - -
      Source:
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - - - - - -
      -

      Decrease the map's zoom.

      -
      - - - - - - - - - - - -
      Parameters:
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      NameTypeAttributesDescription
      magnitude - - -number - - - - - - <optional>
      - - - - - -

      The number of times the map will be zoomed out.

      - - - - - - - - - - - - - - - - - - - - - - -
      - -
      - - - - -
      - -
      - -
      - Documentation generated by JSDoc 3.4.0 on Sun Apr 03 2016 18:36:23 GMT-0400 (EDT) using the Minami theme. -
      - - - - - \ No newline at end of file diff --git a/public/assets/out/gmaps/docs/gmaps.controls.js.html b/public/assets/out/gmaps/docs/gmaps.controls.js.html deleted file mode 100644 index 5b3605cb..00000000 --- a/public/assets/out/gmaps/docs/gmaps.controls.js.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - gmaps.controls.js - Documentation - - - - - - - - - - - - - - - - - -
      - -

      gmaps.controls.js

      - - - - - - - -
      -
      -
      GMaps.prototype.createControl = function(options) {
      -  var control = document.createElement('div');
      -
      -  control.style.cursor = 'pointer';
      -
      -  if (options.disableDefaultStyles !== true) {
      -    control.style.fontFamily = 'Roboto, Arial, sans-serif';
      -    control.style.fontSize = '11px';
      -    control.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px';
      -  }
      -
      -  for (var option in options.style) {
      -    control.style[option] = options.style[option];
      -  }
      -
      -  if (options.id) {
      -    control.id = options.id;
      -  }
      -
      -  if (options.title) {
      -    control.title = options.title;
      -  }
      -
      -  if (options.classes) {
      -    control.className = options.classes;
      -  }
      -
      -  if (options.content) {
      -    if (typeof options.content === 'string') {
      -      control.innerHTML = options.content;
      -    }
      -    else if (options.content instanceof HTMLElement) {
      -      control.appendChild(options.content);
      -    }
      -  }
      -
      -  if (options.position) {
      -    control.position = google.maps.ControlPosition[options.position.toUpperCase()];
      -  }
      -
      -  for (var ev in options.events) {
      -    (function(object, name) {
      -      google.maps.event.addDomListener(object, name, function(){
      -        options.events[name].apply(this, [this]);
      -      });
      -    })(control, ev);
      -  }
      -
      -  control.index = 1;
      -
      -  return control;
      -};
      -
      -/**
      - * Add a custom control to the map UI.
      - *
      - * @param {object} options - The `options` object should contain:
      - * * `style` (object): The keys and values of this object should be valid CSS properties and values.
      - * * `id` (string): The HTML id for the custom control.
      - * * `classes` (string): A string containing all the HTML classes for the custom control.
      - * * `content` (string or HTML element): The content of the custom control.
      - * * `position` (string): Any valid [`google.maps.ControlPosition`](https://developers.google.com/maps/documentation/javascript/controls#ControlPositioning) value, in lower or upper case.
      - * * `events` (object): The keys of this object should be valid DOM events. The values should be functions.
      - * * `disableDefaultStyles` (boolean): If false, removes the default styles for the controls like font (family and size), and box shadow.
      - * @returns {HTMLElement}
      - */
      -GMaps.prototype.addControl = function(options) {
      -  var control = this.createControl(options);
      -
      -  this.controls.push(control);
      -  this.map.controls[control.position].push(control);
      -
      -  return control;
      -};
      -
      -/**
      - * Remove a control from the map. `control` should be a control returned by `addControl()`.
      - *
      - * @param {HTMLElement} control - One of the controls returned by `addControl()`.
      - * @returns {HTMLElement} the removed control.
      - */
      -GMaps.prototype.removeControl = function(control) {
      -  var position = null,
      -      i;
      -
      -  for (i = 0; i < this.controls.length; i++) {
      -    if (this.controls[i] == control) {
      -      position = this.controls[i].position;
      -      this.controls.splice(i, 1);
      -    }
      -  }
      -
      -  if (position) {
      -    for (i = 0; i < this.map.controls.length; i++) {
      -      var controlsForPosition = this.map.controls[control.position];
      -
      -      if (controlsForPosition.getAt(i) == control) {
      -        controlsForPosition.removeAt(i);
      -
      -        break;
      -      }
      -    }
      -  }
      -
      -  return control;
      -};
      -
      -
      -
      - - - - -
      - -
      - -
      - Documentation generated by JSDoc 3.4.0 on Sun Apr 03 2016 18:36:23 GMT-0400 (EDT) using the Minami theme. -
      - - - - - diff --git a/public/assets/out/gmaps/docs/gmaps.core.js.html b/public/assets/out/gmaps/docs/gmaps.core.js.html deleted file mode 100644 index a25c14c8..00000000 --- a/public/assets/out/gmaps/docs/gmaps.core.js.html +++ /dev/null @@ -1,677 +0,0 @@ - - - - - gmaps.core.js - Documentation - - - - - - - - - - - - - - - - - -
      - -

      gmaps.core.js

      - - - - - - - -
      -
      -
      var extend_object = function(obj, new_obj) {
      -  var name;
      -
      -  if (obj === new_obj) {
      -    return obj;
      -  }
      -
      -  for (name in new_obj) {
      -    if (new_obj[name] !== undefined) {
      -      obj[name] = new_obj[name];
      -    }
      -  }
      -
      -  return obj;
      -};
      -
      -var replace_object = function(obj, replace) {
      -  var name;
      -
      -  if (obj === replace) {
      -    return obj;
      -  }
      -
      -  for (name in replace) {
      -    if (obj[name] != undefined) {
      -      obj[name] = replace[name];
      -    }
      -  }
      -
      -  return obj;
      -};
      -
      -var array_map = function(array, callback) {
      -  var original_callback_params = Array.prototype.slice.call(arguments, 2),
      -      array_return = [],
      -      array_length = array.length,
      -      i;
      -
      -  if (Array.prototype.map && array.map === Array.prototype.map) {
      -    array_return = Array.prototype.map.call(array, function(item) {
      -      var callback_params = original_callback_params.slice(0);
      -      callback_params.splice(0, 0, item);
      -
      -      return callback.apply(this, callback_params);
      -    });
      -  }
      -  else {
      -    for (i = 0; i < array_length; i++) {
      -      callback_params = original_callback_params;
      -      callback_params.splice(0, 0, array[i]);
      -      array_return.push(callback.apply(this, callback_params));
      -    }
      -  }
      -
      -  return array_return;
      -};
      -
      -var array_flat = function(array) {
      -  var new_array = [],
      -      i;
      -
      -  for (i = 0; i < array.length; i++) {
      -    new_array = new_array.concat(array[i]);
      -  }
      -
      -  return new_array;
      -};
      -
      -var coordsToLatLngs = function(coords, useGeoJSON) {
      -  var first_coord = coords[0],
      -      second_coord = coords[1];
      -
      -  if (useGeoJSON) {
      -    first_coord = coords[1];
      -    second_coord = coords[0];
      -  }
      -
      -  return new google.maps.LatLng(first_coord, second_coord);
      -};
      -
      -var arrayToLatLng = function(coords, useGeoJSON) {
      -  var i;
      -
      -  for (i = 0; i < coords.length; i++) {
      -    if (!(coords[i] instanceof google.maps.LatLng)) {
      -      if (coords[i].length > 0 && typeof(coords[i][0]) === "object") {
      -        coords[i] = arrayToLatLng(coords[i], useGeoJSON);
      -      }
      -      else {
      -        coords[i] = coordsToLatLngs(coords[i], useGeoJSON);
      -      }
      -    }
      -  }
      -
      -  return coords;
      -};
      -
      -var getElementsByClassName = function (class_name, context) {
      -    var element,
      -        _class = class_name.replace('.', '');
      -
      -    if ('jQuery' in this && context) {
      -        element = $("." + _class, context)[0];
      -    } else {
      -        element = document.getElementsByClassName(_class)[0];
      -    }
      -    return element;
      -
      -};
      -
      -var getElementById = function(id, context) {
      -  var element,
      -  id = id.replace('#', '');
      -
      -  if ('jQuery' in window && context) {
      -    element = $('#' + id, context)[0];
      -  } else {
      -    element = document.getElementById(id);
      -  };
      -
      -  return element;
      -};
      -
      -var findAbsolutePosition = function(obj)  {
      -  var curleft = 0,
      -      curtop = 0;
      -
      -  if (obj.offsetParent) {
      -    do {
      -      curleft += obj.offsetLeft;
      -      curtop += obj.offsetTop;
      -    } while (obj = obj.offsetParent);
      -  }
      -
      -  return [curleft, curtop];
      -};
      -
      -var GMaps = (function(global) {
      -  "use strict";
      -
      -  var doc = document;
      -  /**
      -   * Creates a new GMaps instance, including a Google Maps map.
      -   * @class GMaps
      -   * @constructs
      -   * @param {object} options - `options` accepts all the [MapOptions](https://developers.google.com/maps/documentation/javascript/reference#MapOptions) and [events](https://developers.google.com/maps/documentation/javascript/reference#Map) listed in the Google Maps API. Also accepts:
      -   * * `lat` (number): Latitude of the map's center
      -   * * `lng` (number): Longitude of the map's center
      -   * * `el` (string or HTMLElement): container where the map will be rendered
      -   * * `markerClusterer` (function): A function to create a marker cluster. You can use MarkerClusterer or MarkerClustererPlus.
      -   */
      -  var GMaps = function(options) {
      -
      -    if (!(typeof window.google === 'object' && window.google.maps)) {
      -      if (typeof window.console === 'object' && window.console.error) {
      -        console.error('Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js.');
      -      }
      -
      -      return function() {};
      -    }
      -
      -    if (!this) return new GMaps(options);
      -
      -    options.zoom = options.zoom || 15;
      -    options.mapType = options.mapType || 'roadmap';
      -
      -    var valueOrDefault = function(value, defaultValue) {
      -      return value === undefined ? defaultValue : value;
      -    };
      -
      -    var self = this,
      -        i,
      -        events_that_hide_context_menu = [
      -          'bounds_changed', 'center_changed', 'click', 'dblclick', 'drag',
      -          'dragend', 'dragstart', 'idle', 'maptypeid_changed', 'projection_changed',
      -          'resize', 'tilesloaded', 'zoom_changed'
      -        ],
      -        events_that_doesnt_hide_context_menu = ['mousemove', 'mouseout', 'mouseover'],
      -        options_to_be_deleted = ['el', 'lat', 'lng', 'mapType', 'width', 'height', 'markerClusterer', 'enableNewStyle'],
      -        identifier = options.el || options.div,
      -        markerClustererFunction = options.markerClusterer,
      -        mapType = google.maps.MapTypeId[options.mapType.toUpperCase()],
      -        map_center = new google.maps.LatLng(options.lat, options.lng),
      -        zoomControl = valueOrDefault(options.zoomControl, true),
      -        zoomControlOpt = options.zoomControlOpt || {
      -          style: 'DEFAULT',
      -          position: 'TOP_LEFT'
      -        },
      -        zoomControlStyle = zoomControlOpt.style || 'DEFAULT',
      -        zoomControlPosition = zoomControlOpt.position || 'TOP_LEFT',
      -        panControl = valueOrDefault(options.panControl, true),
      -        mapTypeControl = valueOrDefault(options.mapTypeControl, true),
      -        scaleControl = valueOrDefault(options.scaleControl, true),
      -        streetViewControl = valueOrDefault(options.streetViewControl, true),
      -        overviewMapControl = valueOrDefault(overviewMapControl, true),
      -        map_options = {},
      -        map_base_options = {
      -          zoom: this.zoom,
      -          center: map_center,
      -          mapTypeId: mapType
      -        },
      -        map_controls_options = {
      -          panControl: panControl,
      -          zoomControl: zoomControl,
      -          zoomControlOptions: {
      -            style: google.maps.ZoomControlStyle[zoomControlStyle],
      -            position: google.maps.ControlPosition[zoomControlPosition]
      -          },
      -          mapTypeControl: mapTypeControl,
      -          scaleControl: scaleControl,
      -          streetViewControl: streetViewControl,
      -          overviewMapControl: overviewMapControl
      -        };
      -
      -      if (typeof(options.el) === 'string' || typeof(options.div) === 'string') {
      -        if (identifier.indexOf("#") > -1) {
      -            /**
      -             * Container element
      -             *
      -             * @type {HTMLElement}
      -             */
      -            this.el = getElementById(identifier, options.context);
      -        } else {
      -            this.el = getElementsByClassName.apply(this, [identifier, options.context]);
      -        }
      -      } else {
      -          this.el = identifier;
      -      }
      -
      -    if (typeof(this.el) === 'undefined' || this.el === null) {
      -      throw 'No element defined.';
      -    }
      -
      -    window.context_menu = window.context_menu || {};
      -    window.context_menu[self.el.id] = {};
      -
      -    /**
      -     * Collection of custom controls in the map UI
      -     *
      -     * @type {array}
      -     */
      -    this.controls = [];
      -    /**
      -     * Collection of map's overlays
      -     *
      -     * @type {array}
      -     */
      -    this.overlays = [];
      -    /**
      -     * Collection of KML/GeoRSS and FusionTable layers
      -     *
      -     * @type {array}
      -     */
      -    this.layers = [];
      -    /**
      -     * Collection of data layers (See {@link GMaps#addLayer})
      -     *
      -     * @type {object}
      -     */
      -    this.singleLayers = {};
      -    /**
      -     * Collection of map's markers
      -     *
      -     * @type {array}
      -     */
      -    this.markers = [];
      -    /**
      -     * Collection of map's lines
      -     *
      -     * @type {array}
      -     */
      -    this.polylines = [];
      -    /**
      -     * Collection of map's routes requested by {@link GMaps#getRoutes}, {@link GMaps#renderRoute}, {@link GMaps#drawRoute}, {@link GMaps#travelRoute} or {@link GMaps#drawSteppedRoute}
      -     *
      -     * @type {array}
      -     */
      -    this.routes = [];
      -    /**
      -     * Collection of map's polygons
      -     *
      -     * @type {array}
      -     */
      -    this.polygons = [];
      -    this.infoWindow = null;
      -    this.overlay_el = null;
      -    /**
      -     * Current map's zoom
      -     *
      -     * @type {number}
      -     */
      -    this.zoom = options.zoom;
      -    this.registered_events = {};
      -
      -    this.el.style.width = options.width || this.el.scrollWidth || this.el.offsetWidth;
      -    this.el.style.height = options.height || this.el.scrollHeight || this.el.offsetHeight;
      -
      -    google.maps.visualRefresh = options.enableNewStyle;
      -
      -    for (i = 0; i < options_to_be_deleted.length; i++) {
      -      delete options[options_to_be_deleted[i]];
      -    }
      -
      -    if(options.disableDefaultUI != true) {
      -      map_base_options = extend_object(map_base_options, map_controls_options);
      -    }
      -
      -    map_options = extend_object(map_base_options, options);
      -
      -    for (i = 0; i < events_that_hide_context_menu.length; i++) {
      -      delete map_options[events_that_hide_context_menu[i]];
      -    }
      -
      -    for (i = 0; i < events_that_doesnt_hide_context_menu.length; i++) {
      -      delete map_options[events_that_doesnt_hide_context_menu[i]];
      -    }
      -
      -    /**
      -     * Google Maps map instance
      -     *
      -     * @type {google.maps.Map}
      -     */
      -    this.map = new google.maps.Map(this.el, map_options);
      -
      -    if (markerClustererFunction) {
      -      /**
      -       * Marker Clusterer instance
      -       *
      -       * @type {object}
      -       */
      -      this.markerClusterer = markerClustererFunction.apply(this, [this.map]);
      -    }
      -
      -    var buildContextMenuHTML = function(control, e) {
      -      var html = '',
      -          options = window.context_menu[self.el.id][control];
      -
      -      for (var i in options){
      -        if (options.hasOwnProperty(i)) {
      -          var option = options[i];
      -
      -          html += '<li><a id="' + control + '_' + i + '" href="#">' + option.title + '</a></li>';
      -        }
      -      }
      -
      -      if (!getElementById('gmaps_context_menu')) return;
      -
      -      var context_menu_element = getElementById('gmaps_context_menu');
      -
      -      context_menu_element.innerHTML = html;
      -
      -      var context_menu_items = context_menu_element.getElementsByTagName('a'),
      -          context_menu_items_count = context_menu_items.length,
      -          i;
      -
      -      for (i = 0; i < context_menu_items_count; i++) {
      -        var context_menu_item = context_menu_items[i];
      -
      -        var assign_menu_item_action = function(ev){
      -          ev.preventDefault();
      -
      -          options[this.id.replace(control + '_', '')].action.apply(self, [e]);
      -          self.hideContextMenu();
      -        };
      -
      -        google.maps.event.clearListeners(context_menu_item, 'click');
      -        google.maps.event.addDomListenerOnce(context_menu_item, 'click', assign_menu_item_action, false);
      -      }
      -
      -      var position = findAbsolutePosition.apply(this, [self.el]),
      -          left = position[0] + e.pixel.x - 15,
      -          top = position[1] + e.pixel.y- 15;
      -
      -      context_menu_element.style.left = left + "px";
      -      context_menu_element.style.top = top + "px";
      -
      -      // context_menu_element.style.display = 'block';
      -    };
      -
      -    this.buildContextMenu = function(control, e) {
      -      if (control === 'marker') {
      -        e.pixel = {};
      -
      -        var overlay = new google.maps.OverlayView();
      -        overlay.setMap(self.map);
      -
      -        overlay.draw = function() {
      -          var projection = overlay.getProjection(),
      -              position = e.marker.getPosition();
      -
      -          e.pixel = projection.fromLatLngToContainerPixel(position);
      -
      -          buildContextMenuHTML(control, e);
      -        };
      -      }
      -      else {
      -        buildContextMenuHTML(control, e);
      -      }
      -
      -      var context_menu_element = getElementById('gmaps_context_menu');
      -
      -      setTimeout(function() {
      -        context_menu_element.style.display = 'block';
      -      }, 0);
      -    };
      -
      -    /**
      -     * Add a context menu for a map or a marker.
      -     *
      -     * @param {object} options - The `options` object should contain:
      -     * * `control` (string): Kind of control the context menu will be attached. Can be "map" or "marker".
      -     * * `options` (array): A collection of context menu items:
      -     *   * `title` (string): Item's title shown in the context menu.
      -     *   * `name` (string): Item's identifier.
      -     *   * `action` (function): Function triggered after selecting the context menu item.
      -     */
      -    this.setContextMenu = function(options) {
      -      window.context_menu[self.el.id][options.control] = {};
      -
      -      var i,
      -          ul = doc.createElement('ul');
      -
      -      for (i in options.options) {
      -        if (options.options.hasOwnProperty(i)) {
      -          var option = options.options[i];
      -
      -          window.context_menu[self.el.id][options.control][option.name] = {
      -            title: option.title,
      -            action: option.action
      -          };
      -        }
      -      }
      -
      -      ul.id = 'gmaps_context_menu';
      -      ul.style.display = 'none';
      -      ul.style.position = 'absolute';
      -      ul.style.minWidth = '100px';
      -      ul.style.background = 'white';
      -      ul.style.listStyle = 'none';
      -      ul.style.padding = '8px';
      -      ul.style.boxShadow = '2px 2px 6px #ccc';
      -
      -      if (!getElementById('gmaps_context_menu')) {
      -        doc.body.appendChild(ul);
      -      }
      -
      -      var context_menu_element = getElementById('gmaps_context_menu');
      -
      -      google.maps.event.addDomListener(context_menu_element, 'mouseout', function(ev) {
      -        if (!ev.relatedTarget || !this.contains(ev.relatedTarget)) {
      -          window.setTimeout(function(){
      -            context_menu_element.style.display = 'none';
      -          }, 400);
      -        }
      -      }, false);
      -    };
      -
      -    /**
      -     * Hide the current context menu
      -     */
      -    this.hideContextMenu = function() {
      -      var context_menu_element = getElementById('gmaps_context_menu');
      -
      -      if (context_menu_element) {
      -        context_menu_element.style.display = 'none';
      -      }
      -    };
      -
      -    var setupListener = function(object, name) {
      -      google.maps.event.addListener(object, name, function(e){
      -        if (e == undefined) {
      -          e = this;
      -        }
      -
      -        options[name].apply(this, [e]);
      -
      -        self.hideContextMenu();
      -      });
      -    };
      -
      -    //google.maps.event.addListener(this.map, 'idle', this.hideContextMenu);
      -    google.maps.event.addListener(this.map, 'zoom_changed', this.hideContextMenu);
      -
      -    for (var ev = 0; ev < events_that_hide_context_menu.length; ev++) {
      -      var name = events_that_hide_context_menu[ev];
      -
      -      if (name in options) {
      -        setupListener(this.map, name);
      -      }
      -    }
      -
      -    for (var ev = 0; ev < events_that_doesnt_hide_context_menu.length; ev++) {
      -      var name = events_that_doesnt_hide_context_menu[ev];
      -
      -      if (name in options) {
      -        setupListener(this.map, name);
      -      }
      -    }
      -
      -    google.maps.event.addListener(this.map, 'rightclick', function(e) {
      -      if (options.rightclick) {
      -        options.rightclick.apply(this, [e]);
      -      }
      -
      -      if(window.context_menu[self.el.id]['map'] != undefined) {
      -        self.buildContextMenu('map', e);
      -      }
      -    });
      -
      -    /**
      -     * Trigger a `resize` event, useful if you need to repaint the current map (for changes in the viewport or display / hide actions).
      -     */
      -    this.refresh = function() {
      -      google.maps.event.trigger(this.map, 'resize');
      -    };
      -
      -    /**
      -     * Adjust the map zoom to include all the markers added in the map.
      -     */
      -    this.fitZoom = function() {
      -      var latLngs = [],
      -          markers_length = this.markers.length,
      -          i;
      -
      -      for (i = 0; i < markers_length; i++) {
      -        if(typeof(this.markers[i].visible) === 'boolean' && this.markers[i].visible) {
      -          latLngs.push(this.markers[i].getPosition());
      -        }
      -      }
      -
      -      this.fitLatLngBounds(latLngs);
      -    };
      -
      -    /**
      -     * Adjust the map zoom to include all the coordinates in the `latLngs` array.
      -     *
      -     * @param {array} latLngs - Collection of `google.maps.LatLng` objects.
      -     */
      -    this.fitLatLngBounds = function(latLngs) {
      -      var total = latLngs.length,
      -          bounds = new google.maps.LatLngBounds(),
      -          i;
      -
      -      for(i = 0; i < total; i++) {
      -        bounds.extend(latLngs[i]);
      -      }
      -
      -      this.map.fitBounds(bounds);
      -    };
      -
      -    /**
      -     * Center the map using the `lat` and `lng` coordinates.
      -     *
      -     * @param {number} lat - Latitude of the coordinate.
      -     * @param {number} lng - Longitude of the coordinate.
      -     * @param {function} [callback] - Callback that will be executed after the map is centered.
      -     */
      -    this.setCenter = function(lat, lng, callback) {
      -      this.map.panTo(new google.maps.LatLng(lat, lng));
      -
      -      if (callback) {
      -        callback();
      -      }
      -    };
      -
      -    /**
      -     * Return the HTML element container of the map.
      -     *
      -     * @returns {HTMLElement} the element container.
      -     */
      -    this.getElement = function() {
      -      return this.el;
      -    };
      -
      -    /**
      -     * Increase the map's zoom.
      -     *
      -     * @param {number} [magnitude] - The number of times the map will be zoomed in.
      -     */
      -    this.zoomIn = function(value) {
      -      value = value || 1;
      -
      -      this.zoom = this.map.getZoom() + value;
      -      this.map.setZoom(this.zoom);
      -    };
      -
      -    /**
      -     * Decrease the map's zoom.
      -     *
      -     * @param {number} [magnitude] - The number of times the map will be zoomed out.
      -     */
      -    this.zoomOut = function(value) {
      -      value = value || 1;
      -
      -      this.zoom = this.map.getZoom() - value;
      -      this.map.setZoom(this.zoom);
      -    };
      -
      -    var native_methods = [],
      -        method;
      -
      -    for (method in this.map) {
      -      if (typeof(this.map[method]) == 'function' && !this[method]) {
      -        native_methods.push(method);
      -      }
      -    }
      -
      -    for (i = 0; i < native_methods.length; i++) {
      -      (function(gmaps, scope, method_name) {
      -        gmaps[method_name] = function(){
      -          return scope[method_name].apply(scope, arguments);
      -        };
      -      })(this, this.map, native_methods[i]);
      -    }
      -  };
      -
      -  return GMaps;
      -})(this);
      -
      -
      -
      - - - - -
      - -
      - -
      - Documentation generated by JSDoc 3.4.0 on Sun Apr 03 2016 18:36:23 GMT-0400 (EDT) using the Minami theme. -
      - - - - - diff --git a/public/assets/out/gmaps/docs/gmaps.static.js.html b/public/assets/out/gmaps/docs/gmaps.static.js.html deleted file mode 100644 index c0bdddb5..00000000 --- a/public/assets/out/gmaps/docs/gmaps.static.js.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - gmaps.static.js - Documentation - - - - - - - - - - - - - - - - - -
      - -

      gmaps.static.js

      - - - - - - - -
      -
      -
      GMaps.prototype.toImage = function(options) {
      -  var options = options || {},
      -      static_map_options = {};
      -
      -  static_map_options['size'] = options['size'] || [this.el.clientWidth, this.el.clientHeight];
      -  static_map_options['lat'] = this.getCenter().lat();
      -  static_map_options['lng'] = this.getCenter().lng();
      -
      -  if (this.markers.length > 0) {
      -    static_map_options['markers'] = [];
      -    
      -    for (var i = 0; i < this.markers.length; i++) {
      -      static_map_options['markers'].push({
      -        lat: this.markers[i].getPosition().lat(),
      -        lng: this.markers[i].getPosition().lng()
      -      });
      -    }
      -  }
      -
      -  if (this.polylines.length > 0) {
      -    var polyline = this.polylines[0];
      -    
      -    static_map_options['polyline'] = {};
      -    static_map_options['polyline']['path'] = google.maps.geometry.encoding.encodePath(polyline.getPath());
      -    static_map_options['polyline']['strokeColor'] = polyline.strokeColor
      -    static_map_options['polyline']['strokeOpacity'] = polyline.strokeOpacity
      -    static_map_options['polyline']['strokeWeight'] = polyline.strokeWeight
      -  }
      -
      -  return GMaps.staticMapURL(static_map_options);
      -};
      -
      -GMaps.staticMapURL = function(options){
      -  var parameters = [],
      -      data,
      -      static_root = (location.protocol === 'file:' ? 'http:' : location.protocol ) + '//maps.googleapis.com/maps/api/staticmap';
      -
      -  if (options.url) {
      -    static_root = options.url;
      -    delete options.url;
      -  }
      -
      -  static_root += '?';
      -
      -  var markers = options.markers;
      -  
      -  delete options.markers;
      -
      -  if (!markers && options.marker) {
      -    markers = [options.marker];
      -    delete options.marker;
      -  }
      -
      -  var styles = options.styles;
      -
      -  delete options.styles;
      -
      -  var polyline = options.polyline;
      -  delete options.polyline;
      -
      -  /** Map options **/
      -  if (options.center) {
      -    parameters.push('center=' + options.center);
      -    delete options.center;
      -  }
      -  else if (options.address) {
      -    parameters.push('center=' + options.address);
      -    delete options.address;
      -  }
      -  else if (options.lat) {
      -    parameters.push(['center=', options.lat, ',', options.lng].join(''));
      -    delete options.lat;
      -    delete options.lng;
      -  }
      -  else if (options.visible) {
      -    var visible = encodeURI(options.visible.join('|'));
      -    parameters.push('visible=' + visible);
      -  }
      -
      -  var size = options.size;
      -  if (size) {
      -    if (size.join) {
      -      size = size.join('x');
      -    }
      -    delete options.size;
      -  }
      -  else {
      -    size = '630x300';
      -  }
      -  parameters.push('size=' + size);
      -
      -  if (!options.zoom && options.zoom !== false) {
      -    options.zoom = 15;
      -  }
      -
      -  var sensor = options.hasOwnProperty('sensor') ? !!options.sensor : true;
      -  delete options.sensor;
      -  parameters.push('sensor=' + sensor);
      -
      -  for (var param in options) {
      -    if (options.hasOwnProperty(param)) {
      -      parameters.push(param + '=' + options[param]);
      -    }
      -  }
      -
      -  /** Markers **/
      -  if (markers) {
      -    var marker, loc;
      -
      -    for (var i = 0; data = markers[i]; i++) {
      -      marker = [];
      -
      -      if (data.size && data.size !== 'normal') {
      -        marker.push('size:' + data.size);
      -        delete data.size;
      -      }
      -      else if (data.icon) {
      -        marker.push('icon:' + encodeURI(data.icon));
      -        delete data.icon;
      -      }
      -
      -      if (data.color) {
      -        marker.push('color:' + data.color.replace('#', '0x'));
      -        delete data.color;
      -      }
      -
      -      if (data.label) {
      -        marker.push('label:' + data.label[0].toUpperCase());
      -        delete data.label;
      -      }
      -
      -      loc = (data.address ? data.address : data.lat + ',' + data.lng);
      -      delete data.address;
      -      delete data.lat;
      -      delete data.lng;
      -
      -      for(var param in data){
      -        if (data.hasOwnProperty(param)) {
      -          marker.push(param + ':' + data[param]);
      -        }
      -      }
      -
      -      if (marker.length || i === 0) {
      -        marker.push(loc);
      -        marker = marker.join('|');
      -        parameters.push('markers=' + encodeURI(marker));
      -      }
      -      // New marker without styles
      -      else {
      -        marker = parameters.pop() + encodeURI('|' + loc);
      -        parameters.push(marker);
      -      }
      -    }
      -  }
      -
      -  /** Map Styles **/
      -  if (styles) {
      -    for (var i = 0; i < styles.length; i++) {
      -      var styleRule = [];
      -      if (styles[i].featureType){
      -        styleRule.push('feature:' + styles[i].featureType.toLowerCase());
      -      }
      -
      -      if (styles[i].elementType) {
      -        styleRule.push('element:' + styles[i].elementType.toLowerCase());
      -      }
      -
      -      for (var j = 0; j < styles[i].stylers.length; j++) {
      -        for (var p in styles[i].stylers[j]) {
      -          var ruleArg = styles[i].stylers[j][p];
      -          if (p == 'hue' || p == 'color') {
      -            ruleArg = '0x' + ruleArg.substring(1);
      -          }
      -          styleRule.push(p + ':' + ruleArg);
      -        }
      -      }
      -
      -      var rule = styleRule.join('|');
      -      if (rule != '') {
      -        parameters.push('style=' + rule);
      -      }
      -    }
      -  }
      -
      -  /** Polylines **/
      -  function parseColor(color, opacity) {
      -    if (color[0] === '#'){
      -      color = color.replace('#', '0x');
      -
      -      if (opacity) {
      -        opacity = parseFloat(opacity);
      -        opacity = Math.min(1, Math.max(opacity, 0));
      -        if (opacity === 0) {
      -          return '0x00000000';
      -        }
      -        opacity = (opacity * 255).toString(16);
      -        if (opacity.length === 1) {
      -          opacity += opacity;
      -        }
      -
      -        color = color.slice(0,8) + opacity;
      -      }
      -    }
      -    return color;
      -  }
      -
      -  if (polyline) {
      -    data = polyline;
      -    polyline = [];
      -
      -    if (data.strokeWeight) {
      -      polyline.push('weight:' + parseInt(data.strokeWeight, 10));
      -    }
      -
      -    if (data.strokeColor) {
      -      var color = parseColor(data.strokeColor, data.strokeOpacity);
      -      polyline.push('color:' + color);
      -    }
      -
      -    if (data.fillColor) {
      -      var fillcolor = parseColor(data.fillColor, data.fillOpacity);
      -      polyline.push('fillcolor:' + fillcolor);
      -    }
      -
      -    var path = data.path;
      -    if (path.join) {
      -      for (var j=0, pos; pos=path[j]; j++) {
      -        polyline.push(pos.join(','));
      -      }
      -    }
      -    else {
      -      polyline.push('enc:' + path);
      -    }
      -
      -    polyline = polyline.join('|');
      -    parameters.push('path=' + encodeURI(polyline));
      -  }
      -
      -  /** Retina support **/
      -  var dpi = window.devicePixelRatio || 1;
      -  parameters.push('scale=' + dpi);
      -
      -  parameters = parameters.join('&');
      -  return static_root + parameters;
      -};
      -
      -
      -
      - - - - -
      - -
      - -
      - Documentation generated by JSDoc 3.4.0 on Sun Apr 03 2016 18:36:23 GMT-0400 (EDT) using the Minami theme. -
      - - - - - diff --git a/public/assets/out/gmaps/docs/index.html b/public/assets/out/gmaps/docs/index.html deleted file mode 100644 index 1cebb1bc..00000000 --- a/public/assets/out/gmaps/docs/index.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - Home - Documentation - - - - - - - - - - - - - - - - - -
      - - - - - - - - - - - - - - - - - - - - - - - - -
      - -
      - -
      - Documentation generated by JSDoc 3.4.0 on Sun Apr 03 2016 18:36:23 GMT-0400 (EDT) using the Minami theme. -
      - - - - - \ No newline at end of file diff --git a/public/assets/out/gmaps/docs/scripts/linenumber.js b/public/assets/out/gmaps/docs/scripts/linenumber.js deleted file mode 100644 index 8d52f7ea..00000000 --- a/public/assets/out/gmaps/docs/scripts/linenumber.js +++ /dev/null @@ -1,25 +0,0 @@ -/*global document */ -(function() { - var source = document.getElementsByClassName('prettyprint source linenums'); - var i = 0; - var lineNumber = 0; - var lineId; - var lines; - var totalLines; - var anchorHash; - - if (source && source[0]) { - anchorHash = document.location.hash.substring(1); - lines = source[0].getElementsByTagName('li'); - totalLines = lines.length; - - for (; i < totalLines; i++) { - lineNumber++; - lineId = 'line' + lineNumber; - lines[i].id = lineId; - if (lineId === anchorHash) { - lines[i].className += ' selected'; - } - } - } -})(); diff --git a/public/assets/out/gmaps/docs/scripts/prettify/Apache-License-2.0.txt b/public/assets/out/gmaps/docs/scripts/prettify/Apache-License-2.0.txt deleted file mode 100644 index d6456956..00000000 --- a/public/assets/out/gmaps/docs/scripts/prettify/Apache-License-2.0.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/public/assets/out/gmaps/docs/scripts/prettify/lang-css.js b/public/assets/out/gmaps/docs/scripts/prettify/lang-css.js deleted file mode 100644 index 041e1f59..00000000 --- a/public/assets/out/gmaps/docs/scripts/prettify/lang-css.js +++ /dev/null @@ -1,2 +0,0 @@ -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", -/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); diff --git a/public/assets/out/gmaps/docs/scripts/prettify/prettify.js b/public/assets/out/gmaps/docs/scripts/prettify/prettify.js deleted file mode 100644 index eef5ad7e..00000000 --- a/public/assets/out/gmaps/docs/scripts/prettify/prettify.js +++ /dev/null @@ -1,28 +0,0 @@ -var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), -l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p ul { - padding: 0 10px; -} - -nav > ul > li > a { - color: #606; -} - -nav ul ul { - margin-bottom: 10px -} - -nav ul ul a { - color: hsl(207, 1%, 60%); - border-left: 1px solid hsl(207, 10%, 86%); -} - -nav ul ul a, -nav ul ul a:active { - padding-left: 20px -} - -nav h2 { - font-size: 12px; - margin: 0; - padding: 0; -} - -nav > h2 > a { - display: block; - margin: 10px 0 -10px; - color: #606 !important; -} - -footer { - color: hsl(0, 0%, 28%); - margin-left: 250px; - display: block; - padding: 15px; - font-style: italic; - font-size: 90%; -} - -.ancestors { - color: #999 -} - -.ancestors a { - color: #999 !important; -} - -.clear { - clear: both -} - -.important { - font-weight: bold; - color: #950B02; -} - -.yes-def { - text-indent: -1000px -} - -.type-signature { - color: #CA79CA -} - -.type-signature:last-child { - color: #eee; -} - -.name, .signature { - font-family: Consolas, Monaco, 'Andale Mono', monospace -} - -.signature { - color: #fc83ff; -} - -.details { - margin-top: 6px; - border-left: 2px solid #DDD; - line-height: 20px; - font-size: 14px; -} - -.details dt { - width: 120px; - float: left; - padding-left: 10px; -} - -.details dd { - margin-left: 70px; - margin-top: 6px; - margin-bottom: 6px; -} - -.details ul { - margin: 0 -} - -.details ul { - list-style-type: none -} - -.details pre.prettyprint { - margin: 0 -} - -.details .object-value { - padding-top: 0 -} - -.description { - margin-bottom: 1em; - margin-top: 1em; -} - -.code-caption { - font-style: italic; - font-size: 107%; - margin: 0; -} - -.prettyprint { - font-size: 14px; - overflow: auto; -} - -.prettyprint.source { - width: inherit; - line-height: 18px; - display: block; - background-color: #0d152a; - color: #aeaeae; -} - -.prettyprint code { - line-height: 18px; - display: block; - background-color: #0d152a; - color: #4D4E53; -} - -.prettyprint > code { - padding: 15px; -} - -.prettyprint .linenums code { - padding: 0 15px -} - -.prettyprint .linenums li:first-of-type code { - padding-top: 15px -} - -.prettyprint code span.line { - display: inline-block -} - -.prettyprint.linenums { - padding-left: 70px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.prettyprint.linenums ol { - padding-left: 0 -} - -.prettyprint.linenums li { - border-left: 3px #34446B solid; -} - -.prettyprint.linenums li.selected, .prettyprint.linenums li.selected * { - background-color: #34446B; -} - -.prettyprint.linenums li * { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; -} - -.params, .props { - border-spacing: 0; - border: 1px solid #ddd; - border-collapse: collapse; - border-radius: 3px; - box-shadow: 0 1px 3px rgba(0,0,0,0.1); - width: 100%; - font-size: 14px; - margin: 1em 0; -} - -.params td, .params .name, .props .name, .name code { - color: #4D4E53; - font-family: Consolas, Monaco, 'Andale Mono', monospace; - font-size: 100%; -} - -.params td, .params th, .props td, .props th { - margin: 0px; - text-align: left; - vertical-align: top; - padding: 10px; - display: table-cell; -} - -.params td { - border-top: 1px solid #eee -} - -.params thead tr, .props thead tr { - background-color: #fff; - font-weight: bold; -} - -.params .params thead tr, .props .props thead tr { - background-color: #fff; - font-weight: bold; -} - -.params td.description > p:first-child, .props td.description > p:first-child { - margin-top: 0; - padding-top: 0; -} - -.params td.description > p:last-child, .props td.description > p:last-child { - margin-bottom: 0; - padding-bottom: 0; -} - -span.param-type, .params td .param-type, .param-type dd { - color: #606; - font-family: Consolas, Monaco, 'Andale Mono', monospace -} - -.param-type dt, .param-type dd { - display: inline-block -} - -.param-type { - margin: 14px 0; -} - -.disabled { - color: #454545 -} - -/* navicon button */ -.navicon-button { - display: none; - position: relative; - padding: 2.0625rem 1.5rem; - transition: 0.25s; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: .8; -} -.navicon-button .navicon:before, .navicon-button .navicon:after { - transition: 0.25s; -} -.navicon-button:hover { - transition: 0.5s; - opacity: 1; -} -.navicon-button:hover .navicon:before, .navicon-button:hover .navicon:after { - transition: 0.25s; -} -.navicon-button:hover .navicon:before { - top: .825rem; -} -.navicon-button:hover .navicon:after { - top: -.825rem; -} - -/* navicon */ -.navicon { - position: relative; - width: 2.5em; - height: .3125rem; - background: #000; - transition: 0.3s; - border-radius: 2.5rem; -} -.navicon:before, .navicon:after { - display: block; - content: ""; - height: .3125rem; - width: 2.5rem; - background: #000; - position: absolute; - z-index: -1; - transition: 0.3s 0.25s; - border-radius: 1rem; -} -.navicon:before { - top: .625rem; -} -.navicon:after { - top: -.625rem; -} - -/* open */ -.nav-trigger:checked + label:not(.steps) .navicon:before, -.nav-trigger:checked + label:not(.steps) .navicon:after { - top: 0 !important; -} - -.nav-trigger:checked + label .navicon:before, -.nav-trigger:checked + label .navicon:after { - transition: 0.5s; -} - -/* Minus */ -.nav-trigger:checked + label { - -webkit-transform: scale(0.75); - transform: scale(0.75); -} - -/* × and + */ -.nav-trigger:checked + label.plus .navicon, -.nav-trigger:checked + label.x .navicon { - background: transparent; -} - -.nav-trigger:checked + label.plus .navicon:before, -.nav-trigger:checked + label.x .navicon:before { - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - background: #FFF; -} - -.nav-trigger:checked + label.plus .navicon:after, -.nav-trigger:checked + label.x .navicon:after { - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - background: #FFF; -} - -.nav-trigger:checked + label.plus { - -webkit-transform: scale(0.75) rotate(45deg); - transform: scale(0.75) rotate(45deg); -} - -.nav-trigger:checked ~ nav { - left: 0 !important; -} - -.nav-trigger:checked ~ .overlay { - display: block; -} - -.nav-trigger { - position: fixed; - top: 0; - clip: rect(0, 0, 0, 0); -} - -.overlay { - display: none; - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - width: 100%; - height: 100%; - background: hsla(0, 0%, 0%, 0.5); - z-index: 1; -} - -@media only screen and (min-width: 320px) and (max-width: 680px) { - body { - overflow-x: hidden; - } - - nav { - background: #FFF; - width: 250px; - height: 100%; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: -250px; - z-index: 3; - padding: 0 10px; - transition: left 0.2s; - } - - .navicon-button { - display: inline-block; - position: fixed; - top: 1.5em; - right: 0; - z-index: 2; - } - - #main { - width: 100%; - min-width: 360px; - } - - #main h1.page-title { - margin: 1em 0; - } - - #main section { - padding: 0; - } - - footer { - margin-left: 0; - } -} diff --git a/public/assets/out/gmaps/docs/styles/prettify.css b/public/assets/out/gmaps/docs/styles/prettify.css deleted file mode 100644 index 7d831478..00000000 --- a/public/assets/out/gmaps/docs/styles/prettify.css +++ /dev/null @@ -1,79 +0,0 @@ -.pln { - color: #ddd; -} - -/* string content */ -.str { - color: #61ce3c; -} - -/* a keyword */ -.kwd { - color: #fbde2d; -} - -/* a comment */ -.com { - color: #aeaeae; -} - -/* a type name */ -.typ { - color: #8da6ce; -} - -/* a literal value */ -.lit { - color: #fbde2d; -} - -/* punctuation */ -.pun { - color: #ddd; -} - -/* lisp open bracket */ -.opn { - color: #000000; -} - -/* lisp close bracket */ -.clo { - color: #000000; -} - -/* a markup tag name */ -.tag { - color: #c82829; -} - -/* a markup attribute name */ -.atn { - color: #f5871f; -} - -/* a markup attribute value */ -.atv { - color: #3e999f; -} - -/* a declaration */ -.dec { - color: #f5871f; -} - -/* a variable name */ -.var { - color: #c82829; -} - -/* a function name */ -.fun { - color: #4271ae; -} - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} diff --git a/public/assets/out/gmaps/examples/basic.html b/public/assets/out/gmaps/examples/basic.html deleted file mode 100644 index 396473a3..00000000 --- a/public/assets/out/gmaps/examples/basic.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - GMaps.js — Basic - - - - - - - - -

      GMaps.js — Basic

      -
      -
      -
      -
      -
      -

      Using GMaps.js is as easy as:

      -
      new GMaps({
      -  el: '#map',
      -  lat: -12.043333,
      -  lng: -77.028333
      -});
      -

      You must define container ID, latitude and longitude of the map's center.

      -

      Note: You also can define zoom, width and height. By default, zoom is 15. Width and height in a CSS class will replace these values.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/context_menu.html b/public/assets/out/gmaps/examples/context_menu.html deleted file mode 100644 index bf3644f1..00000000 --- a/public/assets/out/gmaps/examples/context_menu.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - GMaps.js — Context menu - - - - - - - - -

      GMaps.js — Context menu

      -
      -
      -
      -
      -
      -

      You can define a context menu (which will show on right click) with:

      -
      map.setContextMenu({
      -  control: 'map',
      -  options: [{
      -    title: 'Add marker',
      -    name: 'add_marker',
      -    action: function(e){
      -      this.addMarker({
      -        lat: e.latLng.lat(),
      -        lng: e.latLng.lng(),
      -        title: 'New marker'
      -      });
      -    }
      -  }, {
      -    title: 'Center here',
      -    name: 'center_here',
      -    action: function(e){
      -      this.setCenter(e.latLng.lat(), e.latLng.lng());
      -    }
      -  }]
      -});
      -

      You must define the control that the context menu is attached (map or marker) and an array of options with title, name and action Inside action you can use this for the GMaps.js object (map in this case) and MouseEvent object e.

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/custom_controls.html b/public/assets/out/gmaps/examples/custom_controls.html deleted file mode 100644 index fcb942a2..00000000 --- a/public/assets/out/gmaps/examples/custom_controls.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - GMaps.js — Custom controls - - - - - - - - -

      GMaps.js — Custom controls

      -
      -
      -
      -
      -
      -

      GMaps.js allows to add custom controls:

      -
      map.addControl({
      -  position: 'top_right',
      -  text: 'Geolocate',
      -  style: {
      -    margin: '5px',
      -    padding: '1px 6px',
      -    border: 'solid 1px #717B87',
      -    background: '#fff'
      -  },
      -  events: {
      -    click: function(){
      -      console.log(this);
      -    }
      -  }
      -});
      -

      - Note: You can use the following positions: -

        -
      • top_center
      • -
      • top_left
      • -
      • top_right
      • -
      • left_top
      • -
      • right_top
      • -
      • left_center
      • -
      • right_center
      • -
      • left_bottom
      • -
      • right_bottom
      • -
      • bottom_center
      • -
      • bottom_left
      • -
      • bottom_right
      • -
      - You can learn more of custom controls here.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/elevation_locations.html b/public/assets/out/gmaps/examples/elevation_locations.html deleted file mode 100644 index 0528a272..00000000 --- a/public/assets/out/gmaps/examples/elevation_locations.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - GMaps.js — Elevation locations - - - - - - - - -

      GMaps.js — Elevation locations

      -
      -
      -
      -
      -
      -

      With GMaps.js you can add elevation this way:

      -
      map.getElevations({
      -  locations : [[-12.040397656836609,-77.03373871559225], [-12.050047116528843,-77.02448169303511],  [-12.044804866577001,-77.02154422636042]],
      -    callback : function (result, status){
      -    if (status == google.maps.ElevationStatus.OK) {
      -      console.log(result, status);
      -    }
      -  }
      -});
      - -
      -
      - - diff --git a/public/assets/out/gmaps/examples/elevation_routes.html b/public/assets/out/gmaps/examples/elevation_routes.html deleted file mode 100644 index 1c8ef2ec..00000000 --- a/public/assets/out/gmaps/examples/elevation_routes.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - GMaps.js — Elevation Routes - - - - - - - - - -

      GMaps.js — Elevation Routes

      -
      -
      -
      -
      -
      -

      With GMaps.js you can calculate the elevation for a route like this:

      -
      map.getElevations({
      -  locations : [[-12.040397656836609,-77.03373871559225], [-12.040248585302038,-77.03993927003302], [-12.050047116528843,-77.02448169303511],  [-12.044804866577001,-77.02154422636042]],
      -  path: true, 
      -    callback : function (result, status){
      -    if (status == google.maps.ElevationStatus.OK) {
      -      console.log(result, status);
      -    }
      -  }
      -});
      -
      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/examples.css b/public/assets/out/gmaps/examples/examples.css deleted file mode 100644 index 35f0905c..00000000 --- a/public/assets/out/gmaps/examples/examples.css +++ /dev/null @@ -1,51 +0,0 @@ -body{ - font-family: 'Droid Sans', 'Helvetica', Arial, sans-serif; - margin:5px; -} -#map{ - display: block; - width: 95%; - height: 350px; - margin: 0 auto; - -moz-box-shadow: 0px 5px 20px #ccc; - -webkit-box-shadow: 0px 5px 20px #ccc; - box-shadow: 0px 5px 20px #ccc; -} -#map.large{ - height:500px; -} - -.overlay{ - display:block; - text-align:center; - color:#fff; - font-size:60px; - line-height:80px; - opacity:0.8; - background:#4477aa; - border:solid 3px #336699; - border-radius:4px; - box-shadow:2px 2px 10px #333; - text-shadow:1px 1px 1px #666; - padding:0 4px; -} - -.overlay_arrow{ - left:50%; - margin-left:-16px; - width:0; - height:0; - position:absolute; -} -.overlay_arrow.above{ - bottom:-15px; - border-left:16px solid transparent; - border-right:16px solid transparent; - border-top:16px solid #336699; -} -.overlay_arrow.below{ - top:-15px; - border-left:16px solid transparent; - border-right:16px solid transparent; - border-bottom:16px solid #336699; -} \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/fusion_tables.html b/public/assets/out/gmaps/examples/fusion_tables.html deleted file mode 100644 index a9748425..00000000 --- a/public/assets/out/gmaps/examples/fusion_tables.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - GMaps.js — Fusion Tables layers - - - - - - - - -

      GMaps.js — Fusion Tables layers

      -
      -
      -
      -
      -
      -

      GMaps.js allows to add Fusion Table layers:

      -
      infoWindow = new google.maps.InfoWindow({});
      -map.loadFromFusionTables({
      -  query: {
      -    select: '\'Geocodable address\'',
      -    from: '1mZ53Z70NsChnBMm-qEYmSDOvLXgrreLTkQUvvg'
      -  },
      -  suppressInfoWindows: true,
      -  events: {
      -    click: function(point){
      -      infoWindow.setContent('You clicked here!');
      -      infoWindow.setPosition(point.latLng);
      -      infoWindow.open(map.map);
      -    }
      -  }
      -});
      -

      - Note: You can learn more about Fusion Table layers here.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/geocoding.html b/public/assets/out/gmaps/examples/geocoding.html deleted file mode 100644 index 7b62b9dd..00000000 --- a/public/assets/out/gmaps/examples/geocoding.html +++ /dev/null @@ -1,70 +0,0 @@ - - - - - GMaps.js — Geocoding - - - - - - - - -

      GMaps.js — Geocoding

      -
      -
      -
      - -
      - - -
      -
      -
      -
      -
      -

      You can geocoding this way:

      -
      GMaps.geocode({
      -  address: $('#address').val(),
      -  callback: function(results, status){
      -    if(status=='OK'){
      -      var latlng = results[0].geometry.location;
      -      map.setCenter(latlng.lat(), latlng.lng());
      -      map.addMarker({
      -        lat: latlng.lat(),
      -        lng: latlng.lng()
      -      });
      -    }
      -  }
      -});
      -

      You can define either address or lat and lng. Also, you must define callback, which will use results of geocoding and status.

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/geofences.html b/public/assets/out/gmaps/examples/geofences.html deleted file mode 100644 index 8154a47c..00000000 --- a/public/assets/out/gmaps/examples/geofences.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - GMaps.js — Geofences - - - - - - - - -

      GMaps.js — Geofences

      -
      -
      -
      -
      -
      -

      You can attach a geofence (which can be a polygon or a bounds) to a marker with:

      -
      polygon = map.drawPolygon({
      -  paths: path,
      -  strokeColor: '#BBD8E9',
      -  strokeOpacity: 1,
      -  strokeWeight: 3,
      -  fillColor: '#BBD8E9',
      -  fillOpacity: 0.6
      -});
      -map.addMarker({
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  draggable: true,
      -  fences: [polygon],
      -  outside: function(marker, fence){
      -    alert('This marker has been moved outside of its fence');
      -  }
      -});
      -

      You must define an outside callback, which will use this marker and its fence.

      -

      Note: You also can use checkMarkerGeofence or checkGeofence methods.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/geolocation.html b/public/assets/out/gmaps/examples/geolocation.html deleted file mode 100644 index 9b6ee004..00000000 --- a/public/assets/out/gmaps/examples/geolocation.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - GMaps.js — Geolocation - - - - - - - - -

      GMaps.js — Geolocation

      -
      -
      -
      -
      -
      -

      GMaps.js supports HTML5 Geolocation:

      -
      GMaps.geolocate({
      -  success: function(position){
      -    map.setCenter(position.coords.latitude, position.coords.longitude);
      -  },
      -  error: function(error){
      -    alert('Geolocation failed: '+error.message);
      -  },
      -  not_supported: function(){
      -    alert("Your browser does not support geolocation");
      -  },
      -  always: function(){
      -    alert("Done!");
      -  }
      -});
      -

      GMaps.geolocate supports 4 functions: -

        -
      • success (required): fires when geolocation has been successful
      • -
      • error (required): fires when geolocation has not been done
      • -
      • not_supported (required): fires when geolocation is not supported by the browser
      • -
      • always (optional): fires always after every scenario described above.
      • -

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/geometry.html b/public/assets/out/gmaps/examples/geometry.html deleted file mode 100644 index 1a11ab59..00000000 --- a/public/assets/out/gmaps/examples/geometry.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - GMaps.js — Geometry overlays - - - - - - - - -

      GMaps.js — Geometry overlays

      -
      -
      -
      -
      -
      -

      You can draw geometry overlays (which can be a polygon or a rectangle or a circle):

      -
      polygon = map.drawRectangle({
      -  bounds: bounds,
      -  strokeColor: '#BBD8E9',
      -  strokeOpacity: 1,
      -  strokeWeight: 3,
      -  fillColor: '#BBD8E9',
      -  fillOpacity: 0.6
      -});
      -polygon = map.drawPolygon({
      -  paths: paths,
      -  strokeColor: '#25D359',
      -  strokeOpacity: 1,
      -  strokeWeight: 3,
      -  fillColor: '#25D359',
      -  fillOpacity: 0.6
      -});
      -circle = map.drawCircle({
      -  lat: lat,
      -  lng: lng,
      -  radius: 350,  //350 meters
      -  strokeColor: '#432070',
      -  strokeOpacity: 1,
      -  strokeWeight: 3,
      -  fillColor: '#432070',
      -  fillOpacity: 0.6
      -});
      -

      Be careful with the settings as they are not the same for each overlay.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/kml.html b/public/assets/out/gmaps/examples/kml.html deleted file mode 100644 index 3eff22b9..00000000 --- a/public/assets/out/gmaps/examples/kml.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - GMaps.js — KML layers - - - - - - - - -

      GMaps.js — KML layers

      -
      -
      -
      -
      -
      -

      GMaps.js allows to add KML and GeoRSS layers:

      -
      infoWindow = new google.maps.InfoWindow({});
      -map.loadFromKML({
      -  url: 'http://www.searcharoo.net/SearchKml/newyork.kml',
      -  suppressInfoWindows: true,
      -  events: {
      -    click: function(point){
      -      infoWindow.setContent(point.featureData.infoWindowHtml);
      -      infoWindow.setPosition(point.latLng);
      -      infoWindow.open(map.map);
      -    }
      -  }
      -});
      -

      - Note: You can learn more about KML and GeoRSS layers here.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/layers.html b/public/assets/out/gmaps/examples/layers.html deleted file mode 100644 index ba4167cc..00000000 --- a/public/assets/out/gmaps/examples/layers.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Layers Maps - - - - - - - - -

      GMaps.js add and remove layers - Layers

      -
      -
      -
      -
      -
      -

      You can easily add or remove a layer using GMaps.js:

      -
      var map = new GMaps({
      -  el: '#map',
      -  lat: -12.043333,
      -  lng: -77.028333
      -});
      -map.addLayer('weather', {
      -  clickable: false
      -});
      -map.addLayer('clouds');
      -
      -

      Note: You can choose different layers. Possible values are weather, clouds, traffic, transit and/or bicycling

      -

      Note: Be aware that you have to add the library 'weather' in the url for the weather/clouds layer:

      http://maps.google.com/maps/api/js?sensor=true&libraries=weather

      -

      Note: In the second param you can add your options for the layer as object.

      -

      Note: To remove a layer you can use

      map.removeLayer('clouds');

      - -
      -
      - - diff --git a/public/assets/out/gmaps/examples/layers_places.html b/public/assets/out/gmaps/examples/layers_places.html deleted file mode 100644 index 2b1a670d..00000000 --- a/public/assets/out/gmaps/examples/layers_places.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - Layers Maps: Places - - - - - - - - -

      GMaps.js Places layer

      -
      -
      -
      -
      -
      -

      You can easily add or remove a layer using GMaps.js:

      -
      map.addLayer('places', {
      -          location : new google.maps.LatLng(-33.8665433,151.1956316),
      -          radius : 500,
      -          types : ['store'],
      -          search: function (results, status) {
      -            //do something with the result 
      -          }
      -        });
      -
      -

      Note: There are 3 types of function to use: search(), textSearch() and nearbySearch(). On the Google Places page you can see the options to use per search function.

      - -
      -
      - - diff --git a/public/assets/out/gmaps/examples/map_events.html b/public/assets/out/gmaps/examples/map_events.html deleted file mode 100644 index 7cba367b..00000000 --- a/public/assets/out/gmaps/examples/map_events.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - GMaps.js — Map events - - - - - - - - -

      GMaps.js — Map events

      -
      -
      -
      -
      -
      -

      GMaps.js allows to define map events very easily:

      -
      map = new GMaps({
      -  el: '#map',
      -  zoom: 16,
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  click: function(e){
      -    alert('click');
      -  },
      -  dragend: function(e){
      -    alert('dragend');
      -  }
      -});
      -

      Note: You can check the list of map events here.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/map_types.html b/public/assets/out/gmaps/examples/map_types.html deleted file mode 100644 index 27f3589d..00000000 --- a/public/assets/out/gmaps/examples/map_types.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - GMaps.js — Map Types - - - - - - - - -

      GMaps.js — Map Types

      -
      -
      -
      -
      -
      -

      You can define many map types from external map services, like OpenStreetMap:

      -
      map.addMapType("osm", {
      -  getTileUrl: function(coord, zoom) {
      -    return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
      -  },
      -  tileSize: new google.maps.Size(256, 256),
      -  name: "OpenStreetMap",
      -  maxZoom: 18
      -});
      -

      You must define a function called getTileUrl, which returns a tile URL according the coordenates in the map.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/marker_clusterer.html b/public/assets/out/gmaps/examples/marker_clusterer.html deleted file mode 100644 index 0e8e6ea7..00000000 --- a/public/assets/out/gmaps/examples/marker_clusterer.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - GMaps.js — Marker Clusterer - - - - - - - - - -

      GMaps.js — Marker Clusterer

      -
      -
      -
      -
      -
      -

      With GMaps.js you can use a marker clusterer to group large amount of markers:

      -
      map = new GMaps({
      -  div: '#map',
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  markerClusterer: function(map) {
      -    return new MarkerClusterer(map);
      -  }
      -});
      -

      You can use MarkerClusterer or MarkerClustererPlus. If you want to use a custom marker clustering library, you have to define a addMarker method.

      -

      Note: Read more about MarkerClusterer and MarkerClustererPlus here.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/markers.html b/public/assets/out/gmaps/examples/markers.html deleted file mode 100644 index 69b49910..00000000 --- a/public/assets/out/gmaps/examples/markers.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - GMaps.js — Markers - - - - - - - - -

      GMaps.js — Markers

      -
      -
      -
      -
      -
      -

      With GMaps.js you can add markers this way:

      -
      map.addMarker({
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  title: 'Lima',
      -  click: function(e){
      -    alert('You clicked in this marker');
      -  }
      -});
      -

      latitude and longitude are required. You can also attach additional information with details, which will be passed to Event object (e) in the events previously defined.

      -

      Note If you want to show an Info Window, you must add:

      -
      infoWindow: {
      -        content: '<p>HTML Content</p>'
      -      }
      -

      NoteThe Info Windows also can bind these events: closeclick, content_changed, domready, position_changed and zindex_changed

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/overlay_map_types.html b/public/assets/out/gmaps/examples/overlay_map_types.html deleted file mode 100644 index f3e50af9..00000000 --- a/public/assets/out/gmaps/examples/overlay_map_types.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - GMaps.js — Overlay Map Types - - - - - - - - -

      GMaps.js — Overlay Map Types

      -
      -
      -
      -
      -
      -

      You can define many overlay map types this way:

      -
      var getTile = function(coord, zoom, ownerDocument) {
      -  var div = ownerDocument.createElement('div');
      -  div.innerHTML = coord;
      -  div.style.width = this.tileSize.width + 'px';
      -  div.style.height = this.tileSize.height + 'px';
      -  div.style.background = 'rgba(250, 250, 250, 0.55)';
      -  div.style.fontFamily = 'Monaco, Andale Mono, Courier New, monospace';
      -  div.style.fontSize = '10';
      -  div.style.fontWeight = 'bolder';
      -  div.style.border = 'dotted 1px #aaa';
      -  div.style.textAlign = 'center';
      -  div.style.lineHeight = this.tileSize.height + 'px';
      -  return div;
      -};
      -
      -map.addOverlayMapType({
      -  index: 0,
      -  tileSize: new google.maps.Size(256, 256),
      -  getTile: getTile
      -});
      -

      You must define a function called getTile, which returns a HTML element used to fill the map overlay. Also, you have to set an overlay index, which place the overlay on top of the base map, according this index.

      -

      NOTE: You can remove an overlay map type using removeOverlayMapType(overlay_index).

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/overlays.html b/public/assets/out/gmaps/examples/overlays.html deleted file mode 100644 index 6e738f34..00000000 --- a/public/assets/out/gmaps/examples/overlays.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - GMaps.js — Overlays - - - - - - - - -

      GMaps.js — Overlays

      -
      -
      -
      -
      -
      -

      You can add overlays using:

      -
      map.drawOverlay({
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  content: '<div class="overlay">Lima</div>'
      -});
      -

      You must define latitude, longitude and the content of the map overlay.

      -

      Note: Also, you must define a height to the content.

      -

      Note: Also, you can define a verticalAlign, which can be top, middle or bottom, and horizontalAlign, which can be left, center or right.

      -

      Note: Also, you can define a click callback method, which will be triggered when the overlay's DOM element is clicked.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/polygons.html b/public/assets/out/gmaps/examples/polygons.html deleted file mode 100644 index deb9a7dd..00000000 --- a/public/assets/out/gmaps/examples/polygons.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - GMaps.js — Polygons - - - - - - - - -

      GMaps.js — Polygons

      -
      -
      -
      -
      -
      -

      You can add polygons in GMaps.js this way:

      -
      path = [[-12.040397656836609,-77.03373871559225], [-12.040248585302038,-77.03993927003302], [-12.050047116528843,-77.02448169303511], [-12.044804866577001,-77.02154422636042]];
      -
      -map.drawPolygon({
      -  paths: path,
      -  strokeColor: '#131540',
      -  strokeOpacity: 0.6,
      -  strokeWeight: 6
      -});
      -

      The path of the polygon is defined by an array of array of two (latitude and longitude).

      -

      NOTE: Also, you can add a GeoJSON Polygon or MultiPolygon path using useGeoJSON: true.

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/polylines.html b/public/assets/out/gmaps/examples/polylines.html deleted file mode 100644 index 3222ea6f..00000000 --- a/public/assets/out/gmaps/examples/polylines.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - GMaps.js — Polylines - - - - - - - - -

      GMaps.js — Polylines

      -
      -
      -
      -
      -
      -

      You can add polylines in GMaps.js this way:

      -
      path = [[-12.044012922866312, -77.02470665341184], [-12.05449279282314, -77.03024273281858], [-12.055122327623378, -77.03039293652341], [-12.075917129727586, -77.02764635449216], [-12.07635776902266, -77.02792530422971], [-12.076819390363665, -77.02893381481931], [-12.088527520066453, -77.0241058385925], [-12.090814532191756, -77.02271108990476]];
      -
      -map.drawPolyline({
      -  path: path,
      -  strokeColor: '#131540',
      -  strokeOpacity: 0.6,
      -  strokeWeight: 6
      -});
      -

      The path of the polyline is defined by an array of array of two (latitude and longitude).

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/render_directions.html b/public/assets/out/gmaps/examples/render_directions.html deleted file mode 100644 index debb5593..00000000 --- a/public/assets/out/gmaps/examples/render_directions.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - GMaps.js — Routes - - - - - - - - -

      GMaps.js — Routes

      -
      -
      -
      -
      -
      -
      -

      With GMaps.js you can render a directions panel using the following code:

      -
      map.renderRoute({
      -  origin: [-12.044012922866312, -77.02470665341184],
      -  destination: [-12.090814532191756, -77.02271108990476],
      -  travelMode: 'driving',
      -  strokeColor: '#131540',
      -  strokeOpacity: 0.6,
      -  strokeWeight: 6
      -}, {
      -  panel: '#directions',
      -  draggable: true
      -});
      -

      You must define two points (origin and destination) and color, opacity and weight of the route in the map.

      -

      Also, you can define a travelMode: driving, bicycling or walking. Default is walking

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/routes.html b/public/assets/out/gmaps/examples/routes.html deleted file mode 100644 index 00fc82de..00000000 --- a/public/assets/out/gmaps/examples/routes.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - GMaps.js — Routes - - - - - - - - -

      GMaps.js — Routes

      -
      -
      -
      -
      -
      -

      With GMaps.js you can draw a route between two points this way:

      -
      map.drawRoute({
      -  origin: [-12.044012922866312, -77.02470665341184],
      -  destination: [-12.090814532191756, -77.02271108990476],
      -  travelMode: 'driving',
      -  strokeColor: '#131540',
      -  strokeOpacity: 0.6,
      -  strokeWeight: 6
      -});
      -

      You must define two points (origin and destination) and color, opacity and weight of the route in the map.

      -

      Also, you can define a travelMode: driving, bicycling or walking. Default is walking

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/routes_advanced.html b/public/assets/out/gmaps/examples/routes_advanced.html deleted file mode 100644 index c233ef93..00000000 --- a/public/assets/out/gmaps/examples/routes_advanced.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - GMaps.js — Routes - - - - - - - - -

      GMaps.js — Routes

      -
      -
      -
      -
        -
      -
      -
      -

      You can travel a route, step by step, this way:

      -
      map.travelRoute({
      -  origin: [-12.044012922866312, -77.02470665341184],
      -  destination: [-12.090814532191756, -77.02271108990476],
      -  travelMode: 'driving',
      -  step: function(e){
      -    $('#instructions').append('<li>'+e.instructions+'</li>');
      -    $('#instructions li:eq('+e.step_number+')').delay(450*e.step_number).fadeIn(200, function(){
      -      map.drawPolyline({
      -        path: e.path,
      -        strokeColor: '#131540',
      -        strokeOpacity: 0.6,
      -        strokeWeight: 6
      -      });  
      -    });
      -  }
      -});
      -

      Same as drawRoute, you must define an origin, destination and travelMode. Also, you must define the function that GMaps will call every step in the route.

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/static.html b/public/assets/out/gmaps/examples/static.html deleted file mode 100644 index f69f644c..00000000 --- a/public/assets/out/gmaps/examples/static.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - GMaps.js — Static map - - - - - - - - -

      GMaps.js — Static map

      -
      -
      -
      -
      -
      -

      You can easily make a static map using GMaps.js:

      -
      url = GMaps.staticMapURL({
      -  size: [610, 350],
      -  lat: -12.043333,
      -  lng: -77.028333
      -});
      -
      -$('<img/>').attr('src', url)
      -  .appendTo('#map');
      -

      You must define a size and the latitude and longitude of the map's center.

      -

      Note: You also can define zoom (by default is 15, unless zoom is set to false, in which case Google will set zoom based on marker positions).

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/static_markers.html b/public/assets/out/gmaps/examples/static_markers.html deleted file mode 100644 index aa9a82a0..00000000 --- a/public/assets/out/gmaps/examples/static_markers.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - GMaps.js — Static map with markers - - - - - - - - -

      GMaps.js — Static map with markers

      -
      -
      -
      -
      -
      -

      With GMaps.js, a static map with markers is made this way:

      -
      url = GMaps.staticMapURL({
      -  size: [610, 350],
      -  lat: -12.043333,
      -  lng: -77.028333,
      -  markers: [
      -    {lat: -12.043333, lng: -77.028333},
      -    {lat: -12.045333, lng: -77.034, size: 'small'},
      -    {lat: -12.045633, lng: -77.022, color: 'blue'}
      -  ]
      -});
      -
      -$('<img/>').attr('src', url)
      -  .appendTo('#map');
      -

      If no style attribute (like color, size or icon) is defined for a marker, the last one (or the default) will be used.

      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/static_polylines.html b/public/assets/out/gmaps/examples/static_polylines.html deleted file mode 100644 index f7903484..00000000 --- a/public/assets/out/gmaps/examples/static_polylines.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - GMaps.js — Static map with polyline - - - - - - - - -

      GMaps.js — Static map with polyline

      -
      -
      -
      -
      -
      -

      A single polyline can be also drawed in a static map:

      -
      url = GMaps.staticMapURL({
      -  size: [610, 350],
      -  lat: -12.043333,
      -  lng: -77.028333,
      -
      -  polyline: {
      -    path: path,
      -    strokeColor: '#131540',
      -    strokeOpacity: 0.6,
      -    strokeWeight: 6
      -  }
      -});
      -
      -$('<img/>').attr('src', url)
      -  .appendTo('#map');
      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/examples/static_styles.html b/public/assets/out/gmaps/examples/static_styles.html deleted file mode 100644 index a8c5e4f5..00000000 --- a/public/assets/out/gmaps/examples/static_styles.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - GMaps.js — Static map - - - - - - - - -

      GMaps.js — Static map

      -
      -
      -
      -
      -
      -

      You can use the same styles as for a normal styled map to make a static map using GMaps.js:

      -
      url = GMaps.staticMapURL({
      -  size: [610, 350],
      -  lat: -12.043333,
      -  lng: -77.028333
      -  styles: [{
      -    featureType: "all",
      -    elementType: "all",
      -    stylers: [
      -      { hue: '#FF0000' }
      -    ]
      -  },
      -  {
      -    featureType: "landscape",
      -    elementType: "all",
      -    stylers: [
      -      { hue: '#0A2D3F'},
      -      { saturation: 50 },
      -      { lightness: -10 }
      -    ]
      -  }]
      -});
      -
      -$('<img/>').attr('src', url)
      -  .appendTo('#map');
      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/styled_maps.html b/public/assets/out/gmaps/examples/styled_maps.html deleted file mode 100644 index 44b6c5a2..00000000 --- a/public/assets/out/gmaps/examples/styled_maps.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - Styled Maps - - - - - - - - -

      GMaps.js style extension - Styled Maps

      -
      -
      -
      -
      -
      -

      You can easily manage a map style using GMaps.js:

      -
       var styles = [
      -  {
      -    featureType: "road",
      -    elementType: "geometry",
      -    stylers: [
      -      { lightness: 100 },
      -      { visibility: "simplified" }
      -    ]
      -  }, {
      -    ...
      -  }
      -];
      -
      -map.addStyle({
      -    styledMapName:"Styled Map",
      -    styles: styles,
      -    mapTypeId: "map_style"  
      -});
      -
      -map.setStyle("map_style");
      -

      Note: You can choose different styles and associate the styled map with the MapTypeId and set it to display.

      -
      -
      - - diff --git a/public/assets/out/gmaps/examples/travel_route.html b/public/assets/out/gmaps/examples/travel_route.html deleted file mode 100644 index e62c05c4..00000000 --- a/public/assets/out/gmaps/examples/travel_route.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - GMaps.js — Travel Route - - - - - - - - -

      GMaps.js — Travel route

      -
      -
      -
      -
      -
      - -
      -
        -
      -
      -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/gmaps.js b/public/assets/out/gmaps/gmaps.js deleted file mode 100644 index 780ee321..00000000 --- a/public/assets/out/gmaps/gmaps.js +++ /dev/null @@ -1,2417 +0,0 @@ -"use strict"; -(function(root, factory) { - if(typeof exports === 'object') { - module.exports = factory(); - } - else if(typeof define === 'function' && define.amd) { - define(['jquery', 'googlemaps!'], factory); - } - else { - root.GMaps = factory(); - } - - -}(this, function() { - -/*! - * GMaps.js v0.4.25 - * http://hpneo.github.com/gmaps/ - * - * Copyright 2017, Gustavo Leon - * Released under the MIT License. - */ - -var extend_object = function(obj, new_obj) { - var name; - - if (obj === new_obj) { - return obj; - } - - for (name in new_obj) { - if (new_obj[name] !== undefined) { - obj[name] = new_obj[name]; - } - } - - return obj; -}; - -var replace_object = function(obj, replace) { - var name; - - if (obj === replace) { - return obj; - } - - for (name in replace) { - if (obj[name] != undefined) { - obj[name] = replace[name]; - } - } - - return obj; -}; - -var array_map = function(array, callback) { - var original_callback_params = Array.prototype.slice.call(arguments, 2), - array_return = [], - array_length = array.length, - i; - - if (Array.prototype.map && array.map === Array.prototype.map) { - array_return = Array.prototype.map.call(array, function(item) { - var callback_params = original_callback_params.slice(0); - callback_params.splice(0, 0, item); - - return callback.apply(this, callback_params); - }); - } - else { - for (i = 0; i < array_length; i++) { - callback_params = original_callback_params; - callback_params.splice(0, 0, array[i]); - array_return.push(callback.apply(this, callback_params)); - } - } - - return array_return; -}; - -var array_flat = function(array) { - var new_array = [], - i; - - for (i = 0; i < array.length; i++) { - new_array = new_array.concat(array[i]); - } - - return new_array; -}; - -var coordsToLatLngs = function(coords, useGeoJSON) { - var first_coord = coords[0], - second_coord = coords[1]; - - if (useGeoJSON) { - first_coord = coords[1]; - second_coord = coords[0]; - } - - return new google.maps.LatLng(first_coord, second_coord); -}; - -var arrayToLatLng = function(coords, useGeoJSON) { - var i; - - for (i = 0; i < coords.length; i++) { - if (!(coords[i] instanceof google.maps.LatLng)) { - if (coords[i].length > 0 && typeof(coords[i][0]) === "object") { - coords[i] = arrayToLatLng(coords[i], useGeoJSON); - } - else { - coords[i] = coordsToLatLngs(coords[i], useGeoJSON); - } - } - } - - return coords; -}; - -var getElementsByClassName = function (class_name, context) { - var element, - _class = class_name.replace('.', ''); - - if ('jQuery' in this && context) { - element = $("." + _class, context)[0]; - } else { - element = document.getElementsByClassName(_class)[0]; - } - return element; - -}; - -var getElementById = function(id, context) { - var element, - id = id.replace('#', ''); - - if ('jQuery' in window && context) { - element = $('#' + id, context)[0]; - } else { - element = document.getElementById(id); - }; - - return element; -}; - -var findAbsolutePosition = function(obj) { - var curleft = 0, - curtop = 0; - - if (obj.getBoundingClientRect) { - var rect = obj.getBoundingClientRect(); - var sx = -(window.scrollX ? window.scrollX : window.pageXOffset); - var sy = -(window.scrollY ? window.scrollY : window.pageYOffset); - - return [(rect.left - sx), (rect.top - sy)]; - } - - if (obj.offsetParent) { - do { - curleft += obj.offsetLeft; - curtop += obj.offsetTop; - } while (obj = obj.offsetParent); - } - - return [curleft, curtop]; -}; - -var GMaps = (function(global) { - "use strict"; - - var doc = document; - /** - * Creates a new GMaps instance, including a Google Maps map. - * @class GMaps - * @constructs - * @param {object} options - `options` accepts all the [MapOptions](https://developers.google.com/maps/documentation/javascript/reference#MapOptions) and [events](https://developers.google.com/maps/documentation/javascript/reference#Map) listed in the Google Maps API. Also accepts: - * * `lat` (number): Latitude of the map's center - * * `lng` (number): Longitude of the map's center - * * `el` (string or HTMLElement): container where the map will be rendered - * * `markerClusterer` (function): A function to create a marker cluster. You can use MarkerClusterer or MarkerClustererPlus. - */ - var GMaps = function(options) { - - if (!(typeof window.google === 'object' && window.google.maps)) { - if (typeof window.console === 'object' && window.console.error) { - console.error('Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js.'); - } - - return function() {}; - } - - if (!this) return new GMaps(options); - - options.zoom = options.zoom || 15; - options.mapType = options.mapType || 'roadmap'; - - var valueOrDefault = function(value, defaultValue) { - return value === undefined ? defaultValue : value; - }; - - var self = this, - i, - events_that_hide_context_menu = [ - 'bounds_changed', 'center_changed', 'click', 'dblclick', 'drag', - 'dragend', 'dragstart', 'idle', 'maptypeid_changed', 'projection_changed', - 'resize', 'tilesloaded', 'zoom_changed' - ], - events_that_doesnt_hide_context_menu = ['mousemove', 'mouseout', 'mouseover'], - options_to_be_deleted = ['el', 'lat', 'lng', 'mapType', 'width', 'height', 'markerClusterer', 'enableNewStyle'], - identifier = options.el || options.div, - markerClustererFunction = options.markerClusterer, - mapType = google.maps.MapTypeId[options.mapType.toUpperCase()], - map_center = new google.maps.LatLng(options.lat, options.lng), - zoomControl = valueOrDefault(options.zoomControl, true), - zoomControlOpt = options.zoomControlOpt || { - style: 'DEFAULT', - position: 'TOP_LEFT' - }, - zoomControlStyle = zoomControlOpt.style || 'DEFAULT', - zoomControlPosition = zoomControlOpt.position || 'TOP_LEFT', - panControl = valueOrDefault(options.panControl, true), - mapTypeControl = valueOrDefault(options.mapTypeControl, true), - scaleControl = valueOrDefault(options.scaleControl, true), - streetViewControl = valueOrDefault(options.streetViewControl, true), - overviewMapControl = valueOrDefault(overviewMapControl, true), - map_options = {}, - map_base_options = { - zoom: this.zoom, - center: map_center, - mapTypeId: mapType - }, - map_controls_options = { - panControl: panControl, - zoomControl: zoomControl, - zoomControlOptions: { - style: google.maps.ZoomControlStyle[zoomControlStyle], - position: google.maps.ControlPosition[zoomControlPosition] - }, - mapTypeControl: mapTypeControl, - scaleControl: scaleControl, - streetViewControl: streetViewControl, - overviewMapControl: overviewMapControl - }; - - if (typeof(options.el) === 'string' || typeof(options.div) === 'string') { - if (identifier.indexOf("#") > -1) { - /** - * Container element - * - * @type {HTMLElement} - */ - this.el = getElementById(identifier, options.context); - } else { - this.el = getElementsByClassName.apply(this, [identifier, options.context]); - } - } else { - this.el = identifier; - } - - if (typeof(this.el) === 'undefined' || this.el === null) { - throw 'No element defined.'; - } - - window.context_menu = window.context_menu || {}; - window.context_menu[self.el.id] = {}; - - /** - * Collection of custom controls in the map UI - * - * @type {array} - */ - this.controls = []; - /** - * Collection of map's overlays - * - * @type {array} - */ - this.overlays = []; - /** - * Collection of KML/GeoRSS and FusionTable layers - * - * @type {array} - */ - this.layers = []; - /** - * Collection of data layers (See {@link GMaps#addLayer}) - * - * @type {object} - */ - this.singleLayers = {}; - /** - * Collection of map's markers - * - * @type {array} - */ - this.markers = []; - /** - * Collection of map's lines - * - * @type {array} - */ - this.polylines = []; - /** - * Collection of map's routes requested by {@link GMaps#getRoutes}, {@link GMaps#renderRoute}, {@link GMaps#drawRoute}, {@link GMaps#travelRoute} or {@link GMaps#drawSteppedRoute} - * - * @type {array} - */ - this.routes = []; - /** - * Collection of map's polygons - * - * @type {array} - */ - this.polygons = []; - this.infoWindow = null; - this.overlay_el = null; - /** - * Current map's zoom - * - * @type {number} - */ - this.zoom = options.zoom; - this.registered_events = {}; - - this.el.style.width = options.width || this.el.scrollWidth || this.el.offsetWidth; - this.el.style.height = options.height || this.el.scrollHeight || this.el.offsetHeight; - - google.maps.visualRefresh = options.enableNewStyle; - - for (i = 0; i < options_to_be_deleted.length; i++) { - delete options[options_to_be_deleted[i]]; - } - - if(options.disableDefaultUI != true) { - map_base_options = extend_object(map_base_options, map_controls_options); - } - - map_options = extend_object(map_base_options, options); - - for (i = 0; i < events_that_hide_context_menu.length; i++) { - delete map_options[events_that_hide_context_menu[i]]; - } - - for (i = 0; i < events_that_doesnt_hide_context_menu.length; i++) { - delete map_options[events_that_doesnt_hide_context_menu[i]]; - } - - /** - * Google Maps map instance - * - * @type {google.maps.Map} - */ - this.map = new google.maps.Map(this.el, map_options); - - if (markerClustererFunction) { - /** - * Marker Clusterer instance - * - * @type {object} - */ - this.markerClusterer = markerClustererFunction.apply(this, [this.map]); - } - - var buildContextMenuHTML = function(control, e) { - var html = '', - options = window.context_menu[self.el.id][control]; - - for (var i in options){ - if (options.hasOwnProperty(i)) { - var option = options[i]; - - html += '
    • ' + option.title + '
    • '; - } - } - - if (!getElementById('gmaps_context_menu')) return; - - var context_menu_element = getElementById('gmaps_context_menu'); - - context_menu_element.innerHTML = html; - - var context_menu_items = context_menu_element.getElementsByTagName('a'), - context_menu_items_count = context_menu_items.length, - i; - - for (i = 0; i < context_menu_items_count; i++) { - var context_menu_item = context_menu_items[i]; - - var assign_menu_item_action = function(ev){ - ev.preventDefault(); - - options[this.id.replace(control + '_', '')].action.apply(self, [e]); - self.hideContextMenu(); - }; - - google.maps.event.clearListeners(context_menu_item, 'click'); - google.maps.event.addDomListenerOnce(context_menu_item, 'click', assign_menu_item_action, false); - } - - var position = findAbsolutePosition.apply(this, [self.el]), - left = position[0] + e.pixel.x - 15, - top = position[1] + e.pixel.y- 15; - - context_menu_element.style.left = left + "px"; - context_menu_element.style.top = top + "px"; - - // context_menu_element.style.display = 'block'; - }; - - this.buildContextMenu = function(control, e) { - if (control === 'marker') { - e.pixel = {}; - - var overlay = new google.maps.OverlayView(); - overlay.setMap(self.map); - - overlay.draw = function() { - var projection = overlay.getProjection(), - position = e.marker.getPosition(); - - e.pixel = projection.fromLatLngToContainerPixel(position); - - buildContextMenuHTML(control, e); - }; - } - else { - buildContextMenuHTML(control, e); - } - - var context_menu_element = getElementById('gmaps_context_menu'); - - setTimeout(function() { - context_menu_element.style.display = 'block'; - }, 0); - }; - - /** - * Add a context menu for a map or a marker. - * - * @param {object} options - The `options` object should contain: - * * `control` (string): Kind of control the context menu will be attached. Can be "map" or "marker". - * * `options` (array): A collection of context menu items: - * * `title` (string): Item's title shown in the context menu. - * * `name` (string): Item's identifier. - * * `action` (function): Function triggered after selecting the context menu item. - */ - this.setContextMenu = function(options) { - window.context_menu[self.el.id][options.control] = {}; - - var i, - ul = doc.createElement('ul'); - - for (i in options.options) { - if (options.options.hasOwnProperty(i)) { - var option = options.options[i]; - - window.context_menu[self.el.id][options.control][option.name] = { - title: option.title, - action: option.action - }; - } - } - - ul.id = 'gmaps_context_menu'; - ul.style.display = 'none'; - ul.style.position = 'absolute'; - ul.style.minWidth = '100px'; - ul.style.background = 'white'; - ul.style.listStyle = 'none'; - ul.style.padding = '8px'; - ul.style.boxShadow = '2px 2px 6px #ccc'; - - if (!getElementById('gmaps_context_menu')) { - doc.body.appendChild(ul); - } - - var context_menu_element = getElementById('gmaps_context_menu'); - - google.maps.event.addDomListener(context_menu_element, 'mouseout', function(ev) { - if (!ev.relatedTarget || !this.contains(ev.relatedTarget)) { - window.setTimeout(function(){ - context_menu_element.style.display = 'none'; - }, 400); - } - }, false); - }; - - /** - * Hide the current context menu - */ - this.hideContextMenu = function() { - var context_menu_element = getElementById('gmaps_context_menu'); - - if (context_menu_element) { - context_menu_element.style.display = 'none'; - } - }; - - var setupListener = function(object, name) { - google.maps.event.addListener(object, name, function(e){ - if (e == undefined) { - e = this; - } - - options[name].apply(this, [e]); - - self.hideContextMenu(); - }); - }; - - //google.maps.event.addListener(this.map, 'idle', this.hideContextMenu); - google.maps.event.addListener(this.map, 'zoom_changed', this.hideContextMenu); - - for (var ev = 0; ev < events_that_hide_context_menu.length; ev++) { - var name = events_that_hide_context_menu[ev]; - - if (name in options) { - setupListener(this.map, name); - } - } - - for (var ev = 0; ev < events_that_doesnt_hide_context_menu.length; ev++) { - var name = events_that_doesnt_hide_context_menu[ev]; - - if (name in options) { - setupListener(this.map, name); - } - } - - google.maps.event.addListener(this.map, 'rightclick', function(e) { - if (options.rightclick) { - options.rightclick.apply(this, [e]); - } - - if(window.context_menu[self.el.id]['map'] != undefined) { - self.buildContextMenu('map', e); - } - }); - - /** - * Trigger a `resize` event, useful if you need to repaint the current map (for changes in the viewport or display / hide actions). - */ - this.refresh = function() { - google.maps.event.trigger(this.map, 'resize'); - }; - - /** - * Adjust the map zoom to include all the markers added in the map. - */ - this.fitZoom = function() { - var latLngs = [], - markers_length = this.markers.length, - i; - - for (i = 0; i < markers_length; i++) { - if(typeof(this.markers[i].visible) === 'boolean' && this.markers[i].visible) { - latLngs.push(this.markers[i].getPosition()); - } - } - - this.fitLatLngBounds(latLngs); - }; - - /** - * Adjust the map zoom to include all the coordinates in the `latLngs` array. - * - * @param {array} latLngs - Collection of `google.maps.LatLng` objects. - */ - this.fitLatLngBounds = function(latLngs) { - var total = latLngs.length, - bounds = new google.maps.LatLngBounds(), - i; - - for(i = 0; i < total; i++) { - bounds.extend(latLngs[i]); - } - - this.map.fitBounds(bounds); - }; - - /** - * Center the map using the `lat` and `lng` coordinates. - * - * @param {number} lat - Latitude of the coordinate. - * @param {number} lng - Longitude of the coordinate. - * @param {function} [callback] - Callback that will be executed after the map is centered. - */ - this.setCenter = function(lat, lng, callback) { - this.map.panTo(new google.maps.LatLng(lat, lng)); - - if (callback) { - callback(); - } - }; - - /** - * Return the HTML element container of the map. - * - * @returns {HTMLElement} the element container. - */ - this.getElement = function() { - return this.el; - }; - - /** - * Increase the map's zoom. - * - * @param {number} [magnitude] - The number of times the map will be zoomed in. - */ - this.zoomIn = function(value) { - value = value || 1; - - this.zoom = this.map.getZoom() + value; - this.map.setZoom(this.zoom); - }; - - /** - * Decrease the map's zoom. - * - * @param {number} [magnitude] - The number of times the map will be zoomed out. - */ - this.zoomOut = function(value) { - value = value || 1; - - this.zoom = this.map.getZoom() - value; - this.map.setZoom(this.zoom); - }; - - var native_methods = [], - method; - - for (method in this.map) { - if (typeof(this.map[method]) == 'function' && !this[method]) { - native_methods.push(method); - } - } - - for (i = 0; i < native_methods.length; i++) { - (function(gmaps, scope, method_name) { - gmaps[method_name] = function(){ - return scope[method_name].apply(scope, arguments); - }; - })(this, this.map, native_methods[i]); - } - }; - - return GMaps; -})(this); - -GMaps.prototype.createControl = function(options) { - var control = document.createElement('div'); - - control.style.cursor = 'pointer'; - - if (options.disableDefaultStyles !== true) { - control.style.fontFamily = 'Roboto, Arial, sans-serif'; - control.style.fontSize = '11px'; - control.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px'; - } - - for (var option in options.style) { - control.style[option] = options.style[option]; - } - - if (options.id) { - control.id = options.id; - } - - if (options.title) { - control.title = options.title; - } - - if (options.classes) { - control.className = options.classes; - } - - if (options.content) { - if (typeof options.content === 'string') { - control.innerHTML = options.content; - } - else if (options.content instanceof HTMLElement) { - control.appendChild(options.content); - } - } - - if (options.position) { - control.position = google.maps.ControlPosition[options.position.toUpperCase()]; - } - - for (var ev in options.events) { - (function(object, name) { - google.maps.event.addDomListener(object, name, function(){ - options.events[name].apply(this, [this]); - }); - })(control, ev); - } - - control.index = 1; - - return control; -}; - -/** - * Add a custom control to the map UI. - * - * @param {object} options - The `options` object should contain: - * * `style` (object): The keys and values of this object should be valid CSS properties and values. - * * `id` (string): The HTML id for the custom control. - * * `classes` (string): A string containing all the HTML classes for the custom control. - * * `content` (string or HTML element): The content of the custom control. - * * `position` (string): Any valid [`google.maps.ControlPosition`](https://developers.google.com/maps/documentation/javascript/controls#ControlPositioning) value, in lower or upper case. - * * `events` (object): The keys of this object should be valid DOM events. The values should be functions. - * * `disableDefaultStyles` (boolean): If false, removes the default styles for the controls like font (family and size), and box shadow. - * @returns {HTMLElement} - */ -GMaps.prototype.addControl = function(options) { - var control = this.createControl(options); - - this.controls.push(control); - this.map.controls[control.position].push(control); - - return control; -}; - -/** - * Remove a control from the map. `control` should be a control returned by `addControl()`. - * - * @param {HTMLElement} control - One of the controls returned by `addControl()`. - * @returns {HTMLElement} the removed control. - */ -GMaps.prototype.removeControl = function(control) { - var position = null, - i; - - for (i = 0; i < this.controls.length; i++) { - if (this.controls[i] == control) { - position = this.controls[i].position; - this.controls.splice(i, 1); - } - } - - if (position) { - for (i = 0; i < this.map.controls.length; i++) { - var controlsForPosition = this.map.controls[control.position]; - - if (controlsForPosition.getAt(i) == control) { - controlsForPosition.removeAt(i); - - break; - } - } - } - - return control; -}; - -GMaps.prototype.createMarker = function(options) { - if (options.lat == undefined && options.lng == undefined && options.position == undefined) { - throw 'No latitude or longitude defined.'; - } - - var self = this, - details = options.details, - fences = options.fences, - outside = options.outside, - base_options = { - position: new google.maps.LatLng(options.lat, options.lng), - map: null - }, - marker_options = extend_object(base_options, options); - - delete marker_options.lat; - delete marker_options.lng; - delete marker_options.fences; - delete marker_options.outside; - - var marker = new google.maps.Marker(marker_options); - - marker.fences = fences; - - if (options.infoWindow) { - marker.infoWindow = new google.maps.InfoWindow(options.infoWindow); - - var info_window_events = ['closeclick', 'content_changed', 'domready', 'position_changed', 'zindex_changed']; - - for (var ev = 0; ev < info_window_events.length; ev++) { - (function(object, name) { - if (options.infoWindow[name]) { - google.maps.event.addListener(object, name, function(e){ - options.infoWindow[name].apply(this, [e]); - }); - } - })(marker.infoWindow, info_window_events[ev]); - } - } - - var marker_events = ['animation_changed', 'clickable_changed', 'cursor_changed', 'draggable_changed', 'flat_changed', 'icon_changed', 'position_changed', 'shadow_changed', 'shape_changed', 'title_changed', 'visible_changed', 'zindex_changed']; - - var marker_events_with_mouse = ['dblclick', 'drag', 'dragend', 'dragstart', 'mousedown', 'mouseout', 'mouseover', 'mouseup']; - - for (var ev = 0; ev < marker_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(){ - options[name].apply(this, [this]); - }); - } - })(marker, marker_events[ev]); - } - - for (var ev = 0; ev < marker_events_with_mouse.length; ev++) { - (function(map, object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(me){ - if(!me.pixel){ - me.pixel = map.getProjection().fromLatLngToPoint(me.latLng) - } - - options[name].apply(this, [me]); - }); - } - })(this.map, marker, marker_events_with_mouse[ev]); - } - - google.maps.event.addListener(marker, 'click', function() { - this.details = details; - - if (options.click) { - options.click.apply(this, [this]); - } - - if (marker.infoWindow) { - self.hideInfoWindows(); - marker.infoWindow.open(self.map, marker); - } - }); - - google.maps.event.addListener(marker, 'rightclick', function(e) { - e.marker = this; - - if (options.rightclick) { - options.rightclick.apply(this, [e]); - } - - if (window.context_menu[self.el.id]['marker'] != undefined) { - self.buildContextMenu('marker', e); - } - }); - - if (marker.fences) { - google.maps.event.addListener(marker, 'dragend', function() { - self.checkMarkerGeofence(marker, function(m, f) { - outside(m, f); - }); - }); - } - - return marker; -}; - -GMaps.prototype.addMarker = function(options) { - var marker; - if(options.hasOwnProperty('gm_accessors_')) { - // Native google.maps.Marker object - marker = options; - } - else { - if ((options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) || options.position) { - marker = this.createMarker(options); - } - else { - throw 'No latitude or longitude defined.'; - } - } - - marker.setMap(this.map); - - if(this.markerClusterer) { - this.markerClusterer.addMarker(marker); - } - - this.markers.push(marker); - - GMaps.fire('marker_added', marker, this); - - return marker; -}; - -GMaps.prototype.addMarkers = function(array) { - for (var i = 0, marker; marker=array[i]; i++) { - this.addMarker(marker); - } - - return this.markers; -}; - -GMaps.prototype.hideInfoWindows = function() { - for (var i = 0, marker; marker = this.markers[i]; i++){ - if (marker.infoWindow) { - marker.infoWindow.close(); - } - } -}; - -GMaps.prototype.removeMarker = function(marker) { - for (var i = 0; i < this.markers.length; i++) { - if (this.markers[i] === marker) { - this.markers[i].setMap(null); - this.markers.splice(i, 1); - - if(this.markerClusterer) { - this.markerClusterer.removeMarker(marker); - } - - GMaps.fire('marker_removed', marker, this); - - break; - } - } - - return marker; -}; - -GMaps.prototype.removeMarkers = function (collection) { - var new_markers = []; - - if (typeof collection == 'undefined') { - for (var i = 0; i < this.markers.length; i++) { - var marker = this.markers[i]; - marker.setMap(null); - - GMaps.fire('marker_removed', marker, this); - } - - if(this.markerClusterer && this.markerClusterer.clearMarkers) { - this.markerClusterer.clearMarkers(); - } - - this.markers = new_markers; - } - else { - for (var i = 0; i < collection.length; i++) { - var index = this.markers.indexOf(collection[i]); - - if (index > -1) { - var marker = this.markers[index]; - marker.setMap(null); - - if(this.markerClusterer) { - this.markerClusterer.removeMarker(marker); - } - - GMaps.fire('marker_removed', marker, this); - } - } - - for (var i = 0; i < this.markers.length; i++) { - var marker = this.markers[i]; - if (marker.getMap() != null) { - new_markers.push(marker); - } - } - - this.markers = new_markers; - } -}; - -GMaps.prototype.drawOverlay = function(options) { - var overlay = new google.maps.OverlayView(), - auto_show = true; - - overlay.setMap(this.map); - - if (options.auto_show != null) { - auto_show = options.auto_show; - } - - overlay.onAdd = function() { - var el = document.createElement('div'); - - el.style.borderStyle = "none"; - el.style.borderWidth = "0px"; - el.style.position = "absolute"; - el.style.zIndex = 100; - el.innerHTML = options.content; - - overlay.el = el; - - if (!options.layer) { - options.layer = 'overlayLayer'; - } - - var panes = this.getPanes(), - overlayLayer = panes[options.layer], - stop_overlay_events = ['contextmenu', 'DOMMouseScroll', 'dblclick', 'mousedown']; - - overlayLayer.appendChild(el); - - for (var ev = 0; ev < stop_overlay_events.length; ev++) { - (function(object, name) { - google.maps.event.addDomListener(object, name, function(e){ - if (navigator.userAgent.toLowerCase().indexOf('msie') != -1 && document.all) { - e.cancelBubble = true; - e.returnValue = false; - } - else { - e.stopPropagation(); - } - }); - })(el, stop_overlay_events[ev]); - } - - if (options.click) { - panes.overlayMouseTarget.appendChild(overlay.el); - google.maps.event.addDomListener(overlay.el, 'click', function() { - options.click.apply(overlay, [overlay]); - }); - } - - google.maps.event.trigger(this, 'ready'); - }; - - overlay.draw = function() { - var projection = this.getProjection(), - pixel = projection.fromLatLngToDivPixel(new google.maps.LatLng(options.lat, options.lng)); - - options.horizontalOffset = options.horizontalOffset || 0; - options.verticalOffset = options.verticalOffset || 0; - - var el = overlay.el, - content = el.children[0], - content_height = content.clientHeight, - content_width = content.clientWidth; - - switch (options.verticalAlign) { - case 'top': - el.style.top = (pixel.y - content_height + options.verticalOffset) + 'px'; - break; - default: - case 'middle': - el.style.top = (pixel.y - (content_height / 2) + options.verticalOffset) + 'px'; - break; - case 'bottom': - el.style.top = (pixel.y + options.verticalOffset) + 'px'; - break; - } - - switch (options.horizontalAlign) { - case 'left': - el.style.left = (pixel.x - content_width + options.horizontalOffset) + 'px'; - break; - default: - case 'center': - el.style.left = (pixel.x - (content_width / 2) + options.horizontalOffset) + 'px'; - break; - case 'right': - el.style.left = (pixel.x + options.horizontalOffset) + 'px'; - break; - } - - el.style.display = auto_show ? 'block' : 'none'; - - if (!auto_show) { - options.show.apply(this, [el]); - } - }; - - overlay.onRemove = function() { - var el = overlay.el; - - if (options.remove) { - options.remove.apply(this, [el]); - } - else { - overlay.el.parentNode.removeChild(overlay.el); - overlay.el = null; - } - }; - - this.overlays.push(overlay); - return overlay; -}; - -GMaps.prototype.removeOverlay = function(overlay) { - for (var i = 0; i < this.overlays.length; i++) { - if (this.overlays[i] === overlay) { - this.overlays[i].setMap(null); - this.overlays.splice(i, 1); - - break; - } - } -}; - -GMaps.prototype.removeOverlays = function() { - for (var i = 0, item; item = this.overlays[i]; i++) { - item.setMap(null); - } - - this.overlays = []; -}; - -GMaps.prototype.drawPolyline = function(options) { - var path = [], - points = options.path; - - if (points.length) { - if (points[0][0] === undefined) { - path = points; - } - else { - for (var i = 0, latlng; latlng = points[i]; i++) { - path.push(new google.maps.LatLng(latlng[0], latlng[1])); - } - } - } - - var polyline_options = { - map: this.map, - path: path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight, - geodesic: options.geodesic, - clickable: true, - editable: false, - visible: true - }; - - if (options.hasOwnProperty("clickable")) { - polyline_options.clickable = options.clickable; - } - - if (options.hasOwnProperty("editable")) { - polyline_options.editable = options.editable; - } - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - if (options.hasOwnProperty("zIndex")) { - polyline_options.zIndex = options.zIndex; - } - - var polyline = new google.maps.Polyline(polyline_options); - - var polyline_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polyline_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polyline, polyline_events[ev]); - } - - this.polylines.push(polyline); - - GMaps.fire('polyline_added', polyline, this); - - return polyline; -}; - -GMaps.prototype.removePolyline = function(polyline) { - for (var i = 0; i < this.polylines.length; i++) { - if (this.polylines[i] === polyline) { - this.polylines[i].setMap(null); - this.polylines.splice(i, 1); - - GMaps.fire('polyline_removed', polyline, this); - - break; - } - } -}; - -GMaps.prototype.removePolylines = function() { - for (var i = 0, item; item = this.polylines[i]; i++) { - item.setMap(null); - } - - this.polylines = []; -}; - -GMaps.prototype.drawCircle = function(options) { - options = extend_object({ - map: this.map, - center: new google.maps.LatLng(options.lat, options.lng) - }, options); - - delete options.lat; - delete options.lng; - - var polygon = new google.maps.Circle(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - return polygon; -}; - -GMaps.prototype.drawRectangle = function(options) { - options = extend_object({ - map: this.map - }, options); - - var latLngBounds = new google.maps.LatLngBounds( - new google.maps.LatLng(options.bounds[0][0], options.bounds[0][1]), - new google.maps.LatLng(options.bounds[1][0], options.bounds[1][1]) - ); - - options.bounds = latLngBounds; - - var polygon = new google.maps.Rectangle(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - return polygon; -}; - -GMaps.prototype.drawPolygon = function(options) { - var useGeoJSON = false; - - if(options.hasOwnProperty("useGeoJSON")) { - useGeoJSON = options.useGeoJSON; - } - - delete options.useGeoJSON; - - options = extend_object({ - map: this.map - }, options); - - if (useGeoJSON == false) { - options.paths = [options.paths.slice(0)]; - } - - if (options.paths.length > 0) { - if (options.paths[0].length > 0) { - options.paths = array_flat(array_map(options.paths, arrayToLatLng, useGeoJSON)); - } - } - - var polygon = new google.maps.Polygon(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - GMaps.fire('polygon_added', polygon, this); - - return polygon; -}; - -GMaps.prototype.removePolygon = function(polygon) { - for (var i = 0; i < this.polygons.length; i++) { - if (this.polygons[i] === polygon) { - this.polygons[i].setMap(null); - this.polygons.splice(i, 1); - - GMaps.fire('polygon_removed', polygon, this); - - break; - } - } -}; - -GMaps.prototype.removePolygons = function() { - for (var i = 0, item; item = this.polygons[i]; i++) { - item.setMap(null); - } - - this.polygons = []; -}; - -GMaps.prototype.getFromFusionTables = function(options) { - var events = options.events; - - delete options.events; - - var fusion_tables_options = options, - layer = new google.maps.FusionTablesLayer(fusion_tables_options); - - for (var ev in events) { - (function(object, name) { - google.maps.event.addListener(object, name, function(e) { - events[name].apply(this, [e]); - }); - })(layer, ev); - } - - this.layers.push(layer); - - return layer; -}; - -GMaps.prototype.loadFromFusionTables = function(options) { - var layer = this.getFromFusionTables(options); - layer.setMap(this.map); - - return layer; -}; - -GMaps.prototype.getFromKML = function(options) { - var url = options.url, - events = options.events; - - delete options.url; - delete options.events; - - var kml_options = options, - layer = new google.maps.KmlLayer(url, kml_options); - - for (var ev in events) { - (function(object, name) { - google.maps.event.addListener(object, name, function(e) { - events[name].apply(this, [e]); - }); - })(layer, ev); - } - - this.layers.push(layer); - - return layer; -}; - -GMaps.prototype.loadFromKML = function(options) { - var layer = this.getFromKML(options); - layer.setMap(this.map); - - return layer; -}; - -GMaps.prototype.addLayer = function(layerName, options) { - //var default_layers = ['weather', 'clouds', 'traffic', 'transit', 'bicycling', 'panoramio', 'places']; - options = options || {}; - var layer; - - switch(layerName) { - case 'weather': this.singleLayers.weather = layer = new google.maps.weather.WeatherLayer(); - break; - case 'clouds': this.singleLayers.clouds = layer = new google.maps.weather.CloudLayer(); - break; - case 'traffic': this.singleLayers.traffic = layer = new google.maps.TrafficLayer(); - break; - case 'transit': this.singleLayers.transit = layer = new google.maps.TransitLayer(); - break; - case 'bicycling': this.singleLayers.bicycling = layer = new google.maps.BicyclingLayer(); - break; - case 'panoramio': - this.singleLayers.panoramio = layer = new google.maps.panoramio.PanoramioLayer(); - layer.setTag(options.filter); - delete options.filter; - - //click event - if (options.click) { - google.maps.event.addListener(layer, 'click', function(event) { - options.click(event); - delete options.click; - }); - } - break; - case 'places': - this.singleLayers.places = layer = new google.maps.places.PlacesService(this.map); - - //search, nearbySearch, radarSearch callback, Both are the same - if (options.search || options.nearbySearch || options.radarSearch) { - var placeSearchRequest = { - bounds : options.bounds || null, - keyword : options.keyword || null, - location : options.location || null, - name : options.name || null, - radius : options.radius || null, - rankBy : options.rankBy || null, - types : options.types || null - }; - - if (options.radarSearch) { - layer.radarSearch(placeSearchRequest, options.radarSearch); - } - - if (options.search) { - layer.search(placeSearchRequest, options.search); - } - - if (options.nearbySearch) { - layer.nearbySearch(placeSearchRequest, options.nearbySearch); - } - } - - //textSearch callback - if (options.textSearch) { - var textSearchRequest = { - bounds : options.bounds || null, - location : options.location || null, - query : options.query || null, - radius : options.radius || null - }; - - layer.textSearch(textSearchRequest, options.textSearch); - } - break; - } - - if (layer !== undefined) { - if (typeof layer.setOptions == 'function') { - layer.setOptions(options); - } - if (typeof layer.setMap == 'function') { - layer.setMap(this.map); - } - - return layer; - } -}; - -GMaps.prototype.removeLayer = function(layer) { - if (typeof(layer) == "string" && this.singleLayers[layer] !== undefined) { - this.singleLayers[layer].setMap(null); - - delete this.singleLayers[layer]; - } - else { - for (var i = 0; i < this.layers.length; i++) { - if (this.layers[i] === layer) { - this.layers[i].setMap(null); - this.layers.splice(i, 1); - - break; - } - } - } -}; - -var travelMode, unitSystem; - -GMaps.prototype.getRoutes = function(options) { - switch (options.travelMode) { - case 'bicycling': - travelMode = google.maps.TravelMode.BICYCLING; - break; - case 'transit': - travelMode = google.maps.TravelMode.TRANSIT; - break; - case 'driving': - travelMode = google.maps.TravelMode.DRIVING; - break; - default: - travelMode = google.maps.TravelMode.WALKING; - break; - } - - if (options.unitSystem === 'imperial') { - unitSystem = google.maps.UnitSystem.IMPERIAL; - } - else { - unitSystem = google.maps.UnitSystem.METRIC; - } - - var base_options = { - avoidHighways: false, - avoidTolls: false, - optimizeWaypoints: false, - waypoints: [] - }, - request_options = extend_object(base_options, options); - - request_options.origin = /string/.test(typeof options.origin) ? options.origin : new google.maps.LatLng(options.origin[0], options.origin[1]); - request_options.destination = /string/.test(typeof options.destination) ? options.destination : new google.maps.LatLng(options.destination[0], options.destination[1]); - request_options.travelMode = travelMode; - request_options.unitSystem = unitSystem; - - delete request_options.callback; - delete request_options.error; - - var self = this, - routes = [], - service = new google.maps.DirectionsService(); - - service.route(request_options, function(result, status) { - if (status === google.maps.DirectionsStatus.OK) { - for (var r in result.routes) { - if (result.routes.hasOwnProperty(r)) { - routes.push(result.routes[r]); - } - } - - if (options.callback) { - options.callback(routes, result, status); - } - } - else { - if (options.error) { - options.error(result, status); - } - } - }); -}; - -GMaps.prototype.removeRoutes = function() { - this.routes.length = 0; -}; - -GMaps.prototype.getElevations = function(options) { - options = extend_object({ - locations: [], - path : false, - samples : 256 - }, options); - - if (options.locations.length > 0) { - if (options.locations[0].length > 0) { - options.locations = array_flat(array_map([options.locations], arrayToLatLng, false)); - } - } - - var callback = options.callback; - delete options.callback; - - var service = new google.maps.ElevationService(); - - //location request - if (!options.path) { - delete options.path; - delete options.samples; - - service.getElevationForLocations(options, function(result, status) { - if (callback && typeof(callback) === "function") { - callback(result, status); - } - }); - //path request - } else { - var pathRequest = { - path : options.locations, - samples : options.samples - }; - - service.getElevationAlongPath(pathRequest, function(result, status) { - if (callback && typeof(callback) === "function") { - callback(result, status); - } - }); - } -}; - -GMaps.prototype.cleanRoute = GMaps.prototype.removePolylines; - -GMaps.prototype.renderRoute = function(options, renderOptions) { - var self = this, - panel = ((typeof renderOptions.panel === 'string') ? document.getElementById(renderOptions.panel.replace('#', '')) : renderOptions.panel), - display; - - renderOptions.panel = panel; - renderOptions = extend_object({ - map: this.map - }, renderOptions); - display = new google.maps.DirectionsRenderer(renderOptions); - - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints: options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - avoidHighways: options.avoidHighways, - avoidTolls: options.avoidTolls, - optimizeWaypoints: options.optimizeWaypoints, - callback: function(routes, response, status) { - if (status === google.maps.DirectionsStatus.OK) { - display.setDirections(response); - } - } - }); -}; - -GMaps.prototype.drawRoute = function(options) { - var self = this; - - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints: options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - avoidHighways: options.avoidHighways, - avoidTolls: options.avoidTolls, - optimizeWaypoints: options.optimizeWaypoints, - callback: function(routes) { - if (routes.length > 0) { - var polyline_options = { - path: routes[routes.length - 1].overview_path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - - if (options.callback) { - options.callback(routes[routes.length - 1]); - } - } - } - }); -}; - -GMaps.prototype.travelRoute = function(options) { - if (options.origin && options.destination) { - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints : options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - callback: function(e) { - //start callback - if (e.length > 0 && options.start) { - options.start(e[e.length - 1]); - } - - //step callback - if (e.length > 0 && options.step) { - var route = e[e.length - 1]; - if (route.legs.length > 0) { - var steps = route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - options.step(step, (route.legs[0].steps.length - 1)); - } - } - } - - //end callback - if (e.length > 0 && options.end) { - options.end(e[e.length - 1]); - } - } - }); - } - else if (options.route) { - if (options.route.legs.length > 0) { - var steps = options.route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - options.step(step); - } - } - } -}; - -GMaps.prototype.drawSteppedRoute = function(options) { - var self = this; - - if (options.origin && options.destination) { - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints : options.waypoints, - error: options.error, - callback: function(e) { - //start callback - if (e.length > 0 && options.start) { - options.start(e[e.length - 1]); - } - - //step callback - if (e.length > 0 && options.step) { - var route = e[e.length - 1]; - if (route.legs.length > 0) { - var steps = route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - var polyline_options = { - path: step.path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - options.step(step, (route.legs[0].steps.length - 1)); - } - } - } - - //end callback - if (e.length > 0 && options.end) { - options.end(e[e.length - 1]); - } - } - }); - } - else if (options.route) { - if (options.route.legs.length > 0) { - var steps = options.route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - var polyline_options = { - path: step.path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - options.step(step); - } - } - } -}; - -GMaps.Route = function(options) { - this.origin = options.origin; - this.destination = options.destination; - this.waypoints = options.waypoints; - - this.map = options.map; - this.route = options.route; - this.step_count = 0; - this.steps = this.route.legs[0].steps; - this.steps_length = this.steps.length; - - var polyline_options = { - path: new google.maps.MVCArray(), - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - this.polyline = this.map.drawPolyline(polyline_options).getPath(); -}; - -GMaps.Route.prototype.getRoute = function(options) { - var self = this; - - this.map.getRoutes({ - origin : this.origin, - destination : this.destination, - travelMode : options.travelMode, - waypoints : this.waypoints || [], - error: options.error, - callback : function() { - self.route = e[0]; - - if (options.callback) { - options.callback.call(self); - } - } - }); -}; - -GMaps.Route.prototype.back = function() { - if (this.step_count > 0) { - this.step_count--; - var path = this.route.legs[0].steps[this.step_count].path; - - for (var p in path){ - if (path.hasOwnProperty(p)){ - this.polyline.pop(); - } - } - } -}; - -GMaps.Route.prototype.forward = function() { - if (this.step_count < this.steps_length) { - var path = this.route.legs[0].steps[this.step_count].path; - - for (var p in path){ - if (path.hasOwnProperty(p)){ - this.polyline.push(path[p]); - } - } - this.step_count++; - } -}; - -GMaps.prototype.checkGeofence = function(lat, lng, fence) { - return fence.containsLatLng(new google.maps.LatLng(lat, lng)); -}; - -GMaps.prototype.checkMarkerGeofence = function(marker, outside_callback) { - if (marker.fences) { - for (var i = 0, fence; fence = marker.fences[i]; i++) { - var pos = marker.getPosition(); - if (!this.checkGeofence(pos.lat(), pos.lng(), fence)) { - outside_callback(marker, fence); - } - } - } -}; - -GMaps.prototype.toImage = function(options) { - var options = options || {}, - static_map_options = {}; - - static_map_options['size'] = options['size'] || [this.el.clientWidth, this.el.clientHeight]; - static_map_options['lat'] = this.getCenter().lat(); - static_map_options['lng'] = this.getCenter().lng(); - - if (this.markers.length > 0) { - static_map_options['markers'] = []; - - for (var i = 0; i < this.markers.length; i++) { - static_map_options['markers'].push({ - lat: this.markers[i].getPosition().lat(), - lng: this.markers[i].getPosition().lng() - }); - } - } - - if (this.polylines.length > 0) { - var polyline = this.polylines[0]; - - static_map_options['polyline'] = {}; - static_map_options['polyline']['path'] = google.maps.geometry.encoding.encodePath(polyline.getPath()); - static_map_options['polyline']['strokeColor'] = polyline.strokeColor - static_map_options['polyline']['strokeOpacity'] = polyline.strokeOpacity - static_map_options['polyline']['strokeWeight'] = polyline.strokeWeight - } - - return GMaps.staticMapURL(static_map_options); -}; - -GMaps.staticMapURL = function(options){ - var parameters = [], - data, - static_root = (location.protocol === 'file:' ? 'https:' : location.protocol ) + '//maps.googleapis.com/maps/api/staticmap'; - - if (options.url) { - static_root = options.url; - delete options.url; - } - - static_root += '?'; - - var markers = options.markers; - - delete options.markers; - - if (!markers && options.marker) { - markers = [options.marker]; - delete options.marker; - } - - var styles = options.styles; - - delete options.styles; - - var polyline = options.polyline; - delete options.polyline; - - /** Map options **/ - if (options.center) { - parameters.push('center=' + options.center); - delete options.center; - } - else if (options.address) { - parameters.push('center=' + options.address); - delete options.address; - } - else if (options.lat) { - parameters.push(['center=', options.lat, ',', options.lng].join('')); - delete options.lat; - delete options.lng; - } - else if (options.visible) { - var visible = encodeURI(options.visible.join('|')); - parameters.push('visible=' + visible); - } - - var size = options.size; - if (size) { - if (size.join) { - size = size.join('x'); - } - delete options.size; - } - else { - size = '630x300'; - } - parameters.push('size=' + size); - - if (!options.zoom && options.zoom !== false) { - options.zoom = 15; - } - - var sensor = options.hasOwnProperty('sensor') ? !!options.sensor : true; - delete options.sensor; - parameters.push('sensor=' + sensor); - - for (var param in options) { - if (options.hasOwnProperty(param)) { - parameters.push(param + '=' + options[param]); - } - } - - /** Markers **/ - if (markers) { - var marker, loc; - - for (var i = 0; data = markers[i]; i++) { - marker = []; - - if (data.size && data.size !== 'normal') { - marker.push('size:' + data.size); - delete data.size; - } - else if (data.icon) { - marker.push('icon:' + encodeURI(data.icon)); - delete data.icon; - } - - if (data.color) { - marker.push('color:' + data.color.replace('#', '0x')); - delete data.color; - } - - if (data.label) { - marker.push('label:' + data.label[0].toUpperCase()); - delete data.label; - } - - loc = (data.address ? data.address : data.lat + ',' + data.lng); - delete data.address; - delete data.lat; - delete data.lng; - - for(var param in data){ - if (data.hasOwnProperty(param)) { - marker.push(param + ':' + data[param]); - } - } - - if (marker.length || i === 0) { - marker.push(loc); - marker = marker.join('|'); - parameters.push('markers=' + encodeURI(marker)); - } - // New marker without styles - else { - marker = parameters.pop() + encodeURI('|' + loc); - parameters.push(marker); - } - } - } - - /** Map Styles **/ - if (styles) { - for (var i = 0; i < styles.length; i++) { - var styleRule = []; - if (styles[i].featureType){ - styleRule.push('feature:' + styles[i].featureType.toLowerCase()); - } - - if (styles[i].elementType) { - styleRule.push('element:' + styles[i].elementType.toLowerCase()); - } - - for (var j = 0; j < styles[i].stylers.length; j++) { - for (var p in styles[i].stylers[j]) { - var ruleArg = styles[i].stylers[j][p]; - if (p == 'hue' || p == 'color') { - ruleArg = '0x' + ruleArg.substring(1); - } - styleRule.push(p + ':' + ruleArg); - } - } - - var rule = styleRule.join('|'); - if (rule != '') { - parameters.push('style=' + rule); - } - } - } - - /** Polylines **/ - function parseColor(color, opacity) { - if (color[0] === '#'){ - color = color.replace('#', '0x'); - - if (opacity) { - opacity = parseFloat(opacity); - opacity = Math.min(1, Math.max(opacity, 0)); - if (opacity === 0) { - return '0x00000000'; - } - opacity = (opacity * 255).toString(16); - if (opacity.length === 1) { - opacity += opacity; - } - - color = color.slice(0,8) + opacity; - } - } - return color; - } - - if (polyline) { - data = polyline; - polyline = []; - - if (data.strokeWeight) { - polyline.push('weight:' + parseInt(data.strokeWeight, 10)); - } - - if (data.strokeColor) { - var color = parseColor(data.strokeColor, data.strokeOpacity); - polyline.push('color:' + color); - } - - if (data.fillColor) { - var fillcolor = parseColor(data.fillColor, data.fillOpacity); - polyline.push('fillcolor:' + fillcolor); - } - - var path = data.path; - if (path.join) { - for (var j=0, pos; pos=path[j]; j++) { - polyline.push(pos.join(',')); - } - } - else { - polyline.push('enc:' + path); - } - - polyline = polyline.join('|'); - parameters.push('path=' + encodeURI(polyline)); - } - - /** Retina support **/ - var dpi = window.devicePixelRatio || 1; - parameters.push('scale=' + dpi); - - parameters = parameters.join('&'); - return static_root + parameters; -}; - -GMaps.prototype.addMapType = function(mapTypeId, options) { - if (options.hasOwnProperty("getTileUrl") && typeof(options["getTileUrl"]) == "function") { - options.tileSize = options.tileSize || new google.maps.Size(256, 256); - - var mapType = new google.maps.ImageMapType(options); - - this.map.mapTypes.set(mapTypeId, mapType); - } - else { - throw "'getTileUrl' function required."; - } -}; - -GMaps.prototype.addOverlayMapType = function(options) { - if (options.hasOwnProperty("getTile") && typeof(options["getTile"]) == "function") { - var overlayMapTypeIndex = options.index; - - delete options.index; - - this.map.overlayMapTypes.insertAt(overlayMapTypeIndex, options); - } - else { - throw "'getTile' function required."; - } -}; - -GMaps.prototype.removeOverlayMapType = function(overlayMapTypeIndex) { - this.map.overlayMapTypes.removeAt(overlayMapTypeIndex); -}; - -GMaps.prototype.addStyle = function(options) { - var styledMapType = new google.maps.StyledMapType(options.styles, { name: options.styledMapName }); - - this.map.mapTypes.set(options.mapTypeId, styledMapType); -}; - -GMaps.prototype.setStyle = function(mapTypeId) { - this.map.setMapTypeId(mapTypeId); -}; - -GMaps.prototype.createPanorama = function(streetview_options) { - if (!streetview_options.hasOwnProperty('lat') || !streetview_options.hasOwnProperty('lng')) { - streetview_options.lat = this.getCenter().lat(); - streetview_options.lng = this.getCenter().lng(); - } - - this.panorama = GMaps.createPanorama(streetview_options); - - this.map.setStreetView(this.panorama); - - return this.panorama; -}; - -GMaps.createPanorama = function(options) { - var el = getElementById(options.el, options.context); - - options.position = new google.maps.LatLng(options.lat, options.lng); - - delete options.el; - delete options.context; - delete options.lat; - delete options.lng; - - var streetview_events = ['closeclick', 'links_changed', 'pano_changed', 'position_changed', 'pov_changed', 'resize', 'visible_changed'], - streetview_options = extend_object({visible : true}, options); - - for (var i = 0; i < streetview_events.length; i++) { - delete streetview_options[streetview_events[i]]; - } - - var panorama = new google.maps.StreetViewPanorama(el, streetview_options); - - for (var i = 0; i < streetview_events.length; i++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(){ - options[name].apply(this); - }); - } - })(panorama, streetview_events[i]); - } - - return panorama; -}; - -GMaps.prototype.on = function(event_name, handler) { - return GMaps.on(event_name, this, handler); -}; - -GMaps.prototype.off = function(event_name) { - GMaps.off(event_name, this); -}; - -GMaps.prototype.once = function(event_name, handler) { - return GMaps.once(event_name, this, handler); -}; - -GMaps.custom_events = ['marker_added', 'marker_removed', 'polyline_added', 'polyline_removed', 'polygon_added', 'polygon_removed', 'geolocated', 'geolocation_failed']; - -GMaps.on = function(event_name, object, handler) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - return google.maps.event.addListener(object, event_name, handler); - } - else { - var registered_event = { - handler : handler, - eventName : event_name - }; - - object.registered_events[event_name] = object.registered_events[event_name] || []; - object.registered_events[event_name].push(registered_event); - - return registered_event; - } -}; - -GMaps.off = function(event_name, object) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - google.maps.event.clearListeners(object, event_name); - } - else { - object.registered_events[event_name] = []; - } -}; - -GMaps.once = function(event_name, object, handler) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - return google.maps.event.addListenerOnce(object, event_name, handler); - } -}; - -GMaps.fire = function(event_name, object, scope) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - google.maps.event.trigger(object, event_name, Array.prototype.slice.apply(arguments).slice(2)); - } - else { - if(event_name in scope.registered_events) { - var firing_events = scope.registered_events[event_name]; - - for(var i = 0; i < firing_events.length; i++) { - (function(handler, scope, object) { - handler.apply(scope, [object]); - })(firing_events[i]['handler'], scope, object); - } - } - } -}; - -GMaps.geolocate = function(options) { - var complete_callback = options.always || options.complete; - - if (navigator.geolocation) { - navigator.geolocation.getCurrentPosition(function(position) { - options.success(position); - - if (complete_callback) { - complete_callback(); - } - }, function(error) { - options.error(error); - - if (complete_callback) { - complete_callback(); - } - }, options.options); - } - else { - options.not_supported(); - - if (complete_callback) { - complete_callback(); - } - } -}; - -GMaps.geocode = function(options) { - this.geocoder = new google.maps.Geocoder(); - var callback = options.callback; - if (options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) { - options.latLng = new google.maps.LatLng(options.lat, options.lng); - } - - delete options.lat; - delete options.lng; - delete options.callback; - - this.geocoder.geocode(options, function(results, status) { - callback(results, status); - }); -}; - -if (typeof window.google === 'object' && window.google.maps) { - //========================== - // Polygon containsLatLng - // https://github.com/tparkin/Google-Maps-Point-in-Polygon - // Poygon getBounds extension - google-maps-extensions - // http://code.google.com/p/google-maps-extensions/source/browse/google.maps.Polygon.getBounds.js - if (!google.maps.Polygon.prototype.getBounds) { - google.maps.Polygon.prototype.getBounds = function(latLng) { - var bounds = new google.maps.LatLngBounds(); - var paths = this.getPaths(); - var path; - - for (var p = 0; p < paths.getLength(); p++) { - path = paths.getAt(p); - for (var i = 0; i < path.getLength(); i++) { - bounds.extend(path.getAt(i)); - } - } - - return bounds; - }; - } - - if (!google.maps.Polygon.prototype.containsLatLng) { - // Polygon containsLatLng - method to determine if a latLng is within a polygon - google.maps.Polygon.prototype.containsLatLng = function(latLng) { - // Exclude points outside of bounds as there is no way they are in the poly - var bounds = this.getBounds(); - - if (bounds !== null && !bounds.contains(latLng)) { - return false; - } - - // Raycast point in polygon method - var inPoly = false; - - var numPaths = this.getPaths().getLength(); - for (var p = 0; p < numPaths; p++) { - var path = this.getPaths().getAt(p); - var numPoints = path.getLength(); - var j = numPoints - 1; - - for (var i = 0; i < numPoints; i++) { - var vertex1 = path.getAt(i); - var vertex2 = path.getAt(j); - - if (vertex1.lng() < latLng.lng() && vertex2.lng() >= latLng.lng() || vertex2.lng() < latLng.lng() && vertex1.lng() >= latLng.lng()) { - if (vertex1.lat() + (latLng.lng() - vertex1.lng()) / (vertex2.lng() - vertex1.lng()) * (vertex2.lat() - vertex1.lat()) < latLng.lat()) { - inPoly = !inPoly; - } - } - - j = i; - } - } - - return inPoly; - }; - } - - if (!google.maps.Circle.prototype.containsLatLng) { - google.maps.Circle.prototype.containsLatLng = function(latLng) { - if (google.maps.geometry) { - return google.maps.geometry.spherical.computeDistanceBetween(this.getCenter(), latLng) <= this.getRadius(); - } - else { - return true; - } - }; - } - - google.maps.Rectangle.prototype.containsLatLng = function(latLng) { - return this.getBounds().contains(latLng); - }; - - google.maps.LatLngBounds.prototype.containsLatLng = function(latLng) { - return this.contains(latLng); - }; - - google.maps.Marker.prototype.setFences = function(fences) { - this.fences = fences; - }; - - google.maps.Marker.prototype.addFence = function(fence) { - this.fences.push(fence); - }; - - google.maps.Marker.prototype.getId = function() { - return this['__gm_id']; - }; -} - -//========================== -// Array indexOf -// https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf -if (!Array.prototype.indexOf) { - Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { - "use strict"; - if (this == null) { - throw new TypeError(); - } - var t = Object(this); - var len = t.length >>> 0; - if (len === 0) { - return -1; - } - var n = 0; - if (arguments.length > 1) { - n = Number(arguments[1]); - if (n != n) { // shortcut for verifying if it's NaN - n = 0; - } else if (n != 0 && n != Infinity && n != -Infinity) { - n = (n > 0 || -1) * Math.floor(Math.abs(n)); - } - } - if (n >= len) { - return -1; - } - var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); - for (; k < len; k++) { - if (k in t && t[k] === searchElement) { - return k; - } - } - return -1; - } -} - -return GMaps; -})); diff --git a/public/assets/out/gmaps/gmaps.min.js b/public/assets/out/gmaps/gmaps.min.js deleted file mode 100644 index e73ed159..00000000 --- a/public/assets/out/gmaps/gmaps.min.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict";!function(a,b){"object"==typeof exports?module.exports=b():"function"==typeof define&&define.amd?define(["jquery","googlemaps!"],b):a.GMaps=b()}(this,function(){var a=function(a,b){var c;if(a===b)return a;for(c in b)void 0!==b[c]&&(a[c]=b[c]);return a},b=function(a,b){var c,d=Array.prototype.slice.call(arguments,2),e=[],f=a.length;if(Array.prototype.map&&a.map===Array.prototype.map)e=Array.prototype.map.call(a,function(a){var c=d.slice(0);return c.splice(0,0,a),b.apply(this,c)});else for(c=0;c0&&"object"==typeof a[c][0]?a[c]=f(a[c],b):a[c]=d(a[c],b));return a},g=function(a,b){var c=a.replace(".","");return"jQuery"in this&&b?$("."+c,b)[0]:document.getElementsByClassName(c)[0]},h=function(a,b){var a=a.replace("#","");return"jQuery"in window&&b?$("#"+a,b)[0]:document.getElementById(a)},i=function(a){var b=0,c=0;if(a.getBoundingClientRect){var d=a.getBoundingClientRect(),e=-(window.scrollX?window.scrollX:window.pageXOffset),f=-(window.scrollY?window.scrollY:window.pageYOffset);return[d.left-e,d.top-f]}if(a.offsetParent)do b+=a.offsetLeft,c+=a.offsetTop;while(a=a.offsetParent);return[b,c]},j=function(b){var c=document,d=function(b){if("object"!=typeof window.google||!window.google.maps)return"object"==typeof window.console&&window.console.error&&console.error("Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js."),function(){};if(!this)return new d(b);b.zoom=b.zoom||15,b.mapType=b.mapType||"roadmap";var e,f=function(a,b){return void 0===a?b:a},j=this,k=["bounds_changed","center_changed","click","dblclick","drag","dragend","dragstart","idle","maptypeid_changed","projection_changed","resize","tilesloaded","zoom_changed"],l=["mousemove","mouseout","mouseover"],m=["el","lat","lng","mapType","width","height","markerClusterer","enableNewStyle"],n=b.el||b.div,o=b.markerClusterer,p=google.maps.MapTypeId[b.mapType.toUpperCase()],q=new google.maps.LatLng(b.lat,b.lng),r=f(b.zoomControl,!0),s=b.zoomControlOpt||{style:"DEFAULT",position:"TOP_LEFT"},t=s.style||"DEFAULT",u=s.position||"TOP_LEFT",v=f(b.panControl,!0),w=f(b.mapTypeControl,!0),x=f(b.scaleControl,!0),y=f(b.streetViewControl,!0),z=f(z,!0),A={},B={zoom:this.zoom,center:q,mapTypeId:p},C={panControl:v,zoomControl:r,zoomControlOptions:{style:google.maps.ZoomControlStyle[t],position:google.maps.ControlPosition[u]},mapTypeControl:w,scaleControl:x,streetViewControl:y,overviewMapControl:z};if("string"==typeof b.el||"string"==typeof b.div?n.indexOf("#")>-1?this.el=h(n,b.context):this.el=g.apply(this,[n,b.context]):this.el=n,void 0===this.el||null===this.el)throw"No element defined.";for(window.context_menu=window.context_menu||{},window.context_menu[j.el.id]={},this.controls=[],this.overlays=[],this.layers=[],this.singleLayers={},this.markers=[],this.polylines=[],this.routes=[],this.polygons=[],this.infoWindow=null,this.overlay_el=null,this.zoom=b.zoom,this.registered_events={},this.el.style.width=b.width||this.el.scrollWidth||this.el.offsetWidth,this.el.style.height=b.height||this.el.scrollHeight||this.el.offsetHeight,google.maps.visualRefresh=b.enableNewStyle,e=0;e'+f.title+""}if(h("gmaps_context_menu")){var g=h("gmaps_context_menu");g.innerHTML=c;var e,k=g.getElementsByTagName("a"),l=k.length;for(e=0;e-1){var d=this.markers[e];d.setMap(null),this.markerClusterer&&this.markerClusterer.removeMarker(d),j.fire("marker_removed",d,this)}}for(var c=0;c0&&d.paths[0].length>0&&(d.paths=c(b(d.paths,f,e)));for(var g=new google.maps.Polygon(d),h=["click","dblclick","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"],i=0;i0&&d.locations[0].length>0&&(d.locations=c(b([d.locations],f,!1)));var e=d.callback;delete d.callback;var g=new google.maps.ElevationService;if(d.path){var h={path:d.locations,samples:d.samples};g.getElevationAlongPath(h,function(a,b){e&&"function"==typeof e&&e(a,b)})}else delete d.path,delete d.samples,g.getElevationForLocations(d,function(a,b){e&&"function"==typeof e&&e(a,b)})},j.prototype.cleanRoute=j.prototype.removePolylines,j.prototype.renderRoute=function(b,c){var d,e="string"==typeof c.panel?document.getElementById(c.panel.replace("#","")):c.panel;c.panel=e,c=a({map:this.map},c),d=new google.maps.DirectionsRenderer(c),this.getRoutes({origin:b.origin,destination:b.destination,travelMode:b.travelMode,waypoints:b.waypoints,unitSystem:b.unitSystem,error:b.error,avoidHighways:b.avoidHighways,avoidTolls:b.avoidTolls,optimizeWaypoints:b.optimizeWaypoints,callback:function(a,b,c){c===google.maps.DirectionsStatus.OK&&d.setDirections(b)}})},j.prototype.drawRoute=function(a){var b=this;this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,avoidHighways:a.avoidHighways,avoidTolls:a.avoidTolls,optimizeWaypoints:a.optimizeWaypoints,callback:function(c){if(c.length>0){var d={path:c[c.length-1].overview_path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(d.icons=a.icons),b.drawPolyline(d),a.callback&&a.callback(c[c.length-1])}}})},j.prototype.travelRoute=function(a){if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,callback:function(b){if(b.length>0&&a.start&&a.start(b[b.length-1]),b.length>0&&a.step){var c=b[b.length-1];if(c.legs.length>0)for(var d,e=c.legs[0].steps,f=0;d=e[f];f++)d.step_number=f,a.step(d,c.legs[0].steps.length-1)}b.length>0&&a.end&&a.end(b[b.length-1])}});else if(a.route&&a.route.legs.length>0)for(var b,c=a.route.legs[0].steps,d=0;b=c[d];d++)b.step_number=d,a.step(b)},j.prototype.drawSteppedRoute=function(a){var b=this;if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,error:a.error,callback:function(c){if(c.length>0&&a.start&&a.start(c[c.length-1]),c.length>0&&a.step){var d=c[c.length-1];if(d.legs.length>0)for(var e,f=d.legs[0].steps,g=0;e=f[g];g++){e.step_number=g;var h={path:e.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(h.icons=a.icons),b.drawPolyline(h),a.step(e,d.legs[0].steps.length-1)}}c.length>0&&a.end&&a.end(c[c.length-1])}});else if(a.route&&a.route.legs.length>0)for(var c,d=a.route.legs[0].steps,e=0;c=d[e];e++){c.step_number=e;var f={path:c.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(f.icons=a.icons),b.drawPolyline(f),a.step(c)}},j.Route=function(a){this.origin=a.origin,this.destination=a.destination,this.waypoints=a.waypoints,this.map=a.map,this.route=a.route,this.step_count=0,this.steps=this.route.legs[0].steps,this.steps_length=this.steps.length;var b={path:new google.maps.MVCArray,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(b.icons=a.icons),this.polyline=this.map.drawPolyline(b).getPath()},j.Route.prototype.getRoute=function(a){var b=this;this.map.getRoutes({origin:this.origin,destination:this.destination,travelMode:a.travelMode,waypoints:this.waypoints||[],error:a.error,callback:function(){b.route=e[0],a.callback&&a.callback.call(b)}})},j.Route.prototype.back=function(){if(this.step_count>0){this.step_count--;var a=this.route.legs[0].steps[this.step_count].path;for(var b in a)a.hasOwnProperty(b)&&this.polyline.pop()}},j.Route.prototype.forward=function(){if(this.step_count0){b.markers=[];for(var c=0;c0){var d=this.polylines[0];b.polyline={},b.polyline.path=google.maps.geometry.encoding.encodePath(d.getPath()),b.polyline.strokeColor=d.strokeColor,b.polyline.strokeOpacity=d.strokeOpacity,b.polyline.strokeWeight=d.strokeWeight}return j.staticMapURL(b)},j.staticMapURL=function(a){function b(a,b){if("#"===a[0]&&(a=a.replace("#","0x"),b)){if(b=parseFloat(b),0===(b=Math.min(1,Math.max(b,0))))return"0x00000000";b=(255*b).toString(16),1===b.length&&(b+=b),a=a.slice(0,8)+b}return a}var c,d=[],e=("file:"===location.protocol?"http:":location.protocol)+"//maps.googleapis.com/maps/api/staticmap";a.url&&(e=a.url,delete a.url),e+="?";var f=a.markers;delete a.markers,!f&&a.marker&&(f=[a.marker],delete a.marker);var g=a.styles;delete a.styles;var h=a.polyline;if(delete a.polyline,a.center)d.push("center="+a.center),delete a.center;else if(a.address)d.push("center="+a.address),delete a.address;else if(a.lat)d.push(["center=",a.lat,",",a.lng].join("")),delete a.lat,delete a.lng;else if(a.visible){var i=encodeURI(a.visible.join("|"));d.push("visible="+i)}var j=a.size;j?(j.join&&(j=j.join("x")),delete a.size):j="630x300",d.push("size="+j),a.zoom||a.zoom===!1||(a.zoom=15);var k=!a.hasOwnProperty("sensor")||!!a.sensor;delete a.sensor,d.push("sensor="+k);for(var l in a)a.hasOwnProperty(l)&&d.push(l+"="+a[l]);if(f)for(var m,n,o=0;c=f[o];o++){m=[],c.size&&"normal"!==c.size?(m.push("size:"+c.size),delete c.size):c.icon&&(m.push("icon:"+encodeURI(c.icon)),delete c.icon),c.color&&(m.push("color:"+c.color.replace("#","0x")),delete c.color),c.label&&(m.push("label:"+c.label[0].toUpperCase()),delete c.label),n=c.address?c.address:c.lat+","+c.lng,delete c.address,delete c.lat,delete c.lng;for(var l in c)c.hasOwnProperty(l)&&m.push(l+":"+c[l]);m.length||0===o?(m.push(n),m=m.join("|"),d.push("markers="+encodeURI(m))):(m=d.pop()+encodeURI("|"+n),d.push(m))}if(g)for(var o=0;o=a.lng()||k.lng()=a.lng())&&j.lat()+(a.lng()-j.lng())/(k.lng()-j.lng())*(k.lat()-j.lat())>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!=d?d=0:0!=d&&d!=1/0&&d!=-(1/0)&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);e 0 && typeof(coords[i][0]) === "object") { - coords[i] = arrayToLatLng(coords[i], useGeoJSON); - } - else { - coords[i] = coordsToLatLngs(coords[i], useGeoJSON); - } - } - } - - return coords; -}; - -var getElementsByClassName = function (class_name, context) { - var element, - _class = class_name.replace('.', ''); - - if ('jQuery' in this && context) { - element = $("." + _class, context)[0]; - } else { - element = document.getElementsByClassName(_class)[0]; - } - return element; - -}; - -var getElementById = function(id, context) { - var element, - id = id.replace('#', ''); - - if ('jQuery' in window && context) { - element = $('#' + id, context)[0]; - } else { - element = document.getElementById(id); - }; - - return element; -}; - -var findAbsolutePosition = function(obj) { - var curleft = 0, - curtop = 0; - - if (obj.getBoundingClientRect) { - var rect = obj.getBoundingClientRect(); - var sx = -(window.scrollX ? window.scrollX : window.pageXOffset); - var sy = -(window.scrollY ? window.scrollY : window.pageYOffset); - - return [(rect.left - sx), (rect.top - sy)]; - } - - if (obj.offsetParent) { - do { - curleft += obj.offsetLeft; - curtop += obj.offsetTop; - } while (obj = obj.offsetParent); - } - - return [curleft, curtop]; -}; - -var GMaps = (function(global) { - "use strict"; - - var doc = document; - /** - * Creates a new GMaps instance, including a Google Maps map. - * @class GMaps - * @constructs - * @param {object} options - `options` accepts all the [MapOptions](https://developers.google.com/maps/documentation/javascript/reference#MapOptions) and [events](https://developers.google.com/maps/documentation/javascript/reference#Map) listed in the Google Maps API. Also accepts: - * * `lat` (number): Latitude of the map's center - * * `lng` (number): Longitude of the map's center - * * `el` (string or HTMLElement): container where the map will be rendered - * * `markerClusterer` (function): A function to create a marker cluster. You can use MarkerClusterer or MarkerClustererPlus. - */ - var GMaps = function(options) { - - if (!(typeof window.google === 'object' && window.google.maps)) { - if (typeof window.console === 'object' && window.console.error) { - console.error('Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js.'); - } - - return function() {}; - } - - if (!this) return new GMaps(options); - - options.zoom = options.zoom || 15; - options.mapType = options.mapType || 'roadmap'; - - var valueOrDefault = function(value, defaultValue) { - return value === undefined ? defaultValue : value; - }; - - var self = this, - i, - events_that_hide_context_menu = [ - 'bounds_changed', 'center_changed', 'click', 'dblclick', 'drag', - 'dragend', 'dragstart', 'idle', 'maptypeid_changed', 'projection_changed', - 'resize', 'tilesloaded', 'zoom_changed' - ], - events_that_doesnt_hide_context_menu = ['mousemove', 'mouseout', 'mouseover'], - options_to_be_deleted = ['el', 'lat', 'lng', 'mapType', 'width', 'height', 'markerClusterer', 'enableNewStyle'], - identifier = options.el || options.div, - markerClustererFunction = options.markerClusterer, - mapType = google.maps.MapTypeId[options.mapType.toUpperCase()], - map_center = new google.maps.LatLng(options.lat, options.lng), - zoomControl = valueOrDefault(options.zoomControl, true), - zoomControlOpt = options.zoomControlOpt || { - style: 'DEFAULT', - position: 'TOP_LEFT' - }, - zoomControlStyle = zoomControlOpt.style || 'DEFAULT', - zoomControlPosition = zoomControlOpt.position || 'TOP_LEFT', - panControl = valueOrDefault(options.panControl, true), - mapTypeControl = valueOrDefault(options.mapTypeControl, true), - scaleControl = valueOrDefault(options.scaleControl, true), - streetViewControl = valueOrDefault(options.streetViewControl, true), - overviewMapControl = valueOrDefault(overviewMapControl, true), - map_options = {}, - map_base_options = { - zoom: this.zoom, - center: map_center, - mapTypeId: mapType - }, - map_controls_options = { - panControl: panControl, - zoomControl: zoomControl, - zoomControlOptions: { - style: google.maps.ZoomControlStyle[zoomControlStyle], - position: google.maps.ControlPosition[zoomControlPosition] - }, - mapTypeControl: mapTypeControl, - scaleControl: scaleControl, - streetViewControl: streetViewControl, - overviewMapControl: overviewMapControl - }; - - if (typeof(options.el) === 'string' || typeof(options.div) === 'string') { - if (identifier.indexOf("#") > -1) { - /** - * Container element - * - * @type {HTMLElement} - */ - this.el = getElementById(identifier, options.context); - } else { - this.el = getElementsByClassName.apply(this, [identifier, options.context]); - } - } else { - this.el = identifier; - } - - if (typeof(this.el) === 'undefined' || this.el === null) { - throw 'No element defined.'; - } - - window.context_menu = window.context_menu || {}; - window.context_menu[self.el.id] = {}; - - /** - * Collection of custom controls in the map UI - * - * @type {array} - */ - this.controls = []; - /** - * Collection of map's overlays - * - * @type {array} - */ - this.overlays = []; - /** - * Collection of KML/GeoRSS and FusionTable layers - * - * @type {array} - */ - this.layers = []; - /** - * Collection of data layers (See {@link GMaps#addLayer}) - * - * @type {object} - */ - this.singleLayers = {}; - /** - * Collection of map's markers - * - * @type {array} - */ - this.markers = []; - /** - * Collection of map's lines - * - * @type {array} - */ - this.polylines = []; - /** - * Collection of map's routes requested by {@link GMaps#getRoutes}, {@link GMaps#renderRoute}, {@link GMaps#drawRoute}, {@link GMaps#travelRoute} or {@link GMaps#drawSteppedRoute} - * - * @type {array} - */ - this.routes = []; - /** - * Collection of map's polygons - * - * @type {array} - */ - this.polygons = []; - this.infoWindow = null; - this.overlay_el = null; - /** - * Current map's zoom - * - * @type {number} - */ - this.zoom = options.zoom; - this.registered_events = {}; - - this.el.style.width = options.width || this.el.scrollWidth || this.el.offsetWidth; - this.el.style.height = options.height || this.el.scrollHeight || this.el.offsetHeight; - - google.maps.visualRefresh = options.enableNewStyle; - - for (i = 0; i < options_to_be_deleted.length; i++) { - delete options[options_to_be_deleted[i]]; - } - - if(options.disableDefaultUI != true) { - map_base_options = extend_object(map_base_options, map_controls_options); - } - - map_options = extend_object(map_base_options, options); - - for (i = 0; i < events_that_hide_context_menu.length; i++) { - delete map_options[events_that_hide_context_menu[i]]; - } - - for (i = 0; i < events_that_doesnt_hide_context_menu.length; i++) { - delete map_options[events_that_doesnt_hide_context_menu[i]]; - } - - /** - * Google Maps map instance - * - * @type {google.maps.Map} - */ - this.map = new google.maps.Map(this.el, map_options); - - if (markerClustererFunction) { - /** - * Marker Clusterer instance - * - * @type {object} - */ - this.markerClusterer = markerClustererFunction.apply(this, [this.map]); - } - - var buildContextMenuHTML = function(control, e) { - var html = '', - options = window.context_menu[self.el.id][control]; - - for (var i in options){ - if (options.hasOwnProperty(i)) { - var option = options[i]; - - html += '
    • ' + option.title + '
    • '; - } - } - - if (!getElementById('gmaps_context_menu')) return; - - var context_menu_element = getElementById('gmaps_context_menu'); - - context_menu_element.innerHTML = html; - - var context_menu_items = context_menu_element.getElementsByTagName('a'), - context_menu_items_count = context_menu_items.length, - i; - - for (i = 0; i < context_menu_items_count; i++) { - var context_menu_item = context_menu_items[i]; - - var assign_menu_item_action = function(ev){ - ev.preventDefault(); - - options[this.id.replace(control + '_', '')].action.apply(self, [e]); - self.hideContextMenu(); - }; - - google.maps.event.clearListeners(context_menu_item, 'click'); - google.maps.event.addDomListenerOnce(context_menu_item, 'click', assign_menu_item_action, false); - } - - var position = findAbsolutePosition.apply(this, [self.el]), - left = position[0] + e.pixel.x - 15, - top = position[1] + e.pixel.y- 15; - - context_menu_element.style.left = left + "px"; - context_menu_element.style.top = top + "px"; - - // context_menu_element.style.display = 'block'; - }; - - this.buildContextMenu = function(control, e) { - if (control === 'marker') { - e.pixel = {}; - - var overlay = new google.maps.OverlayView(); - overlay.setMap(self.map); - - overlay.draw = function() { - var projection = overlay.getProjection(), - position = e.marker.getPosition(); - - e.pixel = projection.fromLatLngToContainerPixel(position); - - buildContextMenuHTML(control, e); - }; - } - else { - buildContextMenuHTML(control, e); - } - - var context_menu_element = getElementById('gmaps_context_menu'); - - setTimeout(function() { - context_menu_element.style.display = 'block'; - }, 0); - }; - - /** - * Add a context menu for a map or a marker. - * - * @param {object} options - The `options` object should contain: - * * `control` (string): Kind of control the context menu will be attached. Can be "map" or "marker". - * * `options` (array): A collection of context menu items: - * * `title` (string): Item's title shown in the context menu. - * * `name` (string): Item's identifier. - * * `action` (function): Function triggered after selecting the context menu item. - */ - this.setContextMenu = function(options) { - window.context_menu[self.el.id][options.control] = {}; - - var i, - ul = doc.createElement('ul'); - - for (i in options.options) { - if (options.options.hasOwnProperty(i)) { - var option = options.options[i]; - - window.context_menu[self.el.id][options.control][option.name] = { - title: option.title, - action: option.action - }; - } - } - - ul.id = 'gmaps_context_menu'; - ul.style.display = 'none'; - ul.style.position = 'absolute'; - ul.style.minWidth = '100px'; - ul.style.background = 'white'; - ul.style.listStyle = 'none'; - ul.style.padding = '8px'; - ul.style.boxShadow = '2px 2px 6px #ccc'; - - if (!getElementById('gmaps_context_menu')) { - doc.body.appendChild(ul); - } - - var context_menu_element = getElementById('gmaps_context_menu'); - - google.maps.event.addDomListener(context_menu_element, 'mouseout', function(ev) { - if (!ev.relatedTarget || !this.contains(ev.relatedTarget)) { - window.setTimeout(function(){ - context_menu_element.style.display = 'none'; - }, 400); - } - }, false); - }; - - /** - * Hide the current context menu - */ - this.hideContextMenu = function() { - var context_menu_element = getElementById('gmaps_context_menu'); - - if (context_menu_element) { - context_menu_element.style.display = 'none'; - } - }; - - var setupListener = function(object, name) { - google.maps.event.addListener(object, name, function(e){ - if (e == undefined) { - e = this; - } - - options[name].apply(this, [e]); - - self.hideContextMenu(); - }); - }; - - //google.maps.event.addListener(this.map, 'idle', this.hideContextMenu); - google.maps.event.addListener(this.map, 'zoom_changed', this.hideContextMenu); - - for (var ev = 0; ev < events_that_hide_context_menu.length; ev++) { - var name = events_that_hide_context_menu[ev]; - - if (name in options) { - setupListener(this.map, name); - } - } - - for (var ev = 0; ev < events_that_doesnt_hide_context_menu.length; ev++) { - var name = events_that_doesnt_hide_context_menu[ev]; - - if (name in options) { - setupListener(this.map, name); - } - } - - google.maps.event.addListener(this.map, 'rightclick', function(e) { - if (options.rightclick) { - options.rightclick.apply(this, [e]); - } - - if(window.context_menu[self.el.id]['map'] != undefined) { - self.buildContextMenu('map', e); - } - }); - - /** - * Trigger a `resize` event, useful if you need to repaint the current map (for changes in the viewport or display / hide actions). - */ - this.refresh = function() { - google.maps.event.trigger(this.map, 'resize'); - }; - - /** - * Adjust the map zoom to include all the markers added in the map. - */ - this.fitZoom = function() { - var latLngs = [], - markers_length = this.markers.length, - i; - - for (i = 0; i < markers_length; i++) { - if(typeof(this.markers[i].visible) === 'boolean' && this.markers[i].visible) { - latLngs.push(this.markers[i].getPosition()); - } - } - - this.fitLatLngBounds(latLngs); - }; - - /** - * Adjust the map zoom to include all the coordinates in the `latLngs` array. - * - * @param {array} latLngs - Collection of `google.maps.LatLng` objects. - */ - this.fitLatLngBounds = function(latLngs) { - var total = latLngs.length, - bounds = new google.maps.LatLngBounds(), - i; - - for(i = 0; i < total; i++) { - bounds.extend(latLngs[i]); - } - - this.map.fitBounds(bounds); - }; - - /** - * Center the map using the `lat` and `lng` coordinates. - * - * @param {number} lat - Latitude of the coordinate. - * @param {number} lng - Longitude of the coordinate. - * @param {function} [callback] - Callback that will be executed after the map is centered. - */ - this.setCenter = function(lat, lng, callback) { - this.map.panTo(new google.maps.LatLng(lat, lng)); - - if (callback) { - callback(); - } - }; - - /** - * Return the HTML element container of the map. - * - * @returns {HTMLElement} the element container. - */ - this.getElement = function() { - return this.el; - }; - - /** - * Increase the map's zoom. - * - * @param {number} [magnitude] - The number of times the map will be zoomed in. - */ - this.zoomIn = function(value) { - value = value || 1; - - this.zoom = this.map.getZoom() + value; - this.map.setZoom(this.zoom); - }; - - /** - * Decrease the map's zoom. - * - * @param {number} [magnitude] - The number of times the map will be zoomed out. - */ - this.zoomOut = function(value) { - value = value || 1; - - this.zoom = this.map.getZoom() - value; - this.map.setZoom(this.zoom); - }; - - var native_methods = [], - method; - - for (method in this.map) { - if (typeof(this.map[method]) == 'function' && !this[method]) { - native_methods.push(method); - } - } - - for (i = 0; i < native_methods.length; i++) { - (function(gmaps, scope, method_name) { - gmaps[method_name] = function(){ - return scope[method_name].apply(scope, arguments); - }; - })(this, this.map, native_methods[i]); - } - }; - - return GMaps; -})(this); diff --git a/public/assets/out/gmaps/lib/gmaps.events.js b/public/assets/out/gmaps/lib/gmaps.events.js deleted file mode 100644 index af528088..00000000 --- a/public/assets/out/gmaps/lib/gmaps.events.js +++ /dev/null @@ -1,65 +0,0 @@ -GMaps.prototype.on = function(event_name, handler) { - return GMaps.on(event_name, this, handler); -}; - -GMaps.prototype.off = function(event_name) { - GMaps.off(event_name, this); -}; - -GMaps.prototype.once = function(event_name, handler) { - return GMaps.once(event_name, this, handler); -}; - -GMaps.custom_events = ['marker_added', 'marker_removed', 'polyline_added', 'polyline_removed', 'polygon_added', 'polygon_removed', 'geolocated', 'geolocation_failed']; - -GMaps.on = function(event_name, object, handler) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - return google.maps.event.addListener(object, event_name, handler); - } - else { - var registered_event = { - handler : handler, - eventName : event_name - }; - - object.registered_events[event_name] = object.registered_events[event_name] || []; - object.registered_events[event_name].push(registered_event); - - return registered_event; - } -}; - -GMaps.off = function(event_name, object) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - google.maps.event.clearListeners(object, event_name); - } - else { - object.registered_events[event_name] = []; - } -}; - -GMaps.once = function(event_name, object, handler) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - if(object instanceof GMaps) object = object.map; - return google.maps.event.addListenerOnce(object, event_name, handler); - } -}; - -GMaps.fire = function(event_name, object, scope) { - if (GMaps.custom_events.indexOf(event_name) == -1) { - google.maps.event.trigger(object, event_name, Array.prototype.slice.apply(arguments).slice(2)); - } - else { - if(event_name in scope.registered_events) { - var firing_events = scope.registered_events[event_name]; - - for(var i = 0; i < firing_events.length; i++) { - (function(handler, scope, object) { - handler.apply(scope, [object]); - })(firing_events[i]['handler'], scope, object); - } - } - } -}; diff --git a/public/assets/out/gmaps/lib/gmaps.geofences.js b/public/assets/out/gmaps/lib/gmaps.geofences.js deleted file mode 100644 index 74797c87..00000000 --- a/public/assets/out/gmaps/lib/gmaps.geofences.js +++ /dev/null @@ -1,14 +0,0 @@ -GMaps.prototype.checkGeofence = function(lat, lng, fence) { - return fence.containsLatLng(new google.maps.LatLng(lat, lng)); -}; - -GMaps.prototype.checkMarkerGeofence = function(marker, outside_callback) { - if (marker.fences) { - for (var i = 0, fence; fence = marker.fences[i]; i++) { - var pos = marker.getPosition(); - if (!this.checkGeofence(pos.lat(), pos.lng(), fence)) { - outside_callback(marker, fence); - } - } - } -}; diff --git a/public/assets/out/gmaps/lib/gmaps.geometry.js b/public/assets/out/gmaps/lib/gmaps.geometry.js deleted file mode 100644 index e7cebd92..00000000 --- a/public/assets/out/gmaps/lib/gmaps.geometry.js +++ /dev/null @@ -1,205 +0,0 @@ -GMaps.prototype.drawPolyline = function(options) { - var path = [], - points = options.path; - - if (points.length) { - if (points[0][0] === undefined) { - path = points; - } - else { - for (var i = 0, latlng; latlng = points[i]; i++) { - path.push(new google.maps.LatLng(latlng[0], latlng[1])); - } - } - } - - var polyline_options = { - map: this.map, - path: path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight, - geodesic: options.geodesic, - clickable: true, - editable: false, - visible: true - }; - - if (options.hasOwnProperty("clickable")) { - polyline_options.clickable = options.clickable; - } - - if (options.hasOwnProperty("editable")) { - polyline_options.editable = options.editable; - } - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - if (options.hasOwnProperty("zIndex")) { - polyline_options.zIndex = options.zIndex; - } - - var polyline = new google.maps.Polyline(polyline_options); - - var polyline_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polyline_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polyline, polyline_events[ev]); - } - - this.polylines.push(polyline); - - GMaps.fire('polyline_added', polyline, this); - - return polyline; -}; - -GMaps.prototype.removePolyline = function(polyline) { - for (var i = 0; i < this.polylines.length; i++) { - if (this.polylines[i] === polyline) { - this.polylines[i].setMap(null); - this.polylines.splice(i, 1); - - GMaps.fire('polyline_removed', polyline, this); - - break; - } - } -}; - -GMaps.prototype.removePolylines = function() { - for (var i = 0, item; item = this.polylines[i]; i++) { - item.setMap(null); - } - - this.polylines = []; -}; - -GMaps.prototype.drawCircle = function(options) { - options = extend_object({ - map: this.map, - center: new google.maps.LatLng(options.lat, options.lng) - }, options); - - delete options.lat; - delete options.lng; - - var polygon = new google.maps.Circle(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - return polygon; -}; - -GMaps.prototype.drawRectangle = function(options) { - options = extend_object({ - map: this.map - }, options); - - var latLngBounds = new google.maps.LatLngBounds( - new google.maps.LatLng(options.bounds[0][0], options.bounds[0][1]), - new google.maps.LatLng(options.bounds[1][0], options.bounds[1][1]) - ); - - options.bounds = latLngBounds; - - var polygon = new google.maps.Rectangle(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - return polygon; -}; - -GMaps.prototype.drawPolygon = function(options) { - var useGeoJSON = false; - - if(options.hasOwnProperty("useGeoJSON")) { - useGeoJSON = options.useGeoJSON; - } - - delete options.useGeoJSON; - - options = extend_object({ - map: this.map - }, options); - - if (useGeoJSON == false) { - options.paths = [options.paths.slice(0)]; - } - - if (options.paths.length > 0) { - if (options.paths[0].length > 0) { - options.paths = array_flat(array_map(options.paths, arrayToLatLng, useGeoJSON)); - } - } - - var polygon = new google.maps.Polygon(options), - polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; - - for (var ev = 0; ev < polygon_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(e){ - options[name].apply(this, [e]); - }); - } - })(polygon, polygon_events[ev]); - } - - this.polygons.push(polygon); - - GMaps.fire('polygon_added', polygon, this); - - return polygon; -}; - -GMaps.prototype.removePolygon = function(polygon) { - for (var i = 0; i < this.polygons.length; i++) { - if (this.polygons[i] === polygon) { - this.polygons[i].setMap(null); - this.polygons.splice(i, 1); - - GMaps.fire('polygon_removed', polygon, this); - - break; - } - } -}; - -GMaps.prototype.removePolygons = function() { - for (var i = 0, item; item = this.polygons[i]; i++) { - item.setMap(null); - } - - this.polygons = []; -}; diff --git a/public/assets/out/gmaps/lib/gmaps.layers.js b/public/assets/out/gmaps/lib/gmaps.layers.js deleted file mode 100644 index b8ed339d..00000000 --- a/public/assets/out/gmaps/lib/gmaps.layers.js +++ /dev/null @@ -1,158 +0,0 @@ -GMaps.prototype.getFromFusionTables = function(options) { - var events = options.events; - - delete options.events; - - var fusion_tables_options = options, - layer = new google.maps.FusionTablesLayer(fusion_tables_options); - - for (var ev in events) { - (function(object, name) { - google.maps.event.addListener(object, name, function(e) { - events[name].apply(this, [e]); - }); - })(layer, ev); - } - - this.layers.push(layer); - - return layer; -}; - -GMaps.prototype.loadFromFusionTables = function(options) { - var layer = this.getFromFusionTables(options); - layer.setMap(this.map); - - return layer; -}; - -GMaps.prototype.getFromKML = function(options) { - var url = options.url, - events = options.events; - - delete options.url; - delete options.events; - - var kml_options = options, - layer = new google.maps.KmlLayer(url, kml_options); - - for (var ev in events) { - (function(object, name) { - google.maps.event.addListener(object, name, function(e) { - events[name].apply(this, [e]); - }); - })(layer, ev); - } - - this.layers.push(layer); - - return layer; -}; - -GMaps.prototype.loadFromKML = function(options) { - var layer = this.getFromKML(options); - layer.setMap(this.map); - - return layer; -}; - -GMaps.prototype.addLayer = function(layerName, options) { - //var default_layers = ['weather', 'clouds', 'traffic', 'transit', 'bicycling', 'panoramio', 'places']; - options = options || {}; - var layer; - - switch(layerName) { - case 'weather': this.singleLayers.weather = layer = new google.maps.weather.WeatherLayer(); - break; - case 'clouds': this.singleLayers.clouds = layer = new google.maps.weather.CloudLayer(); - break; - case 'traffic': this.singleLayers.traffic = layer = new google.maps.TrafficLayer(); - break; - case 'transit': this.singleLayers.transit = layer = new google.maps.TransitLayer(); - break; - case 'bicycling': this.singleLayers.bicycling = layer = new google.maps.BicyclingLayer(); - break; - case 'panoramio': - this.singleLayers.panoramio = layer = new google.maps.panoramio.PanoramioLayer(); - layer.setTag(options.filter); - delete options.filter; - - //click event - if (options.click) { - google.maps.event.addListener(layer, 'click', function(event) { - options.click(event); - delete options.click; - }); - } - break; - case 'places': - this.singleLayers.places = layer = new google.maps.places.PlacesService(this.map); - - //search, nearbySearch, radarSearch callback, Both are the same - if (options.search || options.nearbySearch || options.radarSearch) { - var placeSearchRequest = { - bounds : options.bounds || null, - keyword : options.keyword || null, - location : options.location || null, - name : options.name || null, - radius : options.radius || null, - rankBy : options.rankBy || null, - types : options.types || null - }; - - if (options.radarSearch) { - layer.radarSearch(placeSearchRequest, options.radarSearch); - } - - if (options.search) { - layer.search(placeSearchRequest, options.search); - } - - if (options.nearbySearch) { - layer.nearbySearch(placeSearchRequest, options.nearbySearch); - } - } - - //textSearch callback - if (options.textSearch) { - var textSearchRequest = { - bounds : options.bounds || null, - location : options.location || null, - query : options.query || null, - radius : options.radius || null - }; - - layer.textSearch(textSearchRequest, options.textSearch); - } - break; - } - - if (layer !== undefined) { - if (typeof layer.setOptions == 'function') { - layer.setOptions(options); - } - if (typeof layer.setMap == 'function') { - layer.setMap(this.map); - } - - return layer; - } -}; - -GMaps.prototype.removeLayer = function(layer) { - if (typeof(layer) == "string" && this.singleLayers[layer] !== undefined) { - this.singleLayers[layer].setMap(null); - - delete this.singleLayers[layer]; - } - else { - for (var i = 0; i < this.layers.length; i++) { - if (this.layers[i] === layer) { - this.layers[i].setMap(null); - this.layers.splice(i, 1); - - break; - } - } - } -}; diff --git a/public/assets/out/gmaps/lib/gmaps.map_types.js b/public/assets/out/gmaps/lib/gmaps.map_types.js deleted file mode 100644 index 46e748a6..00000000 --- a/public/assets/out/gmaps/lib/gmaps.map_types.js +++ /dev/null @@ -1,29 +0,0 @@ -GMaps.prototype.addMapType = function(mapTypeId, options) { - if (options.hasOwnProperty("getTileUrl") && typeof(options["getTileUrl"]) == "function") { - options.tileSize = options.tileSize || new google.maps.Size(256, 256); - - var mapType = new google.maps.ImageMapType(options); - - this.map.mapTypes.set(mapTypeId, mapType); - } - else { - throw "'getTileUrl' function required."; - } -}; - -GMaps.prototype.addOverlayMapType = function(options) { - if (options.hasOwnProperty("getTile") && typeof(options["getTile"]) == "function") { - var overlayMapTypeIndex = options.index; - - delete options.index; - - this.map.overlayMapTypes.insertAt(overlayMapTypeIndex, options); - } - else { - throw "'getTile' function required."; - } -}; - -GMaps.prototype.removeOverlayMapType = function(overlayMapTypeIndex) { - this.map.overlayMapTypes.removeAt(overlayMapTypeIndex); -}; diff --git a/public/assets/out/gmaps/lib/gmaps.markers.js b/public/assets/out/gmaps/lib/gmaps.markers.js deleted file mode 100644 index 7a4409ce..00000000 --- a/public/assets/out/gmaps/lib/gmaps.markers.js +++ /dev/null @@ -1,210 +0,0 @@ -GMaps.prototype.createMarker = function(options) { - if (options.lat == undefined && options.lng == undefined && options.position == undefined) { - throw 'No latitude or longitude defined.'; - } - - var self = this, - details = options.details, - fences = options.fences, - outside = options.outside, - base_options = { - position: new google.maps.LatLng(options.lat, options.lng), - map: null - }, - marker_options = extend_object(base_options, options); - - delete marker_options.lat; - delete marker_options.lng; - delete marker_options.fences; - delete marker_options.outside; - - var marker = new google.maps.Marker(marker_options); - - marker.fences = fences; - - if (options.infoWindow) { - marker.infoWindow = new google.maps.InfoWindow(options.infoWindow); - - var info_window_events = ['closeclick', 'content_changed', 'domready', 'position_changed', 'zindex_changed']; - - for (var ev = 0; ev < info_window_events.length; ev++) { - (function(object, name) { - if (options.infoWindow[name]) { - google.maps.event.addListener(object, name, function(e){ - options.infoWindow[name].apply(this, [e]); - }); - } - })(marker.infoWindow, info_window_events[ev]); - } - } - - var marker_events = ['animation_changed', 'clickable_changed', 'cursor_changed', 'draggable_changed', 'flat_changed', 'icon_changed', 'position_changed', 'shadow_changed', 'shape_changed', 'title_changed', 'visible_changed', 'zindex_changed']; - - var marker_events_with_mouse = ['dblclick', 'drag', 'dragend', 'dragstart', 'mousedown', 'mouseout', 'mouseover', 'mouseup']; - - for (var ev = 0; ev < marker_events.length; ev++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(){ - options[name].apply(this, [this]); - }); - } - })(marker, marker_events[ev]); - } - - for (var ev = 0; ev < marker_events_with_mouse.length; ev++) { - (function(map, object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(me){ - if(!me.pixel){ - me.pixel = map.getProjection().fromLatLngToPoint(me.latLng) - } - - options[name].apply(this, [me]); - }); - } - })(this.map, marker, marker_events_with_mouse[ev]); - } - - google.maps.event.addListener(marker, 'click', function() { - this.details = details; - - if (options.click) { - options.click.apply(this, [this]); - } - - if (marker.infoWindow) { - self.hideInfoWindows(); - marker.infoWindow.open(self.map, marker); - } - }); - - google.maps.event.addListener(marker, 'rightclick', function(e) { - e.marker = this; - - if (options.rightclick) { - options.rightclick.apply(this, [e]); - } - - if (window.context_menu[self.el.id]['marker'] != undefined) { - self.buildContextMenu('marker', e); - } - }); - - if (marker.fences) { - google.maps.event.addListener(marker, 'dragend', function() { - self.checkMarkerGeofence(marker, function(m, f) { - outside(m, f); - }); - }); - } - - return marker; -}; - -GMaps.prototype.addMarker = function(options) { - var marker; - if(options.hasOwnProperty('gm_accessors_')) { - // Native google.maps.Marker object - marker = options; - } - else { - if ((options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) || options.position) { - marker = this.createMarker(options); - } - else { - throw 'No latitude or longitude defined.'; - } - } - - marker.setMap(this.map); - - if(this.markerClusterer) { - this.markerClusterer.addMarker(marker); - } - - this.markers.push(marker); - - GMaps.fire('marker_added', marker, this); - - return marker; -}; - -GMaps.prototype.addMarkers = function(array) { - for (var i = 0, marker; marker=array[i]; i++) { - this.addMarker(marker); - } - - return this.markers; -}; - -GMaps.prototype.hideInfoWindows = function() { - for (var i = 0, marker; marker = this.markers[i]; i++){ - if (marker.infoWindow) { - marker.infoWindow.close(); - } - } -}; - -GMaps.prototype.removeMarker = function(marker) { - for (var i = 0; i < this.markers.length; i++) { - if (this.markers[i] === marker) { - this.markers[i].setMap(null); - this.markers.splice(i, 1); - - if(this.markerClusterer) { - this.markerClusterer.removeMarker(marker); - } - - GMaps.fire('marker_removed', marker, this); - - break; - } - } - - return marker; -}; - -GMaps.prototype.removeMarkers = function (collection) { - var new_markers = []; - - if (typeof collection == 'undefined') { - for (var i = 0; i < this.markers.length; i++) { - var marker = this.markers[i]; - marker.setMap(null); - - GMaps.fire('marker_removed', marker, this); - } - - if(this.markerClusterer && this.markerClusterer.clearMarkers) { - this.markerClusterer.clearMarkers(); - } - - this.markers = new_markers; - } - else { - for (var i = 0; i < collection.length; i++) { - var index = this.markers.indexOf(collection[i]); - - if (index > -1) { - var marker = this.markers[index]; - marker.setMap(null); - - if(this.markerClusterer) { - this.markerClusterer.removeMarker(marker); - } - - GMaps.fire('marker_removed', marker, this); - } - } - - for (var i = 0; i < this.markers.length; i++) { - var marker = this.markers[i]; - if (marker.getMap() != null) { - new_markers.push(marker); - } - } - - this.markers = new_markers; - } -}; diff --git a/public/assets/out/gmaps/lib/gmaps.native_extensions.js b/public/assets/out/gmaps/lib/gmaps.native_extensions.js deleted file mode 100644 index 33e980a0..00000000 --- a/public/assets/out/gmaps/lib/gmaps.native_extensions.js +++ /dev/null @@ -1,127 +0,0 @@ -if (typeof window.google === 'object' && window.google.maps) { - //========================== - // Polygon containsLatLng - // https://github.com/tparkin/Google-Maps-Point-in-Polygon - // Poygon getBounds extension - google-maps-extensions - // http://code.google.com/p/google-maps-extensions/source/browse/google.maps.Polygon.getBounds.js - if (!google.maps.Polygon.prototype.getBounds) { - google.maps.Polygon.prototype.getBounds = function(latLng) { - var bounds = new google.maps.LatLngBounds(); - var paths = this.getPaths(); - var path; - - for (var p = 0; p < paths.getLength(); p++) { - path = paths.getAt(p); - for (var i = 0; i < path.getLength(); i++) { - bounds.extend(path.getAt(i)); - } - } - - return bounds; - }; - } - - if (!google.maps.Polygon.prototype.containsLatLng) { - // Polygon containsLatLng - method to determine if a latLng is within a polygon - google.maps.Polygon.prototype.containsLatLng = function(latLng) { - // Exclude points outside of bounds as there is no way they are in the poly - var bounds = this.getBounds(); - - if (bounds !== null && !bounds.contains(latLng)) { - return false; - } - - // Raycast point in polygon method - var inPoly = false; - - var numPaths = this.getPaths().getLength(); - for (var p = 0; p < numPaths; p++) { - var path = this.getPaths().getAt(p); - var numPoints = path.getLength(); - var j = numPoints - 1; - - for (var i = 0; i < numPoints; i++) { - var vertex1 = path.getAt(i); - var vertex2 = path.getAt(j); - - if (vertex1.lng() < latLng.lng() && vertex2.lng() >= latLng.lng() || vertex2.lng() < latLng.lng() && vertex1.lng() >= latLng.lng()) { - if (vertex1.lat() + (latLng.lng() - vertex1.lng()) / (vertex2.lng() - vertex1.lng()) * (vertex2.lat() - vertex1.lat()) < latLng.lat()) { - inPoly = !inPoly; - } - } - - j = i; - } - } - - return inPoly; - }; - } - - if (!google.maps.Circle.prototype.containsLatLng) { - google.maps.Circle.prototype.containsLatLng = function(latLng) { - if (google.maps.geometry) { - return google.maps.geometry.spherical.computeDistanceBetween(this.getCenter(), latLng) <= this.getRadius(); - } - else { - return true; - } - }; - } - - google.maps.Rectangle.prototype.containsLatLng = function(latLng) { - return this.getBounds().contains(latLng); - }; - - google.maps.LatLngBounds.prototype.containsLatLng = function(latLng) { - return this.contains(latLng); - }; - - google.maps.Marker.prototype.setFences = function(fences) { - this.fences = fences; - }; - - google.maps.Marker.prototype.addFence = function(fence) { - this.fences.push(fence); - }; - - google.maps.Marker.prototype.getId = function() { - return this['__gm_id']; - }; -} - -//========================== -// Array indexOf -// https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf -if (!Array.prototype.indexOf) { - Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { - "use strict"; - if (this == null) { - throw new TypeError(); - } - var t = Object(this); - var len = t.length >>> 0; - if (len === 0) { - return -1; - } - var n = 0; - if (arguments.length > 1) { - n = Number(arguments[1]); - if (n != n) { // shortcut for verifying if it's NaN - n = 0; - } else if (n != 0 && n != Infinity && n != -Infinity) { - n = (n > 0 || -1) * Math.floor(Math.abs(n)); - } - } - if (n >= len) { - return -1; - } - var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); - for (; k < len; k++) { - if (k in t && t[k] === searchElement) { - return k; - } - } - return -1; - } -} \ No newline at end of file diff --git a/public/assets/out/gmaps/lib/gmaps.overlays.js b/public/assets/out/gmaps/lib/gmaps.overlays.js deleted file mode 100644 index 957e8015..00000000 --- a/public/assets/out/gmaps/lib/gmaps.overlays.js +++ /dev/null @@ -1,134 +0,0 @@ -GMaps.prototype.drawOverlay = function(options) { - var overlay = new google.maps.OverlayView(), - auto_show = true; - - overlay.setMap(this.map); - - if (options.auto_show != null) { - auto_show = options.auto_show; - } - - overlay.onAdd = function() { - var el = document.createElement('div'); - - el.style.borderStyle = "none"; - el.style.borderWidth = "0px"; - el.style.position = "absolute"; - el.style.zIndex = 100; - el.innerHTML = options.content; - - overlay.el = el; - - if (!options.layer) { - options.layer = 'overlayLayer'; - } - - var panes = this.getPanes(), - overlayLayer = panes[options.layer], - stop_overlay_events = ['contextmenu', 'DOMMouseScroll', 'dblclick', 'mousedown']; - - overlayLayer.appendChild(el); - - for (var ev = 0; ev < stop_overlay_events.length; ev++) { - (function(object, name) { - google.maps.event.addDomListener(object, name, function(e){ - if (navigator.userAgent.toLowerCase().indexOf('msie') != -1 && document.all) { - e.cancelBubble = true; - e.returnValue = false; - } - else { - e.stopPropagation(); - } - }); - })(el, stop_overlay_events[ev]); - } - - if (options.click) { - panes.overlayMouseTarget.appendChild(overlay.el); - google.maps.event.addDomListener(overlay.el, 'click', function() { - options.click.apply(overlay, [overlay]); - }); - } - - google.maps.event.trigger(this, 'ready'); - }; - - overlay.draw = function() { - var projection = this.getProjection(), - pixel = projection.fromLatLngToDivPixel(new google.maps.LatLng(options.lat, options.lng)); - - options.horizontalOffset = options.horizontalOffset || 0; - options.verticalOffset = options.verticalOffset || 0; - - var el = overlay.el, - content = el.children[0], - content_height = content.clientHeight, - content_width = content.clientWidth; - - switch (options.verticalAlign) { - case 'top': - el.style.top = (pixel.y - content_height + options.verticalOffset) + 'px'; - break; - default: - case 'middle': - el.style.top = (pixel.y - (content_height / 2) + options.verticalOffset) + 'px'; - break; - case 'bottom': - el.style.top = (pixel.y + options.verticalOffset) + 'px'; - break; - } - - switch (options.horizontalAlign) { - case 'left': - el.style.left = (pixel.x - content_width + options.horizontalOffset) + 'px'; - break; - default: - case 'center': - el.style.left = (pixel.x - (content_width / 2) + options.horizontalOffset) + 'px'; - break; - case 'right': - el.style.left = (pixel.x + options.horizontalOffset) + 'px'; - break; - } - - el.style.display = auto_show ? 'block' : 'none'; - - if (!auto_show) { - options.show.apply(this, [el]); - } - }; - - overlay.onRemove = function() { - var el = overlay.el; - - if (options.remove) { - options.remove.apply(this, [el]); - } - else { - overlay.el.parentNode.removeChild(overlay.el); - overlay.el = null; - } - }; - - this.overlays.push(overlay); - return overlay; -}; - -GMaps.prototype.removeOverlay = function(overlay) { - for (var i = 0; i < this.overlays.length; i++) { - if (this.overlays[i] === overlay) { - this.overlays[i].setMap(null); - this.overlays.splice(i, 1); - - break; - } - } -}; - -GMaps.prototype.removeOverlays = function() { - for (var i = 0, item; item = this.overlays[i]; i++) { - item.setMap(null); - } - - this.overlays = []; -}; diff --git a/public/assets/out/gmaps/lib/gmaps.routes.js b/public/assets/out/gmaps/lib/gmaps.routes.js deleted file mode 100644 index e967cfc1..00000000 --- a/public/assets/out/gmaps/lib/gmaps.routes.js +++ /dev/null @@ -1,363 +0,0 @@ -var travelMode, unitSystem; - -GMaps.prototype.getRoutes = function(options) { - switch (options.travelMode) { - case 'bicycling': - travelMode = google.maps.TravelMode.BICYCLING; - break; - case 'transit': - travelMode = google.maps.TravelMode.TRANSIT; - break; - case 'driving': - travelMode = google.maps.TravelMode.DRIVING; - break; - default: - travelMode = google.maps.TravelMode.WALKING; - break; - } - - if (options.unitSystem === 'imperial') { - unitSystem = google.maps.UnitSystem.IMPERIAL; - } - else { - unitSystem = google.maps.UnitSystem.METRIC; - } - - var base_options = { - avoidHighways: false, - avoidTolls: false, - optimizeWaypoints: false, - waypoints: [] - }, - request_options = extend_object(base_options, options); - - request_options.origin = /string/.test(typeof options.origin) ? options.origin : new google.maps.LatLng(options.origin[0], options.origin[1]); - request_options.destination = /string/.test(typeof options.destination) ? options.destination : new google.maps.LatLng(options.destination[0], options.destination[1]); - request_options.travelMode = travelMode; - request_options.unitSystem = unitSystem; - - delete request_options.callback; - delete request_options.error; - - var self = this, - routes = [], - service = new google.maps.DirectionsService(); - - service.route(request_options, function(result, status) { - if (status === google.maps.DirectionsStatus.OK) { - for (var r in result.routes) { - if (result.routes.hasOwnProperty(r)) { - routes.push(result.routes[r]); - } - } - - if (options.callback) { - options.callback(routes, result, status); - } - } - else { - if (options.error) { - options.error(result, status); - } - } - }); -}; - -GMaps.prototype.removeRoutes = function() { - this.routes.length = 0; -}; - -GMaps.prototype.getElevations = function(options) { - options = extend_object({ - locations: [], - path : false, - samples : 256 - }, options); - - if (options.locations.length > 0) { - if (options.locations[0].length > 0) { - options.locations = array_flat(array_map([options.locations], arrayToLatLng, false)); - } - } - - var callback = options.callback; - delete options.callback; - - var service = new google.maps.ElevationService(); - - //location request - if (!options.path) { - delete options.path; - delete options.samples; - - service.getElevationForLocations(options, function(result, status) { - if (callback && typeof(callback) === "function") { - callback(result, status); - } - }); - //path request - } else { - var pathRequest = { - path : options.locations, - samples : options.samples - }; - - service.getElevationAlongPath(pathRequest, function(result, status) { - if (callback && typeof(callback) === "function") { - callback(result, status); - } - }); - } -}; - -GMaps.prototype.cleanRoute = GMaps.prototype.removePolylines; - -GMaps.prototype.renderRoute = function(options, renderOptions) { - var self = this, - panel = ((typeof renderOptions.panel === 'string') ? document.getElementById(renderOptions.panel.replace('#', '')) : renderOptions.panel), - display; - - renderOptions.panel = panel; - renderOptions = extend_object({ - map: this.map - }, renderOptions); - display = new google.maps.DirectionsRenderer(renderOptions); - - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints: options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - avoidHighways: options.avoidHighways, - avoidTolls: options.avoidTolls, - optimizeWaypoints: options.optimizeWaypoints, - callback: function(routes, response, status) { - if (status === google.maps.DirectionsStatus.OK) { - display.setDirections(response); - } - } - }); -}; - -GMaps.prototype.drawRoute = function(options) { - var self = this; - - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints: options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - avoidHighways: options.avoidHighways, - avoidTolls: options.avoidTolls, - optimizeWaypoints: options.optimizeWaypoints, - callback: function(routes) { - if (routes.length > 0) { - var polyline_options = { - path: routes[routes.length - 1].overview_path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - - if (options.callback) { - options.callback(routes[routes.length - 1]); - } - } - } - }); -}; - -GMaps.prototype.travelRoute = function(options) { - if (options.origin && options.destination) { - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints : options.waypoints, - unitSystem: options.unitSystem, - error: options.error, - callback: function(e) { - //start callback - if (e.length > 0 && options.start) { - options.start(e[e.length - 1]); - } - - //step callback - if (e.length > 0 && options.step) { - var route = e[e.length - 1]; - if (route.legs.length > 0) { - var steps = route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - options.step(step, (route.legs[0].steps.length - 1)); - } - } - } - - //end callback - if (e.length > 0 && options.end) { - options.end(e[e.length - 1]); - } - } - }); - } - else if (options.route) { - if (options.route.legs.length > 0) { - var steps = options.route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - options.step(step); - } - } - } -}; - -GMaps.prototype.drawSteppedRoute = function(options) { - var self = this; - - if (options.origin && options.destination) { - this.getRoutes({ - origin: options.origin, - destination: options.destination, - travelMode: options.travelMode, - waypoints : options.waypoints, - error: options.error, - callback: function(e) { - //start callback - if (e.length > 0 && options.start) { - options.start(e[e.length - 1]); - } - - //step callback - if (e.length > 0 && options.step) { - var route = e[e.length - 1]; - if (route.legs.length > 0) { - var steps = route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - var polyline_options = { - path: step.path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - options.step(step, (route.legs[0].steps.length - 1)); - } - } - } - - //end callback - if (e.length > 0 && options.end) { - options.end(e[e.length - 1]); - } - } - }); - } - else if (options.route) { - if (options.route.legs.length > 0) { - var steps = options.route.legs[0].steps; - for (var i = 0, step; step = steps[i]; i++) { - step.step_number = i; - var polyline_options = { - path: step.path, - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - self.drawPolyline(polyline_options); - options.step(step); - } - } - } -}; - -GMaps.Route = function(options) { - this.origin = options.origin; - this.destination = options.destination; - this.waypoints = options.waypoints; - - this.map = options.map; - this.route = options.route; - this.step_count = 0; - this.steps = this.route.legs[0].steps; - this.steps_length = this.steps.length; - - var polyline_options = { - path: new google.maps.MVCArray(), - strokeColor: options.strokeColor, - strokeOpacity: options.strokeOpacity, - strokeWeight: options.strokeWeight - }; - - if (options.hasOwnProperty("icons")) { - polyline_options.icons = options.icons; - } - - this.polyline = this.map.drawPolyline(polyline_options).getPath(); -}; - -GMaps.Route.prototype.getRoute = function(options) { - var self = this; - - this.map.getRoutes({ - origin : this.origin, - destination : this.destination, - travelMode : options.travelMode, - waypoints : this.waypoints || [], - error: options.error, - callback : function() { - self.route = e[0]; - - if (options.callback) { - options.callback.call(self); - } - } - }); -}; - -GMaps.Route.prototype.back = function() { - if (this.step_count > 0) { - this.step_count--; - var path = this.route.legs[0].steps[this.step_count].path; - - for (var p in path){ - if (path.hasOwnProperty(p)){ - this.polyline.pop(); - } - } - } -}; - -GMaps.Route.prototype.forward = function() { - if (this.step_count < this.steps_length) { - var path = this.route.legs[0].steps[this.step_count].path; - - for (var p in path){ - if (path.hasOwnProperty(p)){ - this.polyline.push(path[p]); - } - } - this.step_count++; - } -}; diff --git a/public/assets/out/gmaps/lib/gmaps.static.js b/public/assets/out/gmaps/lib/gmaps.static.js deleted file mode 100644 index e8c5b080..00000000 --- a/public/assets/out/gmaps/lib/gmaps.static.js +++ /dev/null @@ -1,245 +0,0 @@ -GMaps.prototype.toImage = function(options) { - var options = options || {}, - static_map_options = {}; - - static_map_options['size'] = options['size'] || [this.el.clientWidth, this.el.clientHeight]; - static_map_options['lat'] = this.getCenter().lat(); - static_map_options['lng'] = this.getCenter().lng(); - - if (this.markers.length > 0) { - static_map_options['markers'] = []; - - for (var i = 0; i < this.markers.length; i++) { - static_map_options['markers'].push({ - lat: this.markers[i].getPosition().lat(), - lng: this.markers[i].getPosition().lng() - }); - } - } - - if (this.polylines.length > 0) { - var polyline = this.polylines[0]; - - static_map_options['polyline'] = {}; - static_map_options['polyline']['path'] = google.maps.geometry.encoding.encodePath(polyline.getPath()); - static_map_options['polyline']['strokeColor'] = polyline.strokeColor - static_map_options['polyline']['strokeOpacity'] = polyline.strokeOpacity - static_map_options['polyline']['strokeWeight'] = polyline.strokeWeight - } - - return GMaps.staticMapURL(static_map_options); -}; - -GMaps.staticMapURL = function(options){ - var parameters = [], - data, - static_root = (location.protocol === 'file:' ? 'http:' : location.protocol ) + '//maps.googleapis.com/maps/api/staticmap'; - - if (options.url) { - static_root = options.url; - delete options.url; - } - - static_root += '?'; - - var markers = options.markers; - - delete options.markers; - - if (!markers && options.marker) { - markers = [options.marker]; - delete options.marker; - } - - var styles = options.styles; - - delete options.styles; - - var polyline = options.polyline; - delete options.polyline; - - /** Map options **/ - if (options.center) { - parameters.push('center=' + options.center); - delete options.center; - } - else if (options.address) { - parameters.push('center=' + options.address); - delete options.address; - } - else if (options.lat) { - parameters.push(['center=', options.lat, ',', options.lng].join('')); - delete options.lat; - delete options.lng; - } - else if (options.visible) { - var visible = encodeURI(options.visible.join('|')); - parameters.push('visible=' + visible); - } - - var size = options.size; - if (size) { - if (size.join) { - size = size.join('x'); - } - delete options.size; - } - else { - size = '630x300'; - } - parameters.push('size=' + size); - - if (!options.zoom && options.zoom !== false) { - options.zoom = 15; - } - - var sensor = options.hasOwnProperty('sensor') ? !!options.sensor : true; - delete options.sensor; - parameters.push('sensor=' + sensor); - - for (var param in options) { - if (options.hasOwnProperty(param)) { - parameters.push(param + '=' + options[param]); - } - } - - /** Markers **/ - if (markers) { - var marker, loc; - - for (var i = 0; data = markers[i]; i++) { - marker = []; - - if (data.size && data.size !== 'normal') { - marker.push('size:' + data.size); - delete data.size; - } - else if (data.icon) { - marker.push('icon:' + encodeURI(data.icon)); - delete data.icon; - } - - if (data.color) { - marker.push('color:' + data.color.replace('#', '0x')); - delete data.color; - } - - if (data.label) { - marker.push('label:' + data.label[0].toUpperCase()); - delete data.label; - } - - loc = (data.address ? data.address : data.lat + ',' + data.lng); - delete data.address; - delete data.lat; - delete data.lng; - - for(var param in data){ - if (data.hasOwnProperty(param)) { - marker.push(param + ':' + data[param]); - } - } - - if (marker.length || i === 0) { - marker.push(loc); - marker = marker.join('|'); - parameters.push('markers=' + encodeURI(marker)); - } - // New marker without styles - else { - marker = parameters.pop() + encodeURI('|' + loc); - parameters.push(marker); - } - } - } - - /** Map Styles **/ - if (styles) { - for (var i = 0; i < styles.length; i++) { - var styleRule = []; - if (styles[i].featureType){ - styleRule.push('feature:' + styles[i].featureType.toLowerCase()); - } - - if (styles[i].elementType) { - styleRule.push('element:' + styles[i].elementType.toLowerCase()); - } - - for (var j = 0; j < styles[i].stylers.length; j++) { - for (var p in styles[i].stylers[j]) { - var ruleArg = styles[i].stylers[j][p]; - if (p == 'hue' || p == 'color') { - ruleArg = '0x' + ruleArg.substring(1); - } - styleRule.push(p + ':' + ruleArg); - } - } - - var rule = styleRule.join('|'); - if (rule != '') { - parameters.push('style=' + rule); - } - } - } - - /** Polylines **/ - function parseColor(color, opacity) { - if (color[0] === '#'){ - color = color.replace('#', '0x'); - - if (opacity) { - opacity = parseFloat(opacity); - opacity = Math.min(1, Math.max(opacity, 0)); - if (opacity === 0) { - return '0x00000000'; - } - opacity = (opacity * 255).toString(16); - if (opacity.length === 1) { - opacity += opacity; - } - - color = color.slice(0,8) + opacity; - } - } - return color; - } - - if (polyline) { - data = polyline; - polyline = []; - - if (data.strokeWeight) { - polyline.push('weight:' + parseInt(data.strokeWeight, 10)); - } - - if (data.strokeColor) { - var color = parseColor(data.strokeColor, data.strokeOpacity); - polyline.push('color:' + color); - } - - if (data.fillColor) { - var fillcolor = parseColor(data.fillColor, data.fillOpacity); - polyline.push('fillcolor:' + fillcolor); - } - - var path = data.path; - if (path.join) { - for (var j=0, pos; pos=path[j]; j++) { - polyline.push(pos.join(',')); - } - } - else { - polyline.push('enc:' + path); - } - - polyline = polyline.join('|'); - parameters.push('path=' + encodeURI(polyline)); - } - - /** Retina support **/ - var dpi = window.devicePixelRatio || 1; - parameters.push('scale=' + dpi); - - parameters = parameters.join('&'); - return static_root + parameters; -}; diff --git a/public/assets/out/gmaps/lib/gmaps.streetview.js b/public/assets/out/gmaps/lib/gmaps.streetview.js deleted file mode 100644 index fd1fa129..00000000 --- a/public/assets/out/gmaps/lib/gmaps.streetview.js +++ /dev/null @@ -1,44 +0,0 @@ -GMaps.prototype.createPanorama = function(streetview_options) { - if (!streetview_options.hasOwnProperty('lat') || !streetview_options.hasOwnProperty('lng')) { - streetview_options.lat = this.getCenter().lat(); - streetview_options.lng = this.getCenter().lng(); - } - - this.panorama = GMaps.createPanorama(streetview_options); - - this.map.setStreetView(this.panorama); - - return this.panorama; -}; - -GMaps.createPanorama = function(options) { - var el = getElementById(options.el, options.context); - - options.position = new google.maps.LatLng(options.lat, options.lng); - - delete options.el; - delete options.context; - delete options.lat; - delete options.lng; - - var streetview_events = ['closeclick', 'links_changed', 'pano_changed', 'position_changed', 'pov_changed', 'resize', 'visible_changed'], - streetview_options = extend_object({visible : true}, options); - - for (var i = 0; i < streetview_events.length; i++) { - delete streetview_options[streetview_events[i]]; - } - - var panorama = new google.maps.StreetViewPanorama(el, streetview_options); - - for (var i = 0; i < streetview_events.length; i++) { - (function(object, name) { - if (options[name]) { - google.maps.event.addListener(object, name, function(){ - options[name].apply(this); - }); - } - })(panorama, streetview_events[i]); - } - - return panorama; -}; diff --git a/public/assets/out/gmaps/lib/gmaps.styles.js b/public/assets/out/gmaps/lib/gmaps.styles.js deleted file mode 100644 index db06b455..00000000 --- a/public/assets/out/gmaps/lib/gmaps.styles.js +++ /dev/null @@ -1,9 +0,0 @@ -GMaps.prototype.addStyle = function(options) { - var styledMapType = new google.maps.StyledMapType(options.styles, { name: options.styledMapName }); - - this.map.mapTypes.set(options.mapTypeId, styledMapType); -}; - -GMaps.prototype.setStyle = function(mapTypeId) { - this.map.setMapTypeId(mapTypeId); -}; diff --git a/public/assets/out/gmaps/lib/gmaps.utils.js b/public/assets/out/gmaps/lib/gmaps.utils.js deleted file mode 100644 index 6655363b..00000000 --- a/public/assets/out/gmaps/lib/gmaps.utils.js +++ /dev/null @@ -1,42 +0,0 @@ -GMaps.geolocate = function(options) { - var complete_callback = options.always || options.complete; - - if (navigator.geolocation) { - navigator.geolocation.getCurrentPosition(function(position) { - options.success(position); - - if (complete_callback) { - complete_callback(); - } - }, function(error) { - options.error(error); - - if (complete_callback) { - complete_callback(); - } - }, options.options); - } - else { - options.not_supported(); - - if (complete_callback) { - complete_callback(); - } - } -}; - -GMaps.geocode = function(options) { - this.geocoder = new google.maps.Geocoder(); - var callback = options.callback; - if (options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) { - options.latLng = new google.maps.LatLng(options.lat, options.lng); - } - - delete options.lat; - delete options.lng; - delete options.callback; - - this.geocoder.geocode(options, function(results, status) { - callback(results, status); - }); -}; diff --git a/public/assets/out/gmaps/test/index.html b/public/assets/out/gmaps/test/index.html deleted file mode 100644 index 0d5eb147..00000000 --- a/public/assets/out/gmaps/test/index.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - gmaps.js test - - - - - - - - - - - - - - - - - - - - - - -

      Basic map

      -
      -

      Advanced map

      -
      -

      Map with events

      -
      -

      Map with markers

      -
      -

      Map with custom controls

      -
      -

      Map with polygons

      -
      -

      Map with layers

      -
      -

      Map with overlays

      -
      -

      Map with routes

      -
      -

      Map with styles

      -
      -

      Street View Panorama

      -
      -

      Map with Street View

      -
      -
      -
      -
      -

      Street View Panorama with events

      -
      -

      Events

      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/test/lib/jasmine-html.js b/public/assets/out/gmaps/test/lib/jasmine-html.js deleted file mode 100644 index 543d5696..00000000 --- a/public/assets/out/gmaps/test/lib/jasmine-html.js +++ /dev/null @@ -1,681 +0,0 @@ -jasmine.HtmlReporterHelpers = {}; - -jasmine.HtmlReporterHelpers.createDom = function(type, attrs, childrenVarArgs) { - var el = document.createElement(type); - - for (var i = 2; i < arguments.length; i++) { - var child = arguments[i]; - - if (typeof child === 'string') { - el.appendChild(document.createTextNode(child)); - } else { - if (child) { - el.appendChild(child); - } - } - } - - for (var attr in attrs) { - if (attr == "className") { - el[attr] = attrs[attr]; - } else { - el.setAttribute(attr, attrs[attr]); - } - } - - return el; -}; - -jasmine.HtmlReporterHelpers.getSpecStatus = function(child) { - var results = child.results(); - var status = results.passed() ? 'passed' : 'failed'; - if (results.skipped) { - status = 'skipped'; - } - - return status; -}; - -jasmine.HtmlReporterHelpers.appendToSummary = function(child, childElement) { - var parentDiv = this.dom.summary; - var parentSuite = (typeof child.parentSuite == 'undefined') ? 'suite' : 'parentSuite'; - var parent = child[parentSuite]; - - if (parent) { - if (typeof this.views.suites[parent.id] == 'undefined') { - this.views.suites[parent.id] = new jasmine.HtmlReporter.SuiteView(parent, this.dom, this.views); - } - parentDiv = this.views.suites[parent.id].element; - } - - parentDiv.appendChild(childElement); -}; - - -jasmine.HtmlReporterHelpers.addHelpers = function(ctor) { - for(var fn in jasmine.HtmlReporterHelpers) { - ctor.prototype[fn] = jasmine.HtmlReporterHelpers[fn]; - } -}; - -jasmine.HtmlReporter = function(_doc) { - var self = this; - var doc = _doc || window.document; - - var reporterView; - - var dom = {}; - - // Jasmine Reporter Public Interface - self.logRunningSpecs = false; - - self.reportRunnerStarting = function(runner) { - var specs = runner.specs() || []; - - if (specs.length == 0) { - return; - } - - createReporterDom(runner.env.versionString()); - doc.body.appendChild(dom.reporter); - setExceptionHandling(); - - reporterView = new jasmine.HtmlReporter.ReporterView(dom); - reporterView.addSpecs(specs, self.specFilter); - }; - - self.reportRunnerResults = function(runner) { - reporterView && reporterView.complete(); - }; - - self.reportSuiteResults = function(suite) { - reporterView.suiteComplete(suite); - }; - - self.reportSpecStarting = function(spec) { - if (self.logRunningSpecs) { - self.log('>> Jasmine Running ' + spec.suite.description + ' ' + spec.description + '...'); - } - }; - - self.reportSpecResults = function(spec) { - reporterView.specComplete(spec); - }; - - self.log = function() { - var console = jasmine.getGlobal().console; - if (console && console.log) { - if (console.log.apply) { - console.log.apply(console, arguments); - } else { - console.log(arguments); // ie fix: console.log.apply doesn't exist on ie - } - } - }; - - self.specFilter = function(spec) { - if (!focusedSpecName()) { - return true; - } - - return spec.getFullName().indexOf(focusedSpecName()) === 0; - }; - - return self; - - function focusedSpecName() { - var specName; - - (function memoizeFocusedSpec() { - if (specName) { - return; - } - - var paramMap = []; - var params = jasmine.HtmlReporter.parameters(doc); - - for (var i = 0; i < params.length; i++) { - var p = params[i].split('='); - paramMap[decodeURIComponent(p[0])] = decodeURIComponent(p[1]); - } - - specName = paramMap.spec; - })(); - - return specName; - } - - function createReporterDom(version) { - dom.reporter = self.createDom('div', { id: 'HTMLReporter', className: 'jasmine_reporter' }, - dom.banner = self.createDom('div', { className: 'banner' }, - self.createDom('span', { className: 'title' }, "Jasmine "), - self.createDom('span', { className: 'version' }, version)), - - dom.symbolSummary = self.createDom('ul', {className: 'symbolSummary'}), - dom.alert = self.createDom('div', {className: 'alert'}, - self.createDom('span', { className: 'exceptions' }, - self.createDom('label', { className: 'label', 'for': 'no_try_catch' }, 'No try/catch'), - self.createDom('input', { id: 'no_try_catch', type: 'checkbox' }))), - dom.results = self.createDom('div', {className: 'results'}, - dom.summary = self.createDom('div', { className: 'summary' }), - dom.details = self.createDom('div', { id: 'details' })) - ); - } - - function noTryCatch() { - return window.location.search.match(/catch=false/); - } - - function searchWithCatch() { - var params = jasmine.HtmlReporter.parameters(window.document); - var removed = false; - var i = 0; - - while (!removed && i < params.length) { - if (params[i].match(/catch=/)) { - params.splice(i, 1); - removed = true; - } - i++; - } - if (jasmine.CATCH_EXCEPTIONS) { - params.push("catch=false"); - } - - return params.join("&"); - } - - function setExceptionHandling() { - var chxCatch = document.getElementById('no_try_catch'); - - if (noTryCatch()) { - chxCatch.setAttribute('checked', true); - jasmine.CATCH_EXCEPTIONS = false; - } - chxCatch.onclick = function() { - window.location.search = searchWithCatch(); - }; - } -}; -jasmine.HtmlReporter.parameters = function(doc) { - var paramStr = doc.location.search.substring(1); - var params = []; - - if (paramStr.length > 0) { - params = paramStr.split('&'); - } - return params; -} -jasmine.HtmlReporter.sectionLink = function(sectionName) { - var link = '?'; - var params = []; - - if (sectionName) { - params.push('spec=' + encodeURIComponent(sectionName)); - } - if (!jasmine.CATCH_EXCEPTIONS) { - params.push("catch=false"); - } - if (params.length > 0) { - link += params.join("&"); - } - - return link; -}; -jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter); -jasmine.HtmlReporter.ReporterView = function(dom) { - this.startedAt = new Date(); - this.runningSpecCount = 0; - this.completeSpecCount = 0; - this.passedCount = 0; - this.failedCount = 0; - this.skippedCount = 0; - - this.createResultsMenu = function() { - this.resultsMenu = this.createDom('span', {className: 'resultsMenu bar'}, - this.summaryMenuItem = this.createDom('a', {className: 'summaryMenuItem', href: "#"}, '0 specs'), - ' | ', - this.detailsMenuItem = this.createDom('a', {className: 'detailsMenuItem', href: "#"}, '0 failing')); - - this.summaryMenuItem.onclick = function() { - dom.reporter.className = dom.reporter.className.replace(/ showDetails/g, ''); - }; - - this.detailsMenuItem.onclick = function() { - showDetails(); - }; - }; - - this.addSpecs = function(specs, specFilter) { - this.totalSpecCount = specs.length; - - this.views = { - specs: {}, - suites: {} - }; - - for (var i = 0; i < specs.length; i++) { - var spec = specs[i]; - this.views.specs[spec.id] = new jasmine.HtmlReporter.SpecView(spec, dom, this.views); - if (specFilter(spec)) { - this.runningSpecCount++; - } - } - }; - - this.specComplete = function(spec) { - this.completeSpecCount++; - - if (isUndefined(this.views.specs[spec.id])) { - this.views.specs[spec.id] = new jasmine.HtmlReporter.SpecView(spec, dom); - } - - var specView = this.views.specs[spec.id]; - - switch (specView.status()) { - case 'passed': - this.passedCount++; - break; - - case 'failed': - this.failedCount++; - break; - - case 'skipped': - this.skippedCount++; - break; - } - - specView.refresh(); - this.refresh(); - }; - - this.suiteComplete = function(suite) { - var suiteView = this.views.suites[suite.id]; - if (isUndefined(suiteView)) { - return; - } - suiteView.refresh(); - }; - - this.refresh = function() { - - if (isUndefined(this.resultsMenu)) { - this.createResultsMenu(); - } - - // currently running UI - if (isUndefined(this.runningAlert)) { - this.runningAlert = this.createDom('a', { href: jasmine.HtmlReporter.sectionLink(), className: "runningAlert bar" }); - dom.alert.appendChild(this.runningAlert); - } - this.runningAlert.innerHTML = "Running " + this.completeSpecCount + " of " + specPluralizedFor(this.totalSpecCount); - - // skipped specs UI - if (isUndefined(this.skippedAlert)) { - this.skippedAlert = this.createDom('a', { href: jasmine.HtmlReporter.sectionLink(), className: "skippedAlert bar" }); - } - - this.skippedAlert.innerHTML = "Skipping " + this.skippedCount + " of " + specPluralizedFor(this.totalSpecCount) + " - run all"; - - if (this.skippedCount === 1 && isDefined(dom.alert)) { - dom.alert.appendChild(this.skippedAlert); - } - - // passing specs UI - if (isUndefined(this.passedAlert)) { - this.passedAlert = this.createDom('span', { href: jasmine.HtmlReporter.sectionLink(), className: "passingAlert bar" }); - } - this.passedAlert.innerHTML = "Passing " + specPluralizedFor(this.passedCount); - - // failing specs UI - if (isUndefined(this.failedAlert)) { - this.failedAlert = this.createDom('span', {href: "?", className: "failingAlert bar"}); - } - this.failedAlert.innerHTML = "Failing " + specPluralizedFor(this.failedCount); - - if (this.failedCount === 1 && isDefined(dom.alert)) { - dom.alert.appendChild(this.failedAlert); - dom.alert.appendChild(this.resultsMenu); - } - - // summary info - this.summaryMenuItem.innerHTML = "" + specPluralizedFor(this.runningSpecCount); - this.detailsMenuItem.innerHTML = "" + this.failedCount + " failing"; - }; - - this.complete = function() { - dom.alert.removeChild(this.runningAlert); - - this.skippedAlert.innerHTML = "Ran " + this.runningSpecCount + " of " + specPluralizedFor(this.totalSpecCount) + " - run all"; - - if (this.failedCount === 0) { - dom.alert.appendChild(this.createDom('span', {className: 'passingAlert bar'}, "Passing " + specPluralizedFor(this.passedCount))); - } else { - showDetails(); - } - - dom.banner.appendChild(this.createDom('span', {className: 'duration'}, "finished in " + ((new Date().getTime() - this.startedAt.getTime()) / 1000) + "s")); - }; - - return this; - - function showDetails() { - if (dom.reporter.className.search(/showDetails/) === -1) { - dom.reporter.className += " showDetails"; - } - } - - function isUndefined(obj) { - return typeof obj === 'undefined'; - } - - function isDefined(obj) { - return !isUndefined(obj); - } - - function specPluralizedFor(count) { - var str = count + " spec"; - if (count > 1) { - str += "s" - } - return str; - } - -}; - -jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.ReporterView); - - -jasmine.HtmlReporter.SpecView = function(spec, dom, views) { - this.spec = spec; - this.dom = dom; - this.views = views; - - this.symbol = this.createDom('li', { className: 'pending' }); - this.dom.symbolSummary.appendChild(this.symbol); - - this.summary = this.createDom('div', { className: 'specSummary' }, - this.createDom('a', { - className: 'description', - href: jasmine.HtmlReporter.sectionLink(this.spec.getFullName()), - title: this.spec.getFullName() - }, this.spec.description) - ); - - this.detail = this.createDom('div', { className: 'specDetail' }, - this.createDom('a', { - className: 'description', - href: '?spec=' + encodeURIComponent(this.spec.getFullName()), - title: this.spec.getFullName() - }, this.spec.getFullName()) - ); -}; - -jasmine.HtmlReporter.SpecView.prototype.status = function() { - return this.getSpecStatus(this.spec); -}; - -jasmine.HtmlReporter.SpecView.prototype.refresh = function() { - this.symbol.className = this.status(); - - switch (this.status()) { - case 'skipped': - break; - - case 'passed': - this.appendSummaryToSuiteDiv(); - break; - - case 'failed': - this.appendSummaryToSuiteDiv(); - this.appendFailureDetail(); - break; - } -}; - -jasmine.HtmlReporter.SpecView.prototype.appendSummaryToSuiteDiv = function() { - this.summary.className += ' ' + this.status(); - this.appendToSummary(this.spec, this.summary); -}; - -jasmine.HtmlReporter.SpecView.prototype.appendFailureDetail = function() { - this.detail.className += ' ' + this.status(); - - var resultItems = this.spec.results().getItems(); - var messagesDiv = this.createDom('div', { className: 'messages' }); - - for (var i = 0; i < resultItems.length; i++) { - var result = resultItems[i]; - - if (result.type == 'log') { - messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage log'}, result.toString())); - } else if (result.type == 'expect' && result.passed && !result.passed()) { - messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage fail'}, result.message)); - - if (result.trace.stack) { - messagesDiv.appendChild(this.createDom('div', {className: 'stackTrace'}, result.trace.stack)); - } - } - } - - if (messagesDiv.childNodes.length > 0) { - this.detail.appendChild(messagesDiv); - this.dom.details.appendChild(this.detail); - } -}; - -jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SpecView);jasmine.HtmlReporter.SuiteView = function(suite, dom, views) { - this.suite = suite; - this.dom = dom; - this.views = views; - - this.element = this.createDom('div', { className: 'suite' }, - this.createDom('a', { className: 'description', href: jasmine.HtmlReporter.sectionLink(this.suite.getFullName()) }, this.suite.description) - ); - - this.appendToSummary(this.suite, this.element); -}; - -jasmine.HtmlReporter.SuiteView.prototype.status = function() { - return this.getSpecStatus(this.suite); -}; - -jasmine.HtmlReporter.SuiteView.prototype.refresh = function() { - this.element.className += " " + this.status(); -}; - -jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SuiteView); - -/* @deprecated Use jasmine.HtmlReporter instead - */ -jasmine.TrivialReporter = function(doc) { - this.document = doc || document; - this.suiteDivs = {}; - this.logRunningSpecs = false; -}; - -jasmine.TrivialReporter.prototype.createDom = function(type, attrs, childrenVarArgs) { - var el = document.createElement(type); - - for (var i = 2; i < arguments.length; i++) { - var child = arguments[i]; - - if (typeof child === 'string') { - el.appendChild(document.createTextNode(child)); - } else { - if (child) { el.appendChild(child); } - } - } - - for (var attr in attrs) { - if (attr == "className") { - el[attr] = attrs[attr]; - } else { - el.setAttribute(attr, attrs[attr]); - } - } - - return el; -}; - -jasmine.TrivialReporter.prototype.reportRunnerStarting = function(runner) { - var showPassed, showSkipped; - - this.outerDiv = this.createDom('div', { id: 'TrivialReporter', className: 'jasmine_reporter' }, - this.createDom('div', { className: 'banner' }, - this.createDom('div', { className: 'logo' }, - this.createDom('span', { className: 'title' }, "Jasmine"), - this.createDom('span', { className: 'version' }, runner.env.versionString())), - this.createDom('div', { className: 'options' }, - "Show ", - showPassed = this.createDom('input', { id: "__jasmine_TrivialReporter_showPassed__", type: 'checkbox' }), - this.createDom('label', { "for": "__jasmine_TrivialReporter_showPassed__" }, " passed "), - showSkipped = this.createDom('input', { id: "__jasmine_TrivialReporter_showSkipped__", type: 'checkbox' }), - this.createDom('label', { "for": "__jasmine_TrivialReporter_showSkipped__" }, " skipped") - ) - ), - - this.runnerDiv = this.createDom('div', { className: 'runner running' }, - this.createDom('a', { className: 'run_spec', href: '?' }, "run all"), - this.runnerMessageSpan = this.createDom('span', {}, "Running..."), - this.finishedAtSpan = this.createDom('span', { className: 'finished-at' }, "")) - ); - - this.document.body.appendChild(this.outerDiv); - - var suites = runner.suites(); - for (var i = 0; i < suites.length; i++) { - var suite = suites[i]; - var suiteDiv = this.createDom('div', { className: 'suite' }, - this.createDom('a', { className: 'run_spec', href: '?spec=' + encodeURIComponent(suite.getFullName()) }, "run"), - this.createDom('a', { className: 'description', href: '?spec=' + encodeURIComponent(suite.getFullName()) }, suite.description)); - this.suiteDivs[suite.id] = suiteDiv; - var parentDiv = this.outerDiv; - if (suite.parentSuite) { - parentDiv = this.suiteDivs[suite.parentSuite.id]; - } - parentDiv.appendChild(suiteDiv); - } - - this.startedAt = new Date(); - - var self = this; - showPassed.onclick = function(evt) { - if (showPassed.checked) { - self.outerDiv.className += ' show-passed'; - } else { - self.outerDiv.className = self.outerDiv.className.replace(/ show-passed/, ''); - } - }; - - showSkipped.onclick = function(evt) { - if (showSkipped.checked) { - self.outerDiv.className += ' show-skipped'; - } else { - self.outerDiv.className = self.outerDiv.className.replace(/ show-skipped/, ''); - } - }; -}; - -jasmine.TrivialReporter.prototype.reportRunnerResults = function(runner) { - var results = runner.results(); - var className = (results.failedCount > 0) ? "runner failed" : "runner passed"; - this.runnerDiv.setAttribute("class", className); - //do it twice for IE - this.runnerDiv.setAttribute("className", className); - var specs = runner.specs(); - var specCount = 0; - for (var i = 0; i < specs.length; i++) { - if (this.specFilter(specs[i])) { - specCount++; - } - } - var message = "" + specCount + " spec" + (specCount == 1 ? "" : "s" ) + ", " + results.failedCount + " failure" + ((results.failedCount == 1) ? "" : "s"); - message += " in " + ((new Date().getTime() - this.startedAt.getTime()) / 1000) + "s"; - this.runnerMessageSpan.replaceChild(this.createDom('a', { className: 'description', href: '?'}, message), this.runnerMessageSpan.firstChild); - - this.finishedAtSpan.appendChild(document.createTextNode("Finished at " + new Date().toString())); -}; - -jasmine.TrivialReporter.prototype.reportSuiteResults = function(suite) { - var results = suite.results(); - var status = results.passed() ? 'passed' : 'failed'; - if (results.totalCount === 0) { // todo: change this to check results.skipped - status = 'skipped'; - } - this.suiteDivs[suite.id].className += " " + status; -}; - -jasmine.TrivialReporter.prototype.reportSpecStarting = function(spec) { - if (this.logRunningSpecs) { - this.log('>> Jasmine Running ' + spec.suite.description + ' ' + spec.description + '...'); - } -}; - -jasmine.TrivialReporter.prototype.reportSpecResults = function(spec) { - var results = spec.results(); - var status = results.passed() ? 'passed' : 'failed'; - if (results.skipped) { - status = 'skipped'; - } - var specDiv = this.createDom('div', { className: 'spec ' + status }, - this.createDom('a', { className: 'run_spec', href: '?spec=' + encodeURIComponent(spec.getFullName()) }, "run"), - this.createDom('a', { - className: 'description', - href: '?spec=' + encodeURIComponent(spec.getFullName()), - title: spec.getFullName() - }, spec.description)); - - - var resultItems = results.getItems(); - var messagesDiv = this.createDom('div', { className: 'messages' }); - for (var i = 0; i < resultItems.length; i++) { - var result = resultItems[i]; - - if (result.type == 'log') { - messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage log'}, result.toString())); - } else if (result.type == 'expect' && result.passed && !result.passed()) { - messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage fail'}, result.message)); - - if (result.trace.stack) { - messagesDiv.appendChild(this.createDom('div', {className: 'stackTrace'}, result.trace.stack)); - } - } - } - - if (messagesDiv.childNodes.length > 0) { - specDiv.appendChild(messagesDiv); - } - - this.suiteDivs[spec.suite.id].appendChild(specDiv); -}; - -jasmine.TrivialReporter.prototype.log = function() { - var console = jasmine.getGlobal().console; - if (console && console.log) { - if (console.log.apply) { - console.log.apply(console, arguments); - } else { - console.log(arguments); // ie fix: console.log.apply doesn't exist on ie - } - } -}; - -jasmine.TrivialReporter.prototype.getLocation = function() { - return this.document.location; -}; - -jasmine.TrivialReporter.prototype.specFilter = function(spec) { - var paramMap = {}; - var params = this.getLocation().search.substring(1).split('&'); - for (var i = 0; i < params.length; i++) { - var p = params[i].split('='); - paramMap[decodeURIComponent(p[0])] = decodeURIComponent(p[1]); - } - - if (!paramMap.spec) { - return true; - } - return spec.getFullName().indexOf(paramMap.spec) === 0; -}; diff --git a/public/assets/out/gmaps/test/lib/jasmine.css b/public/assets/out/gmaps/test/lib/jasmine.css deleted file mode 100644 index 8c008dc7..00000000 --- a/public/assets/out/gmaps/test/lib/jasmine.css +++ /dev/null @@ -1,82 +0,0 @@ -body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; } - -#HTMLReporter { font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333333; } -#HTMLReporter a { text-decoration: none; } -#HTMLReporter a:hover { text-decoration: underline; } -#HTMLReporter p, #HTMLReporter h1, #HTMLReporter h2, #HTMLReporter h3, #HTMLReporter h4, #HTMLReporter h5, #HTMLReporter h6 { margin: 0; line-height: 14px; } -#HTMLReporter .banner, #HTMLReporter .symbolSummary, #HTMLReporter .summary, #HTMLReporter .resultMessage, #HTMLReporter .specDetail .description, #HTMLReporter .alert .bar, #HTMLReporter .stackTrace { padding-left: 9px; padding-right: 9px; } -#HTMLReporter #jasmine_content { position: fixed; right: 100%; } -#HTMLReporter .version { color: #aaaaaa; } -#HTMLReporter .banner { margin-top: 14px; } -#HTMLReporter .duration { color: #aaaaaa; float: right; } -#HTMLReporter .symbolSummary { overflow: hidden; *zoom: 1; margin: 14px 0; } -#HTMLReporter .symbolSummary li { display: block; float: left; height: 7px; width: 14px; margin-bottom: 7px; font-size: 16px; } -#HTMLReporter .symbolSummary li.passed { font-size: 14px; } -#HTMLReporter .symbolSummary li.passed:before { color: #5e7d00; content: "\02022"; } -#HTMLReporter .symbolSummary li.failed { line-height: 9px; } -#HTMLReporter .symbolSummary li.failed:before { color: #b03911; content: "x"; font-weight: bold; margin-left: -1px; } -#HTMLReporter .symbolSummary li.skipped { font-size: 14px; } -#HTMLReporter .symbolSummary li.skipped:before { color: #bababa; content: "\02022"; } -#HTMLReporter .symbolSummary li.pending { line-height: 11px; } -#HTMLReporter .symbolSummary li.pending:before { color: #aaaaaa; content: "-"; } -#HTMLReporter .exceptions { color: #fff; float: right; margin-top: 5px; margin-right: 5px; } -#HTMLReporter .bar { line-height: 28px; font-size: 14px; display: block; color: #eee; } -#HTMLReporter .runningAlert { background-color: #666666; } -#HTMLReporter .skippedAlert { background-color: #aaaaaa; } -#HTMLReporter .skippedAlert:first-child { background-color: #333333; } -#HTMLReporter .skippedAlert:hover { text-decoration: none; color: white; text-decoration: underline; } -#HTMLReporter .passingAlert { background-color: #a6b779; } -#HTMLReporter .passingAlert:first-child { background-color: #5e7d00; } -#HTMLReporter .failingAlert { background-color: #cf867e; } -#HTMLReporter .failingAlert:first-child { background-color: #b03911; } -#HTMLReporter .results { margin-top: 14px; } -#HTMLReporter #details { display: none; } -#HTMLReporter .resultsMenu, #HTMLReporter .resultsMenu a { background-color: #fff; color: #333333; } -#HTMLReporter.showDetails .summaryMenuItem { font-weight: normal; text-decoration: inherit; } -#HTMLReporter.showDetails .summaryMenuItem:hover { text-decoration: underline; } -#HTMLReporter.showDetails .detailsMenuItem { font-weight: bold; text-decoration: underline; } -#HTMLReporter.showDetails .summary { display: none; } -#HTMLReporter.showDetails #details { display: block; } -#HTMLReporter .summaryMenuItem { font-weight: bold; text-decoration: underline; } -#HTMLReporter .summary { margin-top: 14px; } -#HTMLReporter .summary .suite .suite, #HTMLReporter .summary .specSummary { margin-left: 14px; } -#HTMLReporter .summary .specSummary.passed a { color: #5e7d00; } -#HTMLReporter .summary .specSummary.failed a { color: #b03911; } -#HTMLReporter .description + .suite { margin-top: 0; } -#HTMLReporter .suite { margin-top: 14px; } -#HTMLReporter .suite a { color: #333333; } -#HTMLReporter #details .specDetail { margin-bottom: 28px; } -#HTMLReporter #details .specDetail .description { display: block; color: white; background-color: #b03911; } -#HTMLReporter .resultMessage { padding-top: 14px; color: #333333; } -#HTMLReporter .resultMessage span.result { display: block; } -#HTMLReporter .stackTrace { margin: 5px 0 0 0; max-height: 224px; overflow: auto; line-height: 18px; color: #666666; border: 1px solid #ddd; background: white; white-space: pre; } - -#TrivialReporter { padding: 8px 13px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow-y: scroll; background-color: white; font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif; /*.resultMessage {*/ /*white-space: pre;*/ /*}*/ } -#TrivialReporter a:visited, #TrivialReporter a { color: #303; } -#TrivialReporter a:hover, #TrivialReporter a:active { color: blue; } -#TrivialReporter .run_spec { float: right; padding-right: 5px; font-size: .8em; text-decoration: none; } -#TrivialReporter .banner { color: #303; background-color: #fef; padding: 5px; } -#TrivialReporter .logo { float: left; font-size: 1.1em; padding-left: 5px; } -#TrivialReporter .logo .version { font-size: .6em; padding-left: 1em; } -#TrivialReporter .runner.running { background-color: yellow; } -#TrivialReporter .options { text-align: right; font-size: .8em; } -#TrivialReporter .suite { border: 1px outset gray; margin: 5px 0; padding-left: 1em; } -#TrivialReporter .suite .suite { margin: 5px; } -#TrivialReporter .suite.passed { background-color: #dfd; } -#TrivialReporter .suite.failed { background-color: #fdd; } -#TrivialReporter .spec { margin: 5px; padding-left: 1em; clear: both; } -#TrivialReporter .spec.failed, #TrivialReporter .spec.passed, #TrivialReporter .spec.skipped { padding-bottom: 5px; border: 1px solid gray; } -#TrivialReporter .spec.failed { background-color: #fbb; border-color: red; } -#TrivialReporter .spec.passed { background-color: #bfb; border-color: green; } -#TrivialReporter .spec.skipped { background-color: #bbb; } -#TrivialReporter .messages { border-left: 1px dashed gray; padding-left: 1em; padding-right: 1em; } -#TrivialReporter .passed { background-color: #cfc; display: none; } -#TrivialReporter .failed { background-color: #fbb; } -#TrivialReporter .skipped { color: #777; background-color: #eee; display: none; } -#TrivialReporter .resultMessage span.result { display: block; line-height: 2em; color: black; } -#TrivialReporter .resultMessage .mismatch { color: black; } -#TrivialReporter .stackTrace { white-space: pre; font-size: .8em; margin-left: 10px; max-height: 5em; overflow: auto; border: 1px inset red; padding: 1em; background: #eef; } -#TrivialReporter .finished-at { padding-left: 1em; font-size: .6em; } -#TrivialReporter.show-passed .passed, #TrivialReporter.show-skipped .skipped { display: block; } -#TrivialReporter #jasmine_content { position: fixed; right: 100%; } -#TrivialReporter .runner { border: 1px solid gray; display: block; margin: 5px 0; padding: 2px 0 2px 10px; } diff --git a/public/assets/out/gmaps/test/lib/jasmine.js b/public/assets/out/gmaps/test/lib/jasmine.js deleted file mode 100644 index 6b3459b9..00000000 --- a/public/assets/out/gmaps/test/lib/jasmine.js +++ /dev/null @@ -1,2600 +0,0 @@ -var isCommonJS = typeof window == "undefined" && typeof exports == "object"; - -/** - * Top level namespace for Jasmine, a lightweight JavaScript BDD/spec/testing framework. - * - * @namespace - */ -var jasmine = {}; -if (isCommonJS) exports.jasmine = jasmine; -/** - * @private - */ -jasmine.unimplementedMethod_ = function() { - throw new Error("unimplemented method"); -}; - -/** - * Use jasmine.undefined instead of undefined, since undefined is just - * a plain old variable and may be redefined by somebody else. - * - * @private - */ -jasmine.undefined = jasmine.___undefined___; - -/** - * Show diagnostic messages in the console if set to true - * - */ -jasmine.VERBOSE = false; - -/** - * Default interval in milliseconds for event loop yields (e.g. to allow network activity or to refresh the screen with the HTML-based runner). Small values here may result in slow test running. Zero means no updates until all tests have completed. - * - */ -jasmine.DEFAULT_UPDATE_INTERVAL = 250; - -/** - * Maximum levels of nesting that will be included when an object is pretty-printed - */ -jasmine.MAX_PRETTY_PRINT_DEPTH = 40; - -/** - * Default timeout interval in milliseconds for waitsFor() blocks. - */ -jasmine.DEFAULT_TIMEOUT_INTERVAL = 5000; - -/** - * By default exceptions thrown in the context of a test are caught by jasmine so that it can run the remaining tests in the suite. - * Set to false to let the exception bubble up in the browser. - * - */ -jasmine.CATCH_EXCEPTIONS = true; - -jasmine.getGlobal = function() { - function getGlobal() { - return this; - } - - return getGlobal(); -}; - -/** - * Allows for bound functions to be compared. Internal use only. - * - * @ignore - * @private - * @param base {Object} bound 'this' for the function - * @param name {Function} function to find - */ -jasmine.bindOriginal_ = function(base, name) { - var original = base[name]; - if (original.apply) { - return function() { - return original.apply(base, arguments); - }; - } else { - // IE support - return jasmine.getGlobal()[name]; - } -}; - -jasmine.setTimeout = jasmine.bindOriginal_(jasmine.getGlobal(), 'setTimeout'); -jasmine.clearTimeout = jasmine.bindOriginal_(jasmine.getGlobal(), 'clearTimeout'); -jasmine.setInterval = jasmine.bindOriginal_(jasmine.getGlobal(), 'setInterval'); -jasmine.clearInterval = jasmine.bindOriginal_(jasmine.getGlobal(), 'clearInterval'); - -jasmine.MessageResult = function(values) { - this.type = 'log'; - this.values = values; - this.trace = new Error(); // todo: test better -}; - -jasmine.MessageResult.prototype.toString = function() { - var text = ""; - for (var i = 0; i < this.values.length; i++) { - if (i > 0) text += " "; - if (jasmine.isString_(this.values[i])) { - text += this.values[i]; - } else { - text += jasmine.pp(this.values[i]); - } - } - return text; -}; - -jasmine.ExpectationResult = function(params) { - this.type = 'expect'; - this.matcherName = params.matcherName; - this.passed_ = params.passed; - this.expected = params.expected; - this.actual = params.actual; - this.message = this.passed_ ? 'Passed.' : params.message; - - var trace = (params.trace || new Error(this.message)); - this.trace = this.passed_ ? '' : trace; -}; - -jasmine.ExpectationResult.prototype.toString = function () { - return this.message; -}; - -jasmine.ExpectationResult.prototype.passed = function () { - return this.passed_; -}; - -/** - * Getter for the Jasmine environment. Ensures one gets created - */ -jasmine.getEnv = function() { - var env = jasmine.currentEnv_ = jasmine.currentEnv_ || new jasmine.Env(); - return env; -}; - -/** - * @ignore - * @private - * @param value - * @returns {Boolean} - */ -jasmine.isArray_ = function(value) { - return jasmine.isA_("Array", value); -}; - -/** - * @ignore - * @private - * @param value - * @returns {Boolean} - */ -jasmine.isString_ = function(value) { - return jasmine.isA_("String", value); -}; - -/** - * @ignore - * @private - * @param value - * @returns {Boolean} - */ -jasmine.isNumber_ = function(value) { - return jasmine.isA_("Number", value); -}; - -/** - * @ignore - * @private - * @param {String} typeName - * @param value - * @returns {Boolean} - */ -jasmine.isA_ = function(typeName, value) { - return Object.prototype.toString.apply(value) === '[object ' + typeName + ']'; -}; - -/** - * Pretty printer for expecations. Takes any object and turns it into a human-readable string. - * - * @param value {Object} an object to be outputted - * @returns {String} - */ -jasmine.pp = function(value) { - var stringPrettyPrinter = new jasmine.StringPrettyPrinter(); - stringPrettyPrinter.format(value); - return stringPrettyPrinter.string; -}; - -/** - * Returns true if the object is a DOM Node. - * - * @param {Object} obj object to check - * @returns {Boolean} - */ -jasmine.isDomNode = function(obj) { - return obj.nodeType > 0; -}; - -/** - * Returns a matchable 'generic' object of the class type. For use in expecations of type when values don't matter. - * - * @example - * // don't care about which function is passed in, as long as it's a function - * expect(mySpy).toHaveBeenCalledWith(jasmine.any(Function)); - * - * @param {Class} clazz - * @returns matchable object of the type clazz - */ -jasmine.any = function(clazz) { - return new jasmine.Matchers.Any(clazz); -}; - -/** - * Returns a matchable subset of a JSON object. For use in expectations when you don't care about all of the - * attributes on the object. - * - * @example - * // don't care about any other attributes than foo. - * expect(mySpy).toHaveBeenCalledWith(jasmine.objectContaining({foo: "bar"}); - * - * @param sample {Object} sample - * @returns matchable object for the sample - */ -jasmine.objectContaining = function (sample) { - return new jasmine.Matchers.ObjectContaining(sample); -}; - -/** - * Jasmine Spies are test doubles that can act as stubs, spies, fakes or when used in an expecation, mocks. - * - * Spies should be created in test setup, before expectations. They can then be checked, using the standard Jasmine - * expectation syntax. Spies can be checked if they were called or not and what the calling params were. - * - * A Spy has the following fields: wasCalled, callCount, mostRecentCall, and argsForCall (see docs). - * - * Spies are torn down at the end of every spec. - * - * Note: Do not call new jasmine.Spy() directly - a spy must be created using spyOn, jasmine.createSpy or jasmine.createSpyObj. - * - * @example - * // a stub - * var myStub = jasmine.createSpy('myStub'); // can be used anywhere - * - * // spy example - * var foo = { - * not: function(bool) { return !bool; } - * } - * - * // actual foo.not will not be called, execution stops - * spyOn(foo, 'not'); - - // foo.not spied upon, execution will continue to implementation - * spyOn(foo, 'not').andCallThrough(); - * - * // fake example - * var foo = { - * not: function(bool) { return !bool; } - * } - * - * // foo.not(val) will return val - * spyOn(foo, 'not').andCallFake(function(value) {return value;}); - * - * // mock example - * foo.not(7 == 7); - * expect(foo.not).toHaveBeenCalled(); - * expect(foo.not).toHaveBeenCalledWith(true); - * - * @constructor - * @see spyOn, jasmine.createSpy, jasmine.createSpyObj - * @param {String} name - */ -jasmine.Spy = function(name) { - /** - * The name of the spy, if provided. - */ - this.identity = name || 'unknown'; - /** - * Is this Object a spy? - */ - this.isSpy = true; - /** - * The actual function this spy stubs. - */ - this.plan = function() { - }; - /** - * Tracking of the most recent call to the spy. - * @example - * var mySpy = jasmine.createSpy('foo'); - * mySpy(1, 2); - * mySpy.mostRecentCall.args = [1, 2]; - */ - this.mostRecentCall = {}; - - /** - * Holds arguments for each call to the spy, indexed by call count - * @example - * var mySpy = jasmine.createSpy('foo'); - * mySpy(1, 2); - * mySpy(7, 8); - * mySpy.mostRecentCall.args = [7, 8]; - * mySpy.argsForCall[0] = [1, 2]; - * mySpy.argsForCall[1] = [7, 8]; - */ - this.argsForCall = []; - this.calls = []; -}; - -/** - * Tells a spy to call through to the actual implemenatation. - * - * @example - * var foo = { - * bar: function() { // do some stuff } - * } - * - * // defining a spy on an existing property: foo.bar - * spyOn(foo, 'bar').andCallThrough(); - */ -jasmine.Spy.prototype.andCallThrough = function() { - this.plan = this.originalValue; - return this; -}; - -/** - * For setting the return value of a spy. - * - * @example - * // defining a spy from scratch: foo() returns 'baz' - * var foo = jasmine.createSpy('spy on foo').andReturn('baz'); - * - * // defining a spy on an existing property: foo.bar() returns 'baz' - * spyOn(foo, 'bar').andReturn('baz'); - * - * @param {Object} value - */ -jasmine.Spy.prototype.andReturn = function(value) { - this.plan = function() { - return value; - }; - return this; -}; - -/** - * For throwing an exception when a spy is called. - * - * @example - * // defining a spy from scratch: foo() throws an exception w/ message 'ouch' - * var foo = jasmine.createSpy('spy on foo').andThrow('baz'); - * - * // defining a spy on an existing property: foo.bar() throws an exception w/ message 'ouch' - * spyOn(foo, 'bar').andThrow('baz'); - * - * @param {String} exceptionMsg - */ -jasmine.Spy.prototype.andThrow = function(exceptionMsg) { - this.plan = function() { - throw exceptionMsg; - }; - return this; -}; - -/** - * Calls an alternate implementation when a spy is called. - * - * @example - * var baz = function() { - * // do some stuff, return something - * } - * // defining a spy from scratch: foo() calls the function baz - * var foo = jasmine.createSpy('spy on foo').andCall(baz); - * - * // defining a spy on an existing property: foo.bar() calls an anonymnous function - * spyOn(foo, 'bar').andCall(function() { return 'baz';} ); - * - * @param {Function} fakeFunc - */ -jasmine.Spy.prototype.andCallFake = function(fakeFunc) { - this.plan = fakeFunc; - return this; -}; - -/** - * Resets all of a spy's the tracking variables so that it can be used again. - * - * @example - * spyOn(foo, 'bar'); - * - * foo.bar(); - * - * expect(foo.bar.callCount).toEqual(1); - * - * foo.bar.reset(); - * - * expect(foo.bar.callCount).toEqual(0); - */ -jasmine.Spy.prototype.reset = function() { - this.wasCalled = false; - this.callCount = 0; - this.argsForCall = []; - this.calls = []; - this.mostRecentCall = {}; -}; - -jasmine.createSpy = function(name) { - - var spyObj = function() { - spyObj.wasCalled = true; - spyObj.callCount++; - var args = jasmine.util.argsToArray(arguments); - spyObj.mostRecentCall.object = this; - spyObj.mostRecentCall.args = args; - spyObj.argsForCall.push(args); - spyObj.calls.push({object: this, args: args}); - return spyObj.plan.apply(this, arguments); - }; - - var spy = new jasmine.Spy(name); - - for (var prop in spy) { - spyObj[prop] = spy[prop]; - } - - spyObj.reset(); - - return spyObj; -}; - -/** - * Determines whether an object is a spy. - * - * @param {jasmine.Spy|Object} putativeSpy - * @returns {Boolean} - */ -jasmine.isSpy = function(putativeSpy) { - return putativeSpy && putativeSpy.isSpy; -}; - -/** - * Creates a more complicated spy: an Object that has every property a function that is a spy. Used for stubbing something - * large in one call. - * - * @param {String} baseName name of spy class - * @param {Array} methodNames array of names of methods to make spies - */ -jasmine.createSpyObj = function(baseName, methodNames) { - if (!jasmine.isArray_(methodNames) || methodNames.length === 0) { - throw new Error('createSpyObj requires a non-empty array of method names to create spies for'); - } - var obj = {}; - for (var i = 0; i < methodNames.length; i++) { - obj[methodNames[i]] = jasmine.createSpy(baseName + '.' + methodNames[i]); - } - return obj; -}; - -/** - * All parameters are pretty-printed and concatenated together, then written to the current spec's output. - * - * Be careful not to leave calls to jasmine.log in production code. - */ -jasmine.log = function() { - var spec = jasmine.getEnv().currentSpec; - spec.log.apply(spec, arguments); -}; - -/** - * Function that installs a spy on an existing object's method name. Used within a Spec to create a spy. - * - * @example - * // spy example - * var foo = { - * not: function(bool) { return !bool; } - * } - * spyOn(foo, 'not'); // actual foo.not will not be called, execution stops - * - * @see jasmine.createSpy - * @param obj - * @param methodName - * @return {jasmine.Spy} a Jasmine spy that can be chained with all spy methods - */ -var spyOn = function(obj, methodName) { - return jasmine.getEnv().currentSpec.spyOn(obj, methodName); -}; -if (isCommonJS) exports.spyOn = spyOn; - -/** - * Creates a Jasmine spec that will be added to the current suite. - * - * // TODO: pending tests - * - * @example - * it('should be true', function() { - * expect(true).toEqual(true); - * }); - * - * @param {String} desc description of this specification - * @param {Function} func defines the preconditions and expectations of the spec - */ -var it = function(desc, func) { - return jasmine.getEnv().it(desc, func); -}; -if (isCommonJS) exports.it = it; - -/** - * Creates a disabled Jasmine spec. - * - * A convenience method that allows existing specs to be disabled temporarily during development. - * - * @param {String} desc description of this specification - * @param {Function} func defines the preconditions and expectations of the spec - */ -var xit = function(desc, func) { - return jasmine.getEnv().xit(desc, func); -}; -if (isCommonJS) exports.xit = xit; - -/** - * Starts a chain for a Jasmine expectation. - * - * It is passed an Object that is the actual value and should chain to one of the many - * jasmine.Matchers functions. - * - * @param {Object} actual Actual value to test against and expected value - * @return {jasmine.Matchers} - */ -var expect = function(actual) { - return jasmine.getEnv().currentSpec.expect(actual); -}; -if (isCommonJS) exports.expect = expect; - -/** - * Defines part of a jasmine spec. Used in cominbination with waits or waitsFor in asynchrnous specs. - * - * @param {Function} func Function that defines part of a jasmine spec. - */ -var runs = function(func) { - jasmine.getEnv().currentSpec.runs(func); -}; -if (isCommonJS) exports.runs = runs; - -/** - * Waits a fixed time period before moving to the next block. - * - * @deprecated Use waitsFor() instead - * @param {Number} timeout milliseconds to wait - */ -var waits = function(timeout) { - jasmine.getEnv().currentSpec.waits(timeout); -}; -if (isCommonJS) exports.waits = waits; - -/** - * Waits for the latchFunction to return true before proceeding to the next block. - * - * @param {Function} latchFunction - * @param {String} optional_timeoutMessage - * @param {Number} optional_timeout - */ -var waitsFor = function(latchFunction, optional_timeoutMessage, optional_timeout) { - jasmine.getEnv().currentSpec.waitsFor.apply(jasmine.getEnv().currentSpec, arguments); -}; -if (isCommonJS) exports.waitsFor = waitsFor; - -/** - * A function that is called before each spec in a suite. - * - * Used for spec setup, including validating assumptions. - * - * @param {Function} beforeEachFunction - */ -var beforeEach = function(beforeEachFunction) { - jasmine.getEnv().beforeEach(beforeEachFunction); -}; -if (isCommonJS) exports.beforeEach = beforeEach; - -/** - * A function that is called after each spec in a suite. - * - * Used for restoring any state that is hijacked during spec execution. - * - * @param {Function} afterEachFunction - */ -var afterEach = function(afterEachFunction) { - jasmine.getEnv().afterEach(afterEachFunction); -}; -if (isCommonJS) exports.afterEach = afterEach; - -/** - * Defines a suite of specifications. - * - * Stores the description and all defined specs in the Jasmine environment as one suite of specs. Variables declared - * are accessible by calls to beforeEach, it, and afterEach. Describe blocks can be nested, allowing for specialization - * of setup in some tests. - * - * @example - * // TODO: a simple suite - * - * // TODO: a simple suite with a nested describe block - * - * @param {String} description A string, usually the class under test. - * @param {Function} specDefinitions function that defines several specs. - */ -var describe = function(description, specDefinitions) { - return jasmine.getEnv().describe(description, specDefinitions); -}; -if (isCommonJS) exports.describe = describe; - -/** - * Disables a suite of specifications. Used to disable some suites in a file, or files, temporarily during development. - * - * @param {String} description A string, usually the class under test. - * @param {Function} specDefinitions function that defines several specs. - */ -var xdescribe = function(description, specDefinitions) { - return jasmine.getEnv().xdescribe(description, specDefinitions); -}; -if (isCommonJS) exports.xdescribe = xdescribe; - - -// Provide the XMLHttpRequest class for IE 5.x-6.x: -jasmine.XmlHttpRequest = (typeof XMLHttpRequest == "undefined") ? function() { - function tryIt(f) { - try { - return f(); - } catch(e) { - } - return null; - } - - var xhr = tryIt(function() { - return new ActiveXObject("Msxml2.XMLHTTP.6.0"); - }) || - tryIt(function() { - return new ActiveXObject("Msxml2.XMLHTTP.3.0"); - }) || - tryIt(function() { - return new ActiveXObject("Msxml2.XMLHTTP"); - }) || - tryIt(function() { - return new ActiveXObject("Microsoft.XMLHTTP"); - }); - - if (!xhr) throw new Error("This browser does not support XMLHttpRequest."); - - return xhr; -} : XMLHttpRequest; -/** - * @namespace - */ -jasmine.util = {}; - -/** - * Declare that a child class inherit it's prototype from the parent class. - * - * @private - * @param {Function} childClass - * @param {Function} parentClass - */ -jasmine.util.inherit = function(childClass, parentClass) { - /** - * @private - */ - var subclass = function() { - }; - subclass.prototype = parentClass.prototype; - childClass.prototype = new subclass(); -}; - -jasmine.util.formatException = function(e) { - var lineNumber; - if (e.line) { - lineNumber = e.line; - } - else if (e.lineNumber) { - lineNumber = e.lineNumber; - } - - var file; - - if (e.sourceURL) { - file = e.sourceURL; - } - else if (e.fileName) { - file = e.fileName; - } - - var message = (e.name && e.message) ? (e.name + ': ' + e.message) : e.toString(); - - if (file && lineNumber) { - message += ' in ' + file + ' (line ' + lineNumber + ')'; - } - - return message; -}; - -jasmine.util.htmlEscape = function(str) { - if (!str) return str; - return str.replace(/&/g, '&') - .replace(//g, '>'); -}; - -jasmine.util.argsToArray = function(args) { - var arrayOfArgs = []; - for (var i = 0; i < args.length; i++) arrayOfArgs.push(args[i]); - return arrayOfArgs; -}; - -jasmine.util.extend = function(destination, source) { - for (var property in source) destination[property] = source[property]; - return destination; -}; - -/** - * Environment for Jasmine - * - * @constructor - */ -jasmine.Env = function() { - this.currentSpec = null; - this.currentSuite = null; - this.currentRunner_ = new jasmine.Runner(this); - - this.reporter = new jasmine.MultiReporter(); - - this.updateInterval = jasmine.DEFAULT_UPDATE_INTERVAL; - this.defaultTimeoutInterval = jasmine.DEFAULT_TIMEOUT_INTERVAL; - this.lastUpdate = 0; - this.specFilter = function() { - return true; - }; - - this.nextSpecId_ = 0; - this.nextSuiteId_ = 0; - this.equalityTesters_ = []; - - // wrap matchers - this.matchersClass = function() { - jasmine.Matchers.apply(this, arguments); - }; - jasmine.util.inherit(this.matchersClass, jasmine.Matchers); - - jasmine.Matchers.wrapInto_(jasmine.Matchers.prototype, this.matchersClass); -}; - - -jasmine.Env.prototype.setTimeout = jasmine.setTimeout; -jasmine.Env.prototype.clearTimeout = jasmine.clearTimeout; -jasmine.Env.prototype.setInterval = jasmine.setInterval; -jasmine.Env.prototype.clearInterval = jasmine.clearInterval; - -/** - * @returns an object containing jasmine version build info, if set. - */ -jasmine.Env.prototype.version = function () { - if (jasmine.version_) { - return jasmine.version_; - } else { - throw new Error('Version not set'); - } -}; - -/** - * @returns string containing jasmine version build info, if set. - */ -jasmine.Env.prototype.versionString = function() { - if (!jasmine.version_) { - return "version unknown"; - } - - var version = this.version(); - var versionString = version.major + "." + version.minor + "." + version.build; - if (version.release_candidate) { - versionString += ".rc" + version.release_candidate; - } - versionString += " revision " + version.revision; - return versionString; -}; - -/** - * @returns a sequential integer starting at 0 - */ -jasmine.Env.prototype.nextSpecId = function () { - return this.nextSpecId_++; -}; - -/** - * @returns a sequential integer starting at 0 - */ -jasmine.Env.prototype.nextSuiteId = function () { - return this.nextSuiteId_++; -}; - -/** - * Register a reporter to receive status updates from Jasmine. - * @param {jasmine.Reporter} reporter An object which will receive status updates. - */ -jasmine.Env.prototype.addReporter = function(reporter) { - this.reporter.addReporter(reporter); -}; - -jasmine.Env.prototype.execute = function() { - this.currentRunner_.execute(); -}; - -jasmine.Env.prototype.describe = function(description, specDefinitions) { - var suite = new jasmine.Suite(this, description, specDefinitions, this.currentSuite); - - var parentSuite = this.currentSuite; - if (parentSuite) { - parentSuite.add(suite); - } else { - this.currentRunner_.add(suite); - } - - this.currentSuite = suite; - - var declarationError = null; - try { - specDefinitions.call(suite); - } catch(e) { - declarationError = e; - } - - if (declarationError) { - this.it("encountered a declaration exception", function() { - throw declarationError; - }); - } - - this.currentSuite = parentSuite; - - return suite; -}; - -jasmine.Env.prototype.beforeEach = function(beforeEachFunction) { - if (this.currentSuite) { - this.currentSuite.beforeEach(beforeEachFunction); - } else { - this.currentRunner_.beforeEach(beforeEachFunction); - } -}; - -jasmine.Env.prototype.currentRunner = function () { - return this.currentRunner_; -}; - -jasmine.Env.prototype.afterEach = function(afterEachFunction) { - if (this.currentSuite) { - this.currentSuite.afterEach(afterEachFunction); - } else { - this.currentRunner_.afterEach(afterEachFunction); - } - -}; - -jasmine.Env.prototype.xdescribe = function(desc, specDefinitions) { - return { - execute: function() { - } - }; -}; - -jasmine.Env.prototype.it = function(description, func) { - var spec = new jasmine.Spec(this, this.currentSuite, description); - this.currentSuite.add(spec); - this.currentSpec = spec; - - if (func) { - spec.runs(func); - } - - return spec; -}; - -jasmine.Env.prototype.xit = function(desc, func) { - return { - id: this.nextSpecId(), - runs: function() { - } - }; -}; - -jasmine.Env.prototype.compareRegExps_ = function(a, b, mismatchKeys, mismatchValues) { - if (a.source != b.source) - mismatchValues.push("expected pattern /" + b.source + "/ is not equal to the pattern /" + a.source + "/"); - - if (a.ignoreCase != b.ignoreCase) - mismatchValues.push("expected modifier i was" + (b.ignoreCase ? " " : " not ") + "set and does not equal the origin modifier"); - - if (a.global != b.global) - mismatchValues.push("expected modifier g was" + (b.global ? " " : " not ") + "set and does not equal the origin modifier"); - - if (a.multiline != b.multiline) - mismatchValues.push("expected modifier m was" + (b.multiline ? " " : " not ") + "set and does not equal the origin modifier"); - - if (a.sticky != b.sticky) - mismatchValues.push("expected modifier y was" + (b.sticky ? " " : " not ") + "set and does not equal the origin modifier"); - - return (mismatchValues.length === 0); -}; - -jasmine.Env.prototype.compareObjects_ = function(a, b, mismatchKeys, mismatchValues) { - if (a.__Jasmine_been_here_before__ === b && b.__Jasmine_been_here_before__ === a) { - return true; - } - - a.__Jasmine_been_here_before__ = b; - b.__Jasmine_been_here_before__ = a; - - var hasKey = function(obj, keyName) { - return obj !== null && obj[keyName] !== jasmine.undefined; - }; - - for (var property in b) { - if (!hasKey(a, property) && hasKey(b, property)) { - mismatchKeys.push("expected has key '" + property + "', but missing from actual."); - } - } - for (property in a) { - if (!hasKey(b, property) && hasKey(a, property)) { - mismatchKeys.push("expected missing key '" + property + "', but present in actual."); - } - } - for (property in b) { - if (property == '__Jasmine_been_here_before__') continue; - if (!this.equals_(a[property], b[property], mismatchKeys, mismatchValues)) { - mismatchValues.push("'" + property + "' was '" + (b[property] ? jasmine.util.htmlEscape(b[property].toString()) : b[property]) + "' in expected, but was '" + (a[property] ? jasmine.util.htmlEscape(a[property].toString()) : a[property]) + "' in actual."); - } - } - - if (jasmine.isArray_(a) && jasmine.isArray_(b) && a.length != b.length) { - mismatchValues.push("arrays were not the same length"); - } - - delete a.__Jasmine_been_here_before__; - delete b.__Jasmine_been_here_before__; - return (mismatchKeys.length === 0 && mismatchValues.length === 0); -}; - -jasmine.Env.prototype.equals_ = function(a, b, mismatchKeys, mismatchValues) { - mismatchKeys = mismatchKeys || []; - mismatchValues = mismatchValues || []; - - for (var i = 0; i < this.equalityTesters_.length; i++) { - var equalityTester = this.equalityTesters_[i]; - var result = equalityTester(a, b, this, mismatchKeys, mismatchValues); - if (result !== jasmine.undefined) return result; - } - - if (a === b) return true; - - if (a === jasmine.undefined || a === null || b === jasmine.undefined || b === null) { - return (a == jasmine.undefined && b == jasmine.undefined); - } - - if (jasmine.isDomNode(a) && jasmine.isDomNode(b)) { - return a === b; - } - - if (a instanceof Date && b instanceof Date) { - return a.getTime() == b.getTime(); - } - - if (a.jasmineMatches) { - return a.jasmineMatches(b); - } - - if (b.jasmineMatches) { - return b.jasmineMatches(a); - } - - if (a instanceof jasmine.Matchers.ObjectContaining) { - return a.matches(b); - } - - if (b instanceof jasmine.Matchers.ObjectContaining) { - return b.matches(a); - } - - if (jasmine.isString_(a) && jasmine.isString_(b)) { - return (a == b); - } - - if (jasmine.isNumber_(a) && jasmine.isNumber_(b)) { - return (a == b); - } - - if (a instanceof RegExp && b instanceof RegExp) { - return this.compareRegExps_(a, b, mismatchKeys, mismatchValues); - } - - if (typeof a === "object" && typeof b === "object") { - return this.compareObjects_(a, b, mismatchKeys, mismatchValues); - } - - //Straight check - return (a === b); -}; - -jasmine.Env.prototype.contains_ = function(haystack, needle) { - if (jasmine.isArray_(haystack)) { - for (var i = 0; i < haystack.length; i++) { - if (this.equals_(haystack[i], needle)) return true; - } - return false; - } - return haystack.indexOf(needle) >= 0; -}; - -jasmine.Env.prototype.addEqualityTester = function(equalityTester) { - this.equalityTesters_.push(equalityTester); -}; -/** No-op base class for Jasmine reporters. - * - * @constructor - */ -jasmine.Reporter = function() { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.reportRunnerStarting = function(runner) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.reportRunnerResults = function(runner) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.reportSuiteResults = function(suite) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.reportSpecStarting = function(spec) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.reportSpecResults = function(spec) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.Reporter.prototype.log = function(str) { -}; - -/** - * Blocks are functions with executable code that make up a spec. - * - * @constructor - * @param {jasmine.Env} env - * @param {Function} func - * @param {jasmine.Spec} spec - */ -jasmine.Block = function(env, func, spec) { - this.env = env; - this.func = func; - this.spec = spec; -}; - -jasmine.Block.prototype.execute = function(onComplete) { - if (!jasmine.CATCH_EXCEPTIONS) { - this.func.apply(this.spec); - } - else { - try { - this.func.apply(this.spec); - } catch (e) { - this.spec.fail(e); - } - } - onComplete(); -}; -/** JavaScript API reporter. - * - * @constructor - */ -jasmine.JsApiReporter = function() { - this.started = false; - this.finished = false; - this.suites_ = []; - this.results_ = {}; -}; - -jasmine.JsApiReporter.prototype.reportRunnerStarting = function(runner) { - this.started = true; - var suites = runner.topLevelSuites(); - for (var i = 0; i < suites.length; i++) { - var suite = suites[i]; - this.suites_.push(this.summarize_(suite)); - } -}; - -jasmine.JsApiReporter.prototype.suites = function() { - return this.suites_; -}; - -jasmine.JsApiReporter.prototype.summarize_ = function(suiteOrSpec) { - var isSuite = suiteOrSpec instanceof jasmine.Suite; - var summary = { - id: suiteOrSpec.id, - name: suiteOrSpec.description, - type: isSuite ? 'suite' : 'spec', - children: [] - }; - - if (isSuite) { - var children = suiteOrSpec.children(); - for (var i = 0; i < children.length; i++) { - summary.children.push(this.summarize_(children[i])); - } - } - return summary; -}; - -jasmine.JsApiReporter.prototype.results = function() { - return this.results_; -}; - -jasmine.JsApiReporter.prototype.resultsForSpec = function(specId) { - return this.results_[specId]; -}; - -//noinspection JSUnusedLocalSymbols -jasmine.JsApiReporter.prototype.reportRunnerResults = function(runner) { - this.finished = true; -}; - -//noinspection JSUnusedLocalSymbols -jasmine.JsApiReporter.prototype.reportSuiteResults = function(suite) { -}; - -//noinspection JSUnusedLocalSymbols -jasmine.JsApiReporter.prototype.reportSpecResults = function(spec) { - this.results_[spec.id] = { - messages: spec.results().getItems(), - result: spec.results().failedCount > 0 ? "failed" : "passed" - }; -}; - -//noinspection JSUnusedLocalSymbols -jasmine.JsApiReporter.prototype.log = function(str) { -}; - -jasmine.JsApiReporter.prototype.resultsForSpecs = function(specIds){ - var results = {}; - for (var i = 0; i < specIds.length; i++) { - var specId = specIds[i]; - results[specId] = this.summarizeResult_(this.results_[specId]); - } - return results; -}; - -jasmine.JsApiReporter.prototype.summarizeResult_ = function(result){ - var summaryMessages = []; - var messagesLength = result.messages.length; - for (var messageIndex = 0; messageIndex < messagesLength; messageIndex++) { - var resultMessage = result.messages[messageIndex]; - summaryMessages.push({ - text: resultMessage.type == 'log' ? resultMessage.toString() : jasmine.undefined, - passed: resultMessage.passed ? resultMessage.passed() : true, - type: resultMessage.type, - message: resultMessage.message, - trace: { - stack: resultMessage.passed && !resultMessage.passed() ? resultMessage.trace.stack : jasmine.undefined - } - }); - } - - return { - result : result.result, - messages : summaryMessages - }; -}; - -/** - * @constructor - * @param {jasmine.Env} env - * @param actual - * @param {jasmine.Spec} spec - */ -jasmine.Matchers = function(env, actual, spec, opt_isNot) { - this.env = env; - this.actual = actual; - this.spec = spec; - this.isNot = opt_isNot || false; - this.reportWasCalled_ = false; -}; - -// todo: @deprecated as of Jasmine 0.11, remove soon [xw] -jasmine.Matchers.pp = function(str) { - throw new Error("jasmine.Matchers.pp() is no longer supported, please use jasmine.pp() instead!"); -}; - -// todo: @deprecated Deprecated as of Jasmine 0.10. Rewrite your custom matchers to return true or false. [xw] -jasmine.Matchers.prototype.report = function(result, failing_message, details) { - throw new Error("As of jasmine 0.11, custom matchers must be implemented differently -- please see jasmine docs"); -}; - -jasmine.Matchers.wrapInto_ = function(prototype, matchersClass) { - for (var methodName in prototype) { - if (methodName == 'report') continue; - var orig = prototype[methodName]; - matchersClass.prototype[methodName] = jasmine.Matchers.matcherFn_(methodName, orig); - } -}; - -jasmine.Matchers.matcherFn_ = function(matcherName, matcherFunction) { - return function() { - var matcherArgs = jasmine.util.argsToArray(arguments); - var result = matcherFunction.apply(this, arguments); - - if (this.isNot) { - result = !result; - } - - if (this.reportWasCalled_) return result; - - var message; - if (!result) { - if (this.message) { - message = this.message.apply(this, arguments); - if (jasmine.isArray_(message)) { - message = message[this.isNot ? 1 : 0]; - } - } else { - var englishyPredicate = matcherName.replace(/[A-Z]/g, function(s) { return ' ' + s.toLowerCase(); }); - message = "Expected " + jasmine.pp(this.actual) + (this.isNot ? " not " : " ") + englishyPredicate; - if (matcherArgs.length > 0) { - for (var i = 0; i < matcherArgs.length; i++) { - if (i > 0) message += ","; - message += " " + jasmine.pp(matcherArgs[i]); - } - } - message += "."; - } - } - var expectationResult = new jasmine.ExpectationResult({ - matcherName: matcherName, - passed: result, - expected: matcherArgs.length > 1 ? matcherArgs : matcherArgs[0], - actual: this.actual, - message: message - }); - this.spec.addMatcherResult(expectationResult); - return jasmine.undefined; - }; -}; - - - - -/** - * toBe: compares the actual to the expected using === - * @param expected - */ -jasmine.Matchers.prototype.toBe = function(expected) { - return this.actual === expected; -}; - -/** - * toNotBe: compares the actual to the expected using !== - * @param expected - * @deprecated as of 1.0. Use not.toBe() instead. - */ -jasmine.Matchers.prototype.toNotBe = function(expected) { - return this.actual !== expected; -}; - -/** - * toEqual: compares the actual to the expected using common sense equality. Handles Objects, Arrays, etc. - * - * @param expected - */ -jasmine.Matchers.prototype.toEqual = function(expected) { - return this.env.equals_(this.actual, expected); -}; - -/** - * toNotEqual: compares the actual to the expected using the ! of jasmine.Matchers.toEqual - * @param expected - * @deprecated as of 1.0. Use not.toEqual() instead. - */ -jasmine.Matchers.prototype.toNotEqual = function(expected) { - return !this.env.equals_(this.actual, expected); -}; - -/** - * Matcher that compares the actual to the expected using a regular expression. Constructs a RegExp, so takes - * a pattern or a String. - * - * @param expected - */ -jasmine.Matchers.prototype.toMatch = function(expected) { - return new RegExp(expected).test(this.actual); -}; - -/** - * Matcher that compares the actual to the expected using the boolean inverse of jasmine.Matchers.toMatch - * @param expected - * @deprecated as of 1.0. Use not.toMatch() instead. - */ -jasmine.Matchers.prototype.toNotMatch = function(expected) { - return !(new RegExp(expected).test(this.actual)); -}; - -/** - * Matcher that compares the actual to jasmine.undefined. - */ -jasmine.Matchers.prototype.toBeDefined = function() { - return (this.actual !== jasmine.undefined); -}; - -/** - * Matcher that compares the actual to jasmine.undefined. - */ -jasmine.Matchers.prototype.toBeUndefined = function() { - return (this.actual === jasmine.undefined); -}; - -/** - * Matcher that compares the actual to null. - */ -jasmine.Matchers.prototype.toBeNull = function() { - return (this.actual === null); -}; - -/** - * Matcher that compares the actual to NaN. - */ -jasmine.Matchers.prototype.toBeNaN = function() { - this.message = function() { - return [ "Expected " + jasmine.pp(this.actual) + " to be NaN." ]; - }; - - return (this.actual !== this.actual); -}; - -/** - * Matcher that boolean not-nots the actual. - */ -jasmine.Matchers.prototype.toBeTruthy = function() { - return !!this.actual; -}; - - -/** - * Matcher that boolean nots the actual. - */ -jasmine.Matchers.prototype.toBeFalsy = function() { - return !this.actual; -}; - - -/** - * Matcher that checks to see if the actual, a Jasmine spy, was called. - */ -jasmine.Matchers.prototype.toHaveBeenCalled = function() { - if (arguments.length > 0) { - throw new Error('toHaveBeenCalled does not take arguments, use toHaveBeenCalledWith'); - } - - if (!jasmine.isSpy(this.actual)) { - throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.'); - } - - this.message = function() { - return [ - "Expected spy " + this.actual.identity + " to have been called.", - "Expected spy " + this.actual.identity + " not to have been called." - ]; - }; - - return this.actual.wasCalled; -}; - -/** @deprecated Use expect(xxx).toHaveBeenCalled() instead */ -jasmine.Matchers.prototype.wasCalled = jasmine.Matchers.prototype.toHaveBeenCalled; - -/** - * Matcher that checks to see if the actual, a Jasmine spy, was not called. - * - * @deprecated Use expect(xxx).not.toHaveBeenCalled() instead - */ -jasmine.Matchers.prototype.wasNotCalled = function() { - if (arguments.length > 0) { - throw new Error('wasNotCalled does not take arguments'); - } - - if (!jasmine.isSpy(this.actual)) { - throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.'); - } - - this.message = function() { - return [ - "Expected spy " + this.actual.identity + " to not have been called.", - "Expected spy " + this.actual.identity + " to have been called." - ]; - }; - - return !this.actual.wasCalled; -}; - -/** - * Matcher that checks to see if the actual, a Jasmine spy, was called with a set of parameters. - * - * @example - * - */ -jasmine.Matchers.prototype.toHaveBeenCalledWith = function() { - var expectedArgs = jasmine.util.argsToArray(arguments); - if (!jasmine.isSpy(this.actual)) { - throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.'); - } - this.message = function() { - var invertedMessage = "Expected spy " + this.actual.identity + " not to have been called with " + jasmine.pp(expectedArgs) + " but it was."; - var positiveMessage = ""; - if (this.actual.callCount === 0) { - positiveMessage = "Expected spy " + this.actual.identity + " to have been called with " + jasmine.pp(expectedArgs) + " but it was never called."; - } else { - positiveMessage = "Expected spy " + this.actual.identity + " to have been called with " + jasmine.pp(expectedArgs) + " but actual calls were " + jasmine.pp(this.actual.argsForCall).replace(/^\[ | \]$/g, '') - } - return [positiveMessage, invertedMessage]; - }; - - return this.env.contains_(this.actual.argsForCall, expectedArgs); -}; - -/** @deprecated Use expect(xxx).toHaveBeenCalledWith() instead */ -jasmine.Matchers.prototype.wasCalledWith = jasmine.Matchers.prototype.toHaveBeenCalledWith; - -/** @deprecated Use expect(xxx).not.toHaveBeenCalledWith() instead */ -jasmine.Matchers.prototype.wasNotCalledWith = function() { - var expectedArgs = jasmine.util.argsToArray(arguments); - if (!jasmine.isSpy(this.actual)) { - throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.'); - } - - this.message = function() { - return [ - "Expected spy not to have been called with " + jasmine.pp(expectedArgs) + " but it was", - "Expected spy to have been called with " + jasmine.pp(expectedArgs) + " but it was" - ]; - }; - - return !this.env.contains_(this.actual.argsForCall, expectedArgs); -}; - -/** - * Matcher that checks that the expected item is an element in the actual Array. - * - * @param {Object} expected - */ -jasmine.Matchers.prototype.toContain = function(expected) { - return this.env.contains_(this.actual, expected); -}; - -/** - * Matcher that checks that the expected item is NOT an element in the actual Array. - * - * @param {Object} expected - * @deprecated as of 1.0. Use not.toContain() instead. - */ -jasmine.Matchers.prototype.toNotContain = function(expected) { - return !this.env.contains_(this.actual, expected); -}; - -jasmine.Matchers.prototype.toBeLessThan = function(expected) { - return this.actual < expected; -}; - -jasmine.Matchers.prototype.toBeGreaterThan = function(expected) { - return this.actual > expected; -}; - -/** - * Matcher that checks that the expected item is equal to the actual item - * up to a given level of decimal precision (default 2). - * - * @param {Number} expected - * @param {Number} precision, as number of decimal places - */ -jasmine.Matchers.prototype.toBeCloseTo = function(expected, precision) { - if (!(precision === 0)) { - precision = precision || 2; - } - return Math.abs(expected - this.actual) < (Math.pow(10, -precision) / 2); -}; - -/** - * Matcher that checks that the expected exception was thrown by the actual. - * - * @param {String} [expected] - */ -jasmine.Matchers.prototype.toThrow = function(expected) { - var result = false; - var exception; - if (typeof this.actual != 'function') { - throw new Error('Actual is not a function'); - } - try { - this.actual(); - } catch (e) { - exception = e; - } - if (exception) { - result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected)); - } - - var not = this.isNot ? "not " : ""; - - this.message = function() { - if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) { - return ["Expected function " + not + "to throw", expected ? expected.message || expected : "an exception", ", but it threw", exception.message || exception].join(' '); - } else { - return "Expected function to throw an exception."; - } - }; - - return result; -}; - -jasmine.Matchers.Any = function(expectedClass) { - this.expectedClass = expectedClass; -}; - -jasmine.Matchers.Any.prototype.jasmineMatches = function(other) { - if (this.expectedClass == String) { - return typeof other == 'string' || other instanceof String; - } - - if (this.expectedClass == Number) { - return typeof other == 'number' || other instanceof Number; - } - - if (this.expectedClass == Function) { - return typeof other == 'function' || other instanceof Function; - } - - if (this.expectedClass == Object) { - return typeof other == 'object'; - } - - return other instanceof this.expectedClass; -}; - -jasmine.Matchers.Any.prototype.jasmineToString = function() { - return ''; -}; - -jasmine.Matchers.ObjectContaining = function (sample) { - this.sample = sample; -}; - -jasmine.Matchers.ObjectContaining.prototype.jasmineMatches = function(other, mismatchKeys, mismatchValues) { - mismatchKeys = mismatchKeys || []; - mismatchValues = mismatchValues || []; - - var env = jasmine.getEnv(); - - var hasKey = function(obj, keyName) { - return obj != null && obj[keyName] !== jasmine.undefined; - }; - - for (var property in this.sample) { - if (!hasKey(other, property) && hasKey(this.sample, property)) { - mismatchKeys.push("expected has key '" + property + "', but missing from actual."); - } - else if (!env.equals_(this.sample[property], other[property], mismatchKeys, mismatchValues)) { - mismatchValues.push("'" + property + "' was '" + (other[property] ? jasmine.util.htmlEscape(other[property].toString()) : other[property]) + "' in expected, but was '" + (this.sample[property] ? jasmine.util.htmlEscape(this.sample[property].toString()) : this.sample[property]) + "' in actual."); - } - } - - return (mismatchKeys.length === 0 && mismatchValues.length === 0); -}; - -jasmine.Matchers.ObjectContaining.prototype.jasmineToString = function () { - return ""; -}; -// Mock setTimeout, clearTimeout -// Contributed by Pivotal Computer Systems, www.pivotalsf.com - -jasmine.FakeTimer = function() { - this.reset(); - - var self = this; - self.setTimeout = function(funcToCall, millis) { - self.timeoutsMade++; - self.scheduleFunction(self.timeoutsMade, funcToCall, millis, false); - return self.timeoutsMade; - }; - - self.setInterval = function(funcToCall, millis) { - self.timeoutsMade++; - self.scheduleFunction(self.timeoutsMade, funcToCall, millis, true); - return self.timeoutsMade; - }; - - self.clearTimeout = function(timeoutKey) { - self.scheduledFunctions[timeoutKey] = jasmine.undefined; - }; - - self.clearInterval = function(timeoutKey) { - self.scheduledFunctions[timeoutKey] = jasmine.undefined; - }; - -}; - -jasmine.FakeTimer.prototype.reset = function() { - this.timeoutsMade = 0; - this.scheduledFunctions = {}; - this.nowMillis = 0; -}; - -jasmine.FakeTimer.prototype.tick = function(millis) { - var oldMillis = this.nowMillis; - var newMillis = oldMillis + millis; - this.runFunctionsWithinRange(oldMillis, newMillis); - this.nowMillis = newMillis; -}; - -jasmine.FakeTimer.prototype.runFunctionsWithinRange = function(oldMillis, nowMillis) { - var scheduledFunc; - var funcsToRun = []; - for (var timeoutKey in this.scheduledFunctions) { - scheduledFunc = this.scheduledFunctions[timeoutKey]; - if (scheduledFunc != jasmine.undefined && - scheduledFunc.runAtMillis >= oldMillis && - scheduledFunc.runAtMillis <= nowMillis) { - funcsToRun.push(scheduledFunc); - this.scheduledFunctions[timeoutKey] = jasmine.undefined; - } - } - - if (funcsToRun.length > 0) { - funcsToRun.sort(function(a, b) { - return a.runAtMillis - b.runAtMillis; - }); - for (var i = 0; i < funcsToRun.length; ++i) { - try { - var funcToRun = funcsToRun[i]; - this.nowMillis = funcToRun.runAtMillis; - funcToRun.funcToCall(); - if (funcToRun.recurring) { - this.scheduleFunction(funcToRun.timeoutKey, - funcToRun.funcToCall, - funcToRun.millis, - true); - } - } catch(e) { - } - } - this.runFunctionsWithinRange(oldMillis, nowMillis); - } -}; - -jasmine.FakeTimer.prototype.scheduleFunction = function(timeoutKey, funcToCall, millis, recurring) { - this.scheduledFunctions[timeoutKey] = { - runAtMillis: this.nowMillis + millis, - funcToCall: funcToCall, - recurring: recurring, - timeoutKey: timeoutKey, - millis: millis - }; -}; - -/** - * @namespace - */ -jasmine.Clock = { - defaultFakeTimer: new jasmine.FakeTimer(), - - reset: function() { - jasmine.Clock.assertInstalled(); - jasmine.Clock.defaultFakeTimer.reset(); - }, - - tick: function(millis) { - jasmine.Clock.assertInstalled(); - jasmine.Clock.defaultFakeTimer.tick(millis); - }, - - runFunctionsWithinRange: function(oldMillis, nowMillis) { - jasmine.Clock.defaultFakeTimer.runFunctionsWithinRange(oldMillis, nowMillis); - }, - - scheduleFunction: function(timeoutKey, funcToCall, millis, recurring) { - jasmine.Clock.defaultFakeTimer.scheduleFunction(timeoutKey, funcToCall, millis, recurring); - }, - - useMock: function() { - if (!jasmine.Clock.isInstalled()) { - var spec = jasmine.getEnv().currentSpec; - spec.after(jasmine.Clock.uninstallMock); - - jasmine.Clock.installMock(); - } - }, - - installMock: function() { - jasmine.Clock.installed = jasmine.Clock.defaultFakeTimer; - }, - - uninstallMock: function() { - jasmine.Clock.assertInstalled(); - jasmine.Clock.installed = jasmine.Clock.real; - }, - - real: { - setTimeout: jasmine.getGlobal().setTimeout, - clearTimeout: jasmine.getGlobal().clearTimeout, - setInterval: jasmine.getGlobal().setInterval, - clearInterval: jasmine.getGlobal().clearInterval - }, - - assertInstalled: function() { - if (!jasmine.Clock.isInstalled()) { - throw new Error("Mock clock is not installed, use jasmine.Clock.useMock()"); - } - }, - - isInstalled: function() { - return jasmine.Clock.installed == jasmine.Clock.defaultFakeTimer; - }, - - installed: null -}; -jasmine.Clock.installed = jasmine.Clock.real; - -//else for IE support -jasmine.getGlobal().setTimeout = function(funcToCall, millis) { - if (jasmine.Clock.installed.setTimeout.apply) { - return jasmine.Clock.installed.setTimeout.apply(this, arguments); - } else { - return jasmine.Clock.installed.setTimeout(funcToCall, millis); - } -}; - -jasmine.getGlobal().setInterval = function(funcToCall, millis) { - if (jasmine.Clock.installed.setInterval.apply) { - return jasmine.Clock.installed.setInterval.apply(this, arguments); - } else { - return jasmine.Clock.installed.setInterval(funcToCall, millis); - } -}; - -jasmine.getGlobal().clearTimeout = function(timeoutKey) { - if (jasmine.Clock.installed.clearTimeout.apply) { - return jasmine.Clock.installed.clearTimeout.apply(this, arguments); - } else { - return jasmine.Clock.installed.clearTimeout(timeoutKey); - } -}; - -jasmine.getGlobal().clearInterval = function(timeoutKey) { - if (jasmine.Clock.installed.clearTimeout.apply) { - return jasmine.Clock.installed.clearInterval.apply(this, arguments); - } else { - return jasmine.Clock.installed.clearInterval(timeoutKey); - } -}; - -/** - * @constructor - */ -jasmine.MultiReporter = function() { - this.subReporters_ = []; -}; -jasmine.util.inherit(jasmine.MultiReporter, jasmine.Reporter); - -jasmine.MultiReporter.prototype.addReporter = function(reporter) { - this.subReporters_.push(reporter); -}; - -(function() { - var functionNames = [ - "reportRunnerStarting", - "reportRunnerResults", - "reportSuiteResults", - "reportSpecStarting", - "reportSpecResults", - "log" - ]; - for (var i = 0; i < functionNames.length; i++) { - var functionName = functionNames[i]; - jasmine.MultiReporter.prototype[functionName] = (function(functionName) { - return function() { - for (var j = 0; j < this.subReporters_.length; j++) { - var subReporter = this.subReporters_[j]; - if (subReporter[functionName]) { - subReporter[functionName].apply(subReporter, arguments); - } - } - }; - })(functionName); - } -})(); -/** - * Holds results for a set of Jasmine spec. Allows for the results array to hold another jasmine.NestedResults - * - * @constructor - */ -jasmine.NestedResults = function() { - /** - * The total count of results - */ - this.totalCount = 0; - /** - * Number of passed results - */ - this.passedCount = 0; - /** - * Number of failed results - */ - this.failedCount = 0; - /** - * Was this suite/spec skipped? - */ - this.skipped = false; - /** - * @ignore - */ - this.items_ = []; -}; - -/** - * Roll up the result counts. - * - * @param result - */ -jasmine.NestedResults.prototype.rollupCounts = function(result) { - this.totalCount += result.totalCount; - this.passedCount += result.passedCount; - this.failedCount += result.failedCount; -}; - -/** - * Adds a log message. - * @param values Array of message parts which will be concatenated later. - */ -jasmine.NestedResults.prototype.log = function(values) { - this.items_.push(new jasmine.MessageResult(values)); -}; - -/** - * Getter for the results: message & results. - */ -jasmine.NestedResults.prototype.getItems = function() { - return this.items_; -}; - -/** - * Adds a result, tracking counts (total, passed, & failed) - * @param {jasmine.ExpectationResult|jasmine.NestedResults} result - */ -jasmine.NestedResults.prototype.addResult = function(result) { - if (result.type != 'log') { - if (result.items_) { - this.rollupCounts(result); - } else { - this.totalCount++; - if (result.passed()) { - this.passedCount++; - } else { - this.failedCount++; - } - } - } - this.items_.push(result); -}; - -/** - * @returns {Boolean} True if everything below passed - */ -jasmine.NestedResults.prototype.passed = function() { - return this.passedCount === this.totalCount; -}; -/** - * Base class for pretty printing for expectation results. - */ -jasmine.PrettyPrinter = function() { - this.ppNestLevel_ = 0; -}; - -/** - * Formats a value in a nice, human-readable string. - * - * @param value - */ -jasmine.PrettyPrinter.prototype.format = function(value) { - this.ppNestLevel_++; - try { - if (value === jasmine.undefined) { - this.emitScalar('undefined'); - } else if (value === null) { - this.emitScalar('null'); - } else if (value === jasmine.getGlobal()) { - this.emitScalar(''); - } else if (value.jasmineToString) { - this.emitScalar(value.jasmineToString()); - } else if (typeof value === 'string') { - this.emitString(value); - } else if (jasmine.isSpy(value)) { - this.emitScalar("spy on " + value.identity); - } else if (value instanceof RegExp) { - this.emitScalar(value.toString()); - } else if (typeof value === 'function') { - this.emitScalar('Function'); - } else if (typeof value.nodeType === 'number') { - this.emitScalar('HTMLNode'); - } else if (value instanceof Date) { - this.emitScalar('Date(' + value + ')'); - } else if (value.__Jasmine_been_here_before__) { - this.emitScalar(''); - } else if (jasmine.isArray_(value) || typeof value == 'object') { - value.__Jasmine_been_here_before__ = true; - if (jasmine.isArray_(value)) { - this.emitArray(value); - } else { - this.emitObject(value); - } - delete value.__Jasmine_been_here_before__; - } else { - this.emitScalar(value.toString()); - } - } finally { - this.ppNestLevel_--; - } -}; - -jasmine.PrettyPrinter.prototype.iterateObject = function(obj, fn) { - for (var property in obj) { - if (!obj.hasOwnProperty(property)) continue; - if (property == '__Jasmine_been_here_before__') continue; - fn(property, obj.__lookupGetter__ ? (obj.__lookupGetter__(property) !== jasmine.undefined && - obj.__lookupGetter__(property) !== null) : false); - } -}; - -jasmine.PrettyPrinter.prototype.emitArray = jasmine.unimplementedMethod_; -jasmine.PrettyPrinter.prototype.emitObject = jasmine.unimplementedMethod_; -jasmine.PrettyPrinter.prototype.emitScalar = jasmine.unimplementedMethod_; -jasmine.PrettyPrinter.prototype.emitString = jasmine.unimplementedMethod_; - -jasmine.StringPrettyPrinter = function() { - jasmine.PrettyPrinter.call(this); - - this.string = ''; -}; -jasmine.util.inherit(jasmine.StringPrettyPrinter, jasmine.PrettyPrinter); - -jasmine.StringPrettyPrinter.prototype.emitScalar = function(value) { - this.append(value); -}; - -jasmine.StringPrettyPrinter.prototype.emitString = function(value) { - this.append("'" + value + "'"); -}; - -jasmine.StringPrettyPrinter.prototype.emitArray = function(array) { - if (this.ppNestLevel_ > jasmine.MAX_PRETTY_PRINT_DEPTH) { - this.append("Array"); - return; - } - - this.append('[ '); - for (var i = 0; i < array.length; i++) { - if (i > 0) { - this.append(', '); - } - this.format(array[i]); - } - this.append(' ]'); -}; - -jasmine.StringPrettyPrinter.prototype.emitObject = function(obj) { - if (this.ppNestLevel_ > jasmine.MAX_PRETTY_PRINT_DEPTH) { - this.append("Object"); - return; - } - - var self = this; - this.append('{ '); - var first = true; - - this.iterateObject(obj, function(property, isGetter) { - if (first) { - first = false; - } else { - self.append(', '); - } - - self.append(property); - self.append(' : '); - if (isGetter) { - self.append(''); - } else { - self.format(obj[property]); - } - }); - - this.append(' }'); -}; - -jasmine.StringPrettyPrinter.prototype.append = function(value) { - this.string += value; -}; -jasmine.Queue = function(env) { - this.env = env; - - // parallel to blocks. each true value in this array means the block will - // get executed even if we abort - this.ensured = []; - this.blocks = []; - this.running = false; - this.index = 0; - this.offset = 0; - this.abort = false; -}; - -jasmine.Queue.prototype.addBefore = function(block, ensure) { - if (ensure === jasmine.undefined) { - ensure = false; - } - - this.blocks.unshift(block); - this.ensured.unshift(ensure); -}; - -jasmine.Queue.prototype.add = function(block, ensure) { - if (ensure === jasmine.undefined) { - ensure = false; - } - - this.blocks.push(block); - this.ensured.push(ensure); -}; - -jasmine.Queue.prototype.insertNext = function(block, ensure) { - if (ensure === jasmine.undefined) { - ensure = false; - } - - this.ensured.splice((this.index + this.offset + 1), 0, ensure); - this.blocks.splice((this.index + this.offset + 1), 0, block); - this.offset++; -}; - -jasmine.Queue.prototype.start = function(onComplete) { - this.running = true; - this.onComplete = onComplete; - this.next_(); -}; - -jasmine.Queue.prototype.isRunning = function() { - return this.running; -}; - -jasmine.Queue.LOOP_DONT_RECURSE = true; - -jasmine.Queue.prototype.next_ = function() { - var self = this; - var goAgain = true; - - while (goAgain) { - goAgain = false; - - if (self.index < self.blocks.length && !(this.abort && !this.ensured[self.index])) { - var calledSynchronously = true; - var completedSynchronously = false; - - var onComplete = function () { - if (jasmine.Queue.LOOP_DONT_RECURSE && calledSynchronously) { - completedSynchronously = true; - return; - } - - if (self.blocks[self.index].abort) { - self.abort = true; - } - - self.offset = 0; - self.index++; - - var now = new Date().getTime(); - if (self.env.updateInterval && now - self.env.lastUpdate > self.env.updateInterval) { - self.env.lastUpdate = now; - self.env.setTimeout(function() { - self.next_(); - }, 0); - } else { - if (jasmine.Queue.LOOP_DONT_RECURSE && completedSynchronously) { - goAgain = true; - } else { - self.next_(); - } - } - }; - self.blocks[self.index].execute(onComplete); - - calledSynchronously = false; - if (completedSynchronously) { - onComplete(); - } - - } else { - self.running = false; - if (self.onComplete) { - self.onComplete(); - } - } - } -}; - -jasmine.Queue.prototype.results = function() { - var results = new jasmine.NestedResults(); - for (var i = 0; i < this.blocks.length; i++) { - if (this.blocks[i].results) { - results.addResult(this.blocks[i].results()); - } - } - return results; -}; - - -/** - * Runner - * - * @constructor - * @param {jasmine.Env} env - */ -jasmine.Runner = function(env) { - var self = this; - self.env = env; - self.queue = new jasmine.Queue(env); - self.before_ = []; - self.after_ = []; - self.suites_ = []; -}; - -jasmine.Runner.prototype.execute = function() { - var self = this; - if (self.env.reporter.reportRunnerStarting) { - self.env.reporter.reportRunnerStarting(this); - } - self.queue.start(function () { - self.finishCallback(); - }); -}; - -jasmine.Runner.prototype.beforeEach = function(beforeEachFunction) { - beforeEachFunction.typeName = 'beforeEach'; - this.before_.splice(0,0,beforeEachFunction); -}; - -jasmine.Runner.prototype.afterEach = function(afterEachFunction) { - afterEachFunction.typeName = 'afterEach'; - this.after_.splice(0,0,afterEachFunction); -}; - - -jasmine.Runner.prototype.finishCallback = function() { - this.env.reporter.reportRunnerResults(this); -}; - -jasmine.Runner.prototype.addSuite = function(suite) { - this.suites_.push(suite); -}; - -jasmine.Runner.prototype.add = function(block) { - if (block instanceof jasmine.Suite) { - this.addSuite(block); - } - this.queue.add(block); -}; - -jasmine.Runner.prototype.specs = function () { - var suites = this.suites(); - var specs = []; - for (var i = 0; i < suites.length; i++) { - specs = specs.concat(suites[i].specs()); - } - return specs; -}; - -jasmine.Runner.prototype.suites = function() { - return this.suites_; -}; - -jasmine.Runner.prototype.topLevelSuites = function() { - var topLevelSuites = []; - for (var i = 0; i < this.suites_.length; i++) { - if (!this.suites_[i].parentSuite) { - topLevelSuites.push(this.suites_[i]); - } - } - return topLevelSuites; -}; - -jasmine.Runner.prototype.results = function() { - return this.queue.results(); -}; -/** - * Internal representation of a Jasmine specification, or test. - * - * @constructor - * @param {jasmine.Env} env - * @param {jasmine.Suite} suite - * @param {String} description - */ -jasmine.Spec = function(env, suite, description) { - if (!env) { - throw new Error('jasmine.Env() required'); - } - if (!suite) { - throw new Error('jasmine.Suite() required'); - } - var spec = this; - spec.id = env.nextSpecId ? env.nextSpecId() : null; - spec.env = env; - spec.suite = suite; - spec.description = description; - spec.queue = new jasmine.Queue(env); - - spec.afterCallbacks = []; - spec.spies_ = []; - - spec.results_ = new jasmine.NestedResults(); - spec.results_.description = description; - spec.matchersClass = null; -}; - -jasmine.Spec.prototype.getFullName = function() { - return this.suite.getFullName() + ' ' + this.description + '.'; -}; - - -jasmine.Spec.prototype.results = function() { - return this.results_; -}; - -/** - * All parameters are pretty-printed and concatenated together, then written to the spec's output. - * - * Be careful not to leave calls to jasmine.log in production code. - */ -jasmine.Spec.prototype.log = function() { - return this.results_.log(arguments); -}; - -jasmine.Spec.prototype.runs = function (func) { - var block = new jasmine.Block(this.env, func, this); - this.addToQueue(block); - return this; -}; - -jasmine.Spec.prototype.addToQueue = function (block) { - if (this.queue.isRunning()) { - this.queue.insertNext(block); - } else { - this.queue.add(block); - } -}; - -/** - * @param {jasmine.ExpectationResult} result - */ -jasmine.Spec.prototype.addMatcherResult = function(result) { - this.results_.addResult(result); -}; - -jasmine.Spec.prototype.expect = function(actual) { - var positive = new (this.getMatchersClass_())(this.env, actual, this); - positive.not = new (this.getMatchersClass_())(this.env, actual, this, true); - return positive; -}; - -/** - * Waits a fixed time period before moving to the next block. - * - * @deprecated Use waitsFor() instead - * @param {Number} timeout milliseconds to wait - */ -jasmine.Spec.prototype.waits = function(timeout) { - var waitsFunc = new jasmine.WaitsBlock(this.env, timeout, this); - this.addToQueue(waitsFunc); - return this; -}; - -/** - * Waits for the latchFunction to return true before proceeding to the next block. - * - * @param {Function} latchFunction - * @param {String} optional_timeoutMessage - * @param {Number} optional_timeout - */ -jasmine.Spec.prototype.waitsFor = function(latchFunction, optional_timeoutMessage, optional_timeout) { - var latchFunction_ = null; - var optional_timeoutMessage_ = null; - var optional_timeout_ = null; - - for (var i = 0; i < arguments.length; i++) { - var arg = arguments[i]; - switch (typeof arg) { - case 'function': - latchFunction_ = arg; - break; - case 'string': - optional_timeoutMessage_ = arg; - break; - case 'number': - optional_timeout_ = arg; - break; - } - } - - var waitsForFunc = new jasmine.WaitsForBlock(this.env, optional_timeout_, latchFunction_, optional_timeoutMessage_, this); - this.addToQueue(waitsForFunc); - return this; -}; - -jasmine.Spec.prototype.fail = function (e) { - var expectationResult = new jasmine.ExpectationResult({ - passed: false, - message: e ? jasmine.util.formatException(e) : 'Exception', - trace: { stack: e.stack } - }); - this.results_.addResult(expectationResult); -}; - -jasmine.Spec.prototype.getMatchersClass_ = function() { - return this.matchersClass || this.env.matchersClass; -}; - -jasmine.Spec.prototype.addMatchers = function(matchersPrototype) { - var parent = this.getMatchersClass_(); - var newMatchersClass = function() { - parent.apply(this, arguments); - }; - jasmine.util.inherit(newMatchersClass, parent); - jasmine.Matchers.wrapInto_(matchersPrototype, newMatchersClass); - this.matchersClass = newMatchersClass; -}; - -jasmine.Spec.prototype.finishCallback = function() { - this.env.reporter.reportSpecResults(this); -}; - -jasmine.Spec.prototype.finish = function(onComplete) { - this.removeAllSpies(); - this.finishCallback(); - if (onComplete) { - onComplete(); - } -}; - -jasmine.Spec.prototype.after = function(doAfter) { - if (this.queue.isRunning()) { - this.queue.add(new jasmine.Block(this.env, doAfter, this), true); - } else { - this.afterCallbacks.unshift(doAfter); - } -}; - -jasmine.Spec.prototype.execute = function(onComplete) { - var spec = this; - if (!spec.env.specFilter(spec)) { - spec.results_.skipped = true; - spec.finish(onComplete); - return; - } - - this.env.reporter.reportSpecStarting(this); - - spec.env.currentSpec = spec; - - spec.addBeforesAndAftersToQueue(); - - spec.queue.start(function () { - spec.finish(onComplete); - }); -}; - -jasmine.Spec.prototype.addBeforesAndAftersToQueue = function() { - var runner = this.env.currentRunner(); - var i; - - for (var suite = this.suite; suite; suite = suite.parentSuite) { - for (i = 0; i < suite.before_.length; i++) { - this.queue.addBefore(new jasmine.Block(this.env, suite.before_[i], this)); - } - } - for (i = 0; i < runner.before_.length; i++) { - this.queue.addBefore(new jasmine.Block(this.env, runner.before_[i], this)); - } - for (i = 0; i < this.afterCallbacks.length; i++) { - this.queue.add(new jasmine.Block(this.env, this.afterCallbacks[i], this), true); - } - for (suite = this.suite; suite; suite = suite.parentSuite) { - for (i = 0; i < suite.after_.length; i++) { - this.queue.add(new jasmine.Block(this.env, suite.after_[i], this), true); - } - } - for (i = 0; i < runner.after_.length; i++) { - this.queue.add(new jasmine.Block(this.env, runner.after_[i], this), true); - } -}; - -jasmine.Spec.prototype.explodes = function() { - throw 'explodes function should not have been called'; -}; - -jasmine.Spec.prototype.spyOn = function(obj, methodName, ignoreMethodDoesntExist) { - if (obj == jasmine.undefined) { - throw "spyOn could not find an object to spy upon for " + methodName + "()"; - } - - if (!ignoreMethodDoesntExist && obj[methodName] === jasmine.undefined) { - throw methodName + '() method does not exist'; - } - - if (!ignoreMethodDoesntExist && obj[methodName] && obj[methodName].isSpy) { - throw new Error(methodName + ' has already been spied upon'); - } - - var spyObj = jasmine.createSpy(methodName); - - this.spies_.push(spyObj); - spyObj.baseObj = obj; - spyObj.methodName = methodName; - spyObj.originalValue = obj[methodName]; - - obj[methodName] = spyObj; - - return spyObj; -}; - -jasmine.Spec.prototype.removeAllSpies = function() { - for (var i = 0; i < this.spies_.length; i++) { - var spy = this.spies_[i]; - spy.baseObj[spy.methodName] = spy.originalValue; - } - this.spies_ = []; -}; - -/** - * Internal representation of a Jasmine suite. - * - * @constructor - * @param {jasmine.Env} env - * @param {String} description - * @param {Function} specDefinitions - * @param {jasmine.Suite} parentSuite - */ -jasmine.Suite = function(env, description, specDefinitions, parentSuite) { - var self = this; - self.id = env.nextSuiteId ? env.nextSuiteId() : null; - self.description = description; - self.queue = new jasmine.Queue(env); - self.parentSuite = parentSuite; - self.env = env; - self.before_ = []; - self.after_ = []; - self.children_ = []; - self.suites_ = []; - self.specs_ = []; -}; - -jasmine.Suite.prototype.getFullName = function() { - var fullName = this.description; - for (var parentSuite = this.parentSuite; parentSuite; parentSuite = parentSuite.parentSuite) { - fullName = parentSuite.description + ' ' + fullName; - } - return fullName; -}; - -jasmine.Suite.prototype.finish = function(onComplete) { - this.env.reporter.reportSuiteResults(this); - this.finished = true; - if (typeof(onComplete) == 'function') { - onComplete(); - } -}; - -jasmine.Suite.prototype.beforeEach = function(beforeEachFunction) { - beforeEachFunction.typeName = 'beforeEach'; - this.before_.unshift(beforeEachFunction); -}; - -jasmine.Suite.prototype.afterEach = function(afterEachFunction) { - afterEachFunction.typeName = 'afterEach'; - this.after_.unshift(afterEachFunction); -}; - -jasmine.Suite.prototype.results = function() { - return this.queue.results(); -}; - -jasmine.Suite.prototype.add = function(suiteOrSpec) { - this.children_.push(suiteOrSpec); - if (suiteOrSpec instanceof jasmine.Suite) { - this.suites_.push(suiteOrSpec); - this.env.currentRunner().addSuite(suiteOrSpec); - } else { - this.specs_.push(suiteOrSpec); - } - this.queue.add(suiteOrSpec); -}; - -jasmine.Suite.prototype.specs = function() { - return this.specs_; -}; - -jasmine.Suite.prototype.suites = function() { - return this.suites_; -}; - -jasmine.Suite.prototype.children = function() { - return this.children_; -}; - -jasmine.Suite.prototype.execute = function(onComplete) { - var self = this; - this.queue.start(function () { - self.finish(onComplete); - }); -}; -jasmine.WaitsBlock = function(env, timeout, spec) { - this.timeout = timeout; - jasmine.Block.call(this, env, null, spec); -}; - -jasmine.util.inherit(jasmine.WaitsBlock, jasmine.Block); - -jasmine.WaitsBlock.prototype.execute = function (onComplete) { - if (jasmine.VERBOSE) { - this.env.reporter.log('>> Jasmine waiting for ' + this.timeout + ' ms...'); - } - this.env.setTimeout(function () { - onComplete(); - }, this.timeout); -}; -/** - * A block which waits for some condition to become true, with timeout. - * - * @constructor - * @extends jasmine.Block - * @param {jasmine.Env} env The Jasmine environment. - * @param {Number} timeout The maximum time in milliseconds to wait for the condition to become true. - * @param {Function} latchFunction A function which returns true when the desired condition has been met. - * @param {String} message The message to display if the desired condition hasn't been met within the given time period. - * @param {jasmine.Spec} spec The Jasmine spec. - */ -jasmine.WaitsForBlock = function(env, timeout, latchFunction, message, spec) { - this.timeout = timeout || env.defaultTimeoutInterval; - this.latchFunction = latchFunction; - this.message = message; - this.totalTimeSpentWaitingForLatch = 0; - jasmine.Block.call(this, env, null, spec); -}; -jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block); - -jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10; - -jasmine.WaitsForBlock.prototype.execute = function(onComplete) { - if (jasmine.VERBOSE) { - this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen')); - } - var latchFunctionResult; - try { - latchFunctionResult = this.latchFunction.apply(this.spec); - } catch (e) { - this.spec.fail(e); - onComplete(); - return; - } - - if (latchFunctionResult) { - onComplete(); - } else if (this.totalTimeSpentWaitingForLatch >= this.timeout) { - var message = 'timed out after ' + this.timeout + ' msec waiting for ' + (this.message || 'something to happen'); - this.spec.fail({ - name: 'timeout', - message: message - }); - - this.abort = true; - onComplete(); - } else { - this.totalTimeSpentWaitingForLatch += jasmine.WaitsForBlock.TIMEOUT_INCREMENT; - var self = this; - this.env.setTimeout(function() { - self.execute(onComplete); - }, jasmine.WaitsForBlock.TIMEOUT_INCREMENT); - } -}; - -jasmine.version_= { - "major": 1, - "minor": 3, - "build": 1, - "revision": 1354556913 -}; diff --git a/public/assets/out/gmaps/test/spec/ControlSpec.js b/public/assets/out/gmaps/test/spec/ControlSpec.js deleted file mode 100644 index be59ce46..00000000 --- a/public/assets/out/gmaps/test/spec/ControlSpec.js +++ /dev/null @@ -1,43 +0,0 @@ -describe('Creating custom map controls', function () { - var map; - - beforeEach(function() { - map = map || new GMaps({ - el : '#basic-map', - lat: -12.0433, - lng: -77.0283, - zoom: 12 - }); - }); - - it('should add default styles for the control', function () { - map.addControl({ - position: 'top_right', - content: 'Geolocate' - }); - - expect(map.controls[0].position).toEqual(google.maps.ControlPosition.TOP_RIGHT); - expect(map.controls[0].style.fontFamily).not.toEqual(''); - }); - - it('should leave off default styles if requested', function () { - map.addControl({ - position: 'top_right', - disableDefaultStyles: true, - content: '' - }); - - expect(map.controls[1].position).toEqual(google.maps.ControlPosition.TOP_RIGHT); - expect(map.map.controls[google.maps.ControlPosition.TOP_RIGHT].length).toEqual(2); - expect(map.controls[1].style.fontFamily).toEqual(''); - }); - - it('should remove control', function () { - var control = map.controls[0]; - map.removeControl(control); - - expect(map.controls.length).toEqual(1); - expect(map.map.controls[google.maps.ControlPosition.TOP_RIGHT].length).toEqual(1); - expect(map.controls[0]).not.toEqual(control); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/EventSpec.js b/public/assets/out/gmaps/test/spec/EventSpec.js deleted file mode 100644 index a87956c6..00000000 --- a/public/assets/out/gmaps/test/spec/EventSpec.js +++ /dev/null @@ -1,302 +0,0 @@ -describe("Creating event listeners", function() { - var map_events, marker, line, polygon, callbacks_native, callbacks_gmaps; - var added_marker, added_line, added_polygon; - var marker_added_event, marker_removed_event, - polyline_added_event, polyline_removed_event, - polygon_added_event, polygon_removed_event; - - beforeEach(function() { - map_events = map_events || new GMaps({ - el : '#map-with-events', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - - marker = marker || map_events.addMarker({ - lat : -12.0433, - lng : -77.0283, - title : 'New marker' - }); - - line = line || map_events.drawPolyline({ - path : [[-12.0440, -77.0247], [-12.0544, -77.0302], [-12.0551, -77.0303], [-12.0759, -77.0276], [-12.0763, -77.0279], [-12.0768, -77.0289], [-12.0885, -77.0241], [-12.0908, -77.0227]], - strokeColor : '#131540', - strokeOpacity : 0.6, - strokeWeight : 6 - }); - - polygon = polygon || map_events.drawPolygon({ - paths : [[-12.0403,-77.0337],[-12.0402,-77.0399],[-12.0500,-77.0244],[-12.0448,-77.0215]], - strokeColor : '#25D359', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#25D359', - fillOpacity : 0.6 - }); - }); - - describe("for google.maps events", function() { - beforeEach(function() { - callbacks_native = callbacks_native || { - map : { - onclick : function() { - console.log('callbacks_native.map.onclick'); - } - }, - marker : { - onclick : function() { - console.log('callbacks_native.marker.onclick'); - } - }, - line : { - onclick : function() { - console.log('callbacks_native.line.onclick'); - } - }, - polygon : { - onclick : function() { - console.log('callbacks_native.polygon.onclick'); - } - } - }; - - spyOn(callbacks_native.map, 'onclick').and.callThrough(); - spyOn(callbacks_native.marker, 'onclick').and.callThrough(); - spyOn(callbacks_native.line, 'onclick').and.callThrough(); - spyOn(callbacks_native.polygon, 'onclick').and.callThrough(); - }); - - describe("To a map", function() { - it("should add the listener to the listeners collection", function() { - var click_event = GMaps.on('click', map_events.map, callbacks_native.map.onclick); - - expect(map_events.map['__e3_']['click'][click_event['id']]).toBeDefined(); - expect(map_events.map['__e3_']['click'][click_event['id']]).toEqual(click_event); - }); - }); - - describe("To a marker", function() { - it("should add the listener to the listeners collection", function() { - var click_event = GMaps.on('click', marker, callbacks_native.marker.onclick); - - expect(marker['__e3_']['click'][click_event['id']]).toBeDefined(); - expect(marker['__e3_']['click'][click_event['id']]).toEqual(click_event); - }); - }); - - describe("To a line", function() { - it("should add the listener to the listeners collection", function() { - var click_event = GMaps.on('click', line, callbacks_native.line.onclick); - - expect(line['__e3_']['click'][click_event['id']]).toBeDefined(); - expect(line['__e3_']['click'][click_event['id']]).toEqual(click_event); - }); - }); - - describe("To a polygon", function() { - it("should add the listener to the listeners collection", function() { - var click_event = GMaps.on('click', polygon, callbacks_native.polygon.onclick); - - expect(polygon['__e3_']['click'][click_event['id']]).toBeDefined(); - expect(polygon['__e3_']['click'][click_event['id']]).toEqual(click_event); - }); - }); - - describe('registering non custom events', function() { - - it('custom registered_events should not exist', function() { - map_events.on('bounds_changed', function handler(){ }); - expect(map_events.registered_events['bounds_changed']).not.toBeDefined(); - }); - - it('delegates the handler to google.map', function() { - var called = false; - map_events.on('bounds_changed', function handler() { called = true }); - - google.maps.event.trigger(map_events.map, 'bounds_changed'); - expect(called).toBe(true); - }); - }); - - describe('removing non custom events', function() { - - it('removes handler from google.map', function() { - var neverCalled = true; - map_events.on('bounds_changed', function() { neverCalled = false }); - map_events.off('bounds_changed'); - - google.maps.event.trigger(map_events.map, 'bounds_changed'); - expect(neverCalled).toBe(true); - }); - }); - }); - - describe("for GMaps events", function() { - beforeEach(function() { - callbacks_gmaps = { - marker_added : function() { - console.log('callbacks_gmaps.marker_added called'); - }, - marker_removed : function() { - console.log('callbacks_gmaps.marker_removed called'); - }, - polyline_added : function() { - console.log('callbacks_gmaps.polyline_added called'); - }, - polyline_removed : function() { - console.log('callbacks_gmaps.polyline_removed called'); - }, - polygon_added : function() { - console.log('callbacks_gmaps.polygon_added called'); - }, - polygon_removed : function() { - console.log('callbacks_gmaps.polygon_removed called'); - } - }; - - spyOn(callbacks_gmaps, 'marker_added').and.callThrough(); - spyOn(callbacks_gmaps, 'marker_removed').and.callThrough(); - spyOn(callbacks_gmaps, 'polyline_added').and.callThrough(); - spyOn(callbacks_gmaps, 'polyline_removed').and.callThrough(); - spyOn(callbacks_gmaps, 'polygon_added').and.callThrough(); - spyOn(callbacks_gmaps, 'polygon_removed').and.callThrough(); - }); - - describe("#marker_added", function() { - beforeEach(function() { - marker_added_event = GMaps.on('marker_added', map_events, callbacks_gmaps.marker_added); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['marker_added'][0]).toEqual(marker_added_event); - }); - - it("should trigger the listener created", function() { - added_marker = added_marker || map_events.addMarker({ - lat : -12.0433, - lng : -77.0273, - title : 'New marker' - }); - - expect(callbacks_gmaps.marker_added).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('marker_added', map_events); - }); - }); - - describe("#marker_removed", function() { - beforeEach(function() { - marker_removed_event = GMaps.on('marker_removed', map_events, callbacks_gmaps.marker_removed); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['marker_removed'][0]).toEqual(marker_removed_event); - }); - - it("should trigger the listener created", function() { - map_events.removeMarker(added_marker); - - expect(callbacks_gmaps.marker_removed).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('marker_removed', map_events); - }); - }); - - describe("#polyline_added", function() { - beforeEach(function() { - polyline_added_event = GMaps.on('polyline_added', map_events, callbacks_gmaps.polyline_added); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['polyline_added'][0]).toEqual(polyline_added_event); - }); - - it("should trigger the listener created", function() { - added_line = added_line || map_events.drawPolyline({ - path : [[-12.0420, -77.0247], [-12.0544, -77.0102], [-12.0751, -77.0903], [-12.0759, -77.0276], [-12.0763, -77.0279], [-12.0768, -77.0289], [-12.0885, -77.0241], [-12.0908, -77.0227]], - strokeColor : '#271804', - strokeOpacity : 0.1, - strokeWeight : 1 - }); - - expect(callbacks_gmaps.polyline_added).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('polyline_added', map_events); - }); - }); - - describe("#polyline_removed", function() { - beforeEach(function() { - polyline_removed_event = GMaps.on('polyline_removed', map_events, callbacks_gmaps.polyline_removed); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['polyline_removed'][0]).toEqual(polyline_removed_event); - }); - - it("should trigger the listener created", function() { - map_events.removePolyline(added_line); - - expect(callbacks_gmaps.polyline_removed).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('polyline_removed', map_events); - }); - }); - - describe("#polygon_added", function() { - beforeEach(function() { - polygon_added_event = GMaps.on('polygon_added', map_events, callbacks_gmaps.polygon_added); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['polygon_added'][0]).toEqual(polygon_added_event); - }); - - it("should trigger the listener created", function() { - added_polygon = added_polygon || map_events.drawPolygon({ - paths : [[-12.0203,-77.0137],[-12.0402,-77.0109],[-12.0500,-77.0144],[-12.0848,-77.0115]], - strokeColor : '#D32559', - strokeOpacity : 0.7, - strokeWeight : 8, - fillColor : '#D32559', - fillOpacity : 0.6 - }); - - expect(callbacks_gmaps.polygon_added).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('polygon_added', map_events); - }); - }); - - describe("#polygon_removed", function() { - beforeEach(function() { - polygon_removed_event = GMaps.on('polygon_removed', map_events, callbacks_gmaps.polygon_removed); - }); - - it("should add the listener to the listeners collection", function() { - expect(map_events.registered_events['polygon_removed'][0]).toEqual(polygon_removed_event); - }); - - it("should trigger the listener created", function() { - map_events.removePolygon(added_polygon); - - expect(callbacks_gmaps.polygon_removed).toHaveBeenCalled(); - }); - - afterEach(function() { - GMaps.off('polygon_removed', map_events); - }); - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/GeometrySpec.js b/public/assets/out/gmaps/test/spec/GeometrySpec.js deleted file mode 100644 index b39f8304..00000000 --- a/public/assets/out/gmaps/test/spec/GeometrySpec.js +++ /dev/null @@ -1,225 +0,0 @@ -describe("Drawing geometry overlays", function() { - var map_with_polygons, line, rectangle, circle, polygon; - - beforeEach(function() { - map_with_polygons = map_with_polygons || new GMaps({ - el : '#map-with-polygons', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - }); - - describe("A line", function() { - beforeEach(function() { - line = line || map_with_polygons.drawPolyline({ - path : [[-12.0440, -77.0247], [-12.0544, -77.0302], [-12.0551, -77.0303], [-12.0759, -77.0276], [-12.0763, -77.0279], [-12.0768, -77.0289], [-12.0885, -77.0241], [-12.0908, -77.0227]], - strokeColor : '#131540', - strokeOpacity : 0.6, - strokeWeight : 6 - }); - }); - - it("should add the line to the polylines collection", function() { - expect(map_with_polygons.polylines.length).toEqual(1); - expect(map_with_polygons.polylines[0]).toEqual(line); - }); - - it("should be added in the current map", function() { - expect(line.getMap()).toEqual(map_with_polygons.map); - }); - - it("should return the defined path", function() { - var first_point = line.getPath().getAt(0); - - expect(parseFloat(first_point.lat().toFixed(4))).toEqual(-12.0440); - expect(parseFloat(first_point.lng().toFixed(4))).toEqual(-77.0247); - }); - }); - - describe("A rectangle", function() { - beforeEach(function() { - rectangle = rectangle || map_with_polygons.drawRectangle({ - bounds : [[-12.0303,-77.0237],[-12.0348,-77.0115]], - strokeColor : '#BBD8E9', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#BBD8E9', - fillOpacity : 0.6 - }); - }); - - it("should add the rectangle to the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(1); - expect(map_with_polygons.polygons[0]).toEqual(rectangle); - }); - - it("should be added in the current map", function() { - expect(rectangle.getMap()).toEqual(map_with_polygons.map); - }); - - it("should have the defined bounds", function() { - // Fix for floating-point bug - var SWLat = parseFloat(rectangle.getBounds().getSouthWest().lat().toFixed(4)); - var SWLng = parseFloat(rectangle.getBounds().getSouthWest().lng().toFixed(4)); - - var NELat = parseFloat(rectangle.getBounds().getNorthEast().lat().toFixed(4)); - var NELng = parseFloat(rectangle.getBounds().getNorthEast().lng().toFixed(4)); - - expect(SWLat).toEqual(-12.0303); - expect(SWLng).toEqual(-77.0237); - expect(NELat).toEqual(-12.0348); - expect(NELng).toEqual(-77.0115); - }); - }); - - describe("A polygon", function() { - beforeEach(function() { - polygon = polygon || map_with_polygons.drawPolygon({ - paths : [[-12.0403,-77.0337],[-12.0402,-77.0399],[-12.0500,-77.0244],[-12.0448,-77.0215]], - strokeColor : '#25D359', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#25D359', - fillOpacity : 0.6 - }); - }); - - it("should add the polygon to the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(2); - expect(map_with_polygons.polygons[1]).toEqual(polygon); - }); - - it("should be added in the current map", function() { - expect(polygon.getMap()).toEqual(map_with_polygons.map); - }); - - it("should return the defined path", function() { - var first_point = polygon.getPath().getAt(0); - - expect(parseFloat(first_point.lat().toFixed(4))).toEqual(-12.0403); - expect(parseFloat(first_point.lng().toFixed(4))).toEqual(-77.0337); - }); - }); - - describe("A circle", function() { - beforeEach(function() { - circle = circle || map_with_polygons.drawCircle({ - lat : -12.040504866577001, - lng : -77.02024422636042, - radius : 350, - strokeColor : '#432070', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#432070', - fillOpacity : 0.6 - }); - }); - - it("should add the circle to the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(3); - expect(map_with_polygons.polygons[2]).toEqual(circle); - }); - - it("should be added in the current map", function() { - expect(circle.getMap()).toEqual(map_with_polygons.map); - }); - - it("should have the defined radius", function() { - expect(circle.getRadius()).toEqual(350); - }); - }); -}); - -describe("Removing geometry overlays", function() { - var map_with_polygons, line, rectangle, circle, polygon; - - beforeEach(function() { - map_with_polygons = map_with_polygons || new GMaps({ - el : '#map-with-polygons', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - }); - - describe("A line", function() { - beforeEach(function() { - line = map_with_polygons.drawPolyline({ - path : [[-12.0440, -77.0247], [-12.0544, -77.0302], [-12.0551, -77.0303], [-12.0759, -77.0276], [-12.0763, -77.0279], [-12.0768, -77.0289], [-12.0885, -77.0241], [-12.0908, -77.0227]], - strokeColor : '#131540', - strokeOpacity : 0.6, - strokeWeight : 6 - }); - - map_with_polygons.removePolyline(line); - }); - - it("should remove the line from the polylines collection", function() { - expect(map_with_polygons.polylines.length).toEqual(0); - expect(line.getMap()).toBeNull(); - }); - }); - - describe("A rectangle", function() { - beforeEach(function() { - rectangle = map_with_polygons.drawRectangle({ - bounds : [[-12.0303,-77.0237],[-12.0348,-77.0115]], - strokeColor : '#BBD8E9', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#BBD8E9', - fillOpacity : 0.6 - }); - - map_with_polygons.removePolygon(rectangle); - }); - - it("should remove the rectangle from the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(0); - expect(rectangle.getMap()).toBeNull(); - }); - }); - - describe("A polygon", function() { - beforeEach(function() { - polygon = map_with_polygons.drawPolygon({ - paths : [[-12.0403,-77.0337],[-12.0402,-77.0399],[-12.0500,-77.0244],[-12.0448,-77.0215]], - strokeColor : '#25D359', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#25D359', - fillOpacity : 0.6 - }); - - map_with_polygons.removePolygon(polygon); - }); - - it("should remove the polygon from the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(0); - expect(polygon.getMap()).toBeNull(); - }); - }); - - describe("A circle", function() { - beforeEach(function() { - circle = map_with_polygons.drawCircle({ - lat : -12.040504866577001, - lng : -77.02024422636042, - radius : 350, - strokeColor : '#432070', - strokeOpacity : 1, - strokeWeight : 3, - fillColor : '#432070', - fillOpacity : 0.6 - }); - - map_with_polygons.removePolygon(circle); - }); - - it("should remove the circle from the polygons collection", function() { - expect(map_with_polygons.polygons.length).toEqual(0); - expect(circle.getMap()).toBeNull(); - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/LayerSpec.js b/public/assets/out/gmaps/test/spec/LayerSpec.js deleted file mode 100644 index e73f61f2..00000000 --- a/public/assets/out/gmaps/test/spec/LayerSpec.js +++ /dev/null @@ -1,50 +0,0 @@ -describe("Adding layers", function() { - var map_with_layers, single_layer, multiple_layers = []; - - beforeEach(function() { - map_with_layers = map_with_layers || new GMaps({ - el : '#map-with-layers', - lat: -12.0433, - lng: -77.0283, - zoom: 12 - }); - }); - - describe("Single layer", function() { - beforeEach(function() { - single_layer = single_layer || map_with_layers.addLayer('traffic'); - }) - - it("should be added in the current map", function() { - expect(single_layer.getMap()).toEqual(map_with_layers.map); - }); - - it("should be removed from the current map", function() { - map_with_layers.removeLayer('traffic'); - - expect(single_layer.getMap()).toBeNull(); - }); - }); - - describe("Multiple layers", function() { - beforeEach(function() { - if (multiple_layers.length == 0) { - multiple_layers.push(map_with_layers.addLayer('transit')); - multiple_layers.push(map_with_layers.addLayer('bicycling')); - } - }); - - it("should be added in the current map", function() { - expect(multiple_layers[0].getMap()).toEqual(map_with_layers.map); - expect(multiple_layers[1].getMap()).toEqual(map_with_layers.map); - }); - - it("should be removed from the current map", function() { - map_with_layers.removeLayer('transit'); - map_with_layers.removeLayer('bicycling'); - - expect(multiple_layers[0].getMap()).toBeNull(); - expect(multiple_layers[1].getMap()).toBeNull(); - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/MapSpec.js b/public/assets/out/gmaps/test/spec/MapSpec.js deleted file mode 100644 index c0386c35..00000000 --- a/public/assets/out/gmaps/test/spec/MapSpec.js +++ /dev/null @@ -1,178 +0,0 @@ -describe("Creating a map", function() { - var basic_map, advanced_map, map_with_events, map_with_custom_controls; - - it("should throw an error if element is not defined", function() { - expect(function() { new GMaps({}); }).toThrow('No element defined.'); - }); - - describe("With basic options", function() { - beforeEach(function() { - basic_map = basic_map || new GMaps({ - el : '#basic-map', - lat: -12.0433, - lng: -77.0283, - zoom: 12 - }); - }); - - it("should create a GMaps object", function() { - expect(basic_map).toBeDefined(); - }); - - it("should have centered the map at the initial coordinates", function() { - var lat = basic_map.getCenter().lat(); - var lng = basic_map.getCenter().lng(); - - expect(lat).toEqual(-12.0433); - expect(lng).toEqual(-77.0283); - }); - - it("should have the correct zoom", function() { - expect(basic_map.getZoom()).toEqual(12); - }); - }); - - describe("With advanced controls", function() { - beforeEach(function() { - advanced_map = advanced_map || new GMaps({ - el : '#advanced-map', - lat: -12.0433, - lng: -77.0283, - zoomControl : true, - panControl : false, - streetViewControl : false, - mapTypeControl: false, - overviewMapControl: false - }); - }); - - it("should show the defined controls", function() { - expect(advanced_map.map.zoomControl).toBeTruthy(); - expect(advanced_map.map.panControl).toBeFalsy(); - expect(advanced_map.map.streetViewControl).toBeFalsy(); - expect(advanced_map.map.mapTypeControl).toBeFalsy(); - expect(advanced_map.map.overviewMapControl).toBeFalsy(); - }); - }); - - describe("With events", function() { - var callbacks, current_zoom = 0, current_center = null; - - beforeEach(function() { - callbacks = { - onclick : function(e) { - var lat = e.latLng.lat(); - var lng = e.latLng.lng(); - - map_with_events.addMarker({ - lat : lat, - lng : lng, - title : 'New Marker' - }); - }, - onzoomchanged : function() { - console.log('onzoomchanged'); - current_zoom = this.getZoom(); - }, - oncenterchanged : function() { - console.log('oncenterchanged'); - current_center = this.getCenter(); - } - }; - - spyOn(callbacks, 'onclick').and.callThrough(); - spyOn(callbacks, 'onzoomchanged').and.callThrough(); - spyOn(callbacks, 'oncenterchanged').and.callThrough(); - - map_with_events = map_with_events || new GMaps({ - el : '#map-with-events', - lat : -12.0433, - lng : -77.0283, - click : callbacks.onclick, - zoom_changed : callbacks.onzoomchanged, - center_changed : callbacks.oncenterchanged - }); - }); - - it("should respond to zoom_changed event", function() { - map_with_events.map.setZoom(16); - - expect(callbacks.onzoomchanged).toHaveBeenCalled(); - expect(current_zoom).toEqual(16); - }); - - it("should respond to center_changed event", function() { - map_with_events.map.setCenter(new google.maps.LatLng(-12.0907, -77.0227)); - - // Fix for floating-point bug - var lat = parseFloat(current_center.lat().toFixed(4)); - var lng = parseFloat(current_center.lng().toFixed(4)); - - expect(callbacks.oncenterchanged).toHaveBeenCalled(); - expect(lat).toEqual(-12.0907); - expect(lng).toEqual(-77.0227); - }); - - it("should respond to click event", function() { - google.maps.event.trigger(map_with_events.map, 'click', { - latLng : new google.maps.LatLng(-12.0433, -77.0283) - }); - - expect(callbacks.onclick).toHaveBeenCalled(); - expect(map_with_events.markers.length).toEqual(1); - }); - - afterEach(function() { - document.getElementById('map-with-events').innerHTML = ''; - map_with_events = null; - }); - }); - - describe("With custom controls", function() { - var callbacks, markers_in_map = 0; - - beforeEach(function() { - callbacks = { - onclick : function() { - map_with_custom_controls.addMarker({ - lat : map_with_custom_controls.getCenter().lat(), - lng : map_with_custom_controls.getCenter().lng() - }); - } - } - - spyOn(callbacks, 'onclick').and.callThrough(); - - map_with_custom_controls = new GMaps({ - el : '#map-with-custom-controls', - lat : -12.0433, - lng : -77.0283 - }); - - map_with_custom_controls.addControl({ - position : 'top_right', - content : 'Add marker at the center', - style : { - margin: '5px', - padding: '1px 6px', - border: 'solid 1px #717B87', - background: '#fff' - }, - events : { - click: callbacks.onclick - } - }); - }); - - it("should add the control to the controls collection", function() { - expect(map_with_custom_controls.controls.length).toEqual(1); - }); - - it("should respond to click event attached to the custom control", function() { - google.maps.event.trigger(map_with_custom_controls.controls[0], 'click'); - - expect(callbacks.onclick).toHaveBeenCalled(); - expect(map_with_custom_controls.markers.length).toEqual(1); - }); - }); -}); diff --git a/public/assets/out/gmaps/test/spec/MarkerSpec.js b/public/assets/out/gmaps/test/spec/MarkerSpec.js deleted file mode 100644 index 11edcbea..00000000 --- a/public/assets/out/gmaps/test/spec/MarkerSpec.js +++ /dev/null @@ -1,106 +0,0 @@ -describe("Creating a marker", function() { - var map, marker; - - beforeEach(function() { - map = map || new GMaps({ - el : '#map-with-markers', - lat : -12.0533, - lng: -77.0293, - zoom: 14 - }); - }); - - describe("With basic options", function() { - beforeEach(function() { - marker = map.addMarker({ - lat : -12.0533, - lng: -77.0293, - title : 'New marker' - }); - }); - - it("should add the marker to the markers collection", function() { - expect(map.markers.length).toEqual(1); - expect(map.markers[0]).toEqual(marker); - }); - - it("should create a marker with defined position", function() { - // Fix for floating-point bug - expect(parseFloat(marker.getPosition().lat().toFixed(4))).toEqual(-12.0533); - expect(parseFloat(marker.getPosition().lng().toFixed(4))).toEqual(-77.0293); - }); - }); - - describe("With events", function() { - var callbacks; - - beforeEach(function() { - callbacks = { - onclick : function() { - console.log(this.title); - } - }; - - spyOn(callbacks, 'onclick').and.callThrough(); - - marker = map.addMarker({ - lat : -12.0533, - lng: -77.0193, - title : 'New marker', - click : callbacks.onclick - }); - }); - - it("should respond to click event", function() { - google.maps.event.trigger(marker, 'click'); - - expect(callbacks.onclick).toHaveBeenCalled(); - }); - }); -}); - -describe("Removing markers", function() { - var map; - - beforeEach(function() { - map = map || new GMaps({ - el : '#map-with-markers', - lat : -12.0533, - lng: -77.0293, - zoom: 14 - }); - - map.removeMarkers(); - - map.addMarkers([{ - lat : -12.0523, - lng: -77.0297, - title : 'Marker #1' - }, { - lat : -12.0531, - lng: -77.0289, - title : 'Marker #2' - }, { - lat : -12.0537, - lng: -77.0299, - title : 'Marker #3' - }, { - lat : -12.0532, - lng: -77.0278, - title : 'Marker #4' - }]); - }); - - it("should remove a marker from the markers collection", function() { - map.removeMarker(map.markers[0]); - - expect(map.markers.length).toEqual(3); - }); - - it("should remove an array of markers from the markers collection", function() { - var markers = [map.markers[0], map.markers[2]]; - map.removeMarkers(markers); - - expect(map.markers.length).toEqual(2); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/OverlaySpec.js b/public/assets/out/gmaps/test/spec/OverlaySpec.js deleted file mode 100644 index ddce5fc4..00000000 --- a/public/assets/out/gmaps/test/spec/OverlaySpec.js +++ /dev/null @@ -1,59 +0,0 @@ -describe("Drawing HTML overlays", function() { - var map_with_overlays, overlay; - - beforeEach(function() { - map_with_overlays = map_with_overlays || new GMaps({ - el : '#map-with-overlays', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - - overlay = overlay || map_with_overlays.drawOverlay({ - lat: map_with_overlays.getCenter().lat(), - lng: map_with_overlays.getCenter().lng(), - layer: 'overlayLayer', - content: '
      Lima
      ', - verticalAlign: 'top', - horizontalAlign: 'center' - }); - }); - - it("should add the overlay to the overlays collection", function() { - expect(map_with_overlays.overlays.length).toEqual(1); - expect(map_with_overlays.overlays[0]).toEqual(overlay); - }); - - it("should add the overlay in the current map", function() { - expect(overlay.getMap()).toEqual(map_with_overlays.map); - }); - - describe("With events", function() { - var callbacks, overlayWithClick; - - beforeEach(function() { - callbacks = { - onclick: function() { - console.log('Clicked the overlay'); - } - }; - - spyOn(callbacks, 'onclick').and.callThrough(); - - overlayWithClick = map_with_overlays.drawOverlay({ - lat: map_with_overlays.getCenter().lat(), - lng: map_with_overlays.getCenter().lng(), - content: '

      Clickable overlay

      ', - click: callbacks.onclick - }); - }); - - it("should respond to click event", function(done) { - google.maps.event.addListenerOnce(overlayWithClick, "ready", function() { - google.maps.event.trigger(overlayWithClick.el, "click"); - expect(callbacks.onclick).toHaveBeenCalled(); - done(); - }); - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/RouteSpec.js b/public/assets/out/gmaps/test/spec/RouteSpec.js deleted file mode 100644 index e7632b2c..00000000 --- a/public/assets/out/gmaps/test/spec/RouteSpec.js +++ /dev/null @@ -1,60 +0,0 @@ -var map_with_routes, route, routes; - -describe("Drawing a route", function() { - beforeEach(function() { - map_with_routes = map_with_routes || new GMaps({ - el : '#map-with-routes', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - }); - - it("should add a line in the current map", function(done) { - var route_flag; - - map_with_routes.drawRoute({ - origin: [-12.044012922866312, -77.02470665341184], - destination: [-12.090814532191756, -77.02271108990476], - travelMode: 'driving', - strokeColor: '#131540', - strokeOpacity: 0.6, - strokeWeight: 6, - callback: function() { - expect(map_with_routes.polylines.length).toEqual(1); - expect(map_with_routes.polylines[0].get('strokeColor')).toEqual('#131540'); - expect(map_with_routes.polylines[0].get('strokeOpacity')).toEqual(0.6); - expect(map_with_routes.polylines[0].getMap()).toEqual(map_with_routes.map); - done() - } - }); - }); -}); - -describe("Getting routes", function() { - beforeEach(function() { - map_with_routes = map_with_routes || new GMaps({ - el : '#map-with-routes', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - }); - - it("should return an array of routes", function(done) { - map_with_routes.getRoutes({ - origin: "grand central station, new york, ny", - destination: "350 5th Ave, New York, NY, 10118", - callback: function(routes) { - expect(routes).toBeDefined(); - - if (routes.length > 0) { - expect(routes[0].legs[0].distance).toBeDefined(); - expect(routes[0].legs[0].duration).toBeDefined(); - } - - done(); - } - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/StreetViewSpec.js b/public/assets/out/gmaps/test/spec/StreetViewSpec.js deleted file mode 100644 index 395a92ff..00000000 --- a/public/assets/out/gmaps/test/spec/StreetViewSpec.js +++ /dev/null @@ -1,84 +0,0 @@ -describe("Create a Street View Panorama", function() { - var map_with_streetview, attached_panorama, standalone_panorama, panorama_with_events; - - beforeEach(function() { - map_with_streetview = map_with_streetview || new GMaps({ - el : '#map-with-streetview', - lat : 42.3455, - lng : -71.0983, - zoom : 12 - }); - }); - - describe("Standalone", function() { - beforeEach(function() { - standalone_panorama = standalone_panorama || GMaps.createPanorama({ - el : '#streetview-standalone-panorama', - lat : 42.3455, - lng : -71.0983, - pov : { - heading : 60, - pitch : -10, - zoom : 1 - } - }); - }); - - it("should create a Street View panorama", function() { - expect(standalone_panorama).toBeDefined(); - }); - }); - - describe("Attached to the current map", function() { - beforeEach(function() { - attached_panorama = attached_panorama || map_with_streetview.createPanorama({ - el : '#streetview-panorama', - pov : { - heading : 60, - pitch : -10, - zoom : 1 - } - }); - }); - - it("should be equal to the current map Street View panorama", function() { - expect(map_with_streetview.getStreetView()).toEqual(attached_panorama); - }); - }); - - describe("With events", function() { - var callbacks; - - beforeEach(function() { - callbacks = { - onpovchanged : function() { - console.log(this); - } - }; - - spyOn(callbacks, 'onpovchanged').and.callThrough(); - - panorama_with_events = panorama_with_events || GMaps.createPanorama({ - el : '#streetview-with-events', - lat : 42.3455, - lng : -71.0983, - pov : { - heading : 60, - pitch : -10, - zoom : 1 - }, - pov_changed : callbacks.onpovchanged - }); - }); - - it("should respond to pov_changed event", function() { - panorama_with_events.setPov({ - heading : 80, - pitch : -10, - zoom : 1 - }); - - expect(callbacks.onpovchanged).toHaveBeenCalled(); - }); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/spec/StyleSpec.js b/public/assets/out/gmaps/test/spec/StyleSpec.js deleted file mode 100644 index 04470006..00000000 --- a/public/assets/out/gmaps/test/spec/StyleSpec.js +++ /dev/null @@ -1,43 +0,0 @@ -describe("Adding Map Styles", function() { - var map_with_styles; - - beforeEach(function() { - map_with_styles = map_with_styles || new GMaps({ - el : '#map-with-styles', - lat : -12.0433, - lng : -77.0283, - zoom : 12 - }); - - map_with_styles.addStyle({ - styledMapName : { - name : 'Lighter' - }, - mapTypeId : 'lighter', - styles : [ - { - elementType : 'geometry', - stylers : [ - { lightness : 50 } - ] - }, - { - elementType : 'labels', - stylers : [ - { visibility : 'off' } - ] - }, - ] - }); - }); - - it("should add a MapType to the current map", function() { - expect(map_with_styles.map.mapTypes.get('lighter')).toBeDefined(); - }); - - it("should update the styles in the current map", function() { - map_with_styles.setStyle('lighter'); - - expect(map_with_styles.getMapTypeId()).toEqual('lighter'); - }); -}); \ No newline at end of file diff --git a/public/assets/out/gmaps/test/style.css b/public/assets/out/gmaps/test/style.css deleted file mode 100644 index 7057e384..00000000 --- a/public/assets/out/gmaps/test/style.css +++ /dev/null @@ -1,30 +0,0 @@ -body { -font-family: sans-serif; -} - -h1, h2, h3, h4, h5, h6 { - margin: 0; - font-weight: lighter; - text-transform: lowercase; - font-variant: small-caps; -} - -.map, -.panorama { - width: 100%; - height: 100px; -} - -.with-columns { - display: block; - width: 100%; - overflow: hidden; -} - -.with-columns .map, -.with-columns .panorama { - display: block; - width: 50%; - height: 150px; - float: left; -} \ No newline at end of file diff --git a/public/assets/out/gmaps/test/template/jasmine-gmaps.html b/public/assets/out/gmaps/test/template/jasmine-gmaps.html deleted file mode 100644 index cabd0f54..00000000 --- a/public/assets/out/gmaps/test/template/jasmine-gmaps.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - Jasmine Spec Runner -<% css.forEach(function(style){ %> - -<% }) %> -<% with (scripts) { %> - <% [].concat(polyfills, jasmine, boot, vendor, helpers, src, specs, reporters).forEach(function(script){ %> - - <% }) %> -<% }; %> - - - -

      Basic map

      -
      -

      Advanced map

      -
      -

      Map with events

      -
      -

      Map with markers

      -
      -

      Map with custom controls

      -
      -

      Map with polygons

      -
      -

      Map with layers

      -
      -

      Map with overlays

      -
      -

      Map with routes

      -
      -

      Map with styles

      -
      -

      Street View Panorama

      -
      -

      Map with Street View

      -
      -
      -
      -
      -

      Street View Panorama with events

      -
      -

      Events

      -
      - - \ No newline at end of file diff --git a/public/assets/out/gmaps/umd.hbs b/public/assets/out/gmaps/umd.hbs deleted file mode 100644 index 949adc8c..00000000 --- a/public/assets/out/gmaps/umd.hbs +++ /dev/null @@ -1,19 +0,0 @@ -"use strict"; -(function(root, factory) { - if(typeof exports === 'object') { - module.exports = factory({{{cjsDependencies}}}); - } - else if(typeof define === 'function' && define.amd) { - define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies}}}], factory); - } - else { - root.{{globalAlias}} = factory({{{globalDependencies}}}); - } - - -}(this, function({{dependencies}}) { - -{{{code}}} - -return {{objectToExport}}; -})); diff --git a/public/assets/out/hamburgers/example.html b/public/assets/out/hamburgers/example.html deleted file mode 100644 index b78df678..00000000 --- a/public/assets/out/hamburgers/example.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - Hamburgers by Jonathan Suh - - - - -
      -
      -
      -
      -
      - hamburger--3dx - -
      - -
      -
      -
      -
      -
      - hamburger--3dx-r - -
      - -
      -
      -
      -
      -
      - hamburger--3dy - -
      - -
      -
      -
      -
      -
      - hamburger--3dy-r - -
      - -
      -
      -
      -
      -
      - hamburger--arrow - -
      - -
      -
      -
      -
      -
      - hamburger--arrow-r - -
      - -
      -
      -
      -
      -
      - hamburger--arrowalt - -
      - -
      -
      -
      -
      -
      - hamburger--arrowalt-r - -
      - -
      -
      -
      -
      -
      - hamburger--boring - -
      - -
      -
      -
      -
      -
      - hamburger--collapse - -
      - -
      -
      -
      -
      -
      - hamburger--collapse-r - -
      - -
      -
      -
      -
      -
      - hamburger--elastic - -
      - -
      -
      -
      -
      -
      - hamburger--elastic-r - -
      - -
      -
      -
      -
      -
      - hamburger--emphatic - -
      - -
      -
      -
      -
      -
      - hamburger--emphatic-r - -
      - -
      -
      -
      -
      -
      - hamburger--slider - -
      - -
      -
      -
      -
      -
      - hamburger--slider-r - -
      - -
      -
      -
      -
      -
      - hamburger--spin - -
      - -
      -
      -
      -
      -
      - hamburger--spin-r - -
      - -
      -
      -
      -
      -
      - hamburger--stand - -
      - -
      -
      -
      -
      -
      - hamburger--stand-r - -
      - -
      -
      -
      -
      -
      - hamburger--stand - -
      - -
      -
      -
      -
      -
      - hamburger--stand-r - -
      - -
      -
      -
      -
      -
      - hamburger--squeeze - -
      - -
      -
      -
      -
      -
      - hamburger--vortex - -
      - -
      -
      -
      -
      -
      - hamburger--vortex-r - - - - diff --git a/public/assets/out/hamburgers/hamburgers.css b/public/assets/out/hamburgers/hamburgers.css deleted file mode 100644 index fa0fe2dd..00000000 --- a/public/assets/out/hamburgers/hamburgers.css +++ /dev/null @@ -1,626 +0,0 @@ -/*! - * Hamburgers - * @description Tasty CSS-animated hamburgers - * @author Jonathan Suh @jonsuh - * @site https://jonsuh.com/hamburgers - * @link https://github.com/jonsuh/hamburgers - */ -.hamburger { - padding: 15px 15px; - display: inline-block; - cursor: pointer; - transition-property: opacity, filter; - transition-duration: 0.15s; - transition-timing-function: linear; - font: inherit; - color: inherit; - text-transform: none; - background-color: transparent; - border: 0; - margin: 0; - overflow: visible; } - .hamburger:hover { - opacity: 0.7; } - -.hamburger-box { - width: 40px; - height: 24px; - display: inline-block; - position: relative; } - -.hamburger-inner { - display: block; - top: 50%; - margin-top: -2px; } - .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { - width: 40px; - height: 4px; - background-color: #000; - border-radius: 4px; - position: absolute; - transition-property: transform; - transition-duration: 0.15s; - transition-timing-function: ease; } - .hamburger-inner::before, .hamburger-inner::after { - content: ""; - display: block; } - .hamburger-inner::before { - top: -10px; } - .hamburger-inner::after { - bottom: -10px; } - -/* - * 3DX - */ -.hamburger--3dx .hamburger-box { - perspective: 80px; } - -.hamburger--3dx .hamburger-inner { - transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after { - transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - -.hamburger--3dx.is-active .hamburger-inner { - background-color: transparent; - transform: rotateY(180deg); } - .hamburger--3dx.is-active .hamburger-inner::before { - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--3dx.is-active .hamburger-inner::after { - transform: translate3d(0, -10px, 0) rotate(-45deg); } - -/* - * 3DX Reverse - */ -.hamburger--3dx-r .hamburger-box { - perspective: 80px; } - -.hamburger--3dx-r .hamburger-inner { - transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after { - transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - -.hamburger--3dx-r.is-active .hamburger-inner { - background-color: transparent; - transform: rotateY(-180deg); } - .hamburger--3dx-r.is-active .hamburger-inner::before { - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--3dx-r.is-active .hamburger-inner::after { - transform: translate3d(0, -10px, 0) rotate(-45deg); } - -/* - * 3DY - */ -.hamburger--3dy .hamburger-box { - perspective: 80px; } - -.hamburger--3dy .hamburger-inner { - transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after { - transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - -.hamburger--3dy.is-active .hamburger-inner { - background-color: transparent; - transform: rotateX(-180deg); } - .hamburger--3dy.is-active .hamburger-inner::before { - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--3dy.is-active .hamburger-inner::after { - transform: translate3d(0, -10px, 0) rotate(-45deg); } - -/* - * 3DY Reverse - */ -.hamburger--3dy-r .hamburger-box { - perspective: 80px; } - -.hamburger--3dy-r .hamburger-inner { - transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after { - transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); } - -.hamburger--3dy-r.is-active .hamburger-inner { - background-color: transparent; - transform: rotateX(180deg); } - .hamburger--3dy-r.is-active .hamburger-inner::before { - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--3dy-r.is-active .hamburger-inner::after { - transform: translate3d(0, -10px, 0) rotate(-45deg); } - -/* - * Arrow - */ -.hamburger--arrow.is-active .hamburger-inner::before { - transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); } - -.hamburger--arrow.is-active .hamburger-inner::after { - transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); } - -/* - * Arrow Right - */ -.hamburger--arrow-r.is-active .hamburger-inner::before { - transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); } - -.hamburger--arrow-r.is-active .hamburger-inner::after { - transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); } - -/* - * Arrow Alt - */ -.hamburger--arrowalt .hamburger-inner::before { - transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } - -.hamburger--arrowalt .hamburger-inner::after { - transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } - -.hamburger--arrowalt.is-active .hamburger-inner::before { - top: 0; - transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1); - transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } - -.hamburger--arrowalt.is-active .hamburger-inner::after { - bottom: 0; - transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1); - transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } - -/* - * Arrow Alt Right - */ -.hamburger--arrowalt-r .hamburger-inner::before { - transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } - -.hamburger--arrowalt-r .hamburger-inner::after { - transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } - -.hamburger--arrowalt-r.is-active .hamburger-inner::before { - top: 0; - transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1); - transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } - -.hamburger--arrowalt-r.is-active .hamburger-inner::after { - bottom: 0; - transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1); - transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); } - -/* - * Boring - */ -.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after { - transition-property: none; } - -.hamburger--boring.is-active .hamburger-inner { - transform: rotate(45deg); } - .hamburger--boring.is-active .hamburger-inner::before { - top: 0; - opacity: 0; } - .hamburger--boring.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(-90deg); } - -/* - * Collapse - */ -.hamburger--collapse .hamburger-inner { - top: auto; - bottom: 0; - transition-duration: 0.13s; - transition-delay: 0.13s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--collapse .hamburger-inner::after { - top: -20px; - transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; } - .hamburger--collapse .hamburger-inner::before { - transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--collapse.is-active .hamburger-inner { - transform: translate3d(0, -10px, 0) rotate(-45deg); - transition-delay: 0.22s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--collapse.is-active .hamburger-inner::after { - top: 0; - opacity: 0; - transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; } - .hamburger--collapse.is-active .hamburger-inner::before { - top: 0; - transform: rotate(-90deg); - transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Collapse Reverse - */ -.hamburger--collapse-r .hamburger-inner { - top: auto; - bottom: 0; - transition-duration: 0.13s; - transition-delay: 0.13s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--collapse-r .hamburger-inner::after { - top: -20px; - transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; } - .hamburger--collapse-r .hamburger-inner::before { - transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--collapse-r.is-active .hamburger-inner { - transform: translate3d(0, -10px, 0) rotate(45deg); - transition-delay: 0.22s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--collapse-r.is-active .hamburger-inner::after { - top: 0; - opacity: 0; - transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; } - .hamburger--collapse-r.is-active .hamburger-inner::before { - top: 0; - transform: rotate(90deg); - transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Elastic - */ -.hamburger--elastic .hamburger-inner { - top: 2px; - transition-duration: 0.275s; - transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); } - .hamburger--elastic .hamburger-inner::before { - top: 10px; - transition: opacity 0.125s 0.275s ease; } - .hamburger--elastic .hamburger-inner::after { - top: 20px; - transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); } - -.hamburger--elastic.is-active .hamburger-inner { - transform: translate3d(0, 10px, 0) rotate(135deg); - transition-delay: 0.075s; } - .hamburger--elastic.is-active .hamburger-inner::before { - transition-delay: 0s; - opacity: 0; } - .hamburger--elastic.is-active .hamburger-inner::after { - transform: translate3d(0, -20px, 0) rotate(-270deg); - transition-delay: 0.075s; } - -/* - * Elastic Reverse - */ -.hamburger--elastic-r .hamburger-inner { - top: 2px; - transition-duration: 0.275s; - transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); } - .hamburger--elastic-r .hamburger-inner::before { - top: 10px; - transition: opacity 0.125s 0.275s ease; } - .hamburger--elastic-r .hamburger-inner::after { - top: 20px; - transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); } - -.hamburger--elastic-r.is-active .hamburger-inner { - transform: translate3d(0, 10px, 0) rotate(-135deg); - transition-delay: 0.075s; } - .hamburger--elastic-r.is-active .hamburger-inner::before { - transition-delay: 0s; - opacity: 0; } - .hamburger--elastic-r.is-active .hamburger-inner::after { - transform: translate3d(0, -20px, 0) rotate(270deg); - transition-delay: 0.075s; } - -/* - * Emphatic - */ -.hamburger--emphatic { - overflow: hidden; } - .hamburger--emphatic .hamburger-inner { - transition: background-color 0.125s 0.175s ease-in; } - .hamburger--emphatic .hamburger-inner::before { - left: 0; - transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; } - .hamburger--emphatic .hamburger-inner::after { - top: 10px; - right: 0; - transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; } - .hamburger--emphatic.is-active .hamburger-inner { - transition-delay: 0s; - transition-timing-function: ease-out; - background-color: transparent; } - .hamburger--emphatic.is-active .hamburger-inner::before { - left: -80px; - top: -80px; - transform: translate3d(80px, 80px, 0) rotate(45deg); - transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } - .hamburger--emphatic.is-active .hamburger-inner::after { - right: -80px; - top: -80px; - transform: translate3d(-80px, 80px, 0) rotate(-45deg); - transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } - -/* - * Emphatic Reverse - */ -.hamburger--emphatic-r { - overflow: hidden; } - .hamburger--emphatic-r .hamburger-inner { - transition: background-color 0.125s 0.175s ease-in; } - .hamburger--emphatic-r .hamburger-inner::before { - left: 0; - transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; } - .hamburger--emphatic-r .hamburger-inner::after { - top: 10px; - right: 0; - transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; } - .hamburger--emphatic-r.is-active .hamburger-inner { - transition-delay: 0s; - transition-timing-function: ease-out; - background-color: transparent; } - .hamburger--emphatic-r.is-active .hamburger-inner::before { - left: -80px; - top: 80px; - transform: translate3d(80px, -80px, 0) rotate(-45deg); - transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } - .hamburger--emphatic-r.is-active .hamburger-inner::after { - right: -80px; - top: 80px; - transform: translate3d(-80px, -80px, 0) rotate(45deg); - transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); } - -/* - * Slider - */ -.hamburger--slider .hamburger-inner { - top: 2px; } - .hamburger--slider .hamburger-inner::before { - top: 10px; - transition-property: transform, opacity; - transition-timing-function: ease; - transition-duration: 0.15s; } - .hamburger--slider .hamburger-inner::after { - top: 20px; } - -.hamburger--slider.is-active .hamburger-inner { - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--slider.is-active .hamburger-inner::before { - transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0); - opacity: 0; } - .hamburger--slider.is-active .hamburger-inner::after { - transform: translate3d(0, -20px, 0) rotate(-90deg); } - -/* - * Slider Reverse - */ -.hamburger--slider-r .hamburger-inner { - top: 2px; } - .hamburger--slider-r .hamburger-inner::before { - top: 10px; - transition-property: transform, opacity; - transition-timing-function: ease; - transition-duration: 0.15s; } - .hamburger--slider-r .hamburger-inner::after { - top: 20px; } - -.hamburger--slider-r.is-active .hamburger-inner { - transform: translate3d(0, 10px, 0) rotate(-45deg); } - .hamburger--slider-r.is-active .hamburger-inner::before { - transform: rotate(45deg) translate3d(5.71429px, -6px, 0); - opacity: 0; } - .hamburger--slider-r.is-active .hamburger-inner::after { - transform: translate3d(0, -20px, 0) rotate(90deg); } - -/* - * Spring - */ -.hamburger--spring .hamburger-inner { - top: 2px; - transition: background-color 0s 0.13s linear; } - .hamburger--spring .hamburger-inner::before { - top: 10px; - transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--spring .hamburger-inner::after { - top: 20px; - transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--spring.is-active .hamburger-inner { - transition-delay: 0.22s; - background-color: transparent; } - .hamburger--spring.is-active .hamburger-inner::before { - top: 0; - transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); - transform: translate3d(0, 10px, 0) rotate(45deg); } - .hamburger--spring.is-active .hamburger-inner::after { - top: 0; - transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); - transform: translate3d(0, 10px, 0) rotate(-45deg); } - -/* - * Spring Reverse - */ -.hamburger--spring-r .hamburger-inner { - top: auto; - bottom: 0; - transition-duration: 0.13s; - transition-delay: 0s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--spring-r .hamburger-inner::after { - top: -20px; - transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; } - .hamburger--spring-r .hamburger-inner::before { - transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--spring-r.is-active .hamburger-inner { - transform: translate3d(0, -10px, 0) rotate(-45deg); - transition-delay: 0.22s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--spring-r.is-active .hamburger-inner::after { - top: 0; - opacity: 0; - transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; } - .hamburger--spring-r.is-active .hamburger-inner::before { - top: 0; - transform: rotate(90deg); - transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Stand - */ -.hamburger--stand .hamburger-inner { - transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; } - .hamburger--stand .hamburger-inner::before { - transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--stand .hamburger-inner::after { - transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--stand.is-active .hamburger-inner { - transform: rotate(90deg); - background-color: transparent; - transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; } - .hamburger--stand.is-active .hamburger-inner::before { - top: 0; - transform: rotate(-45deg); - transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--stand.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(45deg); - transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Stand Reverse - */ -.hamburger--stand-r .hamburger-inner { - transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; } - .hamburger--stand-r .hamburger-inner::before { - transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--stand-r .hamburger-inner::after { - transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--stand-r.is-active .hamburger-inner { - transform: rotate(-90deg); - background-color: transparent; - transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; } - .hamburger--stand-r.is-active .hamburger-inner::before { - top: 0; - transform: rotate(-45deg); - transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--stand-r.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(45deg); - transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Spin - */ -.hamburger--spin .hamburger-inner { - transition-duration: 0.22s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--spin .hamburger-inner::before { - transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; } - .hamburger--spin .hamburger-inner::after { - transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--spin.is-active .hamburger-inner { - transform: rotate(225deg); - transition-delay: 0.12s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--spin.is-active .hamburger-inner::before { - top: 0; - opacity: 0; - transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; } - .hamburger--spin.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(-90deg); - transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Spin Reverse - */ -.hamburger--spin-r .hamburger-inner { - transition-duration: 0.22s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--spin-r .hamburger-inner::before { - transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; } - .hamburger--spin-r .hamburger-inner::after { - transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--spin-r.is-active .hamburger-inner { - transform: rotate(-225deg); - transition-delay: 0.12s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--spin-r.is-active .hamburger-inner::before { - top: 0; - opacity: 0; - transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; } - .hamburger--spin-r.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(90deg); - transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Squeeze - */ -.hamburger--squeeze .hamburger-inner { - transition-duration: 0.075s; - transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); } - .hamburger--squeeze .hamburger-inner::before { - transition: top 0.075s 0.12s ease, opacity 0.075s ease; } - .hamburger--squeeze .hamburger-inner::after { - transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); } - -.hamburger--squeeze.is-active .hamburger-inner { - transform: rotate(45deg); - transition-delay: 0.12s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); } - .hamburger--squeeze.is-active .hamburger-inner::before { - top: 0; - opacity: 0; - transition: top 0.075s ease, opacity 0.075s 0.12s ease; } - .hamburger--squeeze.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(-90deg); - transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); } - -/* - * Vortex - */ -.hamburger--vortex .hamburger-inner { - transition-duration: 0.2s; - transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } - .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after { - transition-duration: 0s; - transition-delay: 0.1s; - transition-timing-function: linear; } - .hamburger--vortex .hamburger-inner::before { - transition-property: top, opacity; } - .hamburger--vortex .hamburger-inner::after { - transition-property: bottom, transform; } - -.hamburger--vortex.is-active .hamburger-inner { - transform: rotate(765deg); - transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } - .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after { - transition-delay: 0s; } - .hamburger--vortex.is-active .hamburger-inner::before { - top: 0; - opacity: 0; } - .hamburger--vortex.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(90deg); } - -/* - * Vortex Reverse - */ -.hamburger--vortex-r .hamburger-inner { - transition-duration: 0.2s; - transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } - .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after { - transition-duration: 0s; - transition-delay: 0.1s; - transition-timing-function: linear; } - .hamburger--vortex-r .hamburger-inner::before { - transition-property: top, opacity; } - .hamburger--vortex-r .hamburger-inner::after { - transition-property: bottom, transform; } - -.hamburger--vortex-r.is-active .hamburger-inner { - transform: rotate(-765deg); - transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); } - .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after { - transition-delay: 0s; } - .hamburger--vortex-r.is-active .hamburger-inner::before { - top: 0; - opacity: 0; } - .hamburger--vortex-r.is-active .hamburger-inner::after { - bottom: 0; - transform: rotate(-90deg); } diff --git a/public/assets/out/hamburgers/hamburgers.min.css b/public/assets/out/hamburgers/hamburgers.min.css deleted file mode 100644 index 31cb0227..00000000 --- a/public/assets/out/hamburgers/hamburgers.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Hamburgers - * @description Tasty CSS-animated hamburgers - * @author Jonathan Suh @jonsuh - * @site https://jonsuh.com/hamburgers - * @link https://github.com/jonsuh/hamburgers - */.hamburger{font:inherit;display:inline-block;overflow:visible;margin:0;padding:15px;cursor:pointer;transition-timing-function:linear;transition-duration:.15s;transition-property:opacity,filter;text-transform:none;color:inherit;border:0;background-color:transparent}.hamburger:hover{opacity:.7}.hamburger-box{position:relative;display:inline-block;width:40px;height:24px}.hamburger-inner{top:50%;display:block;margin-top:-2px}.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before{position:absolute;width:40px;height:4px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform;border-radius:4px;background-color:#000}.hamburger-inner:after,.hamburger-inner:before{display:block;content:""}.hamburger-inner:before{top:-10px}.hamburger-inner:after{bottom:-10px}.hamburger--3dx .hamburger-box{perspective:80px}.hamburger--3dx .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx .hamburger-inner:after,.hamburger--3dx .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx.is-active .hamburger-inner{transform:rotateY(180deg);background-color:transparent}.hamburger--3dx.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dx-r .hamburger-box{perspective:80px}.hamburger--3dx-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r .hamburger-inner:after,.hamburger--3dx-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dx-r.is-active .hamburger-inner{transform:rotateY(-180deg);background-color:transparent}.hamburger--3dx-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dx-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy .hamburger-box{perspective:80px}.hamburger--3dy .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy .hamburger-inner:after,.hamburger--3dy .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy.is-active .hamburger-inner{transform:rotateX(-180deg);background-color:transparent}.hamburger--3dy.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--3dy-r .hamburger-box{perspective:80px}.hamburger--3dy-r .hamburger-inner{transition:transform .15s cubic-bezier(.645,.045,.355,1),background-color 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r .hamburger-inner:after,.hamburger--3dy-r .hamburger-inner:before{transition:transform 0s cubic-bezier(.645,.045,.355,1) .1s}.hamburger--3dy-r.is-active .hamburger-inner{transform:rotateX(180deg);background-color:transparent}.hamburger--3dy-r.is-active .hamburger-inner:before{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--3dy-r.is-active .hamburger-inner:after{transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--arrow.is-active .hamburger-inner:before{transform:translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrow.is-active .hamburger-inner:after{transform:translate3d(-8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:before{transform:translate3d(8px,0,0) rotate(45deg) scaleX(.7)}.hamburger--arrow-r.is-active .hamburger-inner:after{transform:translate3d(8px,0,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,-10px,0) rotate(-45deg) scaleX(.7)}.hamburger--arrowalt.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(-8px,10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r .hamburger-inner:before{transition:top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r .hamburger-inner:after{transition:bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)}.hamburger--arrowalt-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,-10px,0) rotate(45deg) scaleX(.7)}.hamburger--arrowalt-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;transform:translate3d(8px,10px,0) rotate(-45deg) scaleX(.7)}.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner:after,.hamburger--boring .hamburger-inner:before{transition-property:none}.hamburger--boring.is-active .hamburger-inner{transform:rotate(45deg)}.hamburger--boring.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--boring.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)}.hamburger--collapse .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--collapse.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(-90deg)}.hamburger--collapse-r .hamburger-inner{top:auto;bottom:0;transition-delay:.13s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--collapse-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear}.hamburger--collapse-r .hamburger-inner:before{transition:top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--collapse-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(45deg)}.hamburger--collapse-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;opacity:0}.hamburger--collapse-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;transform:rotate(90deg)}.hamburger--elastic .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(135deg)}.hamburger--elastic.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(-270deg)}.hamburger--elastic-r .hamburger-inner{top:2px;transition-timing-function:cubic-bezier(.68,-.55,.265,1.55);transition-duration:.275s}.hamburger--elastic-r .hamburger-inner:before{top:10px;transition:opacity .125s ease .275s}.hamburger--elastic-r .hamburger-inner:after{top:20px;transition:transform .275s cubic-bezier(.68,-.55,.265,1.55)}.hamburger--elastic-r.is-active .hamburger-inner{transition-delay:75ms;transform:translate3d(0,10px,0) rotate(-135deg)}.hamburger--elastic-r.is-active .hamburger-inner:before{transition-delay:0s;opacity:0}.hamburger--elastic-r.is-active .hamburger-inner:after{transition-delay:75ms;transform:translate3d(0,-20px,0) rotate(270deg)}.hamburger--emphatic{overflow:hidden}.hamburger--emphatic .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent}.hamburger--emphatic.is-active .hamburger-inner:before{top:-80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,80px,0) rotate(45deg)}.hamburger--emphatic.is-active .hamburger-inner:after{top:-80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,80px,0) rotate(-45deg)}.hamburger--emphatic-r{overflow:hidden}.hamburger--emphatic-r .hamburger-inner{transition:background-color .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:before{left:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s}.hamburger--emphatic-r .hamburger-inner:after{top:10px;right:0;transition:transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s}.hamburger--emphatic-r.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:transparent}.hamburger--emphatic-r.is-active .hamburger-inner:before{top:80px;left:-80px;transition:left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(80px,-80px,0) rotate(-45deg)}.hamburger--emphatic-r.is-active .hamburger-inner:after{top:80px;right:-80px;transition:right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;transform:translate3d(-80px,-80px,0) rotate(45deg)}.hamburger--slider .hamburger-inner{top:2px}.hamburger--slider .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider .hamburger-inner:after{top:20px}.hamburger--slider.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--slider.is-active .hamburger-inner:before{transform:rotate(-45deg) translate3d(-5.71429px,-6px,0);opacity:0}.hamburger--slider.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(-90deg)}.hamburger--slider-r .hamburger-inner{top:2px}.hamburger--slider-r .hamburger-inner:before{top:10px;transition-timing-function:ease;transition-duration:.15s;transition-property:transform,opacity}.hamburger--slider-r .hamburger-inner:after{top:20px}.hamburger--slider-r.is-active .hamburger-inner{transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--slider-r.is-active .hamburger-inner:before{transform:rotate(45deg) translate3d(5.71429px,-6px,0);opacity:0}.hamburger--slider-r.is-active .hamburger-inner:after{transform:translate3d(0,-20px,0) rotate(90deg)}.hamburger--spring .hamburger-inner{top:2px;transition:background-color 0s linear .13s}.hamburger--spring .hamburger-inner:before{top:10px;transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring .hamburger-inner:after{top:20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring.is-active .hamburger-inner{transition-delay:.22s;background-color:transparent}.hamburger--spring.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(45deg)}.hamburger--spring.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:translate3d(0,10px,0) rotate(-45deg)}.hamburger--spring-r .hamburger-inner{top:auto;bottom:0;transition-delay:0s;transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.13s}.hamburger--spring-r .hamburger-inner:after{top:-20px;transition:top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity 0s linear}.hamburger--spring-r .hamburger-inner:before{transition:top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)}.hamburger--spring-r.is-active .hamburger-inner{transition-delay:.22s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translate3d(0,-10px,0) rotate(-45deg)}.hamburger--spring-r.is-active .hamburger-inner:after{top:0;transition:top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0s linear .22s;opacity:0}.hamburger--spring-r.is-active .hamburger-inner:before{top:0;transition:top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;transform:rotate(90deg)}.hamburger--stand .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(90deg);background-color:transparent}.hamburger--stand.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--stand-r .hamburger-inner{transition:transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0s linear 75ms}.hamburger--stand-r .hamburger-inner:before{transition:top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r .hamburger-inner:after{transition:bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0s}.hamburger--stand-r.is-active .hamburger-inner{transition:transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0s linear .15s;transform:rotate(-90deg);background-color:transparent}.hamburger--stand-r.is-active .hamburger-inner:before{top:0;transition:top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(-45deg)}.hamburger--stand-r.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;transform:rotate(45deg)}.hamburger--spin .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(225deg)}.hamburger--spin.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--spin-r .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:.22s}.hamburger--spin-r .hamburger-inner:before{transition:top .1s ease-in .25s,opacity .1s ease-in}.hamburger--spin-r .hamburger-inner:after{transition:bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin-r.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(-225deg)}.hamburger--spin-r.is-active .hamburger-inner:before{top:0;transition:top .1s ease-out,opacity .1s ease-out .12s;opacity:0}.hamburger--spin-r.is-active .hamburger-inner:after{bottom:0;transition:bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(90deg)}.hamburger--squeeze .hamburger-inner{transition-timing-function:cubic-bezier(.55,.055,.675,.19);transition-duration:75ms}.hamburger--squeeze .hamburger-inner:before{transition:top 75ms ease .12s,opacity 75ms ease}.hamburger--squeeze .hamburger-inner:after{transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)}.hamburger--squeeze.is-active .hamburger-inner{transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:rotate(45deg)}.hamburger--squeeze.is-active .hamburger-inner:before{top:0;transition:top 75ms ease,opacity 75ms ease .12s;opacity:0}.hamburger--squeeze.is-active .hamburger-inner:after{bottom:0;transition:bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;transform:rotate(-90deg)}.hamburger--vortex .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex .hamburger-inner:after,.hamburger--vortex .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(765deg)}.hamburger--vortex.is-active .hamburger-inner:after,.hamburger--vortex.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex.is-active .hamburger-inner:after{bottom:0;transform:rotate(90deg)}.hamburger--vortex-r .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transition-duration:.2s}.hamburger--vortex-r .hamburger-inner:after,.hamburger--vortex-r .hamburger-inner:before{transition-delay:.1s;transition-timing-function:linear;transition-duration:0s}.hamburger--vortex-r .hamburger-inner:before{transition-property:top,opacity}.hamburger--vortex-r .hamburger-inner:after{transition-property:bottom,transform}.hamburger--vortex-r.is-active .hamburger-inner{transition-timing-function:cubic-bezier(.19,1,.22,1);transform:rotate(-765deg)}.hamburger--vortex-r.is-active .hamburger-inner:after,.hamburger--vortex-r.is-active .hamburger-inner:before{transition-delay:0s}.hamburger--vortex-r.is-active .hamburger-inner:before{top:0;opacity:0}.hamburger--vortex-r.is-active .hamburger-inner:after{bottom:0;transform:rotate(-90deg)} \ No newline at end of file diff --git a/public/assets/out/hs-megamenu/src/hs.megamenu.css b/public/assets/out/hs-megamenu/src/hs.megamenu.css deleted file mode 100644 index 0e21b9a7..00000000 --- a/public/assets/out/hs-megamenu/src/hs.megamenu.css +++ /dev/null @@ -1,200 +0,0 @@ -/* - * HS Mega Menu - jQuery Plugin - * @version: 1.0.0 (Sun, 26 Feb 2017) - * - * @license: - * - * Copyright 2017 HtmlStream - * - */ - -.hs-menu-initialized { - position: relative; - z-index: 10; -} - -.hs-menu-initialized .animated { - -webkit-animation-duration: 300ms; - animation-duration: 300ms; -} - -.hs-overflow-x-locked { - overflow-x: hidden; -} - -.hs-sub-menu, -.hs-mega-menu { - position: absolute; - left: 0; - top: 100%; - z-index: 2; - margin-top: 5px; - visibility: hidden; - opacity: 0; - /* width: 100%; */ - background-color: #fff; - opacity: 1 !important; -} - -.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu, -.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu { - display: block !important; -} - -.hs-sub-menu-opened > .hs-sub-menu, -.hs-mega-menu-opened > .hs-mega-menu { - visibility: visible; - opacity: 1; -} - -.hs-sub-menu { - min-width: 180px; -} - -.hs-has-sub-menu { - position: relative; -} - -.hs-sub-menu .hs-sub-menu, -.hs-mega-menu .hs-sub-menu, -.hs-sub-menu .hs-mega-menu, -.hs-mega-menu .hs-mega-menu { - top: 0; - left: 100%; - margin-top: 0; -} - -.hs-has-sub-menu > a::after { - content: "\e900"; - font-family: "hs-icons" !important; - font-size: 10px; - display: inline; - margin-left: 7px; -} -.hs-has-sub-menu .hs-has-sub-menu > a { - position: relative; -} -.hs-has-sub-menu .hs-has-sub-menu > a::after { - content: "\e902"; - position: absolute; - top: 50%; - right: 0; - -webkit-transform: translateY(-50%); - -ms-transform: translateY(-50%); - transform: translateY(-50%); - color: inherit; - background: transparent !important; -} - -/*------------------------------------ - Vertical Direction -------------------------------------*/ - - .hs-menu-vertical .hs-sub-menu, - .hs-menu-vertical .hs-mega-menu { - top: 0; - left: 100%; - margin-top: 0; - } - - .hs-menu-vertical .hs-sub-menu { - width: auto; - } - - .hs-menu-vertical .hs-mega-menu { - height: 100%; - } - -/*------------------------------------ - Mobile state -------------------------------------*/ - - .hs-mobile-state .hs-sub-menu, - .hs-mobile-state .hs-mega-menu { - position: static; - visibility: visible; - } - - .hs-mobile-state .hs-has-mega-menu[data-max-width] > .hs-mega-menu, - .hs-mobile-state .hs-has-sub-menu[data-max-width] > .hs-sub-menu { - max-width: initial !important; - } - -/*------------------------------------ - RTL -------------------------------------*/ - - .hs-menu-initialized.hs-rtl { - direction: rtl; - unicode-bidi: embed; - } - - .hs-menu-initialized.hs-rtl .hs-sub-menu, - .hs-menu-initialized.hs-rtl .hs-mega-menu { - left: auto; - right: 0; - } - - .hs-menu-initialized.hs-rtl .hs-sub-menu .hs-sub-menu, - .hs-menu-initialized.hs-rtl .hs-mega-menu .hs-sub-menu, - .hs-menu-initialized.hs-rtl .hs-sub-menu .hs-mega-menu, - .hs-menu-initialized.hs-rtl .hs-mega-menu .hs-mega-menu { - left: auto; - right: 100%; - } - -/*------------------------------------ - Smart Position -------------------------------------*/ - - .hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu.hs-reversed, - .hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu.hs-reversed { - left: auto; - right: 0; - } - - .hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed, - .hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed, - .hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed, - .hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed { - left: auto; - right: 100%; - } - - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu.hs-reversed, - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu.hs-reversed { - right: auto; - left: 0; - } - - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed, - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed, - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed, - .hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed { - right: auto; - left: 100%; - } - -/*------------------------------------ - Positions - (only 'horizontal' direction) -------------------------------------*/ - - .hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-left { - left: 0; - right: auto; - } - - .hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-right { - left: auto; - right: 0; - } - - .hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-center { - right: auto; - left: 50%; - - -webkit-transform: translate(-50%, 0); - -ms-transform: translate(-50%, 0); - transform: translate(-50%, 0); - } diff --git a/public/assets/out/hs-megamenu/src/hs.megamenu.js b/public/assets/out/hs-megamenu/src/hs.megamenu.js deleted file mode 100644 index e3c4d637..00000000 --- a/public/assets/out/hs-megamenu/src/hs.megamenu.js +++ /dev/null @@ -1,907 +0,0 @@ -/* - * HS Mega Menu - jQuery Plugin - * @version: 1.0.0 (Sun, 26 Feb 2017) - * @requires: jQuery v1.6 or later - * @author: HtmlStream - * @event-namespace: .HSMegaMenu - * @browser-support: IE9+ - * @license: - * - * Copyright 2017 HtmlStream - * - */ -;(function($){ - 'use strict'; - - - /** - * Creates a mega menu. - * - * @constructor - * @param {HTMLElement|jQuery} element - The element to create the mega menu for. - * @param {Object} options - The options - */ - function MegaMenu(element, options) { - - var self = this; - - /** - * Current element. - * - * @public - */ - this.$element = $(element); - - /** - * Current options set by the caller including defaults. - * - * @public - */ - this.options = $.extend(true, {}, MegaMenu.defaults, options); - - - /** - * Collection of menu elements. - * - * @private - */ - this._items = $(); - - - Object.defineProperties( this, { - - /** - * Contains composed selector of menu items. - * - * @public - */ - itemsSelector: { - get: function() { - return self.options.classMap.hasSubMenu + ',' + - self.options.classMap.hasMegaMenu; - } - }, - - /** - * Contains chain of active items. - * - * @private - */ - _tempChain: { - value: null, - writable: true - }, - - /** - * Contains current behavior state. - * - * @public - */ - state: { - value: null, - writable: true - } - - }); - - this.initialize(); - - }; - - - /** - * Default options of the mega menu. - * - * @public - */ - MegaMenu.defaults = { - event: 'hover', - direction: 'horizontal', - breakpoint: 991, - animationIn: false, - animationOut: false, - - rtl: false, - hideTimeOut: 300, - - // For 'vertical' direction only - sideBarRatio: 1/4, - pageContainer: $('body'), - - classMap: { - initialized: '.hs-menu-initialized', - mobileState: '.hs-mobile-state', - - subMenu: '.hs-sub-menu', - hasSubMenu: '.hs-has-sub-menu', - hasSubMenuActive: '.hs-sub-menu-opened', - - megaMenu: '.hs-mega-menu', - hasMegaMenu: '.hs-has-mega-menu', - hasMegaMenuActive: '.hs-mega-menu-opened' - }, - - mobileSpeed: 400, - mobileEasing: 'linear', - - beforeOpen: function(){}, - beforeClose: function(){}, - afterOpen: function(){}, - afterClose: function(){} - }; - - - /** - * Initialization of the plugin. - * - * @protected - */ - MegaMenu.prototype.initialize = function() { - - var self = this, - $w = $(window); - - if( this.options.rtl ) this.$element.addClass('hs-rtl'); - - this.$element - .addClass(this.options.classMap.initialized.slice(1)) - .addClass('hs-menu-' + this.options.direction); - - - - // Independent events - $w.on('resize.HSMegaMenu', function(e){ - - if( self.resizeTimeOutId ) clearTimeout( self.resizeTimeOutId ); - - self.resizeTimeOutId = setTimeout( function(){ - - if($w.width() <= self.options.breakpoint && self.state == 'desktop') self.initMobileBehavior(); - else if( $w.width() > self.options.breakpoint && self.state == 'mobile' ) self.initDesktopBehavior(); - - self.refresh(); - - }, 50 ); - - }); - - $(document) - .on('click.HSMegaMenu', function(e){ - - var $parents = $(e.target).parents(self.itemsSelector); - self.closeAll( $parents.add($(e.target)) ); - - }) - .on('keyup.HSMegaMenu', function(e){ - if( e.keyCode && e.keyCode == 27 ) self.closeAll(); - }); - - if($w.width() <= this.options.breakpoint) this.initMobileBehavior(); - else if( $w.width() > this.options.breakpoint) this.initDesktopBehavior(); - - this.smartPositions(); - - return this; - - }; - - MegaMenu.prototype.smartPositions = function() { - - var self = this, - $submenus = this.$element.find( this.options.classMap.subMenu ); - - $submenus.each(function(i, el) { - - MenuItem.smartPosition( $(el), self.options ); - - }); - - }; - - /** - * Binding events to menu elements. - * - * @protected - */ - MegaMenu.prototype.bindEvents = function() { - - var self = this, - selector; - - // Hover case - // if(this.options.event === 'hover' && !_isTouch()) { - if(this.options.event === 'hover') { - this.$element - .on( - 'mouseenter.HSMegaMenu', - this.options.classMap.hasMegaMenu + ':not([data-event="click"]),' + - this.options.classMap.hasSubMenu + ':not([data-event="click"])', - function(e) { - - var $this = $(this), - $chain = $this.parents( self.itemsSelector); - - // Lazy initialization - if( !$this.data('HSMenuItem') ) { - self.initMenuItem( $this, self.getType( $this ) ); - } - - $chain = $chain.add($this); - - self.closeAll( $chain ); - - $chain.each(function(i, el){ - - var HSMenuItem = $(el).data('HSMenuItem'); - - if(HSMenuItem.hideTimeOutId) clearTimeout(HSMenuItem.hideTimeOutId); - HSMenuItem.show(); - - }); - - self._items = self._items.not( $chain ); - self._tempChain = $chain; - - e.preventDefault(); - e.stopPropagation(); - } - ) - .on( - 'mouseleave.HSMegaMenu', - this.options.classMap.hasMegaMenu + ':not([data-event="click"]),' + - this.options.classMap.hasSubMenu + ':not([data-event="click"])', - function(e) { - - var $this = $(this), - HSMenuItem = $this.data('HSMenuItem'), - $chain = $(e.relatedTarget).parents( self.itemsSelector ); - - HSMenuItem.hideTimeOutId = setTimeout( function(){ - self.closeAll( $chain ); - }, self.options.hideTimeOut ); - - self._items = self._items.add( self._tempChain ); - self._tempChain = null; - - e.preventDefault(); - e.stopPropagation(); - } - ) - .on( - 'click.HSMegaMenu', - this.options.classMap.hasMegaMenu + '[data-event="click"] > a, ' + - this.options.classMap.hasSubMenu + '[data-event="click"] > a', - function(e) { - - var $this = $(this).parent('[data-event="click"]'), - HSMenuItem; - - // Lazy initialization - if(!$this.data('HSMenuItem')) { - self.initMenuItem( $this, self.getType( $this ) ); - } - - - self.closeAll( $this.add( - $this.parents(self.itemsSelector) - ) ); - - HSMenuItem = $this - .data('HSMenuItem'); - - if(HSMenuItem.isOpened) { - HSMenuItem.hide(); - } - else{ - HSMenuItem.show(); - } - - - e.preventDefault(); - e.stopPropagation(); - - } - ); - } - // Click case - else { - - this.$element - .on( - 'click.HSMegaMenu', - (_isTouch() ? - this.options.classMap.hasMegaMenu + ' > a, ' + - this.options.classMap.hasSubMenu + ' > a' : - this.options.classMap.hasMegaMenu + ':not([data-event="hover"]) > a,' + - this.options.classMap.hasSubMenu + ':not([data-event="hover"]) > a'), - function(e) { - - var $this = $(this).parent(), - HSMenuItem, - $parents = $this.parents(self.itemsSelector); - - // Lazy initialization - if(!$this.data('HSMenuItem')) { - self.initMenuItem( $this, self.getType( $this ) ); - } - - self.closeAll( $this.add( - $this.parents( self.itemsSelector ) - ) ); - - HSMenuItem = $this - .addClass('hs-event-prevented') - .data('HSMenuItem'); - - if(HSMenuItem.isOpened) { - HSMenuItem.hide(); - } - else{ - HSMenuItem.show(); - } - - e.preventDefault(); - e.stopPropagation(); - } - ); - - if(!_isTouch()) { - this.$element - .on( - 'mouseenter.HSMegaMenu', - this.options.classMap.hasMegaMenu + '[data-event="hover"],' + - this.options.classMap.hasSubMenu + '[data-event="hover"]', - function(e) { - - var $this = $(this), - $parents = $this.parents( self.itemsSelector); - - // Lazy initialization - if( !$this.data('HSMenuItem') ) { - self.initMenuItem( $this, self.getType( $this ) ); - } - - self.closeAll( $this.add($parents) ); - - $parents.add($this).each(function(i, el){ - - var HSMenuItem = $(el).data('HSMenuItem'); - - if(HSMenuItem.hideTimeOutId) clearTimeout(HSMenuItem.hideTimeOutId); - HSMenuItem.show(); - - }); - - e.preventDefault(); - e.stopPropagation(); - } - ) - .on( - 'mouseleave.HSMegaMenu', - this.options.classMap.hasMegaMenu + '[data-event="hover"],' + - this.options.classMap.hasSubMenu + '[data-event="hover"]', - function(e) { - - var $this = $(this), - HSMenuItem = $this.data('HSMenuItem'); - - HSMenuItem.hideTimeOutId = setTimeout( function(){ - - self.closeAll( - $(e.relatedTarget).parents(self.itemsSelector) - ); - - }, self.options.hideTimeOut ); - - e.preventDefault(); - e.stopPropagation(); - } - ) - } - } - - }; - - /** - * Initialization of certain menu item. - * - * @protected - */ - MegaMenu.prototype.initMenuItem = function(element, type) { - - var self = this, - Item = new MenuItem( - element, - element.children( - self.options.classMap[type === 'mega-menu' ? 'megaMenu' : 'subMenu'] - ), - $.extend(true, {type: type}, self.options, element.data()), - self.$element - ); - - element.data( 'HSMenuItem', Item ); - this._items = this._items.add( element ); - - }; - - /** - * Destroys of desktop behavior, then makes initialization of mobile behavior. - * - * @protected - */ - MegaMenu.prototype.initMobileBehavior = function() { - - var self = this; - - this.state = 'mobile'; - - this.$element - .off('.HSMegaMenu') - .addClass( this.options.classMap.mobileState.slice(1) ) - .on('click.HSMegaMenu', self.options.classMap.hasSubMenu + ' > a, ' + self.options.classMap.hasMegaMenu + ' > a', function(e){ - - var $this = $(this).parent(), - MenuItemInstance; - - // Lazy initialization - if( !$this.data('HSMenuItem') ) { - self.initMenuItem( $this, self.getType( $this ) ); - } - - self.closeAll( $this.parents( self.itemsSelector ).add($this) ); - - MenuItemInstance = $this - .data('HSMenuItem'); - - console.log(MenuItemInstance.isOpened); - - if(MenuItemInstance.isOpened) { - MenuItemInstance.mobileHide(); - } - else { - MenuItemInstance.mobileShow(); - } - - e.preventDefault(); - e.stopPropagation(); - - }) - .find( this.itemsSelector ) - .not( - this.options.classMap.hasSubMenuActive + ',' + - this.options.classMap.hasMegaMenuActive - ) - .children( - this.options.classMap.subMenu + ',' + - this.options.classMap.megaMenu - ) - .hide(); - - }; - - /** - * Destroys of mobile behavior, then makes initialization of desktop behavior. - * - * @protected - */ - MegaMenu.prototype.initDesktopBehavior = function() { - - this.state = 'desktop'; - - this.$element - .removeClass(this.options.classMap.mobileState.slice(1)) - .off('.HSMegaMenu') - .find( this.itemsSelector ) - .not( - this.options.classMap.hasSubMenuActive + ',' + - this.options.classMap.hasMegaMenuActive - ) - .children( - this.options.classMap.subMenu + ',' + - this.options.classMap.megaMenu - ) - .hide(); - - this.bindEvents(); - - }; - - /** - * Hides all of opened submenus/megamenus. - * - * @param {jQuery} except - collection of elements, which shouldn't be closed. - * @return {jQuery} - * @public - */ - MegaMenu.prototype.closeAll = function(except) { - - var self = this; - - return this._items.not(except && except.length ? except : $()).each(function(i, el){ - - $(el) - .removeClass('hs-event-prevented') - .data('HSMenuItem')[self.state == 'mobile' ? 'mobileHide' : 'hide'](); - - }); - - }; - - /** - * Returns type of sub menu based on specified menu item. - * - * @param {jQuery} item - * @return {String|null} - * @public - */ - MegaMenu.prototype.getType = function( item ) { - - if(!item || !item.length) return null; - - return item.hasClass(this.options.classMap.hasSubMenu.slice(1)) ? 'sub-menu' : - (item.hasClass(this.options.classMap.hasMegaMenu.slice(1)) ? 'mega-menu' : null); - - }; - - /** - * Returns current menu state. - * - * @return {String} - * @public - */ - MegaMenu.prototype.getState = function() { - return this.state; - }; - - /** - * Updates bounds of all menu items. - * - * @return {jQuery} - * @public - */ - MegaMenu.prototype.refresh = function() { - - return this._items.add( this._tempChain ).each(function(i, el){ - $(el).data('HSMenuItem')._updateMenuBounds(); - }); - - }; - - - /** - * Creates a mega-menu element. - * - * @param {jQuery} element - * @param {jQuery} menu - * @param {Object} options - * @param {jQuery} container - * @constructor - */ - function MenuItem(element, menu, options, container) { - - var self = this; - - /** - * Current menu item element. - * - * @public - */ - this.$element = element; - - /** - * Current mega menu element. - * - * @public - */ - this.menu = menu; - - /** - * Item options. - * - * @public - */ - this.options = options; - - - /** - * MegaMenu container. - * - * @public - */ - this.$container = container; - - Object.defineProperties(this, { - - /** - * Contains css class of menu item element. - * - * @public - */ - itemClass: { - get: function() { - return self.options.type === 'mega-menu' ? - self.options.classMap.hasMegaMenu : - self.options.classMap.hasSubMenu; - } - }, - - /** - * Contains css active-class of menu item element. - * - * @public - */ - activeItemClass: { - get: function() { - return self.options.type === 'mega-menu' ? - self.options.classMap.hasMegaMenuActive : - self.options.classMap.hasSubMenuActive; - } - }, - - /** - * Contains css class of menu element. - * - * @public - */ - menuClass: { - get: function() { - return self.options.type === 'mega-menu' ? - self.options.classMap.megaMenu : - self.options.classMap.subMenu; - } - }, - - isOpened: { - get: function() { - return this.$element.hasClass(this.activeItemClass.slice(1)); - } - } - - }); - - - this.menu.addClass('animated').on('click.HSMegaMenu', function(e){ - self._updateMenuBounds(); - }); - - if( this.$element.data('max-width') ) this.menu.css('max-width', this.$element.data('max-width') ); - if( this.$element.data('position') ) this.menu.addClass( 'hs-position-' + this.$element.data('position') ); - - - if( this.options.animationOut ) { - - this.menu.on('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(e) { - - if(self.menu.hasClass(self.options.animationOut)) { - self.$element.removeClass(self.activeItemClass.slice(1)); - self.options.afterClose.call(self, self.$element, self.menu); - } - - if(self.menu.hasClass(self.options.animationIn)) { - self.options.afterOpen.call(self, self.$element, self.menu); - } - - e.stopPropagation(); - e.preventDefault(); - }); - } - - } - - /** - * Shows the mega-menu item. - * - * @public - * @return {MenuItem} - */ - MenuItem.prototype.show = function() { - if( !this.menu.length ) return this; - - this.$element.addClass(this.activeItemClass.slice(1)); - - if(this.options.direction == 'horizontal') this.smartPosition( this.menu, this.options ); - - this._updateMenuBounds(); - - if(this.options.animationOut) { - this.menu.removeClass(this.options.animationOut); - } - else { - this.options.afterOpen.call(this, this.$element, this.menu); - } - - if(this.options.animationIn) this.menu.addClass(this.options.animationIn); - - return this; - } - - /** - * Hides the mega-menu item. - * - * @public - * @return {MenuItem} - */ - MenuItem.prototype.hide = function() { - - var self = this; - - if( !this.menu.length ) return this; - - if(!this.options.animationOut) { - this.$element.removeClass(this.activeItemClass.slice(1)); - } - - if(this.options.animationIn) this.menu.removeClass(this.options.animationIn); - if(this.options.animationOut) { - this.menu - .addClass(this.options.animationOut); - } - else{ - this.options.afterClose.call(this, this.$element, this.menu); - } - - return this; - } - - /** - * Shows the mega-menu item. - * - * @public - * @return {MenuItem} - */ - MenuItem.prototype.mobileShow = function() { - var self = this; - - if( !this.menu.length ) return this; - - - - this.menu - .removeClass( this.options.animationIn ) - .removeClass( this.options.animationOut ) - .stop() - .slideDown({ - duration: self.options.mobileSpeed, - easing: self.options.mobileEasing, - complete: function() { - self.options.afterOpen.call(self, self.$element, self.menu); - } - }); - - this.$element.addClass(this.activeItemClass.slice(1)); - - return this; - }; - - /** - * Hides the mega-menu item. - * - * @public - * @return {MenuItem} - */ - MenuItem.prototype.mobileHide = function() { - var self = this; - - if( !this.menu.length ) return this; - - this.menu.stop().slideUp({ - duration: self.options.mobileSpeed, - easing: self.options.mobileEasing, - complete: function() { - self.options.afterClose.call(self, self.$element, self.menu); - } - }); - - this.$element.removeClass(this.activeItemClass.slice(1)); - - return this; - }; - - /** - * Check, if element is in viewport. - * - * @param {jQuery} element - * @param {Object} options - * @public - */ - MenuItem.prototype.smartPosition = function( element, options ) { - - MenuItem.smartPosition(element, options); - - }; - - /** - * Check, if element is in viewport. - * - * @param {jQuery} element - * @param {Object} options - * @static - * @public - */ - MenuItem.smartPosition = function( element, options ) { - if(!element && !element.length) return; - - var $w = $(window); - - element.removeClass('hs-reversed'); - - if(!options.rtl) { - - if( element.offset().left + element.outerWidth() > $w.width() ) { - element.addClass('hs-reversed'); - } - - } - else { - - if(element.offset().left < 0) { - element.addClass('hs-reversed'); - } - - } - }; - - /** - * Updates bounds of current opened menu. - * - * @private - */ - MenuItem.prototype._updateMenuBounds = function() { - - var width = 'auto'; - - if( this.options.direction == 'vertical' && this.options.type == 'mega-menu' ) { - - if( this.$container && this.$container.data('HSMegaMenu').getState() == 'desktop' ) { - if( !this.options.pageContainer.length ) this.options.pageContainer = $('body'); - width = this.options.pageContainer.outerWidth() * (1 - this.options.sideBarRatio); - } - else { - width = 'auto'; - } - - - this.menu.css({ - 'width': width, - 'height': 'auto' - }); - - if( this.menu.outerHeight() > this.$container.outerHeight() ) { - return; - } - - this.menu.css('height', '100%'); - } - - }; - - /** - * The jQuery plugin for the MegaMenu. - * - * @public - */ - $.fn.HSMegaMenu = function(options) { - - return this.each(function(i, el) { - - var $this = $(this); - - if(!$this.data('HSMegaMenu')) { - $this.data('HSMegaMenu', new MegaMenu($this, options)); - } - - }); - - }; - - /** - * Helper function for detect touch events in the environment. - * - * @return {Boolean} - * @private - */ - function _isTouch() { - return ('ontouchstart' in window); - } - -})(jQuery); \ No newline at end of file diff --git a/public/assets/out/icon-hs/fonts/hs-icons.svg b/public/assets/out/icon-hs/fonts/hs-icons.svg deleted file mode 100644 index 9d49640d..00000000 --- a/public/assets/out/icon-hs/fonts/hs-icons.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/assets/out/icon-hs/fonts/hs-icons.ttf b/public/assets/out/icon-hs/fonts/hs-icons.ttf deleted file mode 100644 index 0dcb17da..00000000 Binary files a/public/assets/out/icon-hs/fonts/hs-icons.ttf and /dev/null differ diff --git a/public/assets/out/icon-hs/fonts/hs-icons.woff b/public/assets/out/icon-hs/fonts/hs-icons.woff deleted file mode 100644 index a588b88d..00000000 Binary files a/public/assets/out/icon-hs/fonts/hs-icons.woff and /dev/null differ diff --git a/public/assets/out/icon-hs/style.css b/public/assets/out/icon-hs/style.css deleted file mode 100644 index bb6a1097..00000000 --- a/public/assets/out/icon-hs/style.css +++ /dev/null @@ -1,77 +0,0 @@ -@font-face { - font-family: 'hs-icons'; - src: - url('fonts/hs-icons.ttf?xa77py') format('truetype'), - url('fonts/hs-icons.woff?xa77py') format('woff'), - url('fonts/hs-icons.svg?xa77py#hs-icons') format('svg'); - font-weight: normal; - font-style: normal; -} - -.hs-icon { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: 'hs-icons' !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.hs-icon-arrow-bottom:before { - content: "\e900"; -} -.hs-icon-arrow-left:before { - content: "\e901"; -} -.hs-icon-arrow-right:before { - content: "\e902"; -} -.hs-icon-arrow-top:before { - content: "\e903"; -} -.hs-icon-close:before { - content: "\e904"; -} -.hs-icon-hamburger-2:before { - content: "\e905"; -} -.hs-icon-hamburger:before { - content: "\e906"; -} -.hs-icon-lula-kebab-h:before { - content: "\e907"; -} -.hs-icon-lula-kebab-v:before { - content: "\e908"; -} -.hs-icon-magnifier:before { - content: "\e909"; -} -.hs-icon-music:before { - content: "\e90a"; -} -.hs-icon-photo:before { - content: "\e90b"; -} -.hs-icon-play:before { - content: "\e90c"; -} -.hs-icon-plus:before { - content: "\e90d"; -} -.hs-icon-unzoom:before { - content: "\e90e"; -} -.hs-icon-video:before { - content: "\e90f"; -} -.hs-icon-zoom:before { - content: "\e910"; -} - diff --git a/public/assets/out/icon-line-pro/christmas/png/001.png b/public/assets/out/icon-line-pro/christmas/png/001.png deleted file mode 100644 index fa8eaced..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/002.png b/public/assets/out/icon-line-pro/christmas/png/002.png deleted file mode 100644 index 95602741..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/003.png b/public/assets/out/icon-line-pro/christmas/png/003.png deleted file mode 100644 index c0539c3f..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/004.png b/public/assets/out/icon-line-pro/christmas/png/004.png deleted file mode 100644 index a9ef4170..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/005.png b/public/assets/out/icon-line-pro/christmas/png/005.png deleted file mode 100644 index b17eae14..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/006.png b/public/assets/out/icon-line-pro/christmas/png/006.png deleted file mode 100644 index 76f344d8..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/007.png b/public/assets/out/icon-line-pro/christmas/png/007.png deleted file mode 100644 index 8726cb77..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/008.png b/public/assets/out/icon-line-pro/christmas/png/008.png deleted file mode 100644 index 190efc34..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/009.png b/public/assets/out/icon-line-pro/christmas/png/009.png deleted file mode 100644 index 06d629ff..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/010.png b/public/assets/out/icon-line-pro/christmas/png/010.png deleted file mode 100644 index 26e7bb15..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/011.png b/public/assets/out/icon-line-pro/christmas/png/011.png deleted file mode 100644 index a636de1d..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/012.png b/public/assets/out/icon-line-pro/christmas/png/012.png deleted file mode 100644 index 6ec117d3..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/013.png b/public/assets/out/icon-line-pro/christmas/png/013.png deleted file mode 100644 index d8e280bf..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/014.png b/public/assets/out/icon-line-pro/christmas/png/014.png deleted file mode 100644 index 79eba744..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/015.png b/public/assets/out/icon-line-pro/christmas/png/015.png deleted file mode 100644 index 9ff62126..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/016.png b/public/assets/out/icon-line-pro/christmas/png/016.png deleted file mode 100644 index f30d8e72..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/017.png b/public/assets/out/icon-line-pro/christmas/png/017.png deleted file mode 100644 index 7d1eaa7f..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/018.png b/public/assets/out/icon-line-pro/christmas/png/018.png deleted file mode 100644 index 589591d5..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/019.png b/public/assets/out/icon-line-pro/christmas/png/019.png deleted file mode 100644 index dfd3d81c..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/020.png b/public/assets/out/icon-line-pro/christmas/png/020.png deleted file mode 100644 index 927e8261..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/021.png b/public/assets/out/icon-line-pro/christmas/png/021.png deleted file mode 100644 index d0c7ea18..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/022.png b/public/assets/out/icon-line-pro/christmas/png/022.png deleted file mode 100644 index 379a3c35..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/023.png b/public/assets/out/icon-line-pro/christmas/png/023.png deleted file mode 100644 index f21a7840..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/024.png b/public/assets/out/icon-line-pro/christmas/png/024.png deleted file mode 100644 index e7a0db2a..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/025.png b/public/assets/out/icon-line-pro/christmas/png/025.png deleted file mode 100644 index b2603612..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/026.png b/public/assets/out/icon-line-pro/christmas/png/026.png deleted file mode 100644 index 1005fbb4..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/027.png b/public/assets/out/icon-line-pro/christmas/png/027.png deleted file mode 100644 index 57451efa..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/028.png b/public/assets/out/icon-line-pro/christmas/png/028.png deleted file mode 100644 index 7a587a24..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/029.png b/public/assets/out/icon-line-pro/christmas/png/029.png deleted file mode 100644 index 422db22e..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/030.png b/public/assets/out/icon-line-pro/christmas/png/030.png deleted file mode 100644 index cec59ab8..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/031.png b/public/assets/out/icon-line-pro/christmas/png/031.png deleted file mode 100644 index 4d22f8ff..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/032.png b/public/assets/out/icon-line-pro/christmas/png/032.png deleted file mode 100644 index 2410c916..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/033.png b/public/assets/out/icon-line-pro/christmas/png/033.png deleted file mode 100644 index c3174af5..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/034.png b/public/assets/out/icon-line-pro/christmas/png/034.png deleted file mode 100644 index 16d7a848..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/035.png b/public/assets/out/icon-line-pro/christmas/png/035.png deleted file mode 100644 index 083163c9..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/036.png b/public/assets/out/icon-line-pro/christmas/png/036.png deleted file mode 100644 index 6063fee7..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/037.png b/public/assets/out/icon-line-pro/christmas/png/037.png deleted file mode 100644 index 44fd6060..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/038.png b/public/assets/out/icon-line-pro/christmas/png/038.png deleted file mode 100644 index 1e3d17d0..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/039.png b/public/assets/out/icon-line-pro/christmas/png/039.png deleted file mode 100644 index 4d651a08..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/040.png b/public/assets/out/icon-line-pro/christmas/png/040.png deleted file mode 100644 index 3f742f9e..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/041.png b/public/assets/out/icon-line-pro/christmas/png/041.png deleted file mode 100644 index 32637417..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/042.png b/public/assets/out/icon-line-pro/christmas/png/042.png deleted file mode 100644 index 3cd683a3..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/043.png b/public/assets/out/icon-line-pro/christmas/png/043.png deleted file mode 100644 index 560c093f..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/044.png b/public/assets/out/icon-line-pro/christmas/png/044.png deleted file mode 100644 index 08f6b7c3..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/045.png b/public/assets/out/icon-line-pro/christmas/png/045.png deleted file mode 100644 index 59abcc8c..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/046.png b/public/assets/out/icon-line-pro/christmas/png/046.png deleted file mode 100644 index 3e094209..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/047.png b/public/assets/out/icon-line-pro/christmas/png/047.png deleted file mode 100644 index d064b350..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/048.png b/public/assets/out/icon-line-pro/christmas/png/048.png deleted file mode 100644 index 6e29fa97..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/049.png b/public/assets/out/icon-line-pro/christmas/png/049.png deleted file mode 100644 index e759ce7c..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/050.png b/public/assets/out/icon-line-pro/christmas/png/050.png deleted file mode 100644 index 4221dfb1..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/051.png b/public/assets/out/icon-line-pro/christmas/png/051.png deleted file mode 100644 index 2c399df3..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/052.png b/public/assets/out/icon-line-pro/christmas/png/052.png deleted file mode 100644 index f6dfa9ca..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/053.png b/public/assets/out/icon-line-pro/christmas/png/053.png deleted file mode 100644 index 04cf1a92..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/054.png b/public/assets/out/icon-line-pro/christmas/png/054.png deleted file mode 100644 index 16a7ce78..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/055.png b/public/assets/out/icon-line-pro/christmas/png/055.png deleted file mode 100644 index 0dfd00ad..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/056.png b/public/assets/out/icon-line-pro/christmas/png/056.png deleted file mode 100644 index 393d9594..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/057.png b/public/assets/out/icon-line-pro/christmas/png/057.png deleted file mode 100644 index f9ccc642..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/058.png b/public/assets/out/icon-line-pro/christmas/png/058.png deleted file mode 100644 index ae016b4b..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/059.png b/public/assets/out/icon-line-pro/christmas/png/059.png deleted file mode 100644 index dafd3513..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/060.png b/public/assets/out/icon-line-pro/christmas/png/060.png deleted file mode 100644 index 1d42625e..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/061.png b/public/assets/out/icon-line-pro/christmas/png/061.png deleted file mode 100644 index eaff8370..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/062.png b/public/assets/out/icon-line-pro/christmas/png/062.png deleted file mode 100644 index f5a7b7f9..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/063.png b/public/assets/out/icon-line-pro/christmas/png/063.png deleted file mode 100644 index 6d4fe021..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/064.png b/public/assets/out/icon-line-pro/christmas/png/064.png deleted file mode 100644 index 5aa55fb4..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/065.png b/public/assets/out/icon-line-pro/christmas/png/065.png deleted file mode 100644 index de65b69e..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/066.png b/public/assets/out/icon-line-pro/christmas/png/066.png deleted file mode 100644 index d973f64c..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/067.png b/public/assets/out/icon-line-pro/christmas/png/067.png deleted file mode 100644 index ab9154a1..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/068.png b/public/assets/out/icon-line-pro/christmas/png/068.png deleted file mode 100644 index 67ae6881..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/069.png b/public/assets/out/icon-line-pro/christmas/png/069.png deleted file mode 100644 index 389c65dd..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/070.png b/public/assets/out/icon-line-pro/christmas/png/070.png deleted file mode 100644 index e0e08bd7..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/071.png b/public/assets/out/icon-line-pro/christmas/png/071.png deleted file mode 100644 index 1bf68f26..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/072.png b/public/assets/out/icon-line-pro/christmas/png/072.png deleted file mode 100644 index b6725c5c..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/073.png b/public/assets/out/icon-line-pro/christmas/png/073.png deleted file mode 100644 index 32f5eb09..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/074.png b/public/assets/out/icon-line-pro/christmas/png/074.png deleted file mode 100644 index 5e10a3a1..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/075.png b/public/assets/out/icon-line-pro/christmas/png/075.png deleted file mode 100644 index bcc160df..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/076.png b/public/assets/out/icon-line-pro/christmas/png/076.png deleted file mode 100644 index c8d7e7d0..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/077.png b/public/assets/out/icon-line-pro/christmas/png/077.png deleted file mode 100644 index e7fe434a..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/078.png b/public/assets/out/icon-line-pro/christmas/png/078.png deleted file mode 100644 index 07fc8acd..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/079.png b/public/assets/out/icon-line-pro/christmas/png/079.png deleted file mode 100644 index 66c77839..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/080.png b/public/assets/out/icon-line-pro/christmas/png/080.png deleted file mode 100644 index 6d1285d8..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/081.png b/public/assets/out/icon-line-pro/christmas/png/081.png deleted file mode 100644 index 3e56fc91..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/082.png b/public/assets/out/icon-line-pro/christmas/png/082.png deleted file mode 100644 index 546b5567..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/083.png b/public/assets/out/icon-line-pro/christmas/png/083.png deleted file mode 100644 index f6eef740..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/084.png b/public/assets/out/icon-line-pro/christmas/png/084.png deleted file mode 100644 index 22388183..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/085.png b/public/assets/out/icon-line-pro/christmas/png/085.png deleted file mode 100644 index d1b28c77..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/086.png b/public/assets/out/icon-line-pro/christmas/png/086.png deleted file mode 100644 index 5e89331a..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/087.png b/public/assets/out/icon-line-pro/christmas/png/087.png deleted file mode 100644 index 97858156..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/088.png b/public/assets/out/icon-line-pro/christmas/png/088.png deleted file mode 100644 index 8a66e35b..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/089.png b/public/assets/out/icon-line-pro/christmas/png/089.png deleted file mode 100644 index 4ff34462..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/090.png b/public/assets/out/icon-line-pro/christmas/png/090.png deleted file mode 100644 index b3330bbd..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/091.png b/public/assets/out/icon-line-pro/christmas/png/091.png deleted file mode 100644 index 7de6b50f..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/092.png b/public/assets/out/icon-line-pro/christmas/png/092.png deleted file mode 100644 index 02ad39a9..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/093.png b/public/assets/out/icon-line-pro/christmas/png/093.png deleted file mode 100644 index 7991ceaa..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/094.png b/public/assets/out/icon-line-pro/christmas/png/094.png deleted file mode 100644 index 6b29aa09..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/095.png b/public/assets/out/icon-line-pro/christmas/png/095.png deleted file mode 100644 index 546323f0..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/096.png b/public/assets/out/icon-line-pro/christmas/png/096.png deleted file mode 100644 index 770d43da..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/097.png b/public/assets/out/icon-line-pro/christmas/png/097.png deleted file mode 100644 index 60caf263..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/098.png b/public/assets/out/icon-line-pro/christmas/png/098.png deleted file mode 100644 index 654e54a5..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/099.png b/public/assets/out/icon-line-pro/christmas/png/099.png deleted file mode 100644 index c38d9a2b..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/png/100.png b/public/assets/out/icon-line-pro/christmas/png/100.png deleted file mode 100644 index a10c3e11..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/demo.html b/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/demo.html deleted file mode 100644 index 01c08edd..00000000 --- a/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/demo.html +++ /dev/null @@ -1,1441 +0,0 @@ - - - - Cristmas SVG Sprite - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -

      This SVG sprite was created with Fontastic

      - -

      icons reference

      -
        - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      • - - - - - -
      • - -
      - -

      How to add SVG sprite icons to your project?

      - -

      1
      Upload the icons.svg file to your server. In our examples below we assume that the sprite file will be available at: http://yoursite.com/images/icons.svg

      2
      Go to "Icons Reference" and choose an icon that you want to have on your HTML page. Then click and copy its markup to your HTML page. For instance, the markup for a twitter icon could look like this:

      <svg class="icon-twitter"><use xlink:href="#icon-twitter"></use></svg>
      -

      3
      Now it's time to add the sprite file URL to the icon markup. In the example below, the URL is /images/icons.svg. So now the twitter icon markup could look like this:

      <svg class="icon-twitter"><use xlink:href="/images/icons.svg#icon-twitter"></use></svg>
      -

      4
      Add the code below to the CSS file that you use for your html page:

      [class^="icon-"], [class*=" icon-"] {
      -    height: 32px;
      -    width: 32px;
      -    display: inline-block;
      -    fill: currentColor;
      -}
      -

      You can use height and width properties to control icon size. To define icon color use fill property. Note: currentColor keyword inherits the color value of a parent element.

      5
      For IE capability you can use a great polyfill: svg4everybody

      Remember: with Icon Cloud you don't have to worry about IE capability, the sprite file and other stuff. We'll take care of all of that for you, just click the "Publish" button and give it a try.

      - -
      - - - - diff --git a/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/icons.svg b/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/icons.svg deleted file mode 100644 index 3beedab3..00000000 --- a/public/assets/out/icon-line-pro/christmas/webfont/SVG - Font/icons.svg +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.eot b/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.eot deleted file mode 100644 index b53122af..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.svg b/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.svg deleted file mode 100644 index fc6ef0c2..00000000 --- a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.ttf b/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.ttf deleted file mode 100644 index 24fa977f..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.woff b/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.woff deleted file mode 100644 index 622b5a3e..00000000 Binary files a/public/assets/out/icon-line-pro/christmas/webfont/fonts/cristmas.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/christmas/webfont/icons-reference.html b/public/assets/out/icon-line-pro/christmas/webfont/icons-reference.html deleted file mode 100644 index 68c66b20..00000000 --- a/public/assets/out/icon-line-pro/christmas/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Cristmas - - - - - -
      -

      Cristmas

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/christmas/webfont/styles.css b/public/assets/out/icon-line-pro/christmas/webfont/styles.css deleted file mode 100644 index 6cb9f3e2..00000000 --- a/public/assets/out/icon-line-pro/christmas/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "cristmas"; - src:url("fonts/cristmas.eot"); - src:url("fonts/cristmas.eot?#iefix") format("embedded-opentype"), - url("fonts/cristmas.woff") format("woff"), - url("fonts/cristmas.ttf") format("truetype"), - url("fonts/cristmas.svg#cristmas") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "cristmas" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "cristmas" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-015:before { - content: "c"; -} -.icon-002:before { - content: "d"; -} -.icon-003:before { - content: "e"; -} -.icon-016:before { - content: "f"; -} -.icon-017:before { - content: "g"; -} -.icon-004:before { - content: "h"; -} -.icon-005:before { - content: "i"; -} -.icon-018:before { - content: "j"; -} -.icon-019:before { - content: "k"; -} -.icon-006:before { - content: "l"; -} -.icon-007:before { - content: "m"; -} -.icon-020:before { - content: "n"; -} -.icon-021:before { - content: "o"; -} -.icon-008:before { - content: "p"; -} -.icon-009:before { - content: "q"; -} -.icon-022:before { - content: "r"; -} -.icon-023:before { - content: "s"; -} -.icon-010:before { - content: "t"; -} -.icon-011:before { - content: "u"; -} -.icon-024:before { - content: "v"; -} -.icon-025:before { - content: "w"; -} -.icon-012:before { - content: "x"; -} -.icon-013:before { - content: "y"; -} -.icon-026:before { - content: "z"; -} -.icon-039:before { - content: "A"; -} -.icon-038:before { - content: "B"; -} -.icon-051:before { - content: "C"; -} -.icon-052:before { - content: "D"; -} -.icon-065:before { - content: "E"; -} -.icon-064:before { - content: "F"; -} -.icon-063:before { - content: "G"; -} -.icon-050:before { - content: "H"; -} -.icon-037:before { - content: "I"; -} -.icon-036:before { - content: "J"; -} -.icon-049:before { - content: "K"; -} -.icon-062:before { - content: "L"; -} -.icon-061:before { - content: "M"; -} -.icon-048:before { - content: "N"; -} -.icon-035:before { - content: "O"; -} -.icon-034:before { - content: "P"; -} -.icon-047:before { - content: "Q"; -} -.icon-060:before { - content: "R"; -} -.icon-059:before { - content: "S"; -} -.icon-046:before { - content: "T"; -} -.icon-033:before { - content: "U"; -} -.icon-032:before { - content: "V"; -} -.icon-045:before { - content: "W"; -} -.icon-058:before { - content: "X"; -} -.icon-031:before { - content: "Y"; -} -.icon-044:before { - content: "Z"; -} -.icon-057:before { - content: "0"; -} -.icon-056:before { - content: "1"; -} -.icon-043:before { - content: "2"; -} -.icon-030:before { - content: "3"; -} -.icon-029:before { - content: "4"; -} -.icon-042:before { - content: "5"; -} -.icon-055:before { - content: "6"; -} -.icon-054:before { - content: "7"; -} -.icon-041:before { - content: "8"; -} -.icon-028:before { - content: "9"; -} -.icon-027:before { - content: "!"; -} -.icon-040:before { - content: "\""; -} -.icon-053:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-093:before { - content: "'"; -} -.icon-080:before { - content: "("; -} -.icon-067:before { - content: ")"; -} -.icon-068:before { - content: "*"; -} -.icon-081:before { - content: "+"; -} -.icon-094:before { - content: ","; -} -.icon-095:before { - content: "-"; -} -.icon-082:before { - content: "."; -} -.icon-069:before { - content: "/"; -} -.icon-070:before { - content: ":"; -} -.icon-083:before { - content: ";"; -} -.icon-096:before { - content: "<"; -} -.icon-097:before { - content: "="; -} -.icon-084:before { - content: ">"; -} -.icon-071:before { - content: "?"; -} -.icon-072:before { - content: "@"; -} -.icon-085:before { - content: "["; -} -.icon-098:before { - content: "]"; -} -.icon-099:before { - content: "^"; -} -.icon-086:before { - content: "_"; -} -.icon-073:before { - content: "`"; -} -.icon-074:before { - content: "{"; -} -.icon-087:before { - content: "|"; -} -.icon-100:before { - content: "}"; -} -.icon-088:before { - content: "~"; -} -.icon-075:before { - content: "\\"; -} -.icon-076:before { - content: "\e000"; -} -.icon-089:before { - content: "\e001"; -} -.icon-090:before { - content: "\e002"; -} -.icon-077:before { - content: "\e003"; -} -.icon-078:before { - content: "\e004"; -} -.icon-091:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/clothes/png/001.png b/public/assets/out/icon-line-pro/clothes/png/001.png deleted file mode 100644 index f19c33c4..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/002.png b/public/assets/out/icon-line-pro/clothes/png/002.png deleted file mode 100644 index 5eb60368..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/003.png b/public/assets/out/icon-line-pro/clothes/png/003.png deleted file mode 100644 index b8e1148f..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/004.png b/public/assets/out/icon-line-pro/clothes/png/004.png deleted file mode 100644 index a48b4eb0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/005.png b/public/assets/out/icon-line-pro/clothes/png/005.png deleted file mode 100644 index 02025565..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/006.png b/public/assets/out/icon-line-pro/clothes/png/006.png deleted file mode 100644 index b350d727..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/007.png b/public/assets/out/icon-line-pro/clothes/png/007.png deleted file mode 100644 index 5ad4cb38..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/008.png b/public/assets/out/icon-line-pro/clothes/png/008.png deleted file mode 100644 index c8677b3b..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/009.png b/public/assets/out/icon-line-pro/clothes/png/009.png deleted file mode 100644 index 52a08638..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/010.png b/public/assets/out/icon-line-pro/clothes/png/010.png deleted file mode 100644 index 35bdc974..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/011.png b/public/assets/out/icon-line-pro/clothes/png/011.png deleted file mode 100644 index 21b1337a..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/012.png b/public/assets/out/icon-line-pro/clothes/png/012.png deleted file mode 100644 index 509be7c0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/013.png b/public/assets/out/icon-line-pro/clothes/png/013.png deleted file mode 100644 index 301caa18..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/014.png b/public/assets/out/icon-line-pro/clothes/png/014.png deleted file mode 100644 index 520fab00..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/015.png b/public/assets/out/icon-line-pro/clothes/png/015.png deleted file mode 100644 index d9e1cbb6..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/016.png b/public/assets/out/icon-line-pro/clothes/png/016.png deleted file mode 100644 index 399a8ba8..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/017.png b/public/assets/out/icon-line-pro/clothes/png/017.png deleted file mode 100644 index 7a451a1f..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/018.png b/public/assets/out/icon-line-pro/clothes/png/018.png deleted file mode 100644 index 1f70b888..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/019.png b/public/assets/out/icon-line-pro/clothes/png/019.png deleted file mode 100644 index cf95ecd5..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/020.png b/public/assets/out/icon-line-pro/clothes/png/020.png deleted file mode 100644 index f566384d..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/021.png b/public/assets/out/icon-line-pro/clothes/png/021.png deleted file mode 100644 index e95ca099..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/022.png b/public/assets/out/icon-line-pro/clothes/png/022.png deleted file mode 100644 index e269033f..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/023.png b/public/assets/out/icon-line-pro/clothes/png/023.png deleted file mode 100644 index d0004b7b..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/024.png b/public/assets/out/icon-line-pro/clothes/png/024.png deleted file mode 100644 index b4f0e422..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/025.png b/public/assets/out/icon-line-pro/clothes/png/025.png deleted file mode 100644 index bd922795..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/026.png b/public/assets/out/icon-line-pro/clothes/png/026.png deleted file mode 100644 index d23f3e13..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/027.png b/public/assets/out/icon-line-pro/clothes/png/027.png deleted file mode 100644 index edc6f15e..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/028.png b/public/assets/out/icon-line-pro/clothes/png/028.png deleted file mode 100644 index 6bac9c60..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/029.png b/public/assets/out/icon-line-pro/clothes/png/029.png deleted file mode 100644 index 5e3d5389..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/030.png b/public/assets/out/icon-line-pro/clothes/png/030.png deleted file mode 100644 index 4cf671a2..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/031.png b/public/assets/out/icon-line-pro/clothes/png/031.png deleted file mode 100644 index 13a19e73..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/032.png b/public/assets/out/icon-line-pro/clothes/png/032.png deleted file mode 100644 index 6dbc4c7b..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/033.png b/public/assets/out/icon-line-pro/clothes/png/033.png deleted file mode 100644 index fa10214f..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/034.png b/public/assets/out/icon-line-pro/clothes/png/034.png deleted file mode 100644 index 93fe5c46..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/035.png b/public/assets/out/icon-line-pro/clothes/png/035.png deleted file mode 100644 index bbefa809..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/036.png b/public/assets/out/icon-line-pro/clothes/png/036.png deleted file mode 100644 index 0f8fa6f0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/037.png b/public/assets/out/icon-line-pro/clothes/png/037.png deleted file mode 100644 index 8a34b024..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/038.png b/public/assets/out/icon-line-pro/clothes/png/038.png deleted file mode 100644 index dde15d04..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/039.png b/public/assets/out/icon-line-pro/clothes/png/039.png deleted file mode 100644 index a77eb011..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/040.png b/public/assets/out/icon-line-pro/clothes/png/040.png deleted file mode 100644 index df9de071..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/041.png b/public/assets/out/icon-line-pro/clothes/png/041.png deleted file mode 100644 index 5aaf43c3..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/042.png b/public/assets/out/icon-line-pro/clothes/png/042.png deleted file mode 100644 index e6235406..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/043.png b/public/assets/out/icon-line-pro/clothes/png/043.png deleted file mode 100644 index 772c0fe0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/044.png b/public/assets/out/icon-line-pro/clothes/png/044.png deleted file mode 100644 index a9a99c05..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/045.png b/public/assets/out/icon-line-pro/clothes/png/045.png deleted file mode 100644 index 95ec6c4b..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/046.png b/public/assets/out/icon-line-pro/clothes/png/046.png deleted file mode 100644 index a763a617..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/047.png b/public/assets/out/icon-line-pro/clothes/png/047.png deleted file mode 100644 index 22b42c99..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/048.png b/public/assets/out/icon-line-pro/clothes/png/048.png deleted file mode 100644 index e744deb6..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/049.png b/public/assets/out/icon-line-pro/clothes/png/049.png deleted file mode 100644 index 60c6400e..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/050.png b/public/assets/out/icon-line-pro/clothes/png/050.png deleted file mode 100644 index 38a9303c..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/051.png b/public/assets/out/icon-line-pro/clothes/png/051.png deleted file mode 100644 index e0d03de8..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/052.png b/public/assets/out/icon-line-pro/clothes/png/052.png deleted file mode 100644 index 5cee72c9..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/053.png b/public/assets/out/icon-line-pro/clothes/png/053.png deleted file mode 100644 index 1d6a7eca..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/054.png b/public/assets/out/icon-line-pro/clothes/png/054.png deleted file mode 100644 index 3c378e0f..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/055.png b/public/assets/out/icon-line-pro/clothes/png/055.png deleted file mode 100644 index 46adea78..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/056.png b/public/assets/out/icon-line-pro/clothes/png/056.png deleted file mode 100644 index a096bc06..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/057.png b/public/assets/out/icon-line-pro/clothes/png/057.png deleted file mode 100644 index 4a037458..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/058.png b/public/assets/out/icon-line-pro/clothes/png/058.png deleted file mode 100644 index 5f543467..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/059.png b/public/assets/out/icon-line-pro/clothes/png/059.png deleted file mode 100644 index 644a2f71..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/060.png b/public/assets/out/icon-line-pro/clothes/png/060.png deleted file mode 100644 index cba8b88c..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/061.png b/public/assets/out/icon-line-pro/clothes/png/061.png deleted file mode 100644 index cc472d51..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/062.png b/public/assets/out/icon-line-pro/clothes/png/062.png deleted file mode 100644 index a17be7b8..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/063.png b/public/assets/out/icon-line-pro/clothes/png/063.png deleted file mode 100644 index 67f1b7f8..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/064.png b/public/assets/out/icon-line-pro/clothes/png/064.png deleted file mode 100644 index 9451138c..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/065.png b/public/assets/out/icon-line-pro/clothes/png/065.png deleted file mode 100644 index 244b02ad..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/066.png b/public/assets/out/icon-line-pro/clothes/png/066.png deleted file mode 100644 index 9c233895..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/067.png b/public/assets/out/icon-line-pro/clothes/png/067.png deleted file mode 100644 index 6d807d6c..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/068.png b/public/assets/out/icon-line-pro/clothes/png/068.png deleted file mode 100644 index 6ebe4e18..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/069.png b/public/assets/out/icon-line-pro/clothes/png/069.png deleted file mode 100644 index 1808f9e9..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/070.png b/public/assets/out/icon-line-pro/clothes/png/070.png deleted file mode 100644 index c3961bdf..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/071.png b/public/assets/out/icon-line-pro/clothes/png/071.png deleted file mode 100644 index 187b4212..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/072.png b/public/assets/out/icon-line-pro/clothes/png/072.png deleted file mode 100644 index b46d89b4..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/073.png b/public/assets/out/icon-line-pro/clothes/png/073.png deleted file mode 100644 index 229674bf..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/074.png b/public/assets/out/icon-line-pro/clothes/png/074.png deleted file mode 100644 index 9c717262..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/075.png b/public/assets/out/icon-line-pro/clothes/png/075.png deleted file mode 100644 index 34251ae5..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/076.png b/public/assets/out/icon-line-pro/clothes/png/076.png deleted file mode 100644 index 2d97d18d..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/077.png b/public/assets/out/icon-line-pro/clothes/png/077.png deleted file mode 100644 index bd034ada..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/078.png b/public/assets/out/icon-line-pro/clothes/png/078.png deleted file mode 100644 index 9a1d7eef..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/079.png b/public/assets/out/icon-line-pro/clothes/png/079.png deleted file mode 100644 index c6114803..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/080.png b/public/assets/out/icon-line-pro/clothes/png/080.png deleted file mode 100644 index 7b68e511..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/081.png b/public/assets/out/icon-line-pro/clothes/png/081.png deleted file mode 100644 index 1140af74..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/082.png b/public/assets/out/icon-line-pro/clothes/png/082.png deleted file mode 100644 index e756bdb0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/083.png b/public/assets/out/icon-line-pro/clothes/png/083.png deleted file mode 100644 index 2327f1ab..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/084.png b/public/assets/out/icon-line-pro/clothes/png/084.png deleted file mode 100644 index ea93c340..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/085.png b/public/assets/out/icon-line-pro/clothes/png/085.png deleted file mode 100644 index ad14a0c3..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/086.png b/public/assets/out/icon-line-pro/clothes/png/086.png deleted file mode 100644 index c6191df0..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/087.png b/public/assets/out/icon-line-pro/clothes/png/087.png deleted file mode 100644 index 0e538153..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/088.png b/public/assets/out/icon-line-pro/clothes/png/088.png deleted file mode 100644 index d0a59254..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/089.png b/public/assets/out/icon-line-pro/clothes/png/089.png deleted file mode 100644 index fc9305ab..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/090.png b/public/assets/out/icon-line-pro/clothes/png/090.png deleted file mode 100644 index 581a534c..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/091.png b/public/assets/out/icon-line-pro/clothes/png/091.png deleted file mode 100644 index 42fc5e23..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/092.png b/public/assets/out/icon-line-pro/clothes/png/092.png deleted file mode 100644 index 2c926f35..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/093.png b/public/assets/out/icon-line-pro/clothes/png/093.png deleted file mode 100644 index 594eb02b..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/094.png b/public/assets/out/icon-line-pro/clothes/png/094.png deleted file mode 100644 index d31071ad..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/095.png b/public/assets/out/icon-line-pro/clothes/png/095.png deleted file mode 100644 index 6f12a9db..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/096.png b/public/assets/out/icon-line-pro/clothes/png/096.png deleted file mode 100644 index 56b0e864..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/097.png b/public/assets/out/icon-line-pro/clothes/png/097.png deleted file mode 100644 index 58c57fa9..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/098.png b/public/assets/out/icon-line-pro/clothes/png/098.png deleted file mode 100644 index 36b6c322..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/099.png b/public/assets/out/icon-line-pro/clothes/png/099.png deleted file mode 100644 index 0a8f6082..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/png/100.png b/public/assets/out/icon-line-pro/clothes/png/100.png deleted file mode 100644 index 70eca6f2..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.eot b/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.eot deleted file mode 100644 index d92c4fa2..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.svg b/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.svg deleted file mode 100644 index a810289b..00000000 --- a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.ttf b/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.ttf deleted file mode 100644 index 14fcea13..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.woff b/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.woff deleted file mode 100644 index f031925d..00000000 Binary files a/public/assets/out/icon-line-pro/clothes/webfont/fonts/clothes.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/clothes/webfont/icons-reference.html b/public/assets/out/icon-line-pro/clothes/webfont/icons-reference.html deleted file mode 100644 index f837fb2b..00000000 --- a/public/assets/out/icon-line-pro/clothes/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Clothes - - - - - -
      -

      Clothes

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/clothes/webfont/styles.css b/public/assets/out/icon-line-pro/clothes/webfont/styles.css deleted file mode 100644 index d911e792..00000000 --- a/public/assets/out/icon-line-pro/clothes/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "clothes"; - src:url("fonts/clothes.eot"); - src:url("fonts/clothes.eot?#iefix") format("embedded-opentype"), - url("fonts/clothes.woff") format("woff"), - url("fonts/clothes.ttf") format("truetype"), - url("fonts/clothes.svg#clothes") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "clothes" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "clothes" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-014:before { - content: "a"; -} -.icon-027:before { - content: "b"; -} -.icon-040:before { - content: "c"; -} -.icon-053:before { - content: "d"; -} -.icon-066:before { - content: "e"; -} -.icon-079:before { - content: "f"; -} -.icon-092:before { - content: "g"; -} -.icon-093:before { - content: "h"; -} -.icon-080:before { - content: "i"; -} -.icon-067:before { - content: "j"; -} -.icon-054:before { - content: "k"; -} -.icon-041:before { - content: "l"; -} -.icon-028:before { - content: "m"; -} -.icon-015:before { - content: "n"; -} -.icon-016:before { - content: "o"; -} -.icon-029:before { - content: "p"; -} -.icon-042:before { - content: "q"; -} -.icon-055:before { - content: "r"; -} -.icon-068:before { - content: "s"; -} -.icon-081:before { - content: "t"; -} -.icon-094:before { - content: "u"; -} -.icon-095:before { - content: "v"; -} -.icon-082:before { - content: "w"; -} -.icon-083:before { - content: "x"; -} -.icon-096:before { - content: "y"; -} -.icon-097:before { - content: "z"; -} -.icon-084:before { - content: "A"; -} -.icon-085:before { - content: "B"; -} -.icon-098:before { - content: "C"; -} -.icon-099:before { - content: "D"; -} -.icon-086:before { - content: "E"; -} -.icon-087:before { - content: "F"; -} -.icon-100:before { - content: "G"; -} -.icon-088:before { - content: "H"; -} -.icon-089:before { - content: "I"; -} -.icon-090:before { - content: "J"; -} -.icon-091:before { - content: "K"; -} -.icon-078:before { - content: "L"; -} -.icon-077:before { - content: "M"; -} -.icon-076:before { - content: "N"; -} -.icon-075:before { - content: "O"; -} -.icon-074:before { - content: "P"; -} -.icon-073:before { - content: "Q"; -} -.icon-072:before { - content: "R"; -} -.icon-071:before { - content: "S"; -} -.icon-070:before { - content: "T"; -} -.icon-069:before { - content: "U"; -} -.icon-056:before { - content: "V"; -} -.icon-043:before { - content: "W"; -} -.icon-030:before { - content: "X"; -} -.icon-017:before { - content: "Y"; -} -.icon-018:before { - content: "Z"; -} -.icon-031:before { - content: "0"; -} -.icon-044:before { - content: "1"; -} -.icon-057:before { - content: "2"; -} -.icon-058:before { - content: "3"; -} -.icon-045:before { - content: "4"; -} -.icon-032:before { - content: "5"; -} -.icon-019:before { - content: "6"; -} -.icon-020:before { - content: "7"; -} -.icon-033:before { - content: "8"; -} -.icon-046:before { - content: "9"; -} -.icon-059:before { - content: "!"; -} -.icon-060:before { - content: "\""; -} -.icon-047:before { - content: "#"; -} -.icon-034:before { - content: "$"; -} -.icon-021:before { - content: "%"; -} -.icon-022:before { - content: "&"; -} -.icon-035:before { - content: "'"; -} -.icon-048:before { - content: "("; -} -.icon-061:before { - content: ")"; -} -.icon-062:before { - content: "*"; -} -.icon-049:before { - content: "+"; -} -.icon-036:before { - content: ","; -} -.icon-023:before { - content: "-"; -} -.icon-024:before { - content: "."; -} -.icon-037:before { - content: "/"; -} -.icon-050:before { - content: ":"; -} -.icon-063:before { - content: ";"; -} -.icon-064:before { - content: "<"; -} -.icon-051:before { - content: "="; -} -.icon-038:before { - content: ">"; -} -.icon-025:before { - content: "?"; -} -.icon-026:before { - content: "@"; -} -.icon-039:before { - content: "["; -} -.icon-052:before { - content: "]"; -} -.icon-065:before { - content: "^"; -} -.icon-001:before { - content: "_"; -} -.icon-002:before { - content: "`"; -} -.icon-003:before { - content: "{"; -} -.icon-004:before { - content: "|"; -} -.icon-005:before { - content: "}"; -} -.icon-006:before { - content: "~"; -} -.icon-007:before { - content: "\\"; -} -.icon-008:before { - content: "\e000"; -} -.icon-009:before { - content: "\e001"; -} -.icon-010:before { - content: "\e002"; -} -.icon-011:before { - content: "\e003"; -} -.icon-012:before { - content: "\e004"; -} -.icon-013:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/communication/png/001.png b/public/assets/out/icon-line-pro/communication/png/001.png deleted file mode 100644 index 5a207f68..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/002.png b/public/assets/out/icon-line-pro/communication/png/002.png deleted file mode 100644 index 41b3e094..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/003.png b/public/assets/out/icon-line-pro/communication/png/003.png deleted file mode 100644 index 743fee77..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/004.png b/public/assets/out/icon-line-pro/communication/png/004.png deleted file mode 100644 index 06577adb..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/005.png b/public/assets/out/icon-line-pro/communication/png/005.png deleted file mode 100644 index c7ebb5f7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/006.png b/public/assets/out/icon-line-pro/communication/png/006.png deleted file mode 100644 index 5ef77900..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/007.png b/public/assets/out/icon-line-pro/communication/png/007.png deleted file mode 100644 index 41fe9393..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/008.png b/public/assets/out/icon-line-pro/communication/png/008.png deleted file mode 100644 index be7d87b0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/009.png b/public/assets/out/icon-line-pro/communication/png/009.png deleted file mode 100644 index 16974eca..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/010.png b/public/assets/out/icon-line-pro/communication/png/010.png deleted file mode 100644 index 73ad7ce1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/011.png b/public/assets/out/icon-line-pro/communication/png/011.png deleted file mode 100644 index a40ef597..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/012.png b/public/assets/out/icon-line-pro/communication/png/012.png deleted file mode 100644 index 5bd545af..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/013.png b/public/assets/out/icon-line-pro/communication/png/013.png deleted file mode 100644 index 23bc59df..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/014.png b/public/assets/out/icon-line-pro/communication/png/014.png deleted file mode 100644 index 63aa37a2..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/015.png b/public/assets/out/icon-line-pro/communication/png/015.png deleted file mode 100644 index 2328a955..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/016.png b/public/assets/out/icon-line-pro/communication/png/016.png deleted file mode 100644 index 20cb3c30..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/017.png b/public/assets/out/icon-line-pro/communication/png/017.png deleted file mode 100644 index 559a09d8..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/018.png b/public/assets/out/icon-line-pro/communication/png/018.png deleted file mode 100644 index a1712392..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/019.png b/public/assets/out/icon-line-pro/communication/png/019.png deleted file mode 100644 index 655d6302..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/020.png b/public/assets/out/icon-line-pro/communication/png/020.png deleted file mode 100644 index 79e051c2..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/021.png b/public/assets/out/icon-line-pro/communication/png/021.png deleted file mode 100644 index b6e3e8f7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/022.png b/public/assets/out/icon-line-pro/communication/png/022.png deleted file mode 100644 index 2e26cb11..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/023.png b/public/assets/out/icon-line-pro/communication/png/023.png deleted file mode 100644 index ab4eeddf..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/024.png b/public/assets/out/icon-line-pro/communication/png/024.png deleted file mode 100644 index 6efcf601..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/025.png b/public/assets/out/icon-line-pro/communication/png/025.png deleted file mode 100644 index 630b9d57..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/026.png b/public/assets/out/icon-line-pro/communication/png/026.png deleted file mode 100644 index 477d7249..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/027.png b/public/assets/out/icon-line-pro/communication/png/027.png deleted file mode 100644 index 36c274ba..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/028.png b/public/assets/out/icon-line-pro/communication/png/028.png deleted file mode 100644 index 2c113cfb..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/029.png b/public/assets/out/icon-line-pro/communication/png/029.png deleted file mode 100644 index 7d622d5c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/030.png b/public/assets/out/icon-line-pro/communication/png/030.png deleted file mode 100644 index 660559cb..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/031.png b/public/assets/out/icon-line-pro/communication/png/031.png deleted file mode 100644 index e53798a1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/032.png b/public/assets/out/icon-line-pro/communication/png/032.png deleted file mode 100644 index 17b00e30..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/033.png b/public/assets/out/icon-line-pro/communication/png/033.png deleted file mode 100644 index 66d1fe63..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/034.png b/public/assets/out/icon-line-pro/communication/png/034.png deleted file mode 100644 index 444444cc..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/035.png b/public/assets/out/icon-line-pro/communication/png/035.png deleted file mode 100644 index bc991723..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/036.png b/public/assets/out/icon-line-pro/communication/png/036.png deleted file mode 100644 index 2ede8b96..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/037.png b/public/assets/out/icon-line-pro/communication/png/037.png deleted file mode 100644 index 23c32b5c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/038.png b/public/assets/out/icon-line-pro/communication/png/038.png deleted file mode 100644 index 28c9a7ab..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/039.png b/public/assets/out/icon-line-pro/communication/png/039.png deleted file mode 100644 index eff32e79..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/040.png b/public/assets/out/icon-line-pro/communication/png/040.png deleted file mode 100644 index 035b4b38..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/041.png b/public/assets/out/icon-line-pro/communication/png/041.png deleted file mode 100644 index 33d8a2cf..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/042.png b/public/assets/out/icon-line-pro/communication/png/042.png deleted file mode 100644 index e4848218..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/043.png b/public/assets/out/icon-line-pro/communication/png/043.png deleted file mode 100644 index 44e89a38..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/044.png b/public/assets/out/icon-line-pro/communication/png/044.png deleted file mode 100644 index 16885f41..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/045.png b/public/assets/out/icon-line-pro/communication/png/045.png deleted file mode 100644 index eabbdb7b..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/046.png b/public/assets/out/icon-line-pro/communication/png/046.png deleted file mode 100644 index 1d7a790a..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/047.png b/public/assets/out/icon-line-pro/communication/png/047.png deleted file mode 100644 index cbed260d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/048.png b/public/assets/out/icon-line-pro/communication/png/048.png deleted file mode 100644 index ba551358..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/049.png b/public/assets/out/icon-line-pro/communication/png/049.png deleted file mode 100644 index 4d6e88e7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/050.png b/public/assets/out/icon-line-pro/communication/png/050.png deleted file mode 100644 index 0d16a244..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/051.png b/public/assets/out/icon-line-pro/communication/png/051.png deleted file mode 100644 index 38c4a02f..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/052.png b/public/assets/out/icon-line-pro/communication/png/052.png deleted file mode 100644 index b156150c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/053.png b/public/assets/out/icon-line-pro/communication/png/053.png deleted file mode 100644 index ff9c419e..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/054.png b/public/assets/out/icon-line-pro/communication/png/054.png deleted file mode 100644 index 0234d142..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/055.png b/public/assets/out/icon-line-pro/communication/png/055.png deleted file mode 100644 index ca9ecad4..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/056.png b/public/assets/out/icon-line-pro/communication/png/056.png deleted file mode 100644 index 20abc715..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/057.png b/public/assets/out/icon-line-pro/communication/png/057.png deleted file mode 100644 index c0bc4dbb..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/058.png b/public/assets/out/icon-line-pro/communication/png/058.png deleted file mode 100644 index d3909bd0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/059.png b/public/assets/out/icon-line-pro/communication/png/059.png deleted file mode 100644 index 460ecc64..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/060.png b/public/assets/out/icon-line-pro/communication/png/060.png deleted file mode 100644 index 405d35a1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/061.png b/public/assets/out/icon-line-pro/communication/png/061.png deleted file mode 100644 index 9f18b1a7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/062.png b/public/assets/out/icon-line-pro/communication/png/062.png deleted file mode 100644 index af38150d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/063.png b/public/assets/out/icon-line-pro/communication/png/063.png deleted file mode 100644 index 2d987964..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/064.png b/public/assets/out/icon-line-pro/communication/png/064.png deleted file mode 100644 index 99568d82..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/065.png b/public/assets/out/icon-line-pro/communication/png/065.png deleted file mode 100644 index c80fcf06..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/066.png b/public/assets/out/icon-line-pro/communication/png/066.png deleted file mode 100644 index 7b52409f..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/067.png b/public/assets/out/icon-line-pro/communication/png/067.png deleted file mode 100644 index 5ab7e065..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/068.png b/public/assets/out/icon-line-pro/communication/png/068.png deleted file mode 100644 index d1657084..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/069.png b/public/assets/out/icon-line-pro/communication/png/069.png deleted file mode 100644 index 495fb161..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/070.png b/public/assets/out/icon-line-pro/communication/png/070.png deleted file mode 100644 index 9dce9c84..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/071.png b/public/assets/out/icon-line-pro/communication/png/071.png deleted file mode 100644 index f2353f54..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/072.png b/public/assets/out/icon-line-pro/communication/png/072.png deleted file mode 100644 index 0d165778..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/073.png b/public/assets/out/icon-line-pro/communication/png/073.png deleted file mode 100644 index 13bc3bcb..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/074.png b/public/assets/out/icon-line-pro/communication/png/074.png deleted file mode 100644 index 614053ef..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/075.png b/public/assets/out/icon-line-pro/communication/png/075.png deleted file mode 100644 index 175be48a..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/076.png b/public/assets/out/icon-line-pro/communication/png/076.png deleted file mode 100644 index 35870429..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/077.png b/public/assets/out/icon-line-pro/communication/png/077.png deleted file mode 100644 index a446aadf..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/078.png b/public/assets/out/icon-line-pro/communication/png/078.png deleted file mode 100644 index ca4b926c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/079.png b/public/assets/out/icon-line-pro/communication/png/079.png deleted file mode 100644 index 0766403c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/080.png b/public/assets/out/icon-line-pro/communication/png/080.png deleted file mode 100644 index 6c494f88..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/081.png b/public/assets/out/icon-line-pro/communication/png/081.png deleted file mode 100644 index 30a49c56..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/082.png b/public/assets/out/icon-line-pro/communication/png/082.png deleted file mode 100644 index 2f39ace5..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/083.png b/public/assets/out/icon-line-pro/communication/png/083.png deleted file mode 100644 index 3a65e34a..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/084.png b/public/assets/out/icon-line-pro/communication/png/084.png deleted file mode 100644 index 1b685701..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/085.png b/public/assets/out/icon-line-pro/communication/png/085.png deleted file mode 100644 index e0dd1fd4..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/086.png b/public/assets/out/icon-line-pro/communication/png/086.png deleted file mode 100644 index a11bbb0e..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/087.png b/public/assets/out/icon-line-pro/communication/png/087.png deleted file mode 100644 index 37cea9ff..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/088.png b/public/assets/out/icon-line-pro/communication/png/088.png deleted file mode 100644 index bd25e52d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/089.png b/public/assets/out/icon-line-pro/communication/png/089.png deleted file mode 100644 index 3642e841..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/090.png b/public/assets/out/icon-line-pro/communication/png/090.png deleted file mode 100644 index d67fd920..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/091.png b/public/assets/out/icon-line-pro/communication/png/091.png deleted file mode 100644 index a0237c65..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/092.png b/public/assets/out/icon-line-pro/communication/png/092.png deleted file mode 100644 index 139667ef..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/093.png b/public/assets/out/icon-line-pro/communication/png/093.png deleted file mode 100644 index e41baccf..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/094.png b/public/assets/out/icon-line-pro/communication/png/094.png deleted file mode 100644 index 136c9b5c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/095.png b/public/assets/out/icon-line-pro/communication/png/095.png deleted file mode 100644 index 0f73f042..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/096.png b/public/assets/out/icon-line-pro/communication/png/096.png deleted file mode 100644 index a4b92594..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/097.png b/public/assets/out/icon-line-pro/communication/png/097.png deleted file mode 100644 index 03b6d8bf..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/098.png b/public/assets/out/icon-line-pro/communication/png/098.png deleted file mode 100644 index 0b35478d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/099.png b/public/assets/out/icon-line-pro/communication/png/099.png deleted file mode 100644 index 4c6ed8ea..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/100.png b/public/assets/out/icon-line-pro/communication/png/100.png deleted file mode 100644 index 5d4473fe..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/101.png b/public/assets/out/icon-line-pro/communication/png/101.png deleted file mode 100644 index bf4714c5..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/102.png b/public/assets/out/icon-line-pro/communication/png/102.png deleted file mode 100644 index ec78fe4d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/103.png b/public/assets/out/icon-line-pro/communication/png/103.png deleted file mode 100644 index a6a05e15..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/104.png b/public/assets/out/icon-line-pro/communication/png/104.png deleted file mode 100644 index c3c776e6..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/105.png b/public/assets/out/icon-line-pro/communication/png/105.png deleted file mode 100644 index 2b059a9a..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/106.png b/public/assets/out/icon-line-pro/communication/png/106.png deleted file mode 100644 index bec721f5..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/107.png b/public/assets/out/icon-line-pro/communication/png/107.png deleted file mode 100644 index e534ea46..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/108.png b/public/assets/out/icon-line-pro/communication/png/108.png deleted file mode 100644 index fa6b37ae..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/109.png b/public/assets/out/icon-line-pro/communication/png/109.png deleted file mode 100644 index 51846995..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/110.png b/public/assets/out/icon-line-pro/communication/png/110.png deleted file mode 100644 index 58ee7ff0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/111.png b/public/assets/out/icon-line-pro/communication/png/111.png deleted file mode 100644 index 05fe719c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/112.png b/public/assets/out/icon-line-pro/communication/png/112.png deleted file mode 100644 index 9fe97dcd..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/113.png b/public/assets/out/icon-line-pro/communication/png/113.png deleted file mode 100644 index f5ec0bd7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/114.png b/public/assets/out/icon-line-pro/communication/png/114.png deleted file mode 100644 index c84151c7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/115.png b/public/assets/out/icon-line-pro/communication/png/115.png deleted file mode 100644 index 9038c58e..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/116.png b/public/assets/out/icon-line-pro/communication/png/116.png deleted file mode 100644 index 09f0be95..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/117.png b/public/assets/out/icon-line-pro/communication/png/117.png deleted file mode 100644 index a2eef257..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/118.png b/public/assets/out/icon-line-pro/communication/png/118.png deleted file mode 100644 index bd833435..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/119.png b/public/assets/out/icon-line-pro/communication/png/119.png deleted file mode 100644 index 28110bf7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/120.png b/public/assets/out/icon-line-pro/communication/png/120.png deleted file mode 100644 index 28e712a1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/121.png b/public/assets/out/icon-line-pro/communication/png/121.png deleted file mode 100644 index eb7cf73c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/122.png b/public/assets/out/icon-line-pro/communication/png/122.png deleted file mode 100644 index 048b0d7f..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/123.png b/public/assets/out/icon-line-pro/communication/png/123.png deleted file mode 100644 index 65db3fc0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/124.png b/public/assets/out/icon-line-pro/communication/png/124.png deleted file mode 100644 index 549ea1ee..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/125.png b/public/assets/out/icon-line-pro/communication/png/125.png deleted file mode 100644 index 27a0e214..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/126.png b/public/assets/out/icon-line-pro/communication/png/126.png deleted file mode 100644 index e5e41596..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/127.png b/public/assets/out/icon-line-pro/communication/png/127.png deleted file mode 100644 index 1d85d3e3..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/128.png b/public/assets/out/icon-line-pro/communication/png/128.png deleted file mode 100644 index ae8b3e14..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/129.png b/public/assets/out/icon-line-pro/communication/png/129.png deleted file mode 100644 index 62b2fe2d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/130.png b/public/assets/out/icon-line-pro/communication/png/130.png deleted file mode 100644 index 08117484..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/131.png b/public/assets/out/icon-line-pro/communication/png/131.png deleted file mode 100644 index 7f2a5099..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/132.png b/public/assets/out/icon-line-pro/communication/png/132.png deleted file mode 100644 index cac29aa7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/133.png b/public/assets/out/icon-line-pro/communication/png/133.png deleted file mode 100644 index c2ef2b41..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/134.png b/public/assets/out/icon-line-pro/communication/png/134.png deleted file mode 100644 index 3db7cb05..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/135.png b/public/assets/out/icon-line-pro/communication/png/135.png deleted file mode 100644 index e4291a3c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/136.png b/public/assets/out/icon-line-pro/communication/png/136.png deleted file mode 100644 index c06add73..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/137.png b/public/assets/out/icon-line-pro/communication/png/137.png deleted file mode 100644 index 9e22057f..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/138.png b/public/assets/out/icon-line-pro/communication/png/138.png deleted file mode 100644 index bf9a3b72..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/139.png b/public/assets/out/icon-line-pro/communication/png/139.png deleted file mode 100644 index 47d5cfb9..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/140.png b/public/assets/out/icon-line-pro/communication/png/140.png deleted file mode 100644 index f04adf54..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/141.png b/public/assets/out/icon-line-pro/communication/png/141.png deleted file mode 100644 index 97b927a6..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/142.png b/public/assets/out/icon-line-pro/communication/png/142.png deleted file mode 100644 index 0289983d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/143.png b/public/assets/out/icon-line-pro/communication/png/143.png deleted file mode 100644 index 90b15c2d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/144.png b/public/assets/out/icon-line-pro/communication/png/144.png deleted file mode 100644 index 104268c2..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/145.png b/public/assets/out/icon-line-pro/communication/png/145.png deleted file mode 100644 index 03436644..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/146.png b/public/assets/out/icon-line-pro/communication/png/146.png deleted file mode 100644 index 81cbd776..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/147.png b/public/assets/out/icon-line-pro/communication/png/147.png deleted file mode 100644 index df2c359b..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/148.png b/public/assets/out/icon-line-pro/communication/png/148.png deleted file mode 100644 index f68fe504..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/149.png b/public/assets/out/icon-line-pro/communication/png/149.png deleted file mode 100644 index 15076a58..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/150.png b/public/assets/out/icon-line-pro/communication/png/150.png deleted file mode 100644 index 84f07df1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/151.png b/public/assets/out/icon-line-pro/communication/png/151.png deleted file mode 100644 index 44910024..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/152.png b/public/assets/out/icon-line-pro/communication/png/152.png deleted file mode 100644 index a3f4c4b9..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/153.png b/public/assets/out/icon-line-pro/communication/png/153.png deleted file mode 100644 index f704f5ab..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/154.png b/public/assets/out/icon-line-pro/communication/png/154.png deleted file mode 100644 index 1ac49d6e..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/155.png b/public/assets/out/icon-line-pro/communication/png/155.png deleted file mode 100644 index cf8d7582..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/156.png b/public/assets/out/icon-line-pro/communication/png/156.png deleted file mode 100644 index 7eb5e749..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/157.png b/public/assets/out/icon-line-pro/communication/png/157.png deleted file mode 100644 index f56a8f2b..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/158.png b/public/assets/out/icon-line-pro/communication/png/158.png deleted file mode 100644 index 080e7848..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/159.png b/public/assets/out/icon-line-pro/communication/png/159.png deleted file mode 100644 index c772d450..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/160.png b/public/assets/out/icon-line-pro/communication/png/160.png deleted file mode 100644 index 3ab6642a..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/161.png b/public/assets/out/icon-line-pro/communication/png/161.png deleted file mode 100644 index f641d6a1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/162.png b/public/assets/out/icon-line-pro/communication/png/162.png deleted file mode 100644 index f394ab59..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/163.png b/public/assets/out/icon-line-pro/communication/png/163.png deleted file mode 100644 index 7830b2e9..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/164.png b/public/assets/out/icon-line-pro/communication/png/164.png deleted file mode 100644 index d8661877..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/165.png b/public/assets/out/icon-line-pro/communication/png/165.png deleted file mode 100644 index c5cc9f8c..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/166.png b/public/assets/out/icon-line-pro/communication/png/166.png deleted file mode 100644 index 15cf3e4f..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/166.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/167.png b/public/assets/out/icon-line-pro/communication/png/167.png deleted file mode 100644 index 2b5ab7c0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/167.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/168.png b/public/assets/out/icon-line-pro/communication/png/168.png deleted file mode 100644 index 760c2917..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/168.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/169.png b/public/assets/out/icon-line-pro/communication/png/169.png deleted file mode 100644 index e1d87aed..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/169.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/170.png b/public/assets/out/icon-line-pro/communication/png/170.png deleted file mode 100644 index c3f877d2..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/170.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/171.png b/public/assets/out/icon-line-pro/communication/png/171.png deleted file mode 100644 index 8f49dd92..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/171.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/172.png b/public/assets/out/icon-line-pro/communication/png/172.png deleted file mode 100644 index 59632b82..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/172.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/173.png b/public/assets/out/icon-line-pro/communication/png/173.png deleted file mode 100644 index ee9a8c30..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/173.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/174.png b/public/assets/out/icon-line-pro/communication/png/174.png deleted file mode 100644 index 42e934c0..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/174.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/175.png b/public/assets/out/icon-line-pro/communication/png/175.png deleted file mode 100644 index 114f6572..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/175.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/176.png b/public/assets/out/icon-line-pro/communication/png/176.png deleted file mode 100644 index 6c622583..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/176.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/177.png b/public/assets/out/icon-line-pro/communication/png/177.png deleted file mode 100644 index e1bdb8e7..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/177.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/178.png b/public/assets/out/icon-line-pro/communication/png/178.png deleted file mode 100644 index d720dd25..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/178.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/179.png b/public/assets/out/icon-line-pro/communication/png/179.png deleted file mode 100644 index 2b7ce09d..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/179.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/png/180.png b/public/assets/out/icon-line-pro/communication/png/180.png deleted file mode 100644 index 7e76e565..00000000 Binary files a/public/assets/out/icon-line-pro/communication/png/180.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.eot b/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.eot deleted file mode 100644 index e12663a1..00000000 Binary files a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.svg b/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.svg deleted file mode 100644 index d4cf4f24..00000000 --- a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.svg +++ /dev/null @@ -1,190 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.ttf b/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.ttf deleted file mode 100644 index adc59764..00000000 Binary files a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.woff b/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.woff deleted file mode 100644 index 8f84d4e4..00000000 Binary files a/public/assets/out/icon-line-pro/communication/webfont/fonts/communication-48-x-48.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/communication/webfont/icons-reference.html b/public/assets/out/icon-line-pro/communication/webfont/icons-reference.html deleted file mode 100644 index d7a57d82..00000000 --- a/public/assets/out/icon-line-pro/communication/webfont/icons-reference.html +++ /dev/null @@ -1,1509 +0,0 @@ - - - - - - - Font Reference - Communication ( 48 x 48 ) - - - - - -
      -

      Communication ( 48 x 48 )

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/communication/webfont/styles.css b/public/assets/out/icon-line-pro/communication/webfont/styles.css deleted file mode 100644 index fd6940a9..00000000 --- a/public/assets/out/icon-line-pro/communication/webfont/styles.css +++ /dev/null @@ -1,580 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "communication-48-x-48"; - src:url("fonts/communication-48-x-48.eot"); - src:url("fonts/communication-48-x-48.eot?#iefix") format("embedded-opentype"), - url("fonts/communication-48-x-48.woff") format("woff"), - url("fonts/communication-48-x-48.ttf") format("truetype"), - url("fonts/communication-48-x-48.svg#communication-48-x-48") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "communication-48-x-48" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "communication-48-x-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-002:before { - content: "b"; -} -.icon-003:before { - content: "c"; -} -.icon-004:before { - content: "d"; -} -.icon-005:before { - content: "e"; -} -.icon-006:before { - content: "f"; -} -.icon-008:before { - content: "g"; -} -.icon-007:before { - content: "h"; -} -.icon-009:before { - content: "i"; -} -.icon-010:before { - content: "j"; -} -.icon-011:before { - content: "k"; -} -.icon-012:before { - content: "l"; -} -.icon-013:before { - content: "m"; -} -.icon-026:before { - content: "n"; -} -.icon-025:before { - content: "o"; -} -.icon-024:before { - content: "p"; -} -.icon-023:before { - content: "q"; -} -.icon-022:before { - content: "r"; -} -.icon-020:before { - content: "s"; -} -.icon-019:before { - content: "t"; -} -.icon-018:before { - content: "u"; -} -.icon-016:before { - content: "v"; -} -.icon-015:before { - content: "w"; -} -.icon-014:before { - content: "x"; -} -.icon-021:before { - content: "y"; -} -.icon-017:before { - content: "z"; -} -.icon-027:before { - content: "A"; -} -.icon-040:before { - content: "B"; -} -.icon-053:before { - content: "C"; -} -.icon-054:before { - content: "D"; -} -.icon-041:before { - content: "E"; -} -.icon-028:before { - content: "F"; -} -.icon-029:before { - content: "G"; -} -.icon-042:before { - content: "H"; -} -.icon-055:before { - content: "I"; -} -.icon-056:before { - content: "J"; -} -.icon-043:before { - content: "K"; -} -.icon-030:before { - content: "L"; -} -.icon-031:before { - content: "M"; -} -.icon-044:before { - content: "N"; -} -.icon-057:before { - content: "O"; -} -.icon-058:before { - content: "P"; -} -.icon-045:before { - content: "Q"; -} -.icon-032:before { - content: "R"; -} -.icon-033:before { - content: "S"; -} -.icon-046:before { - content: "T"; -} -.icon-059:before { - content: "U"; -} -.icon-060:before { - content: "V"; -} -.icon-047:before { - content: "W"; -} -.icon-034:before { - content: "X"; -} -.icon-035:before { - content: "Y"; -} -.icon-048:before { - content: "Z"; -} -.icon-061:before { - content: "0"; -} -.icon-062:before { - content: "1"; -} -.icon-049:before { - content: "2"; -} -.icon-036:before { - content: "3"; -} -.icon-037:before { - content: "4"; -} -.icon-050:before { - content: "5"; -} -.icon-063:before { - content: "6"; -} -.icon-064:before { - content: "7"; -} -.icon-051:before { - content: "8"; -} -.icon-038:before { - content: "9"; -} -.icon-039:before { - content: "!"; -} -.icon-052:before { - content: "\""; -} -.icon-065:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-105:before { - content: "'"; -} -.icon-106:before { - content: "("; -} -.icon-093:before { - content: ")"; -} -.icon-080:before { - content: "*"; -} -.icon-067:before { - content: "+"; -} -.icon-068:before { - content: ","; -} -.icon-081:before { - content: "-"; -} -.icon-082:before { - content: "."; -} -.icon-069:before { - content: "/"; -} -.icon-070:before { - content: ":"; -} -.icon-083:before { - content: ";"; -} -.icon-084:before { - content: "<"; -} -.icon-071:before { - content: "="; -} -.icon-072:before { - content: ">"; -} -.icon-085:before { - content: "?"; -} -.icon-086:before { - content: "@"; -} -.icon-073:before { - content: "["; -} -.icon-074:before { - content: "]"; -} -.icon-087:before { - content: "^"; -} -.icon-088:before { - content: "_"; -} -.icon-075:before { - content: "`"; -} -.icon-076:before { - content: "{"; -} -.icon-089:before { - content: "|"; -} -.icon-090:before { - content: "}"; -} -.icon-077:before { - content: "~"; -} -.icon-078:before { - content: "\\"; -} -.icon-091:before { - content: "\e000"; -} -.icon-104:before { - content: "\e001"; -} -.icon-117:before { - content: "\e002"; -} -.icon-116:before { - content: "\e003"; -} -.icon-103:before { - content: "\e004"; -} -.icon-102:before { - content: "\e005"; -} -.icon-115:before { - content: "\e006"; -} -.icon-114:before { - content: "\e007"; -} -.icon-101:before { - content: "\e008"; -} -.icon-100:before { - content: "\e009"; -} -.icon-113:before { - content: "\e00a"; -} -.icon-112:before { - content: "\e00b"; -} -.icon-099:before { - content: "\e00c"; -} -.icon-098:before { - content: "\e00d"; -} -.icon-111:before { - content: "\e00e"; -} -.icon-110:before { - content: "\e00f"; -} -.icon-097:before { - content: "\e010"; -} -.icon-096:before { - content: "\e011"; -} -.icon-109:before { - content: "\e012"; -} -.icon-108:before { - content: "\e013"; -} -.icon-095:before { - content: "\e014"; -} -.icon-094:before { - content: "\e015"; -} -.icon-107:before { - content: "\e016"; -} -.icon-118:before { - content: "\e017"; -} -.icon-131:before { - content: "\e018"; -} -.icon-144:before { - content: "\e019"; -} -.icon-157:before { - content: "\e01a"; -} -.icon-170:before { - content: "\e01b"; -} -.icon-171:before { - content: "\e01c"; -} -.icon-158:before { - content: "\e01d"; -} -.icon-145:before { - content: "\e01e"; -} -.icon-132:before { - content: "\e01f"; -} -.icon-119:before { - content: "\e020"; -} -.icon-120:before { - content: "\e021"; -} -.icon-133:before { - content: "\e022"; -} -.icon-146:before { - content: "\e023"; -} -.icon-159:before { - content: "\e024"; -} -.icon-172:before { - content: "\e025"; -} -.icon-173:before { - content: "\e026"; -} -.icon-160:before { - content: "\e027"; -} -.icon-147:before { - content: "\e028"; -} -.icon-134:before { - content: "\e029"; -} -.icon-121:before { - content: "\e02a"; -} -.icon-122:before { - content: "\e02b"; -} -.icon-135:before { - content: "\e02c"; -} -.icon-148:before { - content: "\e02d"; -} -.icon-161:before { - content: "\e02e"; -} -.icon-174:before { - content: "\e02f"; -} -.icon-175:before { - content: "\e030"; -} -.icon-162:before { - content: "\e031"; -} -.icon-149:before { - content: "\e032"; -} -.icon-136:before { - content: "\e033"; -} -.icon-123:before { - content: "\e034"; -} -.icon-124:before { - content: "\e035"; -} -.icon-137:before { - content: "\e036"; -} -.icon-150:before { - content: "\e037"; -} -.icon-163:before { - content: "\e038"; -} -.icon-176:before { - content: "\e039"; -} -.icon-177:before { - content: "\e03a"; -} -.icon-164:before { - content: "\e03b"; -} -.icon-151:before { - content: "\e03c"; -} -.icon-138:before { - content: "\e03d"; -} -.icon-125:before { - content: "\e03e"; -} -.icon-126:before { - content: "\e03f"; -} -.icon-139:before { - content: "\e040"; -} -.icon-152:before { - content: "\e041"; -} -.icon-165:before { - content: "\e042"; -} -.icon-178:before { - content: "\e043"; -} -.icon-179:before { - content: "\e044"; -} -.icon-166:before { - content: "\e045"; -} -.icon-153:before { - content: "\e046"; -} -.icon-140:before { - content: "\e047"; -} -.icon-127:before { - content: "\e048"; -} -.icon-128:before { - content: "\e049"; -} -.icon-141:before { - content: "\e04a"; -} -.icon-154:before { - content: "\e04b"; -} -.icon-167:before { - content: "\e04c"; -} -.icon-180:before { - content: "\e04d"; -} -.icon-168:before { - content: "\e04e"; -} -.icon-169:before { - content: "\e04f"; -} -.icon-156:before { - content: "\e050"; -} -.icon-155:before { - content: "\e051"; -} -.icon-142:before { - content: "\e052"; -} -.icon-143:before { - content: "\e053"; -} -.icon-130:before { - content: "\e054"; -} -.icon-129:before { - content: "\e055"; -} diff --git a/public/assets/out/icon-line-pro/education/png/001.png b/public/assets/out/icon-line-pro/education/png/001.png deleted file mode 100644 index af98d180..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/002.png b/public/assets/out/icon-line-pro/education/png/002.png deleted file mode 100644 index e59aadef..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/003.png b/public/assets/out/icon-line-pro/education/png/003.png deleted file mode 100644 index 8dd939cd..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/004.png b/public/assets/out/icon-line-pro/education/png/004.png deleted file mode 100644 index 804cdbdb..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/005.png b/public/assets/out/icon-line-pro/education/png/005.png deleted file mode 100644 index 26aeddde..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/006.png b/public/assets/out/icon-line-pro/education/png/006.png deleted file mode 100644 index 25da423f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/007.png b/public/assets/out/icon-line-pro/education/png/007.png deleted file mode 100644 index 1e2f7fb7..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/008.png b/public/assets/out/icon-line-pro/education/png/008.png deleted file mode 100644 index 9b9fd735..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/009.png b/public/assets/out/icon-line-pro/education/png/009.png deleted file mode 100644 index 16974c93..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/010.png b/public/assets/out/icon-line-pro/education/png/010.png deleted file mode 100644 index 6c4a28b0..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/011.png b/public/assets/out/icon-line-pro/education/png/011.png deleted file mode 100644 index 0dfb6275..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/012.png b/public/assets/out/icon-line-pro/education/png/012.png deleted file mode 100644 index d88eebfb..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/013.png b/public/assets/out/icon-line-pro/education/png/013.png deleted file mode 100644 index b6537ba4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/014.png b/public/assets/out/icon-line-pro/education/png/014.png deleted file mode 100644 index fd3b9ad4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/015.png b/public/assets/out/icon-line-pro/education/png/015.png deleted file mode 100644 index 5a480e8e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/016.png b/public/assets/out/icon-line-pro/education/png/016.png deleted file mode 100644 index 34e0ec47..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/017.png b/public/assets/out/icon-line-pro/education/png/017.png deleted file mode 100644 index c9f1dfed..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/018.png b/public/assets/out/icon-line-pro/education/png/018.png deleted file mode 100644 index fa5c5da4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/019.png b/public/assets/out/icon-line-pro/education/png/019.png deleted file mode 100644 index 4cc780b4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/020.png b/public/assets/out/icon-line-pro/education/png/020.png deleted file mode 100644 index 3b361c8b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/021.png b/public/assets/out/icon-line-pro/education/png/021.png deleted file mode 100644 index c4442a79..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/022.png b/public/assets/out/icon-line-pro/education/png/022.png deleted file mode 100644 index 90fd2f12..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/023.png b/public/assets/out/icon-line-pro/education/png/023.png deleted file mode 100644 index 18c99861..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/024.png b/public/assets/out/icon-line-pro/education/png/024.png deleted file mode 100644 index 79d2daff..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/025.png b/public/assets/out/icon-line-pro/education/png/025.png deleted file mode 100644 index 9d9b447f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/026.png b/public/assets/out/icon-line-pro/education/png/026.png deleted file mode 100644 index b0876078..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/027.png b/public/assets/out/icon-line-pro/education/png/027.png deleted file mode 100644 index 8998c864..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/028.png b/public/assets/out/icon-line-pro/education/png/028.png deleted file mode 100644 index b2becca0..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/029.png b/public/assets/out/icon-line-pro/education/png/029.png deleted file mode 100644 index f400de08..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/030.png b/public/assets/out/icon-line-pro/education/png/030.png deleted file mode 100644 index 24c9c134..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/031.png b/public/assets/out/icon-line-pro/education/png/031.png deleted file mode 100644 index ef977b6a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/032.png b/public/assets/out/icon-line-pro/education/png/032.png deleted file mode 100644 index c5010372..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/033.png b/public/assets/out/icon-line-pro/education/png/033.png deleted file mode 100644 index 6e1aff3c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/034.png b/public/assets/out/icon-line-pro/education/png/034.png deleted file mode 100644 index c1b7df73..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/035.png b/public/assets/out/icon-line-pro/education/png/035.png deleted file mode 100644 index dcfe2ce3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/036.png b/public/assets/out/icon-line-pro/education/png/036.png deleted file mode 100644 index 3dc41eb6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/037.png b/public/assets/out/icon-line-pro/education/png/037.png deleted file mode 100644 index f11cc20c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/038.png b/public/assets/out/icon-line-pro/education/png/038.png deleted file mode 100644 index 222cd706..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/039.png b/public/assets/out/icon-line-pro/education/png/039.png deleted file mode 100644 index 9570d6aa..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/040.png b/public/assets/out/icon-line-pro/education/png/040.png deleted file mode 100644 index 10fb6ee5..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/041.png b/public/assets/out/icon-line-pro/education/png/041.png deleted file mode 100644 index f9f0c8c1..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/042.png b/public/assets/out/icon-line-pro/education/png/042.png deleted file mode 100644 index c5942d21..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/043.png b/public/assets/out/icon-line-pro/education/png/043.png deleted file mode 100644 index ceb8a4ae..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/044.png b/public/assets/out/icon-line-pro/education/png/044.png deleted file mode 100644 index 3397b599..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/045.png b/public/assets/out/icon-line-pro/education/png/045.png deleted file mode 100644 index 28464341..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/046.png b/public/assets/out/icon-line-pro/education/png/046.png deleted file mode 100644 index 79144581..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/047.png b/public/assets/out/icon-line-pro/education/png/047.png deleted file mode 100644 index d471f41b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/048.png b/public/assets/out/icon-line-pro/education/png/048.png deleted file mode 100644 index 07f69bc7..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/049.png b/public/assets/out/icon-line-pro/education/png/049.png deleted file mode 100644 index d54bdf7e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/050.png b/public/assets/out/icon-line-pro/education/png/050.png deleted file mode 100644 index cb1e605f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/051.png b/public/assets/out/icon-line-pro/education/png/051.png deleted file mode 100644 index 0fce289b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/052.png b/public/assets/out/icon-line-pro/education/png/052.png deleted file mode 100644 index 0530ef23..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/053.png b/public/assets/out/icon-line-pro/education/png/053.png deleted file mode 100644 index b16f14f8..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/054.png b/public/assets/out/icon-line-pro/education/png/054.png deleted file mode 100644 index 5a719e60..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/055.png b/public/assets/out/icon-line-pro/education/png/055.png deleted file mode 100644 index b584372a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/056.png b/public/assets/out/icon-line-pro/education/png/056.png deleted file mode 100644 index b4455ade..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/057.png b/public/assets/out/icon-line-pro/education/png/057.png deleted file mode 100644 index 074809e3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/058.png b/public/assets/out/icon-line-pro/education/png/058.png deleted file mode 100644 index 28c22593..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/059.png b/public/assets/out/icon-line-pro/education/png/059.png deleted file mode 100644 index 70355639..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/060.png b/public/assets/out/icon-line-pro/education/png/060.png deleted file mode 100644 index c616270e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/061.png b/public/assets/out/icon-line-pro/education/png/061.png deleted file mode 100644 index 197d683c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/062.png b/public/assets/out/icon-line-pro/education/png/062.png deleted file mode 100644 index be15aa2e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/063.png b/public/assets/out/icon-line-pro/education/png/063.png deleted file mode 100644 index 1e9e1acd..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/064.png b/public/assets/out/icon-line-pro/education/png/064.png deleted file mode 100644 index d7385467..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/065.png b/public/assets/out/icon-line-pro/education/png/065.png deleted file mode 100644 index 577d43da..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/066.png b/public/assets/out/icon-line-pro/education/png/066.png deleted file mode 100644 index f942e416..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/067.png b/public/assets/out/icon-line-pro/education/png/067.png deleted file mode 100644 index 1de68510..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/068.png b/public/assets/out/icon-line-pro/education/png/068.png deleted file mode 100644 index 2434b11d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/069.png b/public/assets/out/icon-line-pro/education/png/069.png deleted file mode 100644 index 935883dc..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/070.png b/public/assets/out/icon-line-pro/education/png/070.png deleted file mode 100644 index fbd5ff28..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/071.png b/public/assets/out/icon-line-pro/education/png/071.png deleted file mode 100644 index e2c69ea1..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/072.png b/public/assets/out/icon-line-pro/education/png/072.png deleted file mode 100644 index 810735cb..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/073.png b/public/assets/out/icon-line-pro/education/png/073.png deleted file mode 100644 index 3391b83d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/074.png b/public/assets/out/icon-line-pro/education/png/074.png deleted file mode 100644 index c68067c2..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/075.png b/public/assets/out/icon-line-pro/education/png/075.png deleted file mode 100644 index c5f6d93a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/076.png b/public/assets/out/icon-line-pro/education/png/076.png deleted file mode 100644 index a4c7b8d3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/077.png b/public/assets/out/icon-line-pro/education/png/077.png deleted file mode 100644 index 3f17bf65..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/078.png b/public/assets/out/icon-line-pro/education/png/078.png deleted file mode 100644 index f1eed153..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/079.png b/public/assets/out/icon-line-pro/education/png/079.png deleted file mode 100644 index b789d954..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/080.png b/public/assets/out/icon-line-pro/education/png/080.png deleted file mode 100644 index 30aeb143..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/081.png b/public/assets/out/icon-line-pro/education/png/081.png deleted file mode 100644 index f20ee89b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/082.png b/public/assets/out/icon-line-pro/education/png/082.png deleted file mode 100644 index b8f2ee85..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/083.png b/public/assets/out/icon-line-pro/education/png/083.png deleted file mode 100644 index 0eb2c782..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/084.png b/public/assets/out/icon-line-pro/education/png/084.png deleted file mode 100644 index 1fee518a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/085.png b/public/assets/out/icon-line-pro/education/png/085.png deleted file mode 100644 index 1ca04873..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/086.png b/public/assets/out/icon-line-pro/education/png/086.png deleted file mode 100644 index 93d8ca0f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/087.png b/public/assets/out/icon-line-pro/education/png/087.png deleted file mode 100644 index cf2a5b58..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/088.png b/public/assets/out/icon-line-pro/education/png/088.png deleted file mode 100644 index f582a195..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/089.png b/public/assets/out/icon-line-pro/education/png/089.png deleted file mode 100644 index 2ead0c3f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/090.png b/public/assets/out/icon-line-pro/education/png/090.png deleted file mode 100644 index 2039255f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/091.png b/public/assets/out/icon-line-pro/education/png/091.png deleted file mode 100644 index 54a3a4d5..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/092.png b/public/assets/out/icon-line-pro/education/png/092.png deleted file mode 100644 index e283f71a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/093.png b/public/assets/out/icon-line-pro/education/png/093.png deleted file mode 100644 index f71f1d7e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/094.png b/public/assets/out/icon-line-pro/education/png/094.png deleted file mode 100644 index 2858d89d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/095.png b/public/assets/out/icon-line-pro/education/png/095.png deleted file mode 100644 index 642785ae..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/096.png b/public/assets/out/icon-line-pro/education/png/096.png deleted file mode 100644 index 8ffe002c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/097.png b/public/assets/out/icon-line-pro/education/png/097.png deleted file mode 100644 index b2af90ef..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/098.png b/public/assets/out/icon-line-pro/education/png/098.png deleted file mode 100644 index 4863cba4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/099.png b/public/assets/out/icon-line-pro/education/png/099.png deleted file mode 100644 index fab3f66e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/100.png b/public/assets/out/icon-line-pro/education/png/100.png deleted file mode 100644 index 875cc615..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/101.png b/public/assets/out/icon-line-pro/education/png/101.png deleted file mode 100644 index 54919b8c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/102.png b/public/assets/out/icon-line-pro/education/png/102.png deleted file mode 100644 index 0d0202a9..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/103.png b/public/assets/out/icon-line-pro/education/png/103.png deleted file mode 100644 index d2fa57f2..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/104.png b/public/assets/out/icon-line-pro/education/png/104.png deleted file mode 100644 index f439603f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/105.png b/public/assets/out/icon-line-pro/education/png/105.png deleted file mode 100644 index 7eff52c2..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/106.png b/public/assets/out/icon-line-pro/education/png/106.png deleted file mode 100644 index 28864ff8..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/107.png b/public/assets/out/icon-line-pro/education/png/107.png deleted file mode 100644 index 6169e2b3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/108.png b/public/assets/out/icon-line-pro/education/png/108.png deleted file mode 100644 index 6a4107de..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/109.png b/public/assets/out/icon-line-pro/education/png/109.png deleted file mode 100644 index 70b8456a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/110.png b/public/assets/out/icon-line-pro/education/png/110.png deleted file mode 100644 index 5f2c9269..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/111.png b/public/assets/out/icon-line-pro/education/png/111.png deleted file mode 100644 index 870774e7..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/112.png b/public/assets/out/icon-line-pro/education/png/112.png deleted file mode 100644 index 291e8e75..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/113.png b/public/assets/out/icon-line-pro/education/png/113.png deleted file mode 100644 index 273ae2aa..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/114.png b/public/assets/out/icon-line-pro/education/png/114.png deleted file mode 100644 index 1a4202b6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/115.png b/public/assets/out/icon-line-pro/education/png/115.png deleted file mode 100644 index 1e5c578b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/116.png b/public/assets/out/icon-line-pro/education/png/116.png deleted file mode 100644 index 90c6c66c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/117.png b/public/assets/out/icon-line-pro/education/png/117.png deleted file mode 100644 index b2989b48..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/118.png b/public/assets/out/icon-line-pro/education/png/118.png deleted file mode 100644 index 2ac54591..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/119.png b/public/assets/out/icon-line-pro/education/png/119.png deleted file mode 100644 index c2f6e6f9..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/120.png b/public/assets/out/icon-line-pro/education/png/120.png deleted file mode 100644 index ade2774b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/121.png b/public/assets/out/icon-line-pro/education/png/121.png deleted file mode 100644 index 503d57d2..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/122.png b/public/assets/out/icon-line-pro/education/png/122.png deleted file mode 100644 index 5ec0aed4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/123.png b/public/assets/out/icon-line-pro/education/png/123.png deleted file mode 100644 index 5dc64555..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/124.png b/public/assets/out/icon-line-pro/education/png/124.png deleted file mode 100644 index 92d73704..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/125.png b/public/assets/out/icon-line-pro/education/png/125.png deleted file mode 100644 index 56e724aa..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/126.png b/public/assets/out/icon-line-pro/education/png/126.png deleted file mode 100644 index a18e9146..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/127.png b/public/assets/out/icon-line-pro/education/png/127.png deleted file mode 100644 index cb2f111f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/128.png b/public/assets/out/icon-line-pro/education/png/128.png deleted file mode 100644 index 2d26e8f6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/129.png b/public/assets/out/icon-line-pro/education/png/129.png deleted file mode 100644 index a2d55ff3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/130.png b/public/assets/out/icon-line-pro/education/png/130.png deleted file mode 100644 index 455b15a9..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/131.png b/public/assets/out/icon-line-pro/education/png/131.png deleted file mode 100644 index 37c30144..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/132.png b/public/assets/out/icon-line-pro/education/png/132.png deleted file mode 100644 index 9c32e5e1..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/133.png b/public/assets/out/icon-line-pro/education/png/133.png deleted file mode 100644 index 555472fe..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/134.png b/public/assets/out/icon-line-pro/education/png/134.png deleted file mode 100644 index 93179b65..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/135.png b/public/assets/out/icon-line-pro/education/png/135.png deleted file mode 100644 index 1be58a84..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/136.png b/public/assets/out/icon-line-pro/education/png/136.png deleted file mode 100644 index 1b301988..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/137.png b/public/assets/out/icon-line-pro/education/png/137.png deleted file mode 100644 index 27652095..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/138.png b/public/assets/out/icon-line-pro/education/png/138.png deleted file mode 100644 index 06b674e0..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/139.png b/public/assets/out/icon-line-pro/education/png/139.png deleted file mode 100644 index 81108fb5..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/140.png b/public/assets/out/icon-line-pro/education/png/140.png deleted file mode 100644 index 4ac3a4d0..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/141.png b/public/assets/out/icon-line-pro/education/png/141.png deleted file mode 100644 index e6dbd913..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/142.png b/public/assets/out/icon-line-pro/education/png/142.png deleted file mode 100644 index 8a7f92b6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/143.png b/public/assets/out/icon-line-pro/education/png/143.png deleted file mode 100644 index c2f2f68a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/144.png b/public/assets/out/icon-line-pro/education/png/144.png deleted file mode 100644 index eb9ed8f7..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/145.png b/public/assets/out/icon-line-pro/education/png/145.png deleted file mode 100644 index 6a15ae01..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/146.png b/public/assets/out/icon-line-pro/education/png/146.png deleted file mode 100644 index 2fc04f1e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/147.png b/public/assets/out/icon-line-pro/education/png/147.png deleted file mode 100644 index 1727da3c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/148.png b/public/assets/out/icon-line-pro/education/png/148.png deleted file mode 100644 index 303a4a0e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/149.png b/public/assets/out/icon-line-pro/education/png/149.png deleted file mode 100644 index ab74d310..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/150.png b/public/assets/out/icon-line-pro/education/png/150.png deleted file mode 100644 index ddacf262..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/151.png b/public/assets/out/icon-line-pro/education/png/151.png deleted file mode 100644 index c48a026a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/152.png b/public/assets/out/icon-line-pro/education/png/152.png deleted file mode 100644 index ba69a73f..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/153.png b/public/assets/out/icon-line-pro/education/png/153.png deleted file mode 100644 index 97917eed..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/154.png b/public/assets/out/icon-line-pro/education/png/154.png deleted file mode 100644 index 61884e19..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/155.png b/public/assets/out/icon-line-pro/education/png/155.png deleted file mode 100644 index 457ab408..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/156.png b/public/assets/out/icon-line-pro/education/png/156.png deleted file mode 100644 index f8d4aaea..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/157.png b/public/assets/out/icon-line-pro/education/png/157.png deleted file mode 100644 index 377b9acb..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/158.png b/public/assets/out/icon-line-pro/education/png/158.png deleted file mode 100644 index 62333c91..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/159.png b/public/assets/out/icon-line-pro/education/png/159.png deleted file mode 100644 index bb0547a4..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/160.png b/public/assets/out/icon-line-pro/education/png/160.png deleted file mode 100644 index 3dd400a6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/161.png b/public/assets/out/icon-line-pro/education/png/161.png deleted file mode 100644 index 08e0554c..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/162.png b/public/assets/out/icon-line-pro/education/png/162.png deleted file mode 100644 index ffef2d9d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/163.png b/public/assets/out/icon-line-pro/education/png/163.png deleted file mode 100644 index 56d4da33..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/164.png b/public/assets/out/icon-line-pro/education/png/164.png deleted file mode 100644 index 61bcab13..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/165.png b/public/assets/out/icon-line-pro/education/png/165.png deleted file mode 100644 index 28425549..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/166.png b/public/assets/out/icon-line-pro/education/png/166.png deleted file mode 100644 index b06b1175..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/166.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/167.png b/public/assets/out/icon-line-pro/education/png/167.png deleted file mode 100644 index f2ac759d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/167.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/168.png b/public/assets/out/icon-line-pro/education/png/168.png deleted file mode 100644 index ab5dceaa..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/168.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/169.png b/public/assets/out/icon-line-pro/education/png/169.png deleted file mode 100644 index d23d9d9a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/169.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/170.png b/public/assets/out/icon-line-pro/education/png/170.png deleted file mode 100644 index 1930dd61..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/170.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/171.png b/public/assets/out/icon-line-pro/education/png/171.png deleted file mode 100644 index c4b7801d..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/171.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/172.png b/public/assets/out/icon-line-pro/education/png/172.png deleted file mode 100644 index 6f08dd73..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/172.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/173.png b/public/assets/out/icon-line-pro/education/png/173.png deleted file mode 100644 index 6ed0ccf3..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/173.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/174.png b/public/assets/out/icon-line-pro/education/png/174.png deleted file mode 100644 index afa5873b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/174.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/175.png b/public/assets/out/icon-line-pro/education/png/175.png deleted file mode 100644 index 43360786..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/175.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/176.png b/public/assets/out/icon-line-pro/education/png/176.png deleted file mode 100644 index eec7fa56..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/176.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/177.png b/public/assets/out/icon-line-pro/education/png/177.png deleted file mode 100644 index 3b1dadb6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/177.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/178.png b/public/assets/out/icon-line-pro/education/png/178.png deleted file mode 100644 index 0eedc46b..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/178.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/179.png b/public/assets/out/icon-line-pro/education/png/179.png deleted file mode 100644 index 2f59c76a..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/179.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/180.png b/public/assets/out/icon-line-pro/education/png/180.png deleted file mode 100644 index 13bf86d2..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/180.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/181.png b/public/assets/out/icon-line-pro/education/png/181.png deleted file mode 100644 index 2b1454ab..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/181.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/182.png b/public/assets/out/icon-line-pro/education/png/182.png deleted file mode 100644 index 4752795e..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/182.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/183.png b/public/assets/out/icon-line-pro/education/png/183.png deleted file mode 100644 index 12fb6ddb..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/183.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/184.png b/public/assets/out/icon-line-pro/education/png/184.png deleted file mode 100644 index 812d3b65..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/184.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/185.png b/public/assets/out/icon-line-pro/education/png/185.png deleted file mode 100644 index 75c43038..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/185.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/186.png b/public/assets/out/icon-line-pro/education/png/186.png deleted file mode 100644 index 0afb5768..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/186.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/187.png b/public/assets/out/icon-line-pro/education/png/187.png deleted file mode 100644 index c868adae..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/187.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/188.png b/public/assets/out/icon-line-pro/education/png/188.png deleted file mode 100644 index 6e1112de..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/188.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/189.png b/public/assets/out/icon-line-pro/education/png/189.png deleted file mode 100644 index 789621ff..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/189.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/190.png b/public/assets/out/icon-line-pro/education/png/190.png deleted file mode 100644 index 276a2f54..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/190.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/191.png b/public/assets/out/icon-line-pro/education/png/191.png deleted file mode 100644 index ba1be2d6..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/191.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/192.png b/public/assets/out/icon-line-pro/education/png/192.png deleted file mode 100644 index 34ee8c62..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/192.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/193.png b/public/assets/out/icon-line-pro/education/png/193.png deleted file mode 100644 index a8dfee11..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/193.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/194.png b/public/assets/out/icon-line-pro/education/png/194.png deleted file mode 100644 index df0676c5..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/194.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/195.png b/public/assets/out/icon-line-pro/education/png/195.png deleted file mode 100644 index a009acf5..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/195.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/196.png b/public/assets/out/icon-line-pro/education/png/196.png deleted file mode 100644 index f8cc8ccf..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/196.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/197.png b/public/assets/out/icon-line-pro/education/png/197.png deleted file mode 100644 index 25680048..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/197.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/198.png b/public/assets/out/icon-line-pro/education/png/198.png deleted file mode 100644 index 098a24c0..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/198.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/199.png b/public/assets/out/icon-line-pro/education/png/199.png deleted file mode 100644 index 35ff5bf1..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/199.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/png/200.png b/public/assets/out/icon-line-pro/education/png/200.png deleted file mode 100644 index cd446f89..00000000 Binary files a/public/assets/out/icon-line-pro/education/png/200.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.eot b/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.eot deleted file mode 100644 index 257b5724..00000000 Binary files a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.svg b/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.svg deleted file mode 100644 index 3d46d38a..00000000 --- a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.svg +++ /dev/null @@ -1,210 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.ttf b/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.ttf deleted file mode 100644 index a871d2f6..00000000 Binary files a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.woff b/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.woff deleted file mode 100644 index 7207739f..00000000 Binary files a/public/assets/out/icon-line-pro/education/webfont/fonts/education-48.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/education/webfont/icons-reference.html b/public/assets/out/icon-line-pro/education/webfont/icons-reference.html deleted file mode 100644 index 9dd33e33..00000000 --- a/public/assets/out/icon-line-pro/education/webfont/icons-reference.html +++ /dev/null @@ -1,1669 +0,0 @@ - - - - - - - Font Reference - Education ( 48 ) - - - - - -
      -

      Education ( 48 )

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/education/webfont/styles.css b/public/assets/out/icon-line-pro/education/webfont/styles.css deleted file mode 100644 index 44d5c2c2..00000000 --- a/public/assets/out/icon-line-pro/education/webfont/styles.css +++ /dev/null @@ -1,640 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "education-48"; - src:url("fonts/education-48.eot"); - src:url("fonts/education-48.eot?#iefix") format("embedded-opentype"), - url("fonts/education-48.woff") format("woff"), - url("fonts/education-48.ttf") format("truetype"), - url("fonts/education-48.svg#education-48") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "education-48" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "education-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-028:before { - content: "d"; -} -.icon-015:before { - content: "e"; -} -.icon-002:before { - content: "f"; -} -.icon-003:before { - content: "g"; -} -.icon-016:before { - content: "h"; -} -.icon-029:before { - content: "i"; -} -.icon-030:before { - content: "j"; -} -.icon-017:before { - content: "k"; -} -.icon-004:before { - content: "l"; -} -.icon-005:before { - content: "m"; -} -.icon-018:before { - content: "n"; -} -.icon-031:before { - content: "o"; -} -.icon-032:before { - content: "p"; -} -.icon-019:before { - content: "q"; -} -.icon-006:before { - content: "r"; -} -.icon-007:before { - content: "s"; -} -.icon-020:before { - content: "t"; -} -.icon-033:before { - content: "u"; -} -.icon-034:before { - content: "v"; -} -.icon-021:before { - content: "w"; -} -.icon-008:before { - content: "x"; -} -.icon-009:before { - content: "y"; -} -.icon-022:before { - content: "z"; -} -.icon-035:before { - content: "A"; -} -.icon-036:before { - content: "B"; -} -.icon-023:before { - content: "C"; -} -.icon-010:before { - content: "D"; -} -.icon-011:before { - content: "E"; -} -.icon-024:before { - content: "F"; -} -.icon-037:before { - content: "G"; -} -.icon-038:before { - content: "H"; -} -.icon-025:before { - content: "I"; -} -.icon-012:before { - content: "J"; -} -.icon-013:before { - content: "K"; -} -.icon-026:before { - content: "L"; -} -.icon-039:before { - content: "M"; -} -.icon-052:before { - content: "N"; -} -.icon-065:before { - content: "O"; -} -.icon-078:before { - content: "P"; -} -.icon-091:before { - content: "Q"; -} -.icon-104:before { - content: "R"; -} -.icon-117:before { - content: "S"; -} -.icon-130:before { - content: "T"; -} -.icon-143:before { - content: "U"; -} -.icon-142:before { - content: "V"; -} -.icon-129:before { - content: "W"; -} -.icon-116:before { - content: "X"; -} -.icon-103:before { - content: "Y"; -} -.icon-090:before { - content: "Z"; -} -.icon-077:before { - content: "0"; -} -.icon-064:before { - content: "1"; -} -.icon-051:before { - content: "2"; -} -.icon-050:before { - content: "3"; -} -.icon-063:before { - content: "4"; -} -.icon-076:before { - content: "5"; -} -.icon-089:before { - content: "6"; -} -.icon-088:before { - content: "7"; -} -.icon-075:before { - content: "8"; -} -.icon-062:before { - content: "9"; -} -.icon-049:before { - content: "!"; -} -.icon-048:before { - content: "\""; -} -.icon-061:before { - content: "#"; -} -.icon-074:before { - content: "$"; -} -.icon-087:before { - content: "%"; -} -.icon-100:before { - content: "&"; -} -.icon-101:before { - content: "'"; -} -.icon-102:before { - content: "("; -} -.icon-115:before { - content: ")"; -} -.icon-114:before { - content: "*"; -} -.icon-113:before { - content: "+"; -} -.icon-126:before { - content: ","; -} -.icon-127:before { - content: "-"; -} -.icon-128:before { - content: "."; -} -.icon-141:before { - content: "/"; -} -.icon-140:before { - content: ":"; -} -.icon-139:before { - content: ";"; -} -.icon-138:before { - content: "<"; -} -.icon-125:before { - content: "="; -} -.icon-124:before { - content: ">"; -} -.icon-137:before { - content: "?"; -} -.icon-136:before { - content: "@"; -} -.icon-123:before { - content: "["; -} -.icon-110:before { - content: "]"; -} -.icon-111:before { - content: "^"; -} -.icon-112:before { - content: "_"; -} -.icon-099:before { - content: "`"; -} -.icon-098:before { - content: "{"; -} -.icon-097:before { - content: "|"; -} -.icon-084:before { - content: "}"; -} -.icon-085:before { - content: "~"; -} -.icon-086:before { - content: "\\"; -} -.icon-073:before { - content: "\e000"; -} -.icon-072:before { - content: "\e001"; -} -.icon-071:before { - content: "\e002"; -} -.icon-058:before { - content: "\e003"; -} -.icon-059:before { - content: "\e004"; -} -.icon-060:before { - content: "\e005"; -} -.icon-047:before { - content: "\e006"; -} -.icon-046:before { - content: "\e007"; -} -.icon-045:before { - content: "\e008"; -} -.icon-040:before { - content: "\e009"; -} -.icon-041:before { - content: "\e00a"; -} -.icon-054:before { - content: "\e00b"; -} -.icon-053:before { - content: "\e00c"; -} -.icon-066:before { - content: "\e00d"; -} -.icon-067:before { - content: "\e00e"; -} -.icon-068:before { - content: "\e00f"; -} -.icon-055:before { - content: "\e010"; -} -.icon-042:before { - content: "\e011"; -} -.icon-043:before { - content: "\e012"; -} -.icon-056:before { - content: "\e013"; -} -.icon-069:before { - content: "\e014"; -} -.icon-070:before { - content: "\e015"; -} -.icon-057:before { - content: "\e016"; -} -.icon-044:before { - content: "\e017"; -} -.icon-083:before { - content: "\e018"; -} -.icon-082:before { - content: "\e019"; -} -.icon-081:before { - content: "\e01a"; -} -.icon-080:before { - content: "\e01b"; -} -.icon-079:before { - content: "\e01c"; -} -.icon-092:before { - content: "\e01d"; -} -.icon-105:before { - content: "\e01e"; -} -.icon-118:before { - content: "\e01f"; -} -.icon-131:before { - content: "\e020"; -} -.icon-132:before { - content: "\e021"; -} -.icon-119:before { - content: "\e022"; -} -.icon-106:before { - content: "\e023"; -} -.icon-093:before { - content: "\e024"; -} -.icon-094:before { - content: "\e025"; -} -.icon-107:before { - content: "\e026"; -} -.icon-120:before { - content: "\e027"; -} -.icon-133:before { - content: "\e028"; -} -.icon-134:before { - content: "\e029"; -} -.icon-108:before { - content: "\e02a"; -} -.icon-095:before { - content: "\e02b"; -} -.icon-096:before { - content: "\e02c"; -} -.icon-109:before { - content: "\e02d"; -} -.icon-122:before { - content: "\e02e"; -} -.icon-121:before { - content: "\e02f"; -} -.icon-135:before { - content: "\e030"; -} -.icon-144:before { - content: "\e031"; -} -.icon-157:before { - content: "\e032"; -} -.icon-170:before { - content: "\e033"; -} -.icon-183:before { - content: "\e034"; -} -.icon-196:before { - content: "\e035"; -} -.icon-197:before { - content: "\e036"; -} -.icon-184:before { - content: "\e037"; -} -.icon-171:before { - content: "\e038"; -} -.icon-158:before { - content: "\e039"; -} -.icon-145:before { - content: "\e03a"; -} -.icon-146:before { - content: "\e03b"; -} -.icon-159:before { - content: "\e03c"; -} -.icon-172:before { - content: "\e03d"; -} -.icon-185:before { - content: "\e03e"; -} -.icon-198:before { - content: "\e03f"; -} -.icon-199:before { - content: "\e040"; -} -.icon-186:before { - content: "\e041"; -} -.icon-173:before { - content: "\e042"; -} -.icon-160:before { - content: "\e043"; -} -.icon-147:before { - content: "\e044"; -} -.icon-148:before { - content: "\e045"; -} -.icon-161:before { - content: "\e046"; -} -.icon-174:before { - content: "\e047"; -} -.icon-187:before { - content: "\e048"; -} -.icon-200:before { - content: "\e049"; -} -.icon-188:before { - content: "\e04a"; -} -.icon-175:before { - content: "\e04b"; -} -.icon-162:before { - content: "\e04c"; -} -.icon-149:before { - content: "\e04d"; -} -.icon-150:before { - content: "\e04e"; -} -.icon-163:before { - content: "\e04f"; -} -.icon-176:before { - content: "\e050"; -} -.icon-189:before { - content: "\e051"; -} -.icon-190:before { - content: "\e052"; -} -.icon-177:before { - content: "\e053"; -} -.icon-164:before { - content: "\e054"; -} -.icon-151:before { - content: "\e055"; -} -.icon-152:before { - content: "\e056"; -} -.icon-165:before { - content: "\e057"; -} -.icon-178:before { - content: "\e058"; -} -.icon-191:before { - content: "\e059"; -} -.icon-192:before { - content: "\e05a"; -} -.icon-179:before { - content: "\e05b"; -} -.icon-166:before { - content: "\e05c"; -} -.icon-153:before { - content: "\e05d"; -} -.icon-154:before { - content: "\e05e"; -} -.icon-167:before { - content: "\e05f"; -} -.icon-180:before { - content: "\e060"; -} -.icon-193:before { - content: "\e061"; -} -.icon-194:before { - content: "\e062"; -} -.icon-181:before { - content: "\e063"; -} -.icon-168:before { - content: "\e064"; -} -.icon-155:before { - content: "\e065"; -} -.icon-156:before { - content: "\e066"; -} -.icon-169:before { - content: "\e067"; -} -.icon-182:before { - content: "\e068"; -} -.icon-195:before { - content: "\e069"; -} diff --git a/public/assets/out/icon-line-pro/electronics/png/001.png b/public/assets/out/icon-line-pro/electronics/png/001.png deleted file mode 100644 index 628827f3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/002.png b/public/assets/out/icon-line-pro/electronics/png/002.png deleted file mode 100644 index b0b71cca..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/003.png b/public/assets/out/icon-line-pro/electronics/png/003.png deleted file mode 100644 index fdfe30b7..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/004.png b/public/assets/out/icon-line-pro/electronics/png/004.png deleted file mode 100644 index 0f2fdd41..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/005.png b/public/assets/out/icon-line-pro/electronics/png/005.png deleted file mode 100644 index 8f6c02c9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/006.png b/public/assets/out/icon-line-pro/electronics/png/006.png deleted file mode 100644 index 14534fe0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/007.png b/public/assets/out/icon-line-pro/electronics/png/007.png deleted file mode 100644 index 10cfad7c..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/008.png b/public/assets/out/icon-line-pro/electronics/png/008.png deleted file mode 100644 index a9647f2d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/009.png b/public/assets/out/icon-line-pro/electronics/png/009.png deleted file mode 100644 index 0bb3f292..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/010.png b/public/assets/out/icon-line-pro/electronics/png/010.png deleted file mode 100644 index 3b95041a..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/011.png b/public/assets/out/icon-line-pro/electronics/png/011.png deleted file mode 100644 index e8dadacf..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/012.png b/public/assets/out/icon-line-pro/electronics/png/012.png deleted file mode 100644 index 23c98d33..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/013.png b/public/assets/out/icon-line-pro/electronics/png/013.png deleted file mode 100644 index 7295ce6c..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/014.png b/public/assets/out/icon-line-pro/electronics/png/014.png deleted file mode 100644 index 26111ae9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/015.png b/public/assets/out/icon-line-pro/electronics/png/015.png deleted file mode 100644 index 96c68a32..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/016.png b/public/assets/out/icon-line-pro/electronics/png/016.png deleted file mode 100644 index c8684112..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/017.png b/public/assets/out/icon-line-pro/electronics/png/017.png deleted file mode 100644 index e0e8f3fe..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/018.png b/public/assets/out/icon-line-pro/electronics/png/018.png deleted file mode 100644 index b42f3aca..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/019.png b/public/assets/out/icon-line-pro/electronics/png/019.png deleted file mode 100644 index a4974882..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/020.png b/public/assets/out/icon-line-pro/electronics/png/020.png deleted file mode 100644 index e2e9a387..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/021.png b/public/assets/out/icon-line-pro/electronics/png/021.png deleted file mode 100644 index 931550a3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/022.png b/public/assets/out/icon-line-pro/electronics/png/022.png deleted file mode 100644 index fba7844c..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/023.png b/public/assets/out/icon-line-pro/electronics/png/023.png deleted file mode 100644 index 1394c5f0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/024.png b/public/assets/out/icon-line-pro/electronics/png/024.png deleted file mode 100644 index 115332a3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/025.png b/public/assets/out/icon-line-pro/electronics/png/025.png deleted file mode 100644 index 1cc12587..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/026.png b/public/assets/out/icon-line-pro/electronics/png/026.png deleted file mode 100644 index 85d2d20e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/027.png b/public/assets/out/icon-line-pro/electronics/png/027.png deleted file mode 100644 index 4e44bed9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/028.png b/public/assets/out/icon-line-pro/electronics/png/028.png deleted file mode 100644 index 207b045f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/029.png b/public/assets/out/icon-line-pro/electronics/png/029.png deleted file mode 100644 index 72d198b9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/030.png b/public/assets/out/icon-line-pro/electronics/png/030.png deleted file mode 100644 index 853133f1..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/031.png b/public/assets/out/icon-line-pro/electronics/png/031.png deleted file mode 100644 index 6a3dc8b9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/032.png b/public/assets/out/icon-line-pro/electronics/png/032.png deleted file mode 100644 index ec969ac5..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/033.png b/public/assets/out/icon-line-pro/electronics/png/033.png deleted file mode 100644 index 27f8dc41..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/034.png b/public/assets/out/icon-line-pro/electronics/png/034.png deleted file mode 100644 index 305d03c5..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/035.png b/public/assets/out/icon-line-pro/electronics/png/035.png deleted file mode 100644 index f57d2af0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/036.png b/public/assets/out/icon-line-pro/electronics/png/036.png deleted file mode 100644 index f89950d3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/037.png b/public/assets/out/icon-line-pro/electronics/png/037.png deleted file mode 100644 index 671622cf..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/038.png b/public/assets/out/icon-line-pro/electronics/png/038.png deleted file mode 100644 index 7f405e7d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/039.png b/public/assets/out/icon-line-pro/electronics/png/039.png deleted file mode 100644 index a0fba179..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/040.png b/public/assets/out/icon-line-pro/electronics/png/040.png deleted file mode 100644 index 82327e4f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/041.png b/public/assets/out/icon-line-pro/electronics/png/041.png deleted file mode 100644 index a1c22e4f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/042.png b/public/assets/out/icon-line-pro/electronics/png/042.png deleted file mode 100644 index e9d56a67..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/043.png b/public/assets/out/icon-line-pro/electronics/png/043.png deleted file mode 100644 index 0d49d970..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/044.png b/public/assets/out/icon-line-pro/electronics/png/044.png deleted file mode 100644 index c6a4bc95..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/045.png b/public/assets/out/icon-line-pro/electronics/png/045.png deleted file mode 100644 index 3274a7f8..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/046.png b/public/assets/out/icon-line-pro/electronics/png/046.png deleted file mode 100644 index fc1d801d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/047.png b/public/assets/out/icon-line-pro/electronics/png/047.png deleted file mode 100644 index 6cf23ad3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/048.png b/public/assets/out/icon-line-pro/electronics/png/048.png deleted file mode 100644 index fd482cbb..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/049.png b/public/assets/out/icon-line-pro/electronics/png/049.png deleted file mode 100644 index 66d4a7ed..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/050.png b/public/assets/out/icon-line-pro/electronics/png/050.png deleted file mode 100644 index d103567d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/051.png b/public/assets/out/icon-line-pro/electronics/png/051.png deleted file mode 100644 index c3318222..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/052.png b/public/assets/out/icon-line-pro/electronics/png/052.png deleted file mode 100644 index b0f9bf93..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/053.png b/public/assets/out/icon-line-pro/electronics/png/053.png deleted file mode 100644 index bafc5bd1..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/054.png b/public/assets/out/icon-line-pro/electronics/png/054.png deleted file mode 100644 index be7ab77d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/055.png b/public/assets/out/icon-line-pro/electronics/png/055.png deleted file mode 100644 index 6e0de6d6..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/056.png b/public/assets/out/icon-line-pro/electronics/png/056.png deleted file mode 100644 index 2b1f863e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/057.png b/public/assets/out/icon-line-pro/electronics/png/057.png deleted file mode 100644 index 86bdd51d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/058.png b/public/assets/out/icon-line-pro/electronics/png/058.png deleted file mode 100644 index 40ad6798..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/059.png b/public/assets/out/icon-line-pro/electronics/png/059.png deleted file mode 100644 index 17262b4d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/060.png b/public/assets/out/icon-line-pro/electronics/png/060.png deleted file mode 100644 index 7762a166..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/061.png b/public/assets/out/icon-line-pro/electronics/png/061.png deleted file mode 100644 index 1ac83fd3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/062.png b/public/assets/out/icon-line-pro/electronics/png/062.png deleted file mode 100644 index c8528c0f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/063.png b/public/assets/out/icon-line-pro/electronics/png/063.png deleted file mode 100644 index 9cf31c33..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/064.png b/public/assets/out/icon-line-pro/electronics/png/064.png deleted file mode 100644 index 1fca0bde..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/065.png b/public/assets/out/icon-line-pro/electronics/png/065.png deleted file mode 100644 index 99b03776..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/066.png b/public/assets/out/icon-line-pro/electronics/png/066.png deleted file mode 100644 index 678fbd53..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/067.png b/public/assets/out/icon-line-pro/electronics/png/067.png deleted file mode 100644 index d927fd04..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/068.png b/public/assets/out/icon-line-pro/electronics/png/068.png deleted file mode 100644 index a27505ff..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/069.png b/public/assets/out/icon-line-pro/electronics/png/069.png deleted file mode 100644 index 51be8bbb..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/070.png b/public/assets/out/icon-line-pro/electronics/png/070.png deleted file mode 100644 index 05d38719..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/071.png b/public/assets/out/icon-line-pro/electronics/png/071.png deleted file mode 100644 index 197c1037..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/072.png b/public/assets/out/icon-line-pro/electronics/png/072.png deleted file mode 100644 index 030fc3e4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/073.png b/public/assets/out/icon-line-pro/electronics/png/073.png deleted file mode 100644 index 5898bec0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/074.png b/public/assets/out/icon-line-pro/electronics/png/074.png deleted file mode 100644 index 5c0f4f5e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/075.png b/public/assets/out/icon-line-pro/electronics/png/075.png deleted file mode 100644 index 1873f0f4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/076.png b/public/assets/out/icon-line-pro/electronics/png/076.png deleted file mode 100644 index b8d45317..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/077.png b/public/assets/out/icon-line-pro/electronics/png/077.png deleted file mode 100644 index 5c57b72a..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/078.png b/public/assets/out/icon-line-pro/electronics/png/078.png deleted file mode 100644 index 7ca8961c..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/079.png b/public/assets/out/icon-line-pro/electronics/png/079.png deleted file mode 100644 index 11c9947d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/080.png b/public/assets/out/icon-line-pro/electronics/png/080.png deleted file mode 100644 index 80c8fee9..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/081.png b/public/assets/out/icon-line-pro/electronics/png/081.png deleted file mode 100644 index f0f9f069..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/082.png b/public/assets/out/icon-line-pro/electronics/png/082.png deleted file mode 100644 index 82382289..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/083.png b/public/assets/out/icon-line-pro/electronics/png/083.png deleted file mode 100644 index fe38d0e4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/084.png b/public/assets/out/icon-line-pro/electronics/png/084.png deleted file mode 100644 index 1bed921d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/085.png b/public/assets/out/icon-line-pro/electronics/png/085.png deleted file mode 100644 index cfea83b8..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/086.png b/public/assets/out/icon-line-pro/electronics/png/086.png deleted file mode 100644 index 8adbb14e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/087.png b/public/assets/out/icon-line-pro/electronics/png/087.png deleted file mode 100644 index 420c012c..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/088.png b/public/assets/out/icon-line-pro/electronics/png/088.png deleted file mode 100644 index 94e179f7..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/089.png b/public/assets/out/icon-line-pro/electronics/png/089.png deleted file mode 100644 index 85e365ab..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/090.png b/public/assets/out/icon-line-pro/electronics/png/090.png deleted file mode 100644 index 329c881f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/091.png b/public/assets/out/icon-line-pro/electronics/png/091.png deleted file mode 100644 index e35ad793..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/092.png b/public/assets/out/icon-line-pro/electronics/png/092.png deleted file mode 100644 index ba9d06ca..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/093.png b/public/assets/out/icon-line-pro/electronics/png/093.png deleted file mode 100644 index 99c6a3cb..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/094.png b/public/assets/out/icon-line-pro/electronics/png/094.png deleted file mode 100644 index a8c830f3..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/095.png b/public/assets/out/icon-line-pro/electronics/png/095.png deleted file mode 100644 index 0625fcfc..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/096.png b/public/assets/out/icon-line-pro/electronics/png/096.png deleted file mode 100644 index 57f8b202..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/097.png b/public/assets/out/icon-line-pro/electronics/png/097.png deleted file mode 100644 index 5d1b9ee4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/098.png b/public/assets/out/icon-line-pro/electronics/png/098.png deleted file mode 100644 index 42d896f7..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/099.png b/public/assets/out/icon-line-pro/electronics/png/099.png deleted file mode 100644 index 64110a7e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/100.png b/public/assets/out/icon-line-pro/electronics/png/100.png deleted file mode 100644 index 72035200..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/101.png b/public/assets/out/icon-line-pro/electronics/png/101.png deleted file mode 100644 index 3dc8a82f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/102.png b/public/assets/out/icon-line-pro/electronics/png/102.png deleted file mode 100644 index aa4024e5..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/103.png b/public/assets/out/icon-line-pro/electronics/png/103.png deleted file mode 100644 index 6616e3ee..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/104.png b/public/assets/out/icon-line-pro/electronics/png/104.png deleted file mode 100644 index 959cc596..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/105.png b/public/assets/out/icon-line-pro/electronics/png/105.png deleted file mode 100644 index 5cfe355e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/106.png b/public/assets/out/icon-line-pro/electronics/png/106.png deleted file mode 100644 index e1a94266..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/107.png b/public/assets/out/icon-line-pro/electronics/png/107.png deleted file mode 100644 index f39734ff..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/108.png b/public/assets/out/icon-line-pro/electronics/png/108.png deleted file mode 100644 index c394c0b1..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/109.png b/public/assets/out/icon-line-pro/electronics/png/109.png deleted file mode 100644 index a6f4e000..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/110.png b/public/assets/out/icon-line-pro/electronics/png/110.png deleted file mode 100644 index d097c41a..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/111.png b/public/assets/out/icon-line-pro/electronics/png/111.png deleted file mode 100644 index 1b1db453..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/112.png b/public/assets/out/icon-line-pro/electronics/png/112.png deleted file mode 100644 index fb387dac..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/113.png b/public/assets/out/icon-line-pro/electronics/png/113.png deleted file mode 100644 index 8cbaeb9e..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/114.png b/public/assets/out/icon-line-pro/electronics/png/114.png deleted file mode 100644 index 9a151203..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/115.png b/public/assets/out/icon-line-pro/electronics/png/115.png deleted file mode 100644 index 80ba8751..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/116.png b/public/assets/out/icon-line-pro/electronics/png/116.png deleted file mode 100644 index efdeba95..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/117.png b/public/assets/out/icon-line-pro/electronics/png/117.png deleted file mode 100644 index 30ebed78..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/118.png b/public/assets/out/icon-line-pro/electronics/png/118.png deleted file mode 100644 index 1b43cff5..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/119.png b/public/assets/out/icon-line-pro/electronics/png/119.png deleted file mode 100644 index 9fefe056..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/120.png b/public/assets/out/icon-line-pro/electronics/png/120.png deleted file mode 100644 index e927a112..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/121.png b/public/assets/out/icon-line-pro/electronics/png/121.png deleted file mode 100644 index aafcc1ac..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/122.png b/public/assets/out/icon-line-pro/electronics/png/122.png deleted file mode 100644 index fb18e2fa..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/123.png b/public/assets/out/icon-line-pro/electronics/png/123.png deleted file mode 100644 index 5436ec60..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/124.png b/public/assets/out/icon-line-pro/electronics/png/124.png deleted file mode 100644 index 7553d9aa..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/125.png b/public/assets/out/icon-line-pro/electronics/png/125.png deleted file mode 100644 index 1c3f5404..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/126.png b/public/assets/out/icon-line-pro/electronics/png/126.png deleted file mode 100644 index 9200f1d0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/127.png b/public/assets/out/icon-line-pro/electronics/png/127.png deleted file mode 100644 index 58d6a4c5..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/128.png b/public/assets/out/icon-line-pro/electronics/png/128.png deleted file mode 100644 index cffbcafc..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/129.png b/public/assets/out/icon-line-pro/electronics/png/129.png deleted file mode 100644 index 1aea7a24..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/130.png b/public/assets/out/icon-line-pro/electronics/png/130.png deleted file mode 100644 index c3e5d65d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/131.png b/public/assets/out/icon-line-pro/electronics/png/131.png deleted file mode 100644 index 4df31216..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/132.png b/public/assets/out/icon-line-pro/electronics/png/132.png deleted file mode 100644 index fb58df92..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/133.png b/public/assets/out/icon-line-pro/electronics/png/133.png deleted file mode 100644 index befd3673..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/134.png b/public/assets/out/icon-line-pro/electronics/png/134.png deleted file mode 100644 index 1d416a19..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/135.png b/public/assets/out/icon-line-pro/electronics/png/135.png deleted file mode 100644 index 80e927bf..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/136.png b/public/assets/out/icon-line-pro/electronics/png/136.png deleted file mode 100644 index b2e5a998..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/137.png b/public/assets/out/icon-line-pro/electronics/png/137.png deleted file mode 100644 index 8f1ecec0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/138.png b/public/assets/out/icon-line-pro/electronics/png/138.png deleted file mode 100644 index 25567768..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/139.png b/public/assets/out/icon-line-pro/electronics/png/139.png deleted file mode 100644 index 753cd34a..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/140.png b/public/assets/out/icon-line-pro/electronics/png/140.png deleted file mode 100644 index 89afe7a4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/141.png b/public/assets/out/icon-line-pro/electronics/png/141.png deleted file mode 100644 index d1c42877..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/142.png b/public/assets/out/icon-line-pro/electronics/png/142.png deleted file mode 100644 index eef85d43..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/143.png b/public/assets/out/icon-line-pro/electronics/png/143.png deleted file mode 100644 index d90512ca..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/144.png b/public/assets/out/icon-line-pro/electronics/png/144.png deleted file mode 100644 index de3f2239..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/145.png b/public/assets/out/icon-line-pro/electronics/png/145.png deleted file mode 100644 index 17302593..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/146.png b/public/assets/out/icon-line-pro/electronics/png/146.png deleted file mode 100644 index 8510fa82..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/147.png b/public/assets/out/icon-line-pro/electronics/png/147.png deleted file mode 100644 index a449b256..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/148.png b/public/assets/out/icon-line-pro/electronics/png/148.png deleted file mode 100644 index b41cac38..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/149.png b/public/assets/out/icon-line-pro/electronics/png/149.png deleted file mode 100644 index 8c066d70..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/150.png b/public/assets/out/icon-line-pro/electronics/png/150.png deleted file mode 100644 index 27787041..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/151.png b/public/assets/out/icon-line-pro/electronics/png/151.png deleted file mode 100644 index 3ab8cfa0..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/152.png b/public/assets/out/icon-line-pro/electronics/png/152.png deleted file mode 100644 index a67dafc4..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/153.png b/public/assets/out/icon-line-pro/electronics/png/153.png deleted file mode 100644 index fa425b88..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/154.png b/public/assets/out/icon-line-pro/electronics/png/154.png deleted file mode 100644 index b268c018..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/155.png b/public/assets/out/icon-line-pro/electronics/png/155.png deleted file mode 100644 index 636464cd..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/156.png b/public/assets/out/icon-line-pro/electronics/png/156.png deleted file mode 100644 index b1208e62..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/157.png b/public/assets/out/icon-line-pro/electronics/png/157.png deleted file mode 100644 index b436cedc..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/158.png b/public/assets/out/icon-line-pro/electronics/png/158.png deleted file mode 100644 index f5dd298f..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/159.png b/public/assets/out/icon-line-pro/electronics/png/159.png deleted file mode 100644 index 1b3f39ff..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/png/160.png b/public/assets/out/icon-line-pro/electronics/png/160.png deleted file mode 100644 index ab7e40c7..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.eot b/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.eot deleted file mode 100644 index 86e6976d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.svg b/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.svg deleted file mode 100644 index 1c3675e8..00000000 --- a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.svg +++ /dev/null @@ -1,170 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.ttf b/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.ttf deleted file mode 100644 index 781e0a7d..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.woff b/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.woff deleted file mode 100644 index adc66c16..00000000 Binary files a/public/assets/out/icon-line-pro/electronics/webfont/fonts/electronics.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/electronics/webfont/icons-reference.html b/public/assets/out/icon-line-pro/electronics/webfont/icons-reference.html deleted file mode 100644 index c02a17e8..00000000 --- a/public/assets/out/icon-line-pro/electronics/webfont/icons-reference.html +++ /dev/null @@ -1,1349 +0,0 @@ - - - - - - - Font Reference - Electronics - - - - - -
      -

      Electronics

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/electronics/webfont/styles.css b/public/assets/out/icon-line-pro/electronics/webfont/styles.css deleted file mode 100644 index 50da4eeb..00000000 --- a/public/assets/out/icon-line-pro/electronics/webfont/styles.css +++ /dev/null @@ -1,520 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "electronics"; - src:url("fonts/electronics.eot"); - src:url("fonts/electronics.eot?#iefix") format("embedded-opentype"), - url("fonts/electronics.woff") format("woff"), - url("fonts/electronics.ttf") format("truetype"), - url("fonts/electronics.svg#electronics") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "electronics" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "electronics" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-053:before { - content: "e"; -} -.icon-066:before { - content: "f"; -} -.icon-079:before { - content: "g"; -} -.icon-092:before { - content: "h"; -} -.icon-093:before { - content: "i"; -} -.icon-080:before { - content: "j"; -} -.icon-067:before { - content: "k"; -} -.icon-054:before { - content: "l"; -} -.icon-041:before { - content: "m"; -} -.icon-028:before { - content: "n"; -} -.icon-015:before { - content: "o"; -} -.icon-002:before { - content: "p"; -} -.icon-003:before { - content: "q"; -} -.icon-016:before { - content: "r"; -} -.icon-029:before { - content: "s"; -} -.icon-042:before { - content: "t"; -} -.icon-055:before { - content: "u"; -} -.icon-068:before { - content: "v"; -} -.icon-081:before { - content: "w"; -} -.icon-094:before { - content: "x"; -} -.icon-095:before { - content: "y"; -} -.icon-082:before { - content: "z"; -} -.icon-069:before { - content: "A"; -} -.icon-056:before { - content: "B"; -} -.icon-043:before { - content: "C"; -} -.icon-030:before { - content: "D"; -} -.icon-017:before { - content: "E"; -} -.icon-004:before { - content: "F"; -} -.icon-005:before { - content: "G"; -} -.icon-018:before { - content: "H"; -} -.icon-031:before { - content: "I"; -} -.icon-044:before { - content: "J"; -} -.icon-057:before { - content: "K"; -} -.icon-070:before { - content: "L"; -} -.icon-083:before { - content: "M"; -} -.icon-096:before { - content: "N"; -} -.icon-097:before { - content: "O"; -} -.icon-084:before { - content: "P"; -} -.icon-071:before { - content: "Q"; -} -.icon-058:before { - content: "R"; -} -.icon-045:before { - content: "S"; -} -.icon-032:before { - content: "T"; -} -.icon-019:before { - content: "U"; -} -.icon-006:before { - content: "V"; -} -.icon-007:before { - content: "W"; -} -.icon-020:before { - content: "X"; -} -.icon-033:before { - content: "Y"; -} -.icon-046:before { - content: "Z"; -} -.icon-059:before { - content: "0"; -} -.icon-072:before { - content: "1"; -} -.icon-085:before { - content: "2"; -} -.icon-098:before { - content: "3"; -} -.icon-099:before { - content: "4"; -} -.icon-086:before { - content: "5"; -} -.icon-073:before { - content: "6"; -} -.icon-060:before { - content: "7"; -} -.icon-047:before { - content: "8"; -} -.icon-034:before { - content: "9"; -} -.icon-021:before { - content: "!"; -} -.icon-008:before { - content: "\""; -} -.icon-009:before { - content: "#"; -} -.icon-022:before { - content: "$"; -} -.icon-035:before { - content: "%"; -} -.icon-048:before { - content: "&"; -} -.icon-049:before { - content: "'"; -} -.icon-036:before { - content: "("; -} -.icon-023:before { - content: ")"; -} -.icon-010:before { - content: "*"; -} -.icon-011:before { - content: "+"; -} -.icon-024:before { - content: ","; -} -.icon-025:before { - content: "-"; -} -.icon-012:before { - content: "."; -} -.icon-013:before { - content: "/"; -} -.icon-026:before { - content: ":"; -} -.icon-039:before { - content: ";"; -} -.icon-052:before { - content: "<"; -} -.icon-065:before { - content: "="; -} -.icon-078:before { - content: ">"; -} -.icon-091:before { - content: "?"; -} -.icon-104:before { - content: "@"; -} -.icon-103:before { - content: "["; -} -.icon-090:before { - content: "]"; -} -.icon-064:before { - content: "^"; -} -.icon-051:before { - content: "_"; -} -.icon-038:before { - content: "`"; -} -.icon-037:before { - content: "{"; -} -.icon-050:before { - content: "|"; -} -.icon-063:before { - content: "}"; -} -.icon-076:before { - content: "~"; -} -.icon-077:before { - content: "\\"; -} -.icon-062:before { - content: "\e000"; -} -.icon-061:before { - content: "\e001"; -} -.icon-074:before { - content: "\e002"; -} -.icon-075:before { - content: "\e003"; -} -.icon-088:before { - content: "\e004"; -} -.icon-087:before { - content: "\e005"; -} -.icon-089:before { - content: "\e006"; -} -.icon-102:before { - content: "\e007"; -} -.icon-101:before { - content: "\e008"; -} -.icon-100:before { - content: "\e009"; -} -.icon-105:before { - content: "\e00a"; -} -.icon-118:before { - content: "\e00b"; -} -.icon-131:before { - content: "\e00c"; -} -.icon-144:before { - content: "\e00d"; -} -.icon-157:before { - content: "\e00e"; -} -.icon-158:before { - content: "\e00f"; -} -.icon-145:before { - content: "\e010"; -} -.icon-132:before { - content: "\e011"; -} -.icon-119:before { - content: "\e012"; -} -.icon-106:before { - content: "\e013"; -} -.icon-107:before { - content: "\e014"; -} -.icon-120:before { - content: "\e015"; -} -.icon-133:before { - content: "\e016"; -} -.icon-146:before { - content: "\e017"; -} -.icon-159:before { - content: "\e018"; -} -.icon-160:before { - content: "\e019"; -} -.icon-147:before { - content: "\e01a"; -} -.icon-134:before { - content: "\e01b"; -} -.icon-121:before { - content: "\e01c"; -} -.icon-108:before { - content: "\e01d"; -} -.icon-109:before { - content: "\e01e"; -} -.icon-122:before { - content: "\e01f"; -} -.icon-135:before { - content: "\e020"; -} -.icon-148:before { - content: "\e021"; -} -.icon-149:before { - content: "\e022"; -} -.icon-136:before { - content: "\e023"; -} -.icon-123:before { - content: "\e024"; -} -.icon-110:before { - content: "\e025"; -} -.icon-111:before { - content: "\e026"; -} -.icon-124:before { - content: "\e027"; -} -.icon-137:before { - content: "\e028"; -} -.icon-150:before { - content: "\e029"; -} -.icon-151:before { - content: "\e02a"; -} -.icon-138:before { - content: "\e02b"; -} -.icon-125:before { - content: "\e02c"; -} -.icon-112:before { - content: "\e02d"; -} -.icon-113:before { - content: "\e02e"; -} -.icon-126:before { - content: "\e02f"; -} -.icon-139:before { - content: "\e030"; -} -.icon-152:before { - content: "\e031"; -} -.icon-153:before { - content: "\e032"; -} -.icon-140:before { - content: "\e033"; -} -.icon-127:before { - content: "\e034"; -} -.icon-114:before { - content: "\e035"; -} -.icon-115:before { - content: "\e036"; -} -.icon-128:before { - content: "\e037"; -} -.icon-141:before { - content: "\e038"; -} -.icon-154:before { - content: "\e039"; -} -.icon-155:before { - content: "\e03a"; -} -.icon-142:before { - content: "\e03b"; -} -.icon-129:before { - content: "\e03c"; -} -.icon-116:before { - content: "\e03d"; -} -.icon-117:before { - content: "\e03e"; -} -.icon-130:before { - content: "\e03f"; -} -.icon-143:before { - content: "\e040"; -} -.icon-156:before { - content: "\e041"; -} diff --git a/public/assets/out/icon-line-pro/finance/png/001.png b/public/assets/out/icon-line-pro/finance/png/001.png deleted file mode 100644 index 9e852dd2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/002.png b/public/assets/out/icon-line-pro/finance/png/002.png deleted file mode 100644 index 10b25564..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/003.png b/public/assets/out/icon-line-pro/finance/png/003.png deleted file mode 100644 index 5bc9abc7..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/004.png b/public/assets/out/icon-line-pro/finance/png/004.png deleted file mode 100644 index 8aa9dfa9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/005.png b/public/assets/out/icon-line-pro/finance/png/005.png deleted file mode 100644 index b2aa7023..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/006.png b/public/assets/out/icon-line-pro/finance/png/006.png deleted file mode 100644 index 535b2431..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/007.png b/public/assets/out/icon-line-pro/finance/png/007.png deleted file mode 100644 index 68f47547..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/008.png b/public/assets/out/icon-line-pro/finance/png/008.png deleted file mode 100644 index bf0b7366..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/009.png b/public/assets/out/icon-line-pro/finance/png/009.png deleted file mode 100644 index cef718b6..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/010.png b/public/assets/out/icon-line-pro/finance/png/010.png deleted file mode 100644 index 6b0f80e5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/011.png b/public/assets/out/icon-line-pro/finance/png/011.png deleted file mode 100644 index 92a2a9d5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/012.png b/public/assets/out/icon-line-pro/finance/png/012.png deleted file mode 100644 index f4f40a1f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/013.png b/public/assets/out/icon-line-pro/finance/png/013.png deleted file mode 100644 index 76e9e9dd..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/014.png b/public/assets/out/icon-line-pro/finance/png/014.png deleted file mode 100644 index c341df6d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/015.png b/public/assets/out/icon-line-pro/finance/png/015.png deleted file mode 100644 index 9da7fa30..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/016.png b/public/assets/out/icon-line-pro/finance/png/016.png deleted file mode 100644 index 402484d5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/017.png b/public/assets/out/icon-line-pro/finance/png/017.png deleted file mode 100644 index 0a123775..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/018.png b/public/assets/out/icon-line-pro/finance/png/018.png deleted file mode 100644 index f09e293f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/019.png b/public/assets/out/icon-line-pro/finance/png/019.png deleted file mode 100644 index 2866355f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/020.png b/public/assets/out/icon-line-pro/finance/png/020.png deleted file mode 100644 index c3dffd71..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/021.png b/public/assets/out/icon-line-pro/finance/png/021.png deleted file mode 100644 index 6098eb74..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/022.png b/public/assets/out/icon-line-pro/finance/png/022.png deleted file mode 100644 index e6566d47..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/023.png b/public/assets/out/icon-line-pro/finance/png/023.png deleted file mode 100644 index 1014e2ea..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/024.png b/public/assets/out/icon-line-pro/finance/png/024.png deleted file mode 100644 index 0f968c79..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/025.png b/public/assets/out/icon-line-pro/finance/png/025.png deleted file mode 100644 index 3aa3490c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/026.png b/public/assets/out/icon-line-pro/finance/png/026.png deleted file mode 100644 index c19b7a0f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/027.png b/public/assets/out/icon-line-pro/finance/png/027.png deleted file mode 100644 index d8bd2f44..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/028.png b/public/assets/out/icon-line-pro/finance/png/028.png deleted file mode 100644 index a2a4ff19..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/029.png b/public/assets/out/icon-line-pro/finance/png/029.png deleted file mode 100644 index b35ebea0..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/030.png b/public/assets/out/icon-line-pro/finance/png/030.png deleted file mode 100644 index 4acf4930..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/031.png b/public/assets/out/icon-line-pro/finance/png/031.png deleted file mode 100644 index e9098765..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/032.png b/public/assets/out/icon-line-pro/finance/png/032.png deleted file mode 100644 index 3920b854..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/033.png b/public/assets/out/icon-line-pro/finance/png/033.png deleted file mode 100644 index 7faeec9d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/034.png b/public/assets/out/icon-line-pro/finance/png/034.png deleted file mode 100644 index 46a4a11f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/035.png b/public/assets/out/icon-line-pro/finance/png/035.png deleted file mode 100644 index d188770f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/036.png b/public/assets/out/icon-line-pro/finance/png/036.png deleted file mode 100644 index f17a223c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/037.png b/public/assets/out/icon-line-pro/finance/png/037.png deleted file mode 100644 index 264b2726..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/038.png b/public/assets/out/icon-line-pro/finance/png/038.png deleted file mode 100644 index d506a9c3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/039.png b/public/assets/out/icon-line-pro/finance/png/039.png deleted file mode 100644 index 665187f3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/040.png b/public/assets/out/icon-line-pro/finance/png/040.png deleted file mode 100644 index a5f9dcb9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/041.png b/public/assets/out/icon-line-pro/finance/png/041.png deleted file mode 100644 index 5f34b737..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/042.png b/public/assets/out/icon-line-pro/finance/png/042.png deleted file mode 100644 index 4cf41b01..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/043.png b/public/assets/out/icon-line-pro/finance/png/043.png deleted file mode 100644 index e9e0e175..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/044.png b/public/assets/out/icon-line-pro/finance/png/044.png deleted file mode 100644 index f8bac8bb..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/045.png b/public/assets/out/icon-line-pro/finance/png/045.png deleted file mode 100644 index c18689d3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/046.png b/public/assets/out/icon-line-pro/finance/png/046.png deleted file mode 100644 index d8b85d0e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/047.png b/public/assets/out/icon-line-pro/finance/png/047.png deleted file mode 100644 index 2fdc2144..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/048.png b/public/assets/out/icon-line-pro/finance/png/048.png deleted file mode 100644 index c0e401a2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/049.png b/public/assets/out/icon-line-pro/finance/png/049.png deleted file mode 100644 index d6e29db7..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/050.png b/public/assets/out/icon-line-pro/finance/png/050.png deleted file mode 100644 index 309555aa..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/051.png b/public/assets/out/icon-line-pro/finance/png/051.png deleted file mode 100644 index 1756e68a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/052.png b/public/assets/out/icon-line-pro/finance/png/052.png deleted file mode 100644 index bc8d425b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/053.png b/public/assets/out/icon-line-pro/finance/png/053.png deleted file mode 100644 index 6083ab22..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/054.png b/public/assets/out/icon-line-pro/finance/png/054.png deleted file mode 100644 index 907ed340..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/055.png b/public/assets/out/icon-line-pro/finance/png/055.png deleted file mode 100644 index 8883a42c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/056.png b/public/assets/out/icon-line-pro/finance/png/056.png deleted file mode 100644 index 1e119f1b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/057.png b/public/assets/out/icon-line-pro/finance/png/057.png deleted file mode 100644 index 90691fa2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/058.png b/public/assets/out/icon-line-pro/finance/png/058.png deleted file mode 100644 index f0cf11cb..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/059.png b/public/assets/out/icon-line-pro/finance/png/059.png deleted file mode 100644 index d1bfda7f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/060.png b/public/assets/out/icon-line-pro/finance/png/060.png deleted file mode 100644 index b837b0f5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/061.png b/public/assets/out/icon-line-pro/finance/png/061.png deleted file mode 100644 index 866a97a1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/062.png b/public/assets/out/icon-line-pro/finance/png/062.png deleted file mode 100644 index 57106e1b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/063.png b/public/assets/out/icon-line-pro/finance/png/063.png deleted file mode 100644 index 945a58a5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/064.png b/public/assets/out/icon-line-pro/finance/png/064.png deleted file mode 100644 index ba9a8d97..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/065.png b/public/assets/out/icon-line-pro/finance/png/065.png deleted file mode 100644 index 34beba78..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/066.png b/public/assets/out/icon-line-pro/finance/png/066.png deleted file mode 100644 index 2c9c7272..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/067.png b/public/assets/out/icon-line-pro/finance/png/067.png deleted file mode 100644 index 03ac6e44..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/068.png b/public/assets/out/icon-line-pro/finance/png/068.png deleted file mode 100644 index 726c2a8e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/069.png b/public/assets/out/icon-line-pro/finance/png/069.png deleted file mode 100644 index 3835ae53..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/070.png b/public/assets/out/icon-line-pro/finance/png/070.png deleted file mode 100644 index 988e9661..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/071.png b/public/assets/out/icon-line-pro/finance/png/071.png deleted file mode 100644 index c74195c7..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/072.png b/public/assets/out/icon-line-pro/finance/png/072.png deleted file mode 100644 index 1b22b697..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/073.png b/public/assets/out/icon-line-pro/finance/png/073.png deleted file mode 100644 index b4bf1939..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/074.png b/public/assets/out/icon-line-pro/finance/png/074.png deleted file mode 100644 index cbf33dc5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/075.png b/public/assets/out/icon-line-pro/finance/png/075.png deleted file mode 100644 index 87a8ec99..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/076.png b/public/assets/out/icon-line-pro/finance/png/076.png deleted file mode 100644 index 1a16508e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/077.png b/public/assets/out/icon-line-pro/finance/png/077.png deleted file mode 100644 index 69d87269..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/078.png b/public/assets/out/icon-line-pro/finance/png/078.png deleted file mode 100644 index ad6d5ec0..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/079.png b/public/assets/out/icon-line-pro/finance/png/079.png deleted file mode 100644 index c387f7b4..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/080.png b/public/assets/out/icon-line-pro/finance/png/080.png deleted file mode 100644 index d7918556..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/081.png b/public/assets/out/icon-line-pro/finance/png/081.png deleted file mode 100644 index e1a5bf0f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/082.png b/public/assets/out/icon-line-pro/finance/png/082.png deleted file mode 100644 index 5f4e732e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/083.png b/public/assets/out/icon-line-pro/finance/png/083.png deleted file mode 100644 index b0613a0c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/084.png b/public/assets/out/icon-line-pro/finance/png/084.png deleted file mode 100644 index d20f92bd..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/085.png b/public/assets/out/icon-line-pro/finance/png/085.png deleted file mode 100644 index 78ad99cd..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/086.png b/public/assets/out/icon-line-pro/finance/png/086.png deleted file mode 100644 index 9694d392..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/087.png b/public/assets/out/icon-line-pro/finance/png/087.png deleted file mode 100644 index bf08e305..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/088.png b/public/assets/out/icon-line-pro/finance/png/088.png deleted file mode 100644 index e58a4d99..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/089.png b/public/assets/out/icon-line-pro/finance/png/089.png deleted file mode 100644 index a494ee16..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/090.png b/public/assets/out/icon-line-pro/finance/png/090.png deleted file mode 100644 index d2152cd5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/091.png b/public/assets/out/icon-line-pro/finance/png/091.png deleted file mode 100644 index 72f4a3ad..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/092.png b/public/assets/out/icon-line-pro/finance/png/092.png deleted file mode 100644 index ba8c1154..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/093.png b/public/assets/out/icon-line-pro/finance/png/093.png deleted file mode 100644 index e30abfc3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/094.png b/public/assets/out/icon-line-pro/finance/png/094.png deleted file mode 100644 index d21ca4ab..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/095.png b/public/assets/out/icon-line-pro/finance/png/095.png deleted file mode 100644 index 7a009769..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/096.png b/public/assets/out/icon-line-pro/finance/png/096.png deleted file mode 100644 index 33bab569..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/097.png b/public/assets/out/icon-line-pro/finance/png/097.png deleted file mode 100644 index b75ca47e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/098.png b/public/assets/out/icon-line-pro/finance/png/098.png deleted file mode 100644 index 47f349ca..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/099.png b/public/assets/out/icon-line-pro/finance/png/099.png deleted file mode 100644 index 6bc93040..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/100.png b/public/assets/out/icon-line-pro/finance/png/100.png deleted file mode 100644 index 4cda48ab..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/101.png b/public/assets/out/icon-line-pro/finance/png/101.png deleted file mode 100644 index 2ec4c716..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/102.png b/public/assets/out/icon-line-pro/finance/png/102.png deleted file mode 100644 index 91f2e7ba..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/103.png b/public/assets/out/icon-line-pro/finance/png/103.png deleted file mode 100644 index 672bdef6..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/104.png b/public/assets/out/icon-line-pro/finance/png/104.png deleted file mode 100644 index 5c0a8e76..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/105.png b/public/assets/out/icon-line-pro/finance/png/105.png deleted file mode 100644 index 9d2bf521..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/106.png b/public/assets/out/icon-line-pro/finance/png/106.png deleted file mode 100644 index 521d9921..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/107.png b/public/assets/out/icon-line-pro/finance/png/107.png deleted file mode 100644 index fe8f9eab..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/108.png b/public/assets/out/icon-line-pro/finance/png/108.png deleted file mode 100644 index 9f4eaa25..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/109.png b/public/assets/out/icon-line-pro/finance/png/109.png deleted file mode 100644 index 0380940f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/110.png b/public/assets/out/icon-line-pro/finance/png/110.png deleted file mode 100644 index e441d78f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/111.png b/public/assets/out/icon-line-pro/finance/png/111.png deleted file mode 100644 index ae3ca733..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/112.png b/public/assets/out/icon-line-pro/finance/png/112.png deleted file mode 100644 index 8e7c5606..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/113.png b/public/assets/out/icon-line-pro/finance/png/113.png deleted file mode 100644 index cca58a8a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/114.png b/public/assets/out/icon-line-pro/finance/png/114.png deleted file mode 100644 index 33ed7c13..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/115.png b/public/assets/out/icon-line-pro/finance/png/115.png deleted file mode 100644 index 12a51d58..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/116.png b/public/assets/out/icon-line-pro/finance/png/116.png deleted file mode 100644 index 073b625b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/117.png b/public/assets/out/icon-line-pro/finance/png/117.png deleted file mode 100644 index 38e87b79..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/118.png b/public/assets/out/icon-line-pro/finance/png/118.png deleted file mode 100644 index 7343159f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/119.png b/public/assets/out/icon-line-pro/finance/png/119.png deleted file mode 100644 index 74cdbd5e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/120.png b/public/assets/out/icon-line-pro/finance/png/120.png deleted file mode 100644 index 009a11d9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/121.png b/public/assets/out/icon-line-pro/finance/png/121.png deleted file mode 100644 index b71f48c8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/122.png b/public/assets/out/icon-line-pro/finance/png/122.png deleted file mode 100644 index af384624..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/123.png b/public/assets/out/icon-line-pro/finance/png/123.png deleted file mode 100644 index 2a35d156..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/124.png b/public/assets/out/icon-line-pro/finance/png/124.png deleted file mode 100644 index f5b8b776..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/125.png b/public/assets/out/icon-line-pro/finance/png/125.png deleted file mode 100644 index bb2b5498..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/126.png b/public/assets/out/icon-line-pro/finance/png/126.png deleted file mode 100644 index 69fdc574..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/127.png b/public/assets/out/icon-line-pro/finance/png/127.png deleted file mode 100644 index 8a97d379..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/128.png b/public/assets/out/icon-line-pro/finance/png/128.png deleted file mode 100644 index b41d247c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/129.png b/public/assets/out/icon-line-pro/finance/png/129.png deleted file mode 100644 index e23bcd48..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/130.png b/public/assets/out/icon-line-pro/finance/png/130.png deleted file mode 100644 index f1d9d871..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/131.png b/public/assets/out/icon-line-pro/finance/png/131.png deleted file mode 100644 index e49e943d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/132.png b/public/assets/out/icon-line-pro/finance/png/132.png deleted file mode 100644 index 23f6d800..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/133.png b/public/assets/out/icon-line-pro/finance/png/133.png deleted file mode 100644 index fdfd8761..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/134.png b/public/assets/out/icon-line-pro/finance/png/134.png deleted file mode 100644 index 727f38ac..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/135.png b/public/assets/out/icon-line-pro/finance/png/135.png deleted file mode 100644 index 503b13f5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/136.png b/public/assets/out/icon-line-pro/finance/png/136.png deleted file mode 100644 index 7fdb4722..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/137.png b/public/assets/out/icon-line-pro/finance/png/137.png deleted file mode 100644 index 230dbd4a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/138.png b/public/assets/out/icon-line-pro/finance/png/138.png deleted file mode 100644 index 6850ae51..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/139.png b/public/assets/out/icon-line-pro/finance/png/139.png deleted file mode 100644 index bd36c844..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/140.png b/public/assets/out/icon-line-pro/finance/png/140.png deleted file mode 100644 index 567453c1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/141.png b/public/assets/out/icon-line-pro/finance/png/141.png deleted file mode 100644 index 6b823783..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/142.png b/public/assets/out/icon-line-pro/finance/png/142.png deleted file mode 100644 index f7b4bfff..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/143.png b/public/assets/out/icon-line-pro/finance/png/143.png deleted file mode 100644 index c802fe31..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/144.png b/public/assets/out/icon-line-pro/finance/png/144.png deleted file mode 100644 index d3d841fc..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/145.png b/public/assets/out/icon-line-pro/finance/png/145.png deleted file mode 100644 index 7197a737..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/146.png b/public/assets/out/icon-line-pro/finance/png/146.png deleted file mode 100644 index 8ba7346a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/147.png b/public/assets/out/icon-line-pro/finance/png/147.png deleted file mode 100644 index 76d5f569..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/148.png b/public/assets/out/icon-line-pro/finance/png/148.png deleted file mode 100644 index 0381e674..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/149.png b/public/assets/out/icon-line-pro/finance/png/149.png deleted file mode 100644 index cbcc10d8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/150.png b/public/assets/out/icon-line-pro/finance/png/150.png deleted file mode 100644 index a7f5bdca..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/151.png b/public/assets/out/icon-line-pro/finance/png/151.png deleted file mode 100644 index 6a5c934f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/152.png b/public/assets/out/icon-line-pro/finance/png/152.png deleted file mode 100644 index 6bca01a8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/153.png b/public/assets/out/icon-line-pro/finance/png/153.png deleted file mode 100644 index 27618377..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/154.png b/public/assets/out/icon-line-pro/finance/png/154.png deleted file mode 100644 index d16e79c3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/155.png b/public/assets/out/icon-line-pro/finance/png/155.png deleted file mode 100644 index d58f545f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/156.png b/public/assets/out/icon-line-pro/finance/png/156.png deleted file mode 100644 index a3b235ff..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/157.png b/public/assets/out/icon-line-pro/finance/png/157.png deleted file mode 100644 index 0c9da4e1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/158.png b/public/assets/out/icon-line-pro/finance/png/158.png deleted file mode 100644 index f75bae7f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/159.png b/public/assets/out/icon-line-pro/finance/png/159.png deleted file mode 100644 index 77254a8c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/160.png b/public/assets/out/icon-line-pro/finance/png/160.png deleted file mode 100644 index 346888db..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/161.png b/public/assets/out/icon-line-pro/finance/png/161.png deleted file mode 100644 index bc7540ca..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/162.png b/public/assets/out/icon-line-pro/finance/png/162.png deleted file mode 100644 index 9e6a72f0..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/163.png b/public/assets/out/icon-line-pro/finance/png/163.png deleted file mode 100644 index 9d3cec1e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/164.png b/public/assets/out/icon-line-pro/finance/png/164.png deleted file mode 100644 index e965718c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/165.png b/public/assets/out/icon-line-pro/finance/png/165.png deleted file mode 100644 index 9b0387d9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/166.png b/public/assets/out/icon-line-pro/finance/png/166.png deleted file mode 100644 index e8e33c89..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/166.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/167.png b/public/assets/out/icon-line-pro/finance/png/167.png deleted file mode 100644 index 36705d16..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/167.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/168.png b/public/assets/out/icon-line-pro/finance/png/168.png deleted file mode 100644 index e9020df3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/168.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/169.png b/public/assets/out/icon-line-pro/finance/png/169.png deleted file mode 100644 index 9ce4f46b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/169.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/170.png b/public/assets/out/icon-line-pro/finance/png/170.png deleted file mode 100644 index 2c85d161..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/170.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/171.png b/public/assets/out/icon-line-pro/finance/png/171.png deleted file mode 100644 index 0dd7e6af..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/171.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/172.png b/public/assets/out/icon-line-pro/finance/png/172.png deleted file mode 100644 index a8f49936..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/172.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/173.png b/public/assets/out/icon-line-pro/finance/png/173.png deleted file mode 100644 index 0a99cf5a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/173.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/174.png b/public/assets/out/icon-line-pro/finance/png/174.png deleted file mode 100644 index a5abe220..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/174.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/175.png b/public/assets/out/icon-line-pro/finance/png/175.png deleted file mode 100644 index 4d9bbe5b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/175.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/176.png b/public/assets/out/icon-line-pro/finance/png/176.png deleted file mode 100644 index bf18e0bb..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/176.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/177.png b/public/assets/out/icon-line-pro/finance/png/177.png deleted file mode 100644 index 5fe25265..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/177.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/178.png b/public/assets/out/icon-line-pro/finance/png/178.png deleted file mode 100644 index 8a1c9c70..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/178.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/179.png b/public/assets/out/icon-line-pro/finance/png/179.png deleted file mode 100644 index d572c742..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/179.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/180.png b/public/assets/out/icon-line-pro/finance/png/180.png deleted file mode 100644 index 83c9c5b9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/180.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/181.png b/public/assets/out/icon-line-pro/finance/png/181.png deleted file mode 100644 index 63953873..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/181.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/182.png b/public/assets/out/icon-line-pro/finance/png/182.png deleted file mode 100644 index 3b594f7c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/182.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/183.png b/public/assets/out/icon-line-pro/finance/png/183.png deleted file mode 100644 index 0ce89640..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/183.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/184.png b/public/assets/out/icon-line-pro/finance/png/184.png deleted file mode 100644 index 651200d3..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/184.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/185.png b/public/assets/out/icon-line-pro/finance/png/185.png deleted file mode 100644 index 9facf0ba..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/185.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/186.png b/public/assets/out/icon-line-pro/finance/png/186.png deleted file mode 100644 index 7204a901..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/186.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/187.png b/public/assets/out/icon-line-pro/finance/png/187.png deleted file mode 100644 index 887efc50..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/187.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/188.png b/public/assets/out/icon-line-pro/finance/png/188.png deleted file mode 100644 index 8bd86dc8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/188.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/189.png b/public/assets/out/icon-line-pro/finance/png/189.png deleted file mode 100644 index b4700881..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/189.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/190.png b/public/assets/out/icon-line-pro/finance/png/190.png deleted file mode 100644 index 2e02412e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/190.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/191.png b/public/assets/out/icon-line-pro/finance/png/191.png deleted file mode 100644 index 6437069f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/191.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/192.png b/public/assets/out/icon-line-pro/finance/png/192.png deleted file mode 100644 index 75a7bee9..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/192.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/193.png b/public/assets/out/icon-line-pro/finance/png/193.png deleted file mode 100644 index 4818313b..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/193.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/194.png b/public/assets/out/icon-line-pro/finance/png/194.png deleted file mode 100644 index 1419ff2d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/194.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/195.png b/public/assets/out/icon-line-pro/finance/png/195.png deleted file mode 100644 index 21ff0b7a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/195.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/196.png b/public/assets/out/icon-line-pro/finance/png/196.png deleted file mode 100644 index 0827f3a8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/196.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/197.png b/public/assets/out/icon-line-pro/finance/png/197.png deleted file mode 100644 index a6045924..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/197.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/198.png b/public/assets/out/icon-line-pro/finance/png/198.png deleted file mode 100644 index 19501ad1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/198.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/199.png b/public/assets/out/icon-line-pro/finance/png/199.png deleted file mode 100644 index eff6d222..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/199.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/200.png b/public/assets/out/icon-line-pro/finance/png/200.png deleted file mode 100644 index 20b43284..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/200.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/201.png b/public/assets/out/icon-line-pro/finance/png/201.png deleted file mode 100644 index acc3a671..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/201.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/202.png b/public/assets/out/icon-line-pro/finance/png/202.png deleted file mode 100644 index ac37e955..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/202.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/203.png b/public/assets/out/icon-line-pro/finance/png/203.png deleted file mode 100644 index 7cc9598c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/203.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/204.png b/public/assets/out/icon-line-pro/finance/png/204.png deleted file mode 100644 index b287cbc8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/204.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/205.png b/public/assets/out/icon-line-pro/finance/png/205.png deleted file mode 100644 index 7c04dfaa..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/205.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/206.png b/public/assets/out/icon-line-pro/finance/png/206.png deleted file mode 100644 index afce3318..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/206.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/207.png b/public/assets/out/icon-line-pro/finance/png/207.png deleted file mode 100644 index 3f18827c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/207.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/208.png b/public/assets/out/icon-line-pro/finance/png/208.png deleted file mode 100644 index 3af1977f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/208.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/209.png b/public/assets/out/icon-line-pro/finance/png/209.png deleted file mode 100644 index 45c7ed26..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/209.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/210.png b/public/assets/out/icon-line-pro/finance/png/210.png deleted file mode 100644 index 4c52e13c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/210.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/211.png b/public/assets/out/icon-line-pro/finance/png/211.png deleted file mode 100644 index 1b79e26d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/211.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/212.png b/public/assets/out/icon-line-pro/finance/png/212.png deleted file mode 100644 index 209900fa..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/212.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/213.png b/public/assets/out/icon-line-pro/finance/png/213.png deleted file mode 100644 index 0fd79f5a..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/213.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/214.png b/public/assets/out/icon-line-pro/finance/png/214.png deleted file mode 100644 index 46be9f9c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/214.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/215.png b/public/assets/out/icon-line-pro/finance/png/215.png deleted file mode 100644 index abd97298..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/215.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/216.png b/public/assets/out/icon-line-pro/finance/png/216.png deleted file mode 100644 index ac8cc615..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/216.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/217.png b/public/assets/out/icon-line-pro/finance/png/217.png deleted file mode 100644 index 956416e2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/217.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/218.png b/public/assets/out/icon-line-pro/finance/png/218.png deleted file mode 100644 index 3badb275..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/218.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/219.png b/public/assets/out/icon-line-pro/finance/png/219.png deleted file mode 100644 index a38a0eba..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/219.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/220.png b/public/assets/out/icon-line-pro/finance/png/220.png deleted file mode 100644 index 8e3efdcc..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/220.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/221.png b/public/assets/out/icon-line-pro/finance/png/221.png deleted file mode 100644 index fe689004..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/221.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/222.png b/public/assets/out/icon-line-pro/finance/png/222.png deleted file mode 100644 index 4e72f4bd..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/222.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/223.png b/public/assets/out/icon-line-pro/finance/png/223.png deleted file mode 100644 index 486e1000..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/223.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/224.png b/public/assets/out/icon-line-pro/finance/png/224.png deleted file mode 100644 index feafc752..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/224.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/225.png b/public/assets/out/icon-line-pro/finance/png/225.png deleted file mode 100644 index 7d112f9d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/225.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/226.png b/public/assets/out/icon-line-pro/finance/png/226.png deleted file mode 100644 index b2237924..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/226.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/227.png b/public/assets/out/icon-line-pro/finance/png/227.png deleted file mode 100644 index cc541bf6..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/227.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/228.png b/public/assets/out/icon-line-pro/finance/png/228.png deleted file mode 100644 index 0428b1ec..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/228.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/229.png b/public/assets/out/icon-line-pro/finance/png/229.png deleted file mode 100644 index ac647c45..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/229.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/230.png b/public/assets/out/icon-line-pro/finance/png/230.png deleted file mode 100644 index 835d7b2c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/230.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/231.png b/public/assets/out/icon-line-pro/finance/png/231.png deleted file mode 100644 index 45f14321..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/231.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/232.png b/public/assets/out/icon-line-pro/finance/png/232.png deleted file mode 100644 index 7b9441a5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/232.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/233.png b/public/assets/out/icon-line-pro/finance/png/233.png deleted file mode 100644 index 6aeade32..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/233.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/234.png b/public/assets/out/icon-line-pro/finance/png/234.png deleted file mode 100644 index 090f2cee..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/234.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/235.png b/public/assets/out/icon-line-pro/finance/png/235.png deleted file mode 100644 index 6b40f2ee..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/235.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/236.png b/public/assets/out/icon-line-pro/finance/png/236.png deleted file mode 100644 index 761c743c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/236.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/237.png b/public/assets/out/icon-line-pro/finance/png/237.png deleted file mode 100644 index 5bcc4231..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/237.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/238.png b/public/assets/out/icon-line-pro/finance/png/238.png deleted file mode 100644 index 571d1938..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/238.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/239.png b/public/assets/out/icon-line-pro/finance/png/239.png deleted file mode 100644 index f59b511e..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/239.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/240.png b/public/assets/out/icon-line-pro/finance/png/240.png deleted file mode 100644 index 4e94926f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/240.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/241.png b/public/assets/out/icon-line-pro/finance/png/241.png deleted file mode 100644 index 734f07d2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/241.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/242.png b/public/assets/out/icon-line-pro/finance/png/242.png deleted file mode 100644 index 9cebadb5..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/242.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/243.png b/public/assets/out/icon-line-pro/finance/png/243.png deleted file mode 100644 index 8aca332d..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/243.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/244.png b/public/assets/out/icon-line-pro/finance/png/244.png deleted file mode 100644 index 216fd914..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/244.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/245.png b/public/assets/out/icon-line-pro/finance/png/245.png deleted file mode 100644 index 1c977917..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/245.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/246.png b/public/assets/out/icon-line-pro/finance/png/246.png deleted file mode 100644 index 99ef7191..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/246.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/247.png b/public/assets/out/icon-line-pro/finance/png/247.png deleted file mode 100644 index 399439a8..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/247.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/248.png b/public/assets/out/icon-line-pro/finance/png/248.png deleted file mode 100644 index c63dedbb..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/248.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/249.png b/public/assets/out/icon-line-pro/finance/png/249.png deleted file mode 100644 index 24c82b2c..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/249.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/250.png b/public/assets/out/icon-line-pro/finance/png/250.png deleted file mode 100644 index 012e8cf1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/250.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/251.png b/public/assets/out/icon-line-pro/finance/png/251.png deleted file mode 100644 index 821e8d26..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/251.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/252.png b/public/assets/out/icon-line-pro/finance/png/252.png deleted file mode 100644 index e22ecc0f..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/252.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/253.png b/public/assets/out/icon-line-pro/finance/png/253.png deleted file mode 100644 index 55f5ba53..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/253.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/254.png b/public/assets/out/icon-line-pro/finance/png/254.png deleted file mode 100644 index cd4c01fd..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/254.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/255.png b/public/assets/out/icon-line-pro/finance/png/255.png deleted file mode 100644 index cafd6ed2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/255.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/256.png b/public/assets/out/icon-line-pro/finance/png/256.png deleted file mode 100644 index 72f6ada2..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/256.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/257.png b/public/assets/out/icon-line-pro/finance/png/257.png deleted file mode 100644 index 5311f4a1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/257.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/258.png b/public/assets/out/icon-line-pro/finance/png/258.png deleted file mode 100644 index d884c5d1..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/258.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/259.png b/public/assets/out/icon-line-pro/finance/png/259.png deleted file mode 100644 index a9615c43..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/259.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/png/260.png b/public/assets/out/icon-line-pro/finance/png/260.png deleted file mode 100644 index 8b1a2fcb..00000000 Binary files a/public/assets/out/icon-line-pro/finance/png/260.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.eot b/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.eot deleted file mode 100644 index eabe37c6..00000000 Binary files a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.svg b/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.svg deleted file mode 100644 index 2c8da32a..00000000 --- a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.svg +++ /dev/null @@ -1,270 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.ttf b/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.ttf deleted file mode 100644 index 4bc465c7..00000000 Binary files a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.woff b/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.woff deleted file mode 100644 index e2c069fc..00000000 Binary files a/public/assets/out/icon-line-pro/finance/webfont/fonts/finance.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/finance/webfont/icons-reference.html b/public/assets/out/icon-line-pro/finance/webfont/icons-reference.html deleted file mode 100644 index 95cfdf6b..00000000 --- a/public/assets/out/icon-line-pro/finance/webfont/icons-reference.html +++ /dev/null @@ -1,2149 +0,0 @@ - - - - - - - Font Reference - Finance - - - - - -
      -

      Finance

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/finance/webfont/styles.css b/public/assets/out/icon-line-pro/finance/webfont/styles.css deleted file mode 100644 index 20063883..00000000 --- a/public/assets/out/icon-line-pro/finance/webfont/styles.css +++ /dev/null @@ -1,820 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "finance"; - src:url("fonts/finance.eot"); - src:url("fonts/finance.eot?#iefix") format("embedded-opentype"), - url("fonts/finance.woff") format("woff"), - url("fonts/finance.ttf") format("truetype"), - url("fonts/finance.svg#finance") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "finance" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "finance" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-260:before { - content: "a"; -} -.icon-259:before { - content: "b"; -} -.icon-246:before { - content: "c"; -} -.icon-247:before { - content: "d"; -} -.icon-234:before { - content: "e"; -} -.icon-233:before { - content: "f"; -} -.icon-232:before { - content: "g"; -} -.icon-245:before { - content: "h"; -} -.icon-258:before { - content: "i"; -} -.icon-257:before { - content: "j"; -} -.icon-256:before { - content: "k"; -} -.icon-243:before { - content: "l"; -} -.icon-244:before { - content: "m"; -} -.icon-231:before { - content: "n"; -} -.icon-230:before { - content: "o"; -} -.icon-229:before { - content: "p"; -} -.icon-242:before { - content: "q"; -} -.icon-255:before { - content: "r"; -} -.icon-254:before { - content: "s"; -} -.icon-241:before { - content: "t"; -} -.icon-228:before { - content: "u"; -} -.icon-227:before { - content: "v"; -} -.icon-240:before { - content: "w"; -} -.icon-253:before { - content: "x"; -} -.icon-252:before { - content: "y"; -} -.icon-239:before { - content: "z"; -} -.icon-226:before { - content: "A"; -} -.icon-225:before { - content: "B"; -} -.icon-238:before { - content: "C"; -} -.icon-251:before { - content: "D"; -} -.icon-250:before { - content: "E"; -} -.icon-237:before { - content: "F"; -} -.icon-224:before { - content: "G"; -} -.icon-223:before { - content: "H"; -} -.icon-236:before { - content: "I"; -} -.icon-249:before { - content: "J"; -} -.icon-235:before { - content: "K"; -} -.icon-222:before { - content: "L"; -} -.icon-248:before { - content: "M"; -} -.icon-209:before { - content: "N"; -} -.icon-196:before { - content: "O"; -} -.icon-183:before { - content: "P"; -} -.icon-184:before { - content: "Q"; -} -.icon-197:before { - content: "R"; -} -.icon-210:before { - content: "S"; -} -.icon-211:before { - content: "T"; -} -.icon-198:before { - content: "U"; -} -.icon-185:before { - content: "V"; -} -.icon-186:before { - content: "W"; -} -.icon-199:before { - content: "X"; -} -.icon-212:before { - content: "Y"; -} -.icon-213:before { - content: "Z"; -} -.icon-200:before { - content: "0"; -} -.icon-187:before { - content: "1"; -} -.icon-188:before { - content: "2"; -} -.icon-189:before { - content: "3"; -} -.icon-201:before { - content: "4"; -} -.icon-214:before { - content: "5"; -} -.icon-215:before { - content: "6"; -} -.icon-202:before { - content: "7"; -} -.icon-216:before { - content: "8"; -} -.icon-203:before { - content: "9"; -} -.icon-204:before { - content: "!"; -} -.icon-217:before { - content: "\""; -} -.icon-191:before { - content: "#"; -} -.icon-190:before { - content: "$"; -} -.icon-192:before { - content: "%"; -} -.icon-205:before { - content: "&"; -} -.icon-218:before { - content: "'"; -} -.icon-219:before { - content: "("; -} -.icon-206:before { - content: ")"; -} -.icon-193:before { - content: "*"; -} -.icon-194:before { - content: "+"; -} -.icon-207:before { - content: ","; -} -.icon-220:before { - content: "-"; -} -.icon-221:before { - content: "."; -} -.icon-208:before { - content: "/"; -} -.icon-195:before { - content: ":"; -} -.icon-182:before { - content: ";"; -} -.icon-181:before { - content: "<"; -} -.icon-180:before { - content: "="; -} -.icon-167:before { - content: ">"; -} -.icon-168:before { - content: "?"; -} -.icon-169:before { - content: "@"; -} -.icon-156:before { - content: "["; -} -.icon-155:before { - content: "]"; -} -.icon-154:before { - content: "^"; -} -.icon-141:before { - content: "_"; -} -.icon-142:before { - content: "`"; -} -.icon-143:before { - content: "{"; -} -.icon-130:before { - content: "|"; -} -.icon-129:before { - content: "}"; -} -.icon-128:before { - content: "~"; -} -.icon-127:before { - content: "\\"; -} -.icon-140:before { - content: "\e000"; -} -.icon-139:before { - content: "\e001"; -} -.icon-126:before { - content: "\e002"; -} -.icon-125:before { - content: "\e003"; -} -.icon-138:before { - content: "\e004"; -} -.icon-151:before { - content: "\e005"; -} -.icon-152:before { - content: "\e006"; -} -.icon-153:before { - content: "\e007"; -} -.icon-166:before { - content: "\e008"; -} -.icon-179:before { - content: "\e009"; -} -.icon-178:before { - content: "\e00a"; -} -.icon-165:before { - content: "\e00b"; -} -.icon-164:before { - content: "\e00c"; -} -.icon-177:before { - content: "\e00d"; -} -.icon-176:before { - content: "\e00e"; -} -.icon-163:before { - content: "\e00f"; -} -.icon-150:before { - content: "\e010"; -} -.icon-137:before { - content: "\e011"; -} -.icon-124:before { - content: "\e012"; -} -.icon-123:before { - content: "\e013"; -} -.icon-136:before { - content: "\e014"; -} -.icon-149:before { - content: "\e015"; -} -.icon-162:before { - content: "\e016"; -} -.icon-175:before { - content: "\e017"; -} -.icon-174:before { - content: "\e018"; -} -.icon-161:before { - content: "\e019"; -} -.icon-148:before { - content: "\e01a"; -} -.icon-135:before { - content: "\e01b"; -} -.icon-122:before { - content: "\e01c"; -} -.icon-121:before { - content: "\e01d"; -} -.icon-134:before { - content: "\e01e"; -} -.icon-147:before { - content: "\e01f"; -} -.icon-160:before { - content: "\e020"; -} -.icon-173:before { - content: "\e021"; -} -.icon-172:before { - content: "\e022"; -} -.icon-146:before { - content: "\e023"; -} -.icon-133:before { - content: "\e024"; -} -.icon-120:before { - content: "\e025"; -} -.icon-159:before { - content: "\e026"; -} -.icon-158:before { - content: "\e027"; -} -.icon-171:before { - content: "\e028"; -} -.icon-170:before { - content: "\e029"; -} -.icon-157:before { - content: "\e02a"; -} -.icon-144:before { - content: "\e02b"; -} -.icon-145:before { - content: "\e02c"; -} -.icon-132:before { - content: "\e02d"; -} -.icon-131:before { - content: "\e02e"; -} -.icon-118:before { - content: "\e02f"; -} -.icon-119:before { - content: "\e030"; -} -.icon-106:before { - content: "\e031"; -} -.icon-105:before { - content: "\e032"; -} -.icon-092:before { - content: "\e033"; -} -.icon-093:before { - content: "\e034"; -} -.icon-107:before { - content: "\e035"; -} -.icon-094:before { - content: "\e036"; -} -.icon-095:before { - content: "\e037"; -} -.icon-108:before { - content: "\e038"; -} -.icon-109:before { - content: "\e039"; -} -.icon-096:before { - content: "\e03a"; -} -.icon-097:before { - content: "\e03b"; -} -.icon-110:before { - content: "\e03c"; -} -.icon-111:before { - content: "\e03d"; -} -.icon-098:before { - content: "\e03e"; -} -.icon-099:before { - content: "\e03f"; -} -.icon-112:before { - content: "\e040"; -} -.icon-113:before { - content: "\e041"; -} -.icon-100:before { - content: "\e042"; -} -.icon-101:before { - content: "\e043"; -} -.icon-114:before { - content: "\e044"; -} -.icon-115:before { - content: "\e045"; -} -.icon-102:before { - content: "\e046"; -} -.icon-116:before { - content: "\e048"; -} -.icon-117:before { - content: "\e049"; -} -.icon-104:before { - content: "\e047"; -} -.icon-103:before { - content: "\e04a"; -} -.icon-014:before { - content: "\e04b"; -} -.icon-027:before { - content: "\e04c"; -} -.icon-040:before { - content: "\e04d"; -} -.icon-053:before { - content: "\e04e"; -} -.icon-066:before { - content: "\e04f"; -} -.icon-079:before { - content: "\e050"; -} -.icon-080:before { - content: "\e051"; -} -.icon-067:before { - content: "\e052"; -} -.icon-068:before { - content: "\e053"; -} -.icon-081:before { - content: "\e054"; -} -.icon-070:before { - content: "\e055"; -} -.icon-083:before { - content: "\e056"; -} -.icon-082:before { - content: "\e057"; -} -.icon-069:before { - content: "\e058"; -} -.icon-071:before { - content: "\e059"; -} -.icon-084:before { - content: "\e05a"; -} -.icon-085:before { - content: "\e05b"; -} -.icon-072:before { - content: "\e05c"; -} -.icon-073:before { - content: "\e05d"; -} -.icon-086:before { - content: "\e05e"; -} -.icon-087:before { - content: "\e05f"; -} -.icon-074:before { - content: "\e060"; -} -.icon-075:before { - content: "\e061"; -} -.icon-088:before { - content: "\e062"; -} -.icon-089:before { - content: "\e063"; -} -.icon-076:before { - content: "\e064"; -} -.icon-077:before { - content: "\e065"; -} -.icon-090:before { - content: "\e066"; -} -.icon-091:before { - content: "\e067"; -} -.icon-078:before { - content: "\e068"; -} -.icon-065:before { - content: "\e069"; -} -.icon-052:before { - content: "\e06a"; -} -.icon-039:before { - content: "\e06b"; -} -.icon-026:before { - content: "\e06c"; -} -.icon-025:before { - content: "\e06d"; -} -.icon-038:before { - content: "\e06e"; -} -.icon-051:before { - content: "\e06f"; -} -.icon-064:before { - content: "\e070"; -} -.icon-063:before { - content: "\e071"; -} -.icon-050:before { - content: "\e072"; -} -.icon-037:before { - content: "\e073"; -} -.icon-024:before { - content: "\e074"; -} -.icon-023:before { - content: "\e075"; -} -.icon-036:before { - content: "\e076"; -} -.icon-049:before { - content: "\e077"; -} -.icon-062:before { - content: "\e078"; -} -.icon-061:before { - content: "\e079"; -} -.icon-048:before { - content: "\e07a"; -} -.icon-035:before { - content: "\e07b"; -} -.icon-022:before { - content: "\e07c"; -} -.icon-021:before { - content: "\e07d"; -} -.icon-034:before { - content: "\e07e"; -} -.icon-047:before { - content: "\e07f"; -} -.icon-060:before { - content: "\e080"; -} -.icon-059:before { - content: "\e081"; -} -.icon-046:before { - content: "\e082"; -} -.icon-033:before { - content: "\e083"; -} -.icon-020:before { - content: "\e084"; -} -.icon-019:before { - content: "\e085"; -} -.icon-032:before { - content: "\e086"; -} -.icon-045:before { - content: "\e087"; -} -.icon-058:before { - content: "\e088"; -} -.icon-057:before { - content: "\e089"; -} -.icon-044:before { - content: "\e08a"; -} -.icon-031:before { - content: "\e08b"; -} -.icon-018:before { - content: "\e08c"; -} -.icon-017:before { - content: "\e08d"; -} -.icon-030:before { - content: "\e08e"; -} -.icon-043:before { - content: "\e08f"; -} -.icon-056:before { - content: "\e090"; -} -.icon-055:before { - content: "\e091"; -} -.icon-042:before { - content: "\e092"; -} -.icon-029:before { - content: "\e093"; -} -.icon-016:before { - content: "\e094"; -} -.icon-015:before { - content: "\e095"; -} -.icon-028:before { - content: "\e096"; -} -.icon-041:before { - content: "\e097"; -} -.icon-054:before { - content: "\e098"; -} -.icon-001:before { - content: "\e099"; -} -.icon-002:before { - content: "\e09a"; -} -.icon-003:before { - content: "\e09b"; -} -.icon-004:before { - content: "\e09c"; -} -.icon-005:before { - content: "\e09d"; -} -.icon-006:before { - content: "\e09e"; -} -.icon-007:before { - content: "\e09f"; -} -.icon-008:before { - content: "\e0a0"; -} -.icon-009:before { - content: "\e0a1"; -} -.icon-010:before { - content: "\e0a2"; -} -.icon-011:before { - content: "\e0a3"; -} -.icon-012:before { - content: "\e0a4"; -} -.icon-013:before { - content: "\e0a5"; -} diff --git a/public/assets/out/icon-line-pro/food/png/001.png b/public/assets/out/icon-line-pro/food/png/001.png deleted file mode 100644 index 52704ba7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/002.png b/public/assets/out/icon-line-pro/food/png/002.png deleted file mode 100644 index c7b9243d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/003.png b/public/assets/out/icon-line-pro/food/png/003.png deleted file mode 100644 index 20f5dc90..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/004.png b/public/assets/out/icon-line-pro/food/png/004.png deleted file mode 100644 index b94b2eac..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/005.png b/public/assets/out/icon-line-pro/food/png/005.png deleted file mode 100644 index e658a335..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/006.png b/public/assets/out/icon-line-pro/food/png/006.png deleted file mode 100644 index 4d1fe598..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/007.png b/public/assets/out/icon-line-pro/food/png/007.png deleted file mode 100644 index 026859b7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/008.png b/public/assets/out/icon-line-pro/food/png/008.png deleted file mode 100644 index 479dce72..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/009.png b/public/assets/out/icon-line-pro/food/png/009.png deleted file mode 100644 index a7c8029d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/010.png b/public/assets/out/icon-line-pro/food/png/010.png deleted file mode 100644 index 62293fbc..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/011.png b/public/assets/out/icon-line-pro/food/png/011.png deleted file mode 100644 index 608d1f41..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/012.png b/public/assets/out/icon-line-pro/food/png/012.png deleted file mode 100644 index a7ee4795..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/013.png b/public/assets/out/icon-line-pro/food/png/013.png deleted file mode 100644 index 676dac30..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/014.png b/public/assets/out/icon-line-pro/food/png/014.png deleted file mode 100644 index ea24b886..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/015.png b/public/assets/out/icon-line-pro/food/png/015.png deleted file mode 100644 index a71751d1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/016.png b/public/assets/out/icon-line-pro/food/png/016.png deleted file mode 100644 index 0b5944be..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/017.png b/public/assets/out/icon-line-pro/food/png/017.png deleted file mode 100644 index dc9e7827..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/018.png b/public/assets/out/icon-line-pro/food/png/018.png deleted file mode 100644 index 0d60d2f9..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/019.png b/public/assets/out/icon-line-pro/food/png/019.png deleted file mode 100644 index 3f976646..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/020.png b/public/assets/out/icon-line-pro/food/png/020.png deleted file mode 100644 index 361ae71e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/021.png b/public/assets/out/icon-line-pro/food/png/021.png deleted file mode 100644 index ac2d74d8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/022.png b/public/assets/out/icon-line-pro/food/png/022.png deleted file mode 100644 index a0eb19ea..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/023.png b/public/assets/out/icon-line-pro/food/png/023.png deleted file mode 100644 index 9183208b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/024.png b/public/assets/out/icon-line-pro/food/png/024.png deleted file mode 100644 index d19faa2c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/025.png b/public/assets/out/icon-line-pro/food/png/025.png deleted file mode 100644 index d0784fe4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/026.png b/public/assets/out/icon-line-pro/food/png/026.png deleted file mode 100644 index 1b798367..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/027.png b/public/assets/out/icon-line-pro/food/png/027.png deleted file mode 100644 index 22964eee..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/028.png b/public/assets/out/icon-line-pro/food/png/028.png deleted file mode 100644 index 927b2093..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/029.png b/public/assets/out/icon-line-pro/food/png/029.png deleted file mode 100644 index 3dc18db1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/030.png b/public/assets/out/icon-line-pro/food/png/030.png deleted file mode 100644 index e5ae5577..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/031.png b/public/assets/out/icon-line-pro/food/png/031.png deleted file mode 100644 index 5d1c2717..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/032.png b/public/assets/out/icon-line-pro/food/png/032.png deleted file mode 100644 index b6be4a6a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/033.png b/public/assets/out/icon-line-pro/food/png/033.png deleted file mode 100644 index 507790bb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/034.png b/public/assets/out/icon-line-pro/food/png/034.png deleted file mode 100644 index c0f72bd0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/035.png b/public/assets/out/icon-line-pro/food/png/035.png deleted file mode 100644 index e1cf7f87..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/036.png b/public/assets/out/icon-line-pro/food/png/036.png deleted file mode 100644 index fea5d08a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/037.png b/public/assets/out/icon-line-pro/food/png/037.png deleted file mode 100644 index 764b6ac9..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/038.png b/public/assets/out/icon-line-pro/food/png/038.png deleted file mode 100644 index 11891d0e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/039.png b/public/assets/out/icon-line-pro/food/png/039.png deleted file mode 100644 index 18b56f62..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/040.png b/public/assets/out/icon-line-pro/food/png/040.png deleted file mode 100644 index 28720ca4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/041.png b/public/assets/out/icon-line-pro/food/png/041.png deleted file mode 100644 index 2e7677b4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/042.png b/public/assets/out/icon-line-pro/food/png/042.png deleted file mode 100644 index 9a9c2a0c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/043.png b/public/assets/out/icon-line-pro/food/png/043.png deleted file mode 100644 index bc013e29..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/044.png b/public/assets/out/icon-line-pro/food/png/044.png deleted file mode 100644 index cdc63444..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/045.png b/public/assets/out/icon-line-pro/food/png/045.png deleted file mode 100644 index 45191d6f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/046.png b/public/assets/out/icon-line-pro/food/png/046.png deleted file mode 100644 index db75dcea..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/047.png b/public/assets/out/icon-line-pro/food/png/047.png deleted file mode 100644 index 20e709a0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/048.png b/public/assets/out/icon-line-pro/food/png/048.png deleted file mode 100644 index 84a78f0a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/049.png b/public/assets/out/icon-line-pro/food/png/049.png deleted file mode 100644 index e9e73dc7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/050.png b/public/assets/out/icon-line-pro/food/png/050.png deleted file mode 100644 index 7d8ea819..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/051.png b/public/assets/out/icon-line-pro/food/png/051.png deleted file mode 100644 index 8aa20a07..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/052.png b/public/assets/out/icon-line-pro/food/png/052.png deleted file mode 100644 index c52c7fc5..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/053.png b/public/assets/out/icon-line-pro/food/png/053.png deleted file mode 100644 index f5af14ea..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/054.png b/public/assets/out/icon-line-pro/food/png/054.png deleted file mode 100644 index b0566a95..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/055.png b/public/assets/out/icon-line-pro/food/png/055.png deleted file mode 100644 index ecf5ddad..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/056.png b/public/assets/out/icon-line-pro/food/png/056.png deleted file mode 100644 index 0b0f53e3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/057.png b/public/assets/out/icon-line-pro/food/png/057.png deleted file mode 100644 index 7c831bc3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/058.png b/public/assets/out/icon-line-pro/food/png/058.png deleted file mode 100644 index 3b1ff8bb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/059.png b/public/assets/out/icon-line-pro/food/png/059.png deleted file mode 100644 index 91d4d3e0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/060.png b/public/assets/out/icon-line-pro/food/png/060.png deleted file mode 100644 index d2265f3b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/061.png b/public/assets/out/icon-line-pro/food/png/061.png deleted file mode 100644 index afd97ef2..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/062.png b/public/assets/out/icon-line-pro/food/png/062.png deleted file mode 100644 index e3888958..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/063.png b/public/assets/out/icon-line-pro/food/png/063.png deleted file mode 100644 index 6bdc523d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/064.png b/public/assets/out/icon-line-pro/food/png/064.png deleted file mode 100644 index d3fcebaf..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/065.png b/public/assets/out/icon-line-pro/food/png/065.png deleted file mode 100644 index da26e88b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/066.png b/public/assets/out/icon-line-pro/food/png/066.png deleted file mode 100644 index a80d92d0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/067.png b/public/assets/out/icon-line-pro/food/png/067.png deleted file mode 100644 index f306c3ea..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/068.png b/public/assets/out/icon-line-pro/food/png/068.png deleted file mode 100644 index d25a0896..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/069.png b/public/assets/out/icon-line-pro/food/png/069.png deleted file mode 100644 index 310266e3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/070.png b/public/assets/out/icon-line-pro/food/png/070.png deleted file mode 100644 index cf7617a1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/071.png b/public/assets/out/icon-line-pro/food/png/071.png deleted file mode 100644 index 0558fd77..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/072.png b/public/assets/out/icon-line-pro/food/png/072.png deleted file mode 100644 index 9cae4c1a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/073.png b/public/assets/out/icon-line-pro/food/png/073.png deleted file mode 100644 index 9e2086ba..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/074.png b/public/assets/out/icon-line-pro/food/png/074.png deleted file mode 100644 index f57baa4c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/075.png b/public/assets/out/icon-line-pro/food/png/075.png deleted file mode 100644 index 3d148205..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/076.png b/public/assets/out/icon-line-pro/food/png/076.png deleted file mode 100644 index 61f61294..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/077.png b/public/assets/out/icon-line-pro/food/png/077.png deleted file mode 100644 index 7ca51ce7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/078.png b/public/assets/out/icon-line-pro/food/png/078.png deleted file mode 100644 index db8a54b8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/079.png b/public/assets/out/icon-line-pro/food/png/079.png deleted file mode 100644 index cf2e3a6e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/080.png b/public/assets/out/icon-line-pro/food/png/080.png deleted file mode 100644 index 8716402c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/081.png b/public/assets/out/icon-line-pro/food/png/081.png deleted file mode 100644 index 50cf71ef..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/082.png b/public/assets/out/icon-line-pro/food/png/082.png deleted file mode 100644 index 7d497bd4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/083.png b/public/assets/out/icon-line-pro/food/png/083.png deleted file mode 100644 index 770e3366..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/084.png b/public/assets/out/icon-line-pro/food/png/084.png deleted file mode 100644 index 472b4bd4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/085.png b/public/assets/out/icon-line-pro/food/png/085.png deleted file mode 100644 index 453d7ec3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/086.png b/public/assets/out/icon-line-pro/food/png/086.png deleted file mode 100644 index 0c241abb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/087.png b/public/assets/out/icon-line-pro/food/png/087.png deleted file mode 100644 index 6d04d824..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/088.png b/public/assets/out/icon-line-pro/food/png/088.png deleted file mode 100644 index b1f74d93..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/089.png b/public/assets/out/icon-line-pro/food/png/089.png deleted file mode 100644 index 7b96ec14..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/090.png b/public/assets/out/icon-line-pro/food/png/090.png deleted file mode 100644 index 9ed44f06..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/091.png b/public/assets/out/icon-line-pro/food/png/091.png deleted file mode 100644 index 4acfd06a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/092.png b/public/assets/out/icon-line-pro/food/png/092.png deleted file mode 100644 index 9c15c862..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/093.png b/public/assets/out/icon-line-pro/food/png/093.png deleted file mode 100644 index 74521d9f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/094.png b/public/assets/out/icon-line-pro/food/png/094.png deleted file mode 100644 index 21382700..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/095.png b/public/assets/out/icon-line-pro/food/png/095.png deleted file mode 100644 index 5c3c369e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/096.png b/public/assets/out/icon-line-pro/food/png/096.png deleted file mode 100644 index 42bd9cf6..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/097.png b/public/assets/out/icon-line-pro/food/png/097.png deleted file mode 100644 index 0108c43e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/098.png b/public/assets/out/icon-line-pro/food/png/098.png deleted file mode 100644 index 50d98679..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/099.png b/public/assets/out/icon-line-pro/food/png/099.png deleted file mode 100644 index b39eef80..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/100.png b/public/assets/out/icon-line-pro/food/png/100.png deleted file mode 100644 index 20bf3d49..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/101.png b/public/assets/out/icon-line-pro/food/png/101.png deleted file mode 100644 index cff1a7c6..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/102.png b/public/assets/out/icon-line-pro/food/png/102.png deleted file mode 100644 index f927822d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/103.png b/public/assets/out/icon-line-pro/food/png/103.png deleted file mode 100644 index e973fdbb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/104.png b/public/assets/out/icon-line-pro/food/png/104.png deleted file mode 100644 index 6ec67f48..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/105.png b/public/assets/out/icon-line-pro/food/png/105.png deleted file mode 100644 index d1548147..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/106.png b/public/assets/out/icon-line-pro/food/png/106.png deleted file mode 100644 index 849562bd..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/107.png b/public/assets/out/icon-line-pro/food/png/107.png deleted file mode 100644 index e0d18723..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/108.png b/public/assets/out/icon-line-pro/food/png/108.png deleted file mode 100644 index 47bedebe..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/109.png b/public/assets/out/icon-line-pro/food/png/109.png deleted file mode 100644 index 1cc9a4d1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/110.png b/public/assets/out/icon-line-pro/food/png/110.png deleted file mode 100644 index 3bfabfb3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/111.png b/public/assets/out/icon-line-pro/food/png/111.png deleted file mode 100644 index 754ff3a7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/112.png b/public/assets/out/icon-line-pro/food/png/112.png deleted file mode 100644 index b1c786be..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/113.png b/public/assets/out/icon-line-pro/food/png/113.png deleted file mode 100644 index 82f4508d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/114.png b/public/assets/out/icon-line-pro/food/png/114.png deleted file mode 100644 index 517fa799..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/115.png b/public/assets/out/icon-line-pro/food/png/115.png deleted file mode 100644 index d1907ad3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/116.png b/public/assets/out/icon-line-pro/food/png/116.png deleted file mode 100644 index bbe71404..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/117.png b/public/assets/out/icon-line-pro/food/png/117.png deleted file mode 100644 index daa7df92..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/118.png b/public/assets/out/icon-line-pro/food/png/118.png deleted file mode 100644 index 24ffa677..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/119.png b/public/assets/out/icon-line-pro/food/png/119.png deleted file mode 100644 index 1d34c746..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/120.png b/public/assets/out/icon-line-pro/food/png/120.png deleted file mode 100644 index 9cad7a5b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/121.png b/public/assets/out/icon-line-pro/food/png/121.png deleted file mode 100644 index 8aa0a4ab..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/122.png b/public/assets/out/icon-line-pro/food/png/122.png deleted file mode 100644 index f28805d3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/123.png b/public/assets/out/icon-line-pro/food/png/123.png deleted file mode 100644 index e766a3eb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/124.png b/public/assets/out/icon-line-pro/food/png/124.png deleted file mode 100644 index 90b216f7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/125.png b/public/assets/out/icon-line-pro/food/png/125.png deleted file mode 100644 index eb3b407e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/126.png b/public/assets/out/icon-line-pro/food/png/126.png deleted file mode 100644 index 0cfefbb7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/127.png b/public/assets/out/icon-line-pro/food/png/127.png deleted file mode 100644 index d8d751a8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/128.png b/public/assets/out/icon-line-pro/food/png/128.png deleted file mode 100644 index d9d114a0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/129.png b/public/assets/out/icon-line-pro/food/png/129.png deleted file mode 100644 index fcc661e0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/130.png b/public/assets/out/icon-line-pro/food/png/130.png deleted file mode 100644 index e330292f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/131.png b/public/assets/out/icon-line-pro/food/png/131.png deleted file mode 100644 index 4b538b77..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/132.png b/public/assets/out/icon-line-pro/food/png/132.png deleted file mode 100644 index da0f2bd0..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/133.png b/public/assets/out/icon-line-pro/food/png/133.png deleted file mode 100644 index b998a29d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/134.png b/public/assets/out/icon-line-pro/food/png/134.png deleted file mode 100644 index fc62658e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/135.png b/public/assets/out/icon-line-pro/food/png/135.png deleted file mode 100644 index 504ea3b7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/136.png b/public/assets/out/icon-line-pro/food/png/136.png deleted file mode 100644 index b343b95e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/137.png b/public/assets/out/icon-line-pro/food/png/137.png deleted file mode 100644 index b4f3c9f4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/138.png b/public/assets/out/icon-line-pro/food/png/138.png deleted file mode 100644 index 6d545c79..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/139.png b/public/assets/out/icon-line-pro/food/png/139.png deleted file mode 100644 index cec83546..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/140.png b/public/assets/out/icon-line-pro/food/png/140.png deleted file mode 100644 index 34526305..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/141.png b/public/assets/out/icon-line-pro/food/png/141.png deleted file mode 100644 index ff2b164d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/142.png b/public/assets/out/icon-line-pro/food/png/142.png deleted file mode 100644 index 04cf83de..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/143.png b/public/assets/out/icon-line-pro/food/png/143.png deleted file mode 100644 index 1e2c823a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/144.png b/public/assets/out/icon-line-pro/food/png/144.png deleted file mode 100644 index add0205c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/145.png b/public/assets/out/icon-line-pro/food/png/145.png deleted file mode 100644 index 896247c8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/146.png b/public/assets/out/icon-line-pro/food/png/146.png deleted file mode 100644 index b222075b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/147.png b/public/assets/out/icon-line-pro/food/png/147.png deleted file mode 100644 index 1bccaa40..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/148.png b/public/assets/out/icon-line-pro/food/png/148.png deleted file mode 100644 index 20699c25..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/149.png b/public/assets/out/icon-line-pro/food/png/149.png deleted file mode 100644 index 120f53f4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/150.png b/public/assets/out/icon-line-pro/food/png/150.png deleted file mode 100644 index 5592cd51..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/151.png b/public/assets/out/icon-line-pro/food/png/151.png deleted file mode 100644 index febc3a0a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/152.png b/public/assets/out/icon-line-pro/food/png/152.png deleted file mode 100644 index 2d7aa934..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/153.png b/public/assets/out/icon-line-pro/food/png/153.png deleted file mode 100644 index b68f11e8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/154.png b/public/assets/out/icon-line-pro/food/png/154.png deleted file mode 100644 index 2b2ff659..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/155.png b/public/assets/out/icon-line-pro/food/png/155.png deleted file mode 100644 index eea2330a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/156.png b/public/assets/out/icon-line-pro/food/png/156.png deleted file mode 100644 index cc80963b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/157.png b/public/assets/out/icon-line-pro/food/png/157.png deleted file mode 100644 index d81f0bea..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/158.png b/public/assets/out/icon-line-pro/food/png/158.png deleted file mode 100644 index 7ced974d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/159.png b/public/assets/out/icon-line-pro/food/png/159.png deleted file mode 100644 index f7a039a6..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/160.png b/public/assets/out/icon-line-pro/food/png/160.png deleted file mode 100644 index 77d66661..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/161.png b/public/assets/out/icon-line-pro/food/png/161.png deleted file mode 100644 index 9339fe24..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/162.png b/public/assets/out/icon-line-pro/food/png/162.png deleted file mode 100644 index 168d1747..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/163.png b/public/assets/out/icon-line-pro/food/png/163.png deleted file mode 100644 index c8bbaaeb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/164.png b/public/assets/out/icon-line-pro/food/png/164.png deleted file mode 100644 index c6edfb22..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/165.png b/public/assets/out/icon-line-pro/food/png/165.png deleted file mode 100644 index 76c42183..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/184.png b/public/assets/out/icon-line-pro/food/png/184.png deleted file mode 100644 index a4bfbea2..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/184.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/185.png b/public/assets/out/icon-line-pro/food/png/185.png deleted file mode 100644 index 29dd6f8a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/185.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/186.png b/public/assets/out/icon-line-pro/food/png/186.png deleted file mode 100644 index eb17bb96..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/186.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/187.png b/public/assets/out/icon-line-pro/food/png/187.png deleted file mode 100644 index 7d3e35c7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/187.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/188.png b/public/assets/out/icon-line-pro/food/png/188.png deleted file mode 100644 index e49b2131..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/188.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/189.png b/public/assets/out/icon-line-pro/food/png/189.png deleted file mode 100644 index e2ae0221..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/189.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/190.png b/public/assets/out/icon-line-pro/food/png/190.png deleted file mode 100644 index 8fa1db13..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/190.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/191.png b/public/assets/out/icon-line-pro/food/png/191.png deleted file mode 100644 index 1a7e199f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/191.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/192.png b/public/assets/out/icon-line-pro/food/png/192.png deleted file mode 100644 index 63456cf8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/192.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/193.png b/public/assets/out/icon-line-pro/food/png/193.png deleted file mode 100644 index aa71afad..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/193.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/194.png b/public/assets/out/icon-line-pro/food/png/194.png deleted file mode 100644 index 40c59b37..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/194.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/195.png b/public/assets/out/icon-line-pro/food/png/195.png deleted file mode 100644 index 43072af3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/195.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/196.png b/public/assets/out/icon-line-pro/food/png/196.png deleted file mode 100644 index 336a59ee..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/196.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/197.png b/public/assets/out/icon-line-pro/food/png/197.png deleted file mode 100644 index 95a3b1c1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/197.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/198.png b/public/assets/out/icon-line-pro/food/png/198.png deleted file mode 100644 index a3a4abeb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/198.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/199.png b/public/assets/out/icon-line-pro/food/png/199.png deleted file mode 100644 index 95fef02f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/199.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/200.png b/public/assets/out/icon-line-pro/food/png/200.png deleted file mode 100644 index 5894296c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/200.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/201.png b/public/assets/out/icon-line-pro/food/png/201.png deleted file mode 100644 index 8c02ec3f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/201.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/202.png b/public/assets/out/icon-line-pro/food/png/202.png deleted file mode 100644 index 312d9c1e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/202.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/203.png b/public/assets/out/icon-line-pro/food/png/203.png deleted file mode 100644 index f34cd02d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/203.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/204.png b/public/assets/out/icon-line-pro/food/png/204.png deleted file mode 100644 index 5cefbcc4..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/204.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/205.png b/public/assets/out/icon-line-pro/food/png/205.png deleted file mode 100644 index 78dbf691..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/205.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/206.png b/public/assets/out/icon-line-pro/food/png/206.png deleted file mode 100644 index 7f673c83..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/206.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/207.png b/public/assets/out/icon-line-pro/food/png/207.png deleted file mode 100644 index f7c52ff5..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/207.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/208.png b/public/assets/out/icon-line-pro/food/png/208.png deleted file mode 100644 index 6d74aaa3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/208.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/209.png b/public/assets/out/icon-line-pro/food/png/209.png deleted file mode 100644 index 5de48036..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/209.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/210.png b/public/assets/out/icon-line-pro/food/png/210.png deleted file mode 100644 index 9cfefa01..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/210.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/211.png b/public/assets/out/icon-line-pro/food/png/211.png deleted file mode 100644 index 501e1ddb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/211.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/212.png b/public/assets/out/icon-line-pro/food/png/212.png deleted file mode 100644 index 841c624e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/212.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/213.png b/public/assets/out/icon-line-pro/food/png/213.png deleted file mode 100644 index 847e3b0e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/213.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/214.png b/public/assets/out/icon-line-pro/food/png/214.png deleted file mode 100644 index 59047fbf..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/214.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/215.png b/public/assets/out/icon-line-pro/food/png/215.png deleted file mode 100644 index 2a02cb78..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/215.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/216.png b/public/assets/out/icon-line-pro/food/png/216.png deleted file mode 100644 index f2b8a3db..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/216.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/217.png b/public/assets/out/icon-line-pro/food/png/217.png deleted file mode 100644 index d90d887c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/217.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/218.png b/public/assets/out/icon-line-pro/food/png/218.png deleted file mode 100644 index 48082ed2..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/218.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/219.png b/public/assets/out/icon-line-pro/food/png/219.png deleted file mode 100644 index 5c364536..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/219.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/220.png b/public/assets/out/icon-line-pro/food/png/220.png deleted file mode 100644 index 8bcfc559..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/220.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/221.png b/public/assets/out/icon-line-pro/food/png/221.png deleted file mode 100644 index ba923b4c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/221.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/222.png b/public/assets/out/icon-line-pro/food/png/222.png deleted file mode 100644 index 8c66b63d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/222.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/223.png b/public/assets/out/icon-line-pro/food/png/223.png deleted file mode 100644 index a12fe956..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/223.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/224.png b/public/assets/out/icon-line-pro/food/png/224.png deleted file mode 100644 index 0d35c215..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/224.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/225.png b/public/assets/out/icon-line-pro/food/png/225.png deleted file mode 100644 index 52f1f67a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/225.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/226.png b/public/assets/out/icon-line-pro/food/png/226.png deleted file mode 100644 index 0e67dac9..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/226.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/227.png b/public/assets/out/icon-line-pro/food/png/227.png deleted file mode 100644 index fda257b1..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/227.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/228.png b/public/assets/out/icon-line-pro/food/png/228.png deleted file mode 100644 index ac64bf78..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/228.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/229.png b/public/assets/out/icon-line-pro/food/png/229.png deleted file mode 100644 index a2e3cd35..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/229.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/230.png b/public/assets/out/icon-line-pro/food/png/230.png deleted file mode 100644 index 50a69bbf..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/230.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/231.png b/public/assets/out/icon-line-pro/food/png/231.png deleted file mode 100644 index 5d0e15ac..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/231.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/232.png b/public/assets/out/icon-line-pro/food/png/232.png deleted file mode 100644 index 56c2c33b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/232.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/233.png b/public/assets/out/icon-line-pro/food/png/233.png deleted file mode 100644 index 038ef106..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/233.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/234.png b/public/assets/out/icon-line-pro/food/png/234.png deleted file mode 100644 index 92673274..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/234.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/235.png b/public/assets/out/icon-line-pro/food/png/235.png deleted file mode 100644 index 31159998..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/235.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/236.png b/public/assets/out/icon-line-pro/food/png/236.png deleted file mode 100644 index fbf6c035..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/236.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/237.png b/public/assets/out/icon-line-pro/food/png/237.png deleted file mode 100644 index 91df16ab..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/237.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/238.png b/public/assets/out/icon-line-pro/food/png/238.png deleted file mode 100644 index 1656f119..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/238.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/239.png b/public/assets/out/icon-line-pro/food/png/239.png deleted file mode 100644 index 5a10632b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/239.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/240.png b/public/assets/out/icon-line-pro/food/png/240.png deleted file mode 100644 index ff44e219..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/240.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/241.png b/public/assets/out/icon-line-pro/food/png/241.png deleted file mode 100644 index 5648084a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/241.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/242.png b/public/assets/out/icon-line-pro/food/png/242.png deleted file mode 100644 index 152ec67c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/242.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/243.png b/public/assets/out/icon-line-pro/food/png/243.png deleted file mode 100644 index 9c2dab3b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/243.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/244.png b/public/assets/out/icon-line-pro/food/png/244.png deleted file mode 100644 index e6340ed5..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/244.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/245.png b/public/assets/out/icon-line-pro/food/png/245.png deleted file mode 100644 index 7a08a02b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/245.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/246.png b/public/assets/out/icon-line-pro/food/png/246.png deleted file mode 100644 index e0de50e5..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/246.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/247.png b/public/assets/out/icon-line-pro/food/png/247.png deleted file mode 100644 index f90c4b49..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/247.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/248.png b/public/assets/out/icon-line-pro/food/png/248.png deleted file mode 100644 index 29302978..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/248.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/249.png b/public/assets/out/icon-line-pro/food/png/249.png deleted file mode 100644 index cf188158..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/249.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/250.png b/public/assets/out/icon-line-pro/food/png/250.png deleted file mode 100644 index 5d7e4217..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/250.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/251.png b/public/assets/out/icon-line-pro/food/png/251.png deleted file mode 100644 index 653df722..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/251.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/252.png b/public/assets/out/icon-line-pro/food/png/252.png deleted file mode 100644 index f6282b8a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/252.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/253.png b/public/assets/out/icon-line-pro/food/png/253.png deleted file mode 100644 index 80a2b213..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/253.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/254.png b/public/assets/out/icon-line-pro/food/png/254.png deleted file mode 100644 index 77413aba..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/254.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/255.png b/public/assets/out/icon-line-pro/food/png/255.png deleted file mode 100644 index d523e37a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/255.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/256.png b/public/assets/out/icon-line-pro/food/png/256.png deleted file mode 100644 index 47bccc20..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/256.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/257.png b/public/assets/out/icon-line-pro/food/png/257.png deleted file mode 100644 index ba66004e..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/257.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/258.png b/public/assets/out/icon-line-pro/food/png/258.png deleted file mode 100644 index 542ec5b3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/258.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/259.png b/public/assets/out/icon-line-pro/food/png/259.png deleted file mode 100644 index d0e5e54d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/259.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/260.png b/public/assets/out/icon-line-pro/food/png/260.png deleted file mode 100644 index 15d6893a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/260.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/261.png b/public/assets/out/icon-line-pro/food/png/261.png deleted file mode 100644 index e21c3a33..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/261.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/262.png b/public/assets/out/icon-line-pro/food/png/262.png deleted file mode 100644 index 048aa8b8..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/262.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/263.png b/public/assets/out/icon-line-pro/food/png/263.png deleted file mode 100644 index 3ea72510..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/263.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/264.png b/public/assets/out/icon-line-pro/food/png/264.png deleted file mode 100644 index fee5d98d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/264.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/265.png b/public/assets/out/icon-line-pro/food/png/265.png deleted file mode 100644 index 74de742f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/265.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/266.png b/public/assets/out/icon-line-pro/food/png/266.png deleted file mode 100644 index e617c31d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/266.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/267.png b/public/assets/out/icon-line-pro/food/png/267.png deleted file mode 100644 index 041f8cac..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/267.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/268.png b/public/assets/out/icon-line-pro/food/png/268.png deleted file mode 100644 index a5fd0c3c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/268.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/269.png b/public/assets/out/icon-line-pro/food/png/269.png deleted file mode 100644 index 88c6380f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/269.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/270.png b/public/assets/out/icon-line-pro/food/png/270.png deleted file mode 100644 index 48ec0e6f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/270.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/271.png b/public/assets/out/icon-line-pro/food/png/271.png deleted file mode 100644 index 7e7306c9..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/271.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/272.png b/public/assets/out/icon-line-pro/food/png/272.png deleted file mode 100644 index b399c11b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/272.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/273.png b/public/assets/out/icon-line-pro/food/png/273.png deleted file mode 100644 index 76d6a182..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/273.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/274.png b/public/assets/out/icon-line-pro/food/png/274.png deleted file mode 100644 index 55642a91..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/274.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/275.png b/public/assets/out/icon-line-pro/food/png/275.png deleted file mode 100644 index d2f11506..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/275.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/276.png b/public/assets/out/icon-line-pro/food/png/276.png deleted file mode 100644 index b3380723..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/276.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/277.png b/public/assets/out/icon-line-pro/food/png/277.png deleted file mode 100644 index 2561c4dc..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/277.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/278.png b/public/assets/out/icon-line-pro/food/png/278.png deleted file mode 100644 index 66ac25ba..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/278.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/279.png b/public/assets/out/icon-line-pro/food/png/279.png deleted file mode 100644 index 0d9a1b8a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/279.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/280.png b/public/assets/out/icon-line-pro/food/png/280.png deleted file mode 100644 index 62c269d3..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/280.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/281.png b/public/assets/out/icon-line-pro/food/png/281.png deleted file mode 100644 index dc9947bb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/281.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/282.png b/public/assets/out/icon-line-pro/food/png/282.png deleted file mode 100644 index 85353b73..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/282.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/283.png b/public/assets/out/icon-line-pro/food/png/283.png deleted file mode 100644 index c74c57bd..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/283.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/284.png b/public/assets/out/icon-line-pro/food/png/284.png deleted file mode 100644 index 459ad3e6..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/284.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/285.png b/public/assets/out/icon-line-pro/food/png/285.png deleted file mode 100644 index 766ae0cf..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/285.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/286.png b/public/assets/out/icon-line-pro/food/png/286.png deleted file mode 100644 index de11e991..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/286.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/287.png b/public/assets/out/icon-line-pro/food/png/287.png deleted file mode 100644 index e09a2b17..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/287.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/288.png b/public/assets/out/icon-line-pro/food/png/288.png deleted file mode 100644 index 40ce8c6c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/288.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/289.png b/public/assets/out/icon-line-pro/food/png/289.png deleted file mode 100644 index ae84df10..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/289.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/290.png b/public/assets/out/icon-line-pro/food/png/290.png deleted file mode 100644 index 0024ef9b..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/290.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/291.png b/public/assets/out/icon-line-pro/food/png/291.png deleted file mode 100644 index c7d905e7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/291.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/292.png b/public/assets/out/icon-line-pro/food/png/292.png deleted file mode 100644 index c7d905e7..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/292.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/293.png b/public/assets/out/icon-line-pro/food/png/293.png deleted file mode 100644 index 7b0ad7f6..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/293.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/294.png b/public/assets/out/icon-line-pro/food/png/294.png deleted file mode 100644 index 90e3616f..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/294.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/295.png b/public/assets/out/icon-line-pro/food/png/295.png deleted file mode 100644 index 0c64b22c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/295.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/296.png b/public/assets/out/icon-line-pro/food/png/296.png deleted file mode 100644 index cb3f506d..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/296.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/297.png b/public/assets/out/icon-line-pro/food/png/297.png deleted file mode 100644 index 065ab1eb..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/297.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/298.png b/public/assets/out/icon-line-pro/food/png/298.png deleted file mode 100644 index f9f10c8c..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/298.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/299.png b/public/assets/out/icon-line-pro/food/png/299.png deleted file mode 100644 index 765ea45a..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/299.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/png/300.png b/public/assets/out/icon-line-pro/food/png/300.png deleted file mode 100644 index 777a3492..00000000 Binary files a/public/assets/out/icon-line-pro/food/png/300.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.eot b/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.eot deleted file mode 100644 index 67a4faee..00000000 Binary files a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.svg b/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.svg deleted file mode 100644 index 58779447..00000000 --- a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.svg +++ /dev/null @@ -1,310 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.ttf b/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.ttf deleted file mode 100644 index 0e6db07a..00000000 Binary files a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.woff b/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.woff deleted file mode 100644 index ef56a90e..00000000 Binary files a/public/assets/out/icon-line-pro/food/webfont/fonts/food-48.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/food/webfont/icons-reference.html b/public/assets/out/icon-line-pro/food/webfont/icons-reference.html deleted file mode 100644 index f0ffe08e..00000000 --- a/public/assets/out/icon-line-pro/food/webfont/icons-reference.html +++ /dev/null @@ -1,2469 +0,0 @@ - - - - - - - Font Reference - Food ( 48 ) - - - - - -
      -

      Food ( 48 )

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/food/webfont/styles.css b/public/assets/out/icon-line-pro/food/webfont/styles.css deleted file mode 100644 index ebd0456a..00000000 --- a/public/assets/out/icon-line-pro/food/webfont/styles.css +++ /dev/null @@ -1,940 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "food-48"; - src:url("fonts/food-48.eot"); - src:url("fonts/food-48.eot?#iefix") format("embedded-opentype"), - url("fonts/food-48.woff") format("woff"), - url("fonts/food-48.ttf") format("truetype"), - url("fonts/food-48.svg#food-48") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "food-48" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "food-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-041:before { - content: "e"; -} -.icon-028:before { - content: "f"; -} -.icon-015:before { - content: "g"; -} -.icon-002:before { - content: "h"; -} -.icon-003:before { - content: "i"; -} -.icon-016:before { - content: "j"; -} -.icon-029:before { - content: "k"; -} -.icon-042:before { - content: "l"; -} -.icon-043:before { - content: "m"; -} -.icon-030:before { - content: "n"; -} -.icon-017:before { - content: "o"; -} -.icon-004:before { - content: "p"; -} -.icon-005:before { - content: "q"; -} -.icon-018:before { - content: "r"; -} -.icon-031:before { - content: "s"; -} -.icon-044:before { - content: "t"; -} -.icon-045:before { - content: "u"; -} -.icon-032:before { - content: "v"; -} -.icon-019:before { - content: "w"; -} -.icon-006:before { - content: "x"; -} -.icon-007:before { - content: "y"; -} -.icon-020:before { - content: "z"; -} -.icon-033:before { - content: "A"; -} -.icon-046:before { - content: "B"; -} -.icon-047:before { - content: "C"; -} -.icon-034:before { - content: "D"; -} -.icon-021:before { - content: "E"; -} -.icon-008:before { - content: "F"; -} -.icon-009:before { - content: "G"; -} -.icon-022:before { - content: "H"; -} -.icon-035:before { - content: "I"; -} -.icon-048:before { - content: "J"; -} -.icon-049:before { - content: "K"; -} -.icon-036:before { - content: "L"; -} -.icon-023:before { - content: "M"; -} -.icon-010:before { - content: "N"; -} -.icon-011:before { - content: "O"; -} -.icon-024:before { - content: "P"; -} -.icon-037:before { - content: "Q"; -} -.icon-050:before { - content: "R"; -} -.icon-051:before { - content: "S"; -} -.icon-038:before { - content: "T"; -} -.icon-025:before { - content: "U"; -} -.icon-012:before { - content: "V"; -} -.icon-013:before { - content: "W"; -} -.icon-026:before { - content: "X"; -} -.icon-039:before { - content: "Y"; -} -.icon-052:before { - content: "Z"; -} -.icon-065:before { - content: "0"; -} -.icon-078:before { - content: "1"; -} -.icon-091:before { - content: "2"; -} -.icon-104:before { - content: "3"; -} -.icon-103:before { - content: "4"; -} -.icon-090:before { - content: "5"; -} -.icon-077:before { - content: "6"; -} -.icon-064:before { - content: "7"; -} -.icon-063:before { - content: "8"; -} -.icon-076:before { - content: "9"; -} -.icon-089:before { - content: "!"; -} -.icon-102:before { - content: "\""; -} -.icon-101:before { - content: "#"; -} -.icon-088:before { - content: "$"; -} -.icon-075:before { - content: "%"; -} -.icon-062:before { - content: "&"; -} -.icon-061:before { - content: "'"; -} -.icon-074:before { - content: "("; -} -.icon-087:before { - content: ")"; -} -.icon-100:before { - content: "*"; -} -.icon-099:before { - content: "+"; -} -.icon-086:before { - content: ","; -} -.icon-073:before { - content: "-"; -} -.icon-060:before { - content: "."; -} -.icon-059:before { - content: "/"; -} -.icon-072:before { - content: ":"; -} -.icon-085:before { - content: ";"; -} -.icon-098:before { - content: "<"; -} -.icon-097:before { - content: "="; -} -.icon-084:before { - content: ">"; -} -.icon-071:before { - content: "?"; -} -.icon-058:before { - content: "@"; -} -.icon-057:before { - content: "["; -} -.icon-070:before { - content: "]"; -} -.icon-083:before { - content: "^"; -} -.icon-096:before { - content: "_"; -} -.icon-095:before { - content: "`"; -} -.icon-082:before { - content: "{"; -} -.icon-069:before { - content: "|"; -} -.icon-056:before { - content: "}"; -} -.icon-055:before { - content: "~"; -} -.icon-068:before { - content: "\\"; -} -.icon-081:before { - content: "\e000"; -} -.icon-094:before { - content: "\e001"; -} -.icon-093:before { - content: "\e002"; -} -.icon-080:before { - content: "\e003"; -} -.icon-067:before { - content: "\e004"; -} -.icon-054:before { - content: "\e005"; -} -.icon-053:before { - content: "\e006"; -} -.icon-066:before { - content: "\e007"; -} -.icon-079:before { - content: "\e008"; -} -.icon-092:before { - content: "\e009"; -} -.icon-105:before { - content: "\e00a"; -} -.icon-118:before { - content: "\e00b"; -} -.icon-131:before { - content: "\e00c"; -} -.icon-144:before { - content: "\e00d"; -} -.icon-157:before { - content: "\e00e"; -} -.icon-170:before { - content: "\e00f"; -} -.icon-171:before { - content: "\e010"; -} -.icon-158:before { - content: "\e011"; -} -.icon-145:before { - content: "\e012"; -} -.icon-132:before { - content: "\e013"; -} -.icon-119:before { - content: "\e014"; -} -.icon-106:before { - content: "\e015"; -} -.icon-107:before { - content: "\e016"; -} -.icon-120:before { - content: "\e017"; -} -.icon-133:before { - content: "\e018"; -} -.icon-146:before { - content: "\e019"; -} -.icon-159:before { - content: "\e01a"; -} -.icon-172:before { - content: "\e01b"; -} -.icon-173:before { - content: "\e01c"; -} -.icon-160:before { - content: "\e01d"; -} -.icon-147:before { - content: "\e01e"; -} -.icon-134:before { - content: "\e01f"; -} -.icon-121:before { - content: "\e020"; -} -.icon-108:before { - content: "\e021"; -} -.icon-109:before { - content: "\e022"; -} -.icon-122:before { - content: "\e023"; -} -.icon-135:before { - content: "\e024"; -} -.icon-148:before { - content: "\e025"; -} -.icon-161:before { - content: "\e026"; -} -.icon-174:before { - content: "\e027"; -} -.icon-175:before { - content: "\e028"; -} -.icon-162:before { - content: "\e029"; -} -.icon-149:before { - content: "\e02a"; -} -.icon-136:before { - content: "\e02b"; -} -.icon-123:before { - content: "\e02c"; -} -.icon-110:before { - content: "\e02d"; -} -.icon-111:before { - content: "\e02e"; -} -.icon-124:before { - content: "\e02f"; -} -.icon-137:before { - content: "\e030"; -} -.icon-150:before { - content: "\e031"; -} -.icon-163:before { - content: "\e032"; -} -.icon-176:before { - content: "\e033"; -} -.icon-177:before { - content: "\e034"; -} -.icon-164:before { - content: "\e035"; -} -.icon-151:before { - content: "\e036"; -} -.icon-138:before { - content: "\e037"; -} -.icon-125:before { - content: "\e038"; -} -.icon-112:before { - content: "\e039"; -} -.icon-113:before { - content: "\e03a"; -} -.icon-126:before { - content: "\e03b"; -} -.icon-139:before { - content: "\e03c"; -} -.icon-152:before { - content: "\e03d"; -} -.icon-165:before { - content: "\e03e"; -} -.icon-178:before { - content: "\e03f"; -} -.icon-191:before { - content: "\e040"; -} -.icon-192:before { - content: "\e041"; -} -.icon-166:before { - content: "\e042"; -} -.icon-153:before { - content: "\e043"; -} -.icon-140:before { - content: "\e044"; -} -.icon-127:before { - content: "\e045"; -} -.icon-114:before { - content: "\e046"; -} -.icon-115:before { - content: "\e047"; -} -.icon-128:before { - content: "\e048"; -} -.icon-129:before { - content: "\e049"; -} -.icon-116:before { - content: "\e04a"; -} -.icon-117:before { - content: "\e04b"; -} -.icon-130:before { - content: "\e04c"; -} -.icon-143:before { - content: "\e04d"; -} -.icon-142:before { - content: "\e04e"; -} -.icon-141:before { - content: "\e04f"; -} -.icon-154:before { - content: "\e050"; -} -.icon-155:before { - content: "\e051"; -} -.icon-156:before { - content: "\e052"; -} -.icon-169:before { - content: "\e053"; -} -.icon-168:before { - content: "\e054"; -} -.icon-167:before { - content: "\e055"; -} -.icon-179:before { - content: "\e056"; -} -.icon-180:before { - content: "\e057"; -} -.icon-181:before { - content: "\e058"; -} -.icon-182:before { - content: "\e059"; -} -.icon-195:before { - content: "\e05a"; -} -.icon-194:before { - content: "\e05b"; -} -.icon-193:before { - content: "\e05c"; -} -.icon-190:before { - content: "\e05d"; -} -.icon-189:before { - content: "\e05e"; -} -.icon-188:before { - content: "\e05f"; -} -.icon-187:before { - content: "\e060"; -} -.icon-185:before { - content: "\e061"; -} -.icon-184:before { - content: "\e062"; -} -.icon-183:before { - content: "\e063"; -} -.icon-186:before { - content: "\e064"; -} -.icon-208:before { - content: "\e065"; -} -.icon-221:before { - content: "\e066"; -} -.icon-220:before { - content: "\e067"; -} -.icon-207:before { - content: "\e068"; -} -.icon-206:before { - content: "\e069"; -} -.icon-219:before { - content: "\e06a"; -} -.icon-205:before { - content: "\e06b"; -} -.icon-204:before { - content: "\e06c"; -} -.icon-217:before { - content: "\e06d"; -} -.icon-216:before { - content: "\e06e"; -} -.icon-203:before { - content: "\e06f"; -} -.icon-202:before { - content: "\e070"; -} -.icon-215:before { - content: "\e071"; -} -.icon-214:before { - content: "\e072"; -} -.icon-201:before { - content: "\e073"; -} -.icon-200:before { - content: "\e074"; -} -.icon-213:before { - content: "\e075"; -} -.icon-212:before { - content: "\e076"; -} -.icon-199:before { - content: "\e077"; -} -.icon-198:before { - content: "\e078"; -} -.icon-211:before { - content: "\e079"; -} -.icon-210:before { - content: "\e07a"; -} -.icon-197:before { - content: "\e07b"; -} -.icon-196:before { - content: "\e07c"; -} -.icon-209:before { - content: "\e07d"; -} -.icon-222:before { - content: "\e07e"; -} -.icon-235:before { - content: "\e07f"; -} -.icon-248:before { - content: "\e080"; -} -.icon-249:before { - content: "\e081"; -} -.icon-236:before { - content: "\e082"; -} -.icon-223:before { - content: "\e083"; -} -.icon-224:before { - content: "\e084"; -} -.icon-237:before { - content: "\e085"; -} -.icon-250:before { - content: "\e086"; -} -.icon-251:before { - content: "\e087"; -} -.icon-238:before { - content: "\e088"; -} -.icon-225:before { - content: "\e089"; -} -.icon-226:before { - content: "\e08a"; -} -.icon-239:before { - content: "\e08b"; -} -.icon-252:before { - content: "\e08c"; -} -.icon-253:before { - content: "\e08d"; -} -.icon-240:before { - content: "\e08e"; -} -.icon-227:before { - content: "\e08f"; -} -.icon-228:before { - content: "\e090"; -} -.icon-241:before { - content: "\e091"; -} -.icon-254:before { - content: "\e092"; -} -.icon-255:before { - content: "\e093"; -} -.icon-242:before { - content: "\e094"; -} -.icon-229:before { - content: "\e095"; -} -.icon-230:before { - content: "\e096"; -} -.icon-243:before { - content: "\e097"; -} -.icon-256:before { - content: "\e098"; -} -.icon-257:before { - content: "\e099"; -} -.icon-244:before { - content: "\e09a"; -} -.icon-231:before { - content: "\e09b"; -} -.icon-232:before { - content: "\e09c"; -} -.icon-245:before { - content: "\e09d"; -} -.icon-258:before { - content: "\e09e"; -} -.icon-218:before { - content: "\e09f"; -} -.icon-233:before { - content: "\e0a0"; -} -.icon-246:before { - content: "\e0a1"; -} -.icon-259:before { - content: "\e0a2"; -} -.icon-260:before { - content: "\e0a3"; -} -.icon-247:before { - content: "\e0a4"; -} -.icon-234:before { - content: "\e0a5"; -} -.icon-273:before { - content: "\e0a6"; -} -.icon-286:before { - content: "\e0a7"; -} -.icon-299:before { - content: "\e0a8"; -} -.icon-298:before { - content: "\e0a9"; -} -.icon-285:before { - content: "\e0aa"; -} -.icon-272:before { - content: "\e0ab"; -} -.icon-271:before { - content: "\e0ac"; -} -.icon-284:before { - content: "\e0ad"; -} -.icon-297:before { - content: "\e0ae"; -} -.icon-296:before { - content: "\e0af"; -} -.icon-283:before { - content: "\e0b0"; -} -.icon-270:before { - content: "\e0b1"; -} -.icon-269:before { - content: "\e0b2"; -} -.icon-282:before { - content: "\e0b3"; -} -.icon-295:before { - content: "\e0b4"; -} -.icon-294:before { - content: "\e0b5"; -} -.icon-281:before { - content: "\e0b6"; -} -.icon-268:before { - content: "\e0b7"; -} -.icon-267:before { - content: "\e0b8"; -} -.icon-280:before { - content: "\e0b9"; -} -.icon-293:before { - content: "\e0ba"; -} -.icon-292:before { - content: "\e0bb"; -} -.icon-279:before { - content: "\e0bc"; -} -.icon-266:before { - content: "\e0bd"; -} -.icon-265:before { - content: "\e0be"; -} -.icon-278:before { - content: "\e0bf"; -} -.icon-291:before { - content: "\e0c0"; -} -.icon-290:before { - content: "\e0c1"; -} -.icon-277:before { - content: "\e0c2"; -} -.icon-264:before { - content: "\e0c3"; -} -.icon-263:before { - content: "\e0c4"; -} -.icon-276:before { - content: "\e0c5"; -} -.icon-289:before { - content: "\e0c6"; -} -.icon-288:before { - content: "\e0c7"; -} -.icon-275:before { - content: "\e0c8"; -} -.icon-262:before { - content: "\e0c9"; -} -.icon-261:before { - content: "\e0ca"; -} -.icon-274:before { - content: "\e0cb"; -} -.icon-287:before { - content: "\e0cc"; -} -.icon-300:before { - content: "\e0cd"; -} diff --git a/public/assets/out/icon-line-pro/furniture/png/001.png b/public/assets/out/icon-line-pro/furniture/png/001.png deleted file mode 100644 index 21c599ac..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/002.png b/public/assets/out/icon-line-pro/furniture/png/002.png deleted file mode 100644 index 6a5a3709..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/003.png b/public/assets/out/icon-line-pro/furniture/png/003.png deleted file mode 100644 index e01ad18a..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/004.png b/public/assets/out/icon-line-pro/furniture/png/004.png deleted file mode 100644 index 25f46b88..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/005.png b/public/assets/out/icon-line-pro/furniture/png/005.png deleted file mode 100644 index df0e1687..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/006.png b/public/assets/out/icon-line-pro/furniture/png/006.png deleted file mode 100644 index b900d907..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/007.png b/public/assets/out/icon-line-pro/furniture/png/007.png deleted file mode 100644 index 2483d23c..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/008.png b/public/assets/out/icon-line-pro/furniture/png/008.png deleted file mode 100644 index a3f48565..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/009.png b/public/assets/out/icon-line-pro/furniture/png/009.png deleted file mode 100644 index d6126a08..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/010.png b/public/assets/out/icon-line-pro/furniture/png/010.png deleted file mode 100644 index 645762aa..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/011.png b/public/assets/out/icon-line-pro/furniture/png/011.png deleted file mode 100644 index 1cb5af8d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/012.png b/public/assets/out/icon-line-pro/furniture/png/012.png deleted file mode 100644 index f274272d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/013.png b/public/assets/out/icon-line-pro/furniture/png/013.png deleted file mode 100644 index 794bf0cc..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/014.png b/public/assets/out/icon-line-pro/furniture/png/014.png deleted file mode 100644 index d94b9b8d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/015.png b/public/assets/out/icon-line-pro/furniture/png/015.png deleted file mode 100644 index f96f830f..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/016.png b/public/assets/out/icon-line-pro/furniture/png/016.png deleted file mode 100644 index 53a153e2..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/017.png b/public/assets/out/icon-line-pro/furniture/png/017.png deleted file mode 100644 index 1e88981a..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/018.png b/public/assets/out/icon-line-pro/furniture/png/018.png deleted file mode 100644 index dc789661..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/019.png b/public/assets/out/icon-line-pro/furniture/png/019.png deleted file mode 100644 index 43b8d8cd..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/020.png b/public/assets/out/icon-line-pro/furniture/png/020.png deleted file mode 100644 index 9bbea34c..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/021.png b/public/assets/out/icon-line-pro/furniture/png/021.png deleted file mode 100644 index 1af94598..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/022.png b/public/assets/out/icon-line-pro/furniture/png/022.png deleted file mode 100644 index c88d7221..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/023.png b/public/assets/out/icon-line-pro/furniture/png/023.png deleted file mode 100644 index 5affb5bf..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/024.png b/public/assets/out/icon-line-pro/furniture/png/024.png deleted file mode 100644 index 33c8a918..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/025.png b/public/assets/out/icon-line-pro/furniture/png/025.png deleted file mode 100644 index 5930924a..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/026.png b/public/assets/out/icon-line-pro/furniture/png/026.png deleted file mode 100644 index d0383322..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/027.png b/public/assets/out/icon-line-pro/furniture/png/027.png deleted file mode 100644 index e4c0333b..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/028.png b/public/assets/out/icon-line-pro/furniture/png/028.png deleted file mode 100644 index 6331fd80..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/029.png b/public/assets/out/icon-line-pro/furniture/png/029.png deleted file mode 100644 index 9cb84e67..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/030.png b/public/assets/out/icon-line-pro/furniture/png/030.png deleted file mode 100644 index 79a4a31e..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/031.png b/public/assets/out/icon-line-pro/furniture/png/031.png deleted file mode 100644 index 7c0a598a..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/032.png b/public/assets/out/icon-line-pro/furniture/png/032.png deleted file mode 100644 index 30d1df5a..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/033.png b/public/assets/out/icon-line-pro/furniture/png/033.png deleted file mode 100644 index cf3a63a5..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/034.png b/public/assets/out/icon-line-pro/furniture/png/034.png deleted file mode 100644 index 82341cce..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/035.png b/public/assets/out/icon-line-pro/furniture/png/035.png deleted file mode 100644 index a6bab390..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/036.png b/public/assets/out/icon-line-pro/furniture/png/036.png deleted file mode 100644 index a7863d41..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/037.png b/public/assets/out/icon-line-pro/furniture/png/037.png deleted file mode 100644 index 27874ed3..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/038.png b/public/assets/out/icon-line-pro/furniture/png/038.png deleted file mode 100644 index f0a8d7f7..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/039.png b/public/assets/out/icon-line-pro/furniture/png/039.png deleted file mode 100644 index 88b694d2..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/040.png b/public/assets/out/icon-line-pro/furniture/png/040.png deleted file mode 100644 index c9c99020..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/041.png b/public/assets/out/icon-line-pro/furniture/png/041.png deleted file mode 100644 index f793d59d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/042.png b/public/assets/out/icon-line-pro/furniture/png/042.png deleted file mode 100644 index 29c6d922..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/043.png b/public/assets/out/icon-line-pro/furniture/png/043.png deleted file mode 100644 index 0da78bab..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/044.png b/public/assets/out/icon-line-pro/furniture/png/044.png deleted file mode 100644 index a9f5b2f4..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/045.png b/public/assets/out/icon-line-pro/furniture/png/045.png deleted file mode 100644 index 68a04099..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/046.png b/public/assets/out/icon-line-pro/furniture/png/046.png deleted file mode 100644 index 5a8d4b14..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/047.png b/public/assets/out/icon-line-pro/furniture/png/047.png deleted file mode 100644 index 1a061b38..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/048.png b/public/assets/out/icon-line-pro/furniture/png/048.png deleted file mode 100644 index bee138ad..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/049.png b/public/assets/out/icon-line-pro/furniture/png/049.png deleted file mode 100644 index 53cebdcb..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/050.png b/public/assets/out/icon-line-pro/furniture/png/050.png deleted file mode 100644 index 4d6cc185..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/051.png b/public/assets/out/icon-line-pro/furniture/png/051.png deleted file mode 100644 index db5219a4..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/052.png b/public/assets/out/icon-line-pro/furniture/png/052.png deleted file mode 100644 index 9eb88cac..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/053.png b/public/assets/out/icon-line-pro/furniture/png/053.png deleted file mode 100644 index cb41c7f7..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/054.png b/public/assets/out/icon-line-pro/furniture/png/054.png deleted file mode 100644 index 07986f86..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/055.png b/public/assets/out/icon-line-pro/furniture/png/055.png deleted file mode 100644 index 7f1ca3c9..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/056.png b/public/assets/out/icon-line-pro/furniture/png/056.png deleted file mode 100644 index 9ba50fc7..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/057.png b/public/assets/out/icon-line-pro/furniture/png/057.png deleted file mode 100644 index 47d1544b..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/058.png b/public/assets/out/icon-line-pro/furniture/png/058.png deleted file mode 100644 index 3c0193ec..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/059.png b/public/assets/out/icon-line-pro/furniture/png/059.png deleted file mode 100644 index f5a3cbc6..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/060.png b/public/assets/out/icon-line-pro/furniture/png/060.png deleted file mode 100644 index 904264fb..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/061.png b/public/assets/out/icon-line-pro/furniture/png/061.png deleted file mode 100644 index fac23cb2..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/062.png b/public/assets/out/icon-line-pro/furniture/png/062.png deleted file mode 100644 index 3c9dba02..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/063.png b/public/assets/out/icon-line-pro/furniture/png/063.png deleted file mode 100644 index 33593387..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/064.png b/public/assets/out/icon-line-pro/furniture/png/064.png deleted file mode 100644 index c131392f..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/065.png b/public/assets/out/icon-line-pro/furniture/png/065.png deleted file mode 100644 index 59e5cd32..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/066.png b/public/assets/out/icon-line-pro/furniture/png/066.png deleted file mode 100644 index 8eab9a3f..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/067.png b/public/assets/out/icon-line-pro/furniture/png/067.png deleted file mode 100644 index 4f339036..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/068.png b/public/assets/out/icon-line-pro/furniture/png/068.png deleted file mode 100644 index 362c042f..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/069.png b/public/assets/out/icon-line-pro/furniture/png/069.png deleted file mode 100644 index 41af70c7..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/070.png b/public/assets/out/icon-line-pro/furniture/png/070.png deleted file mode 100644 index 8e941b40..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/071.png b/public/assets/out/icon-line-pro/furniture/png/071.png deleted file mode 100644 index 05773275..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/072.png b/public/assets/out/icon-line-pro/furniture/png/072.png deleted file mode 100644 index 63fd8f49..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/073.png b/public/assets/out/icon-line-pro/furniture/png/073.png deleted file mode 100644 index 7ef3a9c0..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/074.png b/public/assets/out/icon-line-pro/furniture/png/074.png deleted file mode 100644 index ea50f026..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/075.png b/public/assets/out/icon-line-pro/furniture/png/075.png deleted file mode 100644 index b62ee1e0..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/076.png b/public/assets/out/icon-line-pro/furniture/png/076.png deleted file mode 100644 index f4f3b12e..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/077.png b/public/assets/out/icon-line-pro/furniture/png/077.png deleted file mode 100644 index 5b795abc..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/078.png b/public/assets/out/icon-line-pro/furniture/png/078.png deleted file mode 100644 index 33c343a5..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/079.png b/public/assets/out/icon-line-pro/furniture/png/079.png deleted file mode 100644 index a901cf6e..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/080.png b/public/assets/out/icon-line-pro/furniture/png/080.png deleted file mode 100644 index b0dd64b7..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/081.png b/public/assets/out/icon-line-pro/furniture/png/081.png deleted file mode 100644 index 1b207a9f..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/082.png b/public/assets/out/icon-line-pro/furniture/png/082.png deleted file mode 100644 index b5afa608..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/083.png b/public/assets/out/icon-line-pro/furniture/png/083.png deleted file mode 100644 index 8c7f6536..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/084.png b/public/assets/out/icon-line-pro/furniture/png/084.png deleted file mode 100644 index 9db3dc4c..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/085.png b/public/assets/out/icon-line-pro/furniture/png/085.png deleted file mode 100644 index 3259f2bf..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/086.png b/public/assets/out/icon-line-pro/furniture/png/086.png deleted file mode 100644 index 0ebd8b1d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/087.png b/public/assets/out/icon-line-pro/furniture/png/087.png deleted file mode 100644 index 603747fe..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/088.png b/public/assets/out/icon-line-pro/furniture/png/088.png deleted file mode 100644 index 1e3fbbde..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/089.png b/public/assets/out/icon-line-pro/furniture/png/089.png deleted file mode 100644 index 68843424..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/090.png b/public/assets/out/icon-line-pro/furniture/png/090.png deleted file mode 100644 index 8fa328eb..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/091.png b/public/assets/out/icon-line-pro/furniture/png/091.png deleted file mode 100644 index 0a3364e4..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/092.png b/public/assets/out/icon-line-pro/furniture/png/092.png deleted file mode 100644 index 5b264028..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/093.png b/public/assets/out/icon-line-pro/furniture/png/093.png deleted file mode 100644 index 5b8e234d..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/094.png b/public/assets/out/icon-line-pro/furniture/png/094.png deleted file mode 100644 index 49d3d261..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/095.png b/public/assets/out/icon-line-pro/furniture/png/095.png deleted file mode 100644 index dabf3d15..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/096.png b/public/assets/out/icon-line-pro/furniture/png/096.png deleted file mode 100644 index fc8558c9..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/097.png b/public/assets/out/icon-line-pro/furniture/png/097.png deleted file mode 100644 index 88204286..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/098.png b/public/assets/out/icon-line-pro/furniture/png/098.png deleted file mode 100644 index 3b6718bb..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/099.png b/public/assets/out/icon-line-pro/furniture/png/099.png deleted file mode 100644 index 17424070..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/png/100.png b/public/assets/out/icon-line-pro/furniture/png/100.png deleted file mode 100644 index 42a586b2..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.eot b/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.eot deleted file mode 100644 index 897294f6..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.svg b/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.svg deleted file mode 100644 index 68f312e2..00000000 --- a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.ttf b/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.ttf deleted file mode 100644 index ef813ca0..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.woff b/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.woff deleted file mode 100644 index 06479615..00000000 Binary files a/public/assets/out/icon-line-pro/furniture/webfont/fonts/furniture.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/furniture/webfont/icons-reference.html b/public/assets/out/icon-line-pro/furniture/webfont/icons-reference.html deleted file mode 100644 index a8e71980..00000000 --- a/public/assets/out/icon-line-pro/furniture/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Furniture - - - - - -
      -

      Furniture

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/furniture/webfont/styles.css b/public/assets/out/icon-line-pro/furniture/webfont/styles.css deleted file mode 100644 index d61e4772..00000000 --- a/public/assets/out/icon-line-pro/furniture/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "furniture"; - src:url("fonts/furniture.eot"); - src:url("fonts/furniture.eot?#iefix") format("embedded-opentype"), - url("fonts/furniture.woff") format("woff"), - url("fonts/furniture.ttf") format("truetype"), - url("fonts/furniture.svg#furniture") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "furniture" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "furniture" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-041:before { - content: "e"; -} -.icon-028:before { - content: "f"; -} -.icon-015:before { - content: "g"; -} -.icon-002:before { - content: "h"; -} -.icon-003:before { - content: "i"; -} -.icon-016:before { - content: "j"; -} -.icon-029:before { - content: "k"; -} -.icon-042:before { - content: "l"; -} -.icon-043:before { - content: "m"; -} -.icon-030:before { - content: "n"; -} -.icon-017:before { - content: "o"; -} -.icon-004:before { - content: "p"; -} -.icon-005:before { - content: "q"; -} -.icon-018:before { - content: "r"; -} -.icon-031:before { - content: "s"; -} -.icon-044:before { - content: "t"; -} -.icon-045:before { - content: "u"; -} -.icon-032:before { - content: "v"; -} -.icon-019:before { - content: "w"; -} -.icon-006:before { - content: "x"; -} -.icon-007:before { - content: "y"; -} -.icon-020:before { - content: "z"; -} -.icon-033:before { - content: "A"; -} -.icon-046:before { - content: "B"; -} -.icon-047:before { - content: "C"; -} -.icon-034:before { - content: "D"; -} -.icon-021:before { - content: "E"; -} -.icon-008:before { - content: "F"; -} -.icon-009:before { - content: "G"; -} -.icon-022:before { - content: "H"; -} -.icon-035:before { - content: "I"; -} -.icon-048:before { - content: "J"; -} -.icon-049:before { - content: "K"; -} -.icon-036:before { - content: "L"; -} -.icon-023:before { - content: "M"; -} -.icon-010:before { - content: "N"; -} -.icon-011:before { - content: "O"; -} -.icon-024:before { - content: "P"; -} -.icon-037:before { - content: "Q"; -} -.icon-050:before { - content: "R"; -} -.icon-051:before { - content: "S"; -} -.icon-038:before { - content: "T"; -} -.icon-025:before { - content: "U"; -} -.icon-012:before { - content: "V"; -} -.icon-013:before { - content: "W"; -} -.icon-026:before { - content: "X"; -} -.icon-039:before { - content: "Y"; -} -.icon-052:before { - content: "Z"; -} -.icon-065:before { - content: "0"; -} -.icon-064:before { - content: "1"; -} -.icon-063:before { - content: "2"; -} -.icon-062:before { - content: "3"; -} -.icon-061:before { - content: "4"; -} -.icon-060:before { - content: "5"; -} -.icon-059:before { - content: "6"; -} -.icon-058:before { - content: "7"; -} -.icon-057:before { - content: "8"; -} -.icon-056:before { - content: "9"; -} -.icon-055:before { - content: "!"; -} -.icon-054:before { - content: "\""; -} -.icon-053:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-093:before { - content: "'"; -} -.icon-080:before { - content: "("; -} -.icon-067:before { - content: ")"; -} -.icon-068:before { - content: "*"; -} -.icon-081:before { - content: "+"; -} -.icon-094:before { - content: ","; -} -.icon-095:before { - content: "-"; -} -.icon-082:before { - content: "."; -} -.icon-069:before { - content: "/"; -} -.icon-070:before { - content: ":"; -} -.icon-083:before { - content: ";"; -} -.icon-096:before { - content: "<"; -} -.icon-097:before { - content: "="; -} -.icon-084:before { - content: ">"; -} -.icon-071:before { - content: "?"; -} -.icon-073:before { - content: "@"; -} -.icon-072:before { - content: "["; -} -.icon-085:before { - content: "]"; -} -.icon-098:before { - content: "^"; -} -.icon-099:before { - content: "_"; -} -.icon-086:before { - content: "`"; -} -.icon-087:before { - content: "{"; -} -.icon-100:before { - content: "|"; -} -.icon-075:before { - content: "}"; -} -.icon-074:before { - content: "~"; -} -.icon-076:before { - content: "\\"; -} -.icon-089:before { - content: "\e000"; -} -.icon-088:before { - content: "\e001"; -} -.icon-090:before { - content: "\e002"; -} -.icon-077:before { - content: "\e003"; -} -.icon-078:before { - content: "\e004"; -} -.icon-091:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/001.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/001.png deleted file mode 100644 index d0a932b3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/002.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/002.png deleted file mode 100644 index 152e1b13..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/003.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/003.png deleted file mode 100644 index a4e3f911..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/004.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/004.png deleted file mode 100644 index ed8f458b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/005.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/005.png deleted file mode 100644 index 8d0b1b50..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/006.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/006.png deleted file mode 100644 index ed5afa44..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/007.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/007.png deleted file mode 100644 index 9b9e3fb4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/008.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/008.png deleted file mode 100644 index 65572ad1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/009.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/009.png deleted file mode 100644 index ee459780..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/010.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/010.png deleted file mode 100644 index f1e00149..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/011.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/011.png deleted file mode 100644 index 47784b7e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/012.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/012.png deleted file mode 100644 index 6fe6b528..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/013.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/013.png deleted file mode 100644 index 3f62f2f0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/014.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/014.png deleted file mode 100644 index 69d0468f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/015.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/015.png deleted file mode 100644 index 651fb89a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/016.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/016.png deleted file mode 100644 index 879045b0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/017.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/017.png deleted file mode 100644 index fdd01acc..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/018.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/018.png deleted file mode 100644 index 67518f49..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/019.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/019.png deleted file mode 100644 index 313189ab..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/020.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/020.png deleted file mode 100644 index f1132410..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/021.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/021.png deleted file mode 100644 index c4809df4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/022.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/022.png deleted file mode 100644 index 381a1540..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/023.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/023.png deleted file mode 100644 index 8031bfff..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/024.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/024.png deleted file mode 100644 index affc392d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/025.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/025.png deleted file mode 100644 index e855b79d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/026.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/026.png deleted file mode 100644 index 226a0dc7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/027.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/027.png deleted file mode 100644 index 5db0b444..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/028.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/028.png deleted file mode 100644 index c99f4cce..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/029.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/029.png deleted file mode 100644 index 9520a15d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/030.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/030.png deleted file mode 100644 index 7afc9b63..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/031.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/031.png deleted file mode 100644 index b64123c6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/032.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/032.png deleted file mode 100644 index 6f3584ac..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/033.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/033.png deleted file mode 100644 index 9b500786..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/034.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/034.png deleted file mode 100644 index 020d98b2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/035.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/035.png deleted file mode 100644 index bf42e5ad..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/036.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/036.png deleted file mode 100644 index 97f99d92..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/037.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/037.png deleted file mode 100644 index c21322c7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/038.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/038.png deleted file mode 100644 index 97760983..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/039.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/039.png deleted file mode 100644 index 46d1e00e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/040.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/040.png deleted file mode 100644 index 6a61d0a8..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/041.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/041.png deleted file mode 100644 index e0d3447a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/042.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/042.png deleted file mode 100644 index d65546d9..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/043.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/043.png deleted file mode 100644 index b01703b2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/044.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/044.png deleted file mode 100644 index cb7f9ecd..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/045.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/045.png deleted file mode 100644 index 2a50ab81..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/046.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/046.png deleted file mode 100644 index c77be88e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/047.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/047.png deleted file mode 100644 index 1e4a11a3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/048.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/048.png deleted file mode 100644 index f0315bce..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/049.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/049.png deleted file mode 100644 index b5d6e0a0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/050.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/050.png deleted file mode 100644 index 5b644d53..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/051.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/051.png deleted file mode 100644 index 327cd0dc..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/052.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/052.png deleted file mode 100644 index 311b5c22..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/053.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/053.png deleted file mode 100644 index 1aecda9a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/054.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/054.png deleted file mode 100644 index 25e49c68..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/055.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/055.png deleted file mode 100644 index d37feb80..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/056.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/056.png deleted file mode 100644 index 940629f7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/057.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/057.png deleted file mode 100644 index 140306f5..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/058.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/058.png deleted file mode 100644 index 836483ba..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/059.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/059.png deleted file mode 100644 index 5b716eb6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/060.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/060.png deleted file mode 100644 index d791b866..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/061.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/061.png deleted file mode 100644 index da771c9b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/062.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/062.png deleted file mode 100644 index 0c5e50d4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/063.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/063.png deleted file mode 100644 index 01115e88..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/064.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/064.png deleted file mode 100644 index 5f5c6c48..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/065.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/065.png deleted file mode 100644 index ce2e1c25..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/066.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/066.png deleted file mode 100644 index b46944ff..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/067.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/067.png deleted file mode 100644 index ab04a58b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/068.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/068.png deleted file mode 100644 index 66dc2fc0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/069.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/069.png deleted file mode 100644 index b384fb23..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/070.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/070.png deleted file mode 100644 index 6c72ef9e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/071.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/071.png deleted file mode 100644 index 98ba1b81..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/072.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/072.png deleted file mode 100644 index cfba75ea..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/073.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/073.png deleted file mode 100644 index cbd15645..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/074.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/074.png deleted file mode 100644 index 4e6a2d4d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/075.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/075.png deleted file mode 100644 index 6e936e8c..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/076.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/076.png deleted file mode 100644 index 9d359103..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/077.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/077.png deleted file mode 100644 index 1afa772e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/078.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/078.png deleted file mode 100644 index 14334fe8..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/079.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/079.png deleted file mode 100644 index 284bf115..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/080.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/080.png deleted file mode 100644 index bbd1c65c..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/081.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/081.png deleted file mode 100644 index 2b884894..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/082.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/082.png deleted file mode 100644 index 57230869..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/083.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/083.png deleted file mode 100644 index 6ba04908..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/084.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/084.png deleted file mode 100644 index 0c44c3c0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/085.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/085.png deleted file mode 100644 index 780204fe..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/086.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/086.png deleted file mode 100644 index 61ab77a6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/087.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/087.png deleted file mode 100644 index a88cb91e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/088.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/088.png deleted file mode 100644 index 355745dd..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/089.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/089.png deleted file mode 100644 index e9639b79..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/090.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/090.png deleted file mode 100644 index d1bb6e33..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/091.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/091.png deleted file mode 100644 index 38689e70..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/092.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/092.png deleted file mode 100644 index 715fcef7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/093.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/093.png deleted file mode 100644 index 43bab0a2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/094.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/094.png deleted file mode 100644 index 2ae6b022..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/095.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/095.png deleted file mode 100644 index 299ef052..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/096.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/096.png deleted file mode 100644 index fdcee419..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/097.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/097.png deleted file mode 100644 index fe96ae5a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/098.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/098.png deleted file mode 100644 index be88392f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/099.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/099.png deleted file mode 100644 index 8a56262b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/100.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/100.png deleted file mode 100644 index 5945a172..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/101.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/101.png deleted file mode 100644 index 89b36488..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/102.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/102.png deleted file mode 100644 index fbf0e6af..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/103.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/103.png deleted file mode 100644 index e96fd130..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/104.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/104.png deleted file mode 100644 index 0cec9a05..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/105.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/105.png deleted file mode 100644 index 6bd80c61..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/106.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/106.png deleted file mode 100644 index 3e365af6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/107.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/107.png deleted file mode 100644 index f059fffd..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/108.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/108.png deleted file mode 100644 index e9952372..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/109.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/109.png deleted file mode 100644 index 210e007a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/110.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/110.png deleted file mode 100644 index f1bde86a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/111.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/111.png deleted file mode 100644 index 315fa767..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/112.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/112.png deleted file mode 100644 index 01888fae..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/113.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/113.png deleted file mode 100644 index 5645702a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/114.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/114.png deleted file mode 100644 index 8922a1a7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/115.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/115.png deleted file mode 100644 index 8a380a8b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/116.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/116.png deleted file mode 100644 index 6c92e0ad..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/117.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/117.png deleted file mode 100644 index a7427fc6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/118.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/118.png deleted file mode 100644 index 8efe4dda..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/119.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/119.png deleted file mode 100644 index a79384ce..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/120.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/120.png deleted file mode 100644 index e8fcedc3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/121.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/121.png deleted file mode 100644 index a9285184..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/122.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/122.png deleted file mode 100644 index 9c37e7f2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/123.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/123.png deleted file mode 100644 index 74b47bd1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/124.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/124.png deleted file mode 100644 index fbbc6c01..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/125.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/125.png deleted file mode 100644 index 73b73cf1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/126.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/126.png deleted file mode 100644 index 09c0c5fa..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/127.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/127.png deleted file mode 100644 index ae7ae401..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/128.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/128.png deleted file mode 100644 index 0c69a60f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/129.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/129.png deleted file mode 100644 index 632f099f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/130.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/130.png deleted file mode 100644 index c7664b9d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/131.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/131.png deleted file mode 100644 index 946f476b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/132.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/132.png deleted file mode 100644 index 6905bf7b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/133.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/133.png deleted file mode 100644 index 00d0ca17..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/134.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/134.png deleted file mode 100644 index bbf0ecb2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/135.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/135.png deleted file mode 100644 index deab715d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/136.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/136.png deleted file mode 100644 index c89e09fb..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/137.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/137.png deleted file mode 100644 index 8932379f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/138.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/138.png deleted file mode 100644 index 33333d29..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/139.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/139.png deleted file mode 100644 index 939c024c..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/140.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/140.png deleted file mode 100644 index 1d939bac..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/141.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/141.png deleted file mode 100644 index 1b431069..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/142.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/142.png deleted file mode 100644 index ad8e9149..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/143.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/143.png deleted file mode 100644 index dd169f59..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/144.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/144.png deleted file mode 100644 index 65c78807..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/145.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/145.png deleted file mode 100644 index 872119a5..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/146.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/146.png deleted file mode 100644 index 699f79a4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/147.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/147.png deleted file mode 100644 index 9d3faaf9..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/148.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/148.png deleted file mode 100644 index 553cea9f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/149.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/149.png deleted file mode 100644 index 25cae841..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/150.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/150.png deleted file mode 100644 index 23a38b4d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/151.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/151.png deleted file mode 100644 index 1bcd704f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/152.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/152.png deleted file mode 100644 index 65765243..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/153.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/153.png deleted file mode 100644 index 1f4ffe22..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/154.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/154.png deleted file mode 100644 index 89f8165b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/155.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/155.png deleted file mode 100644 index b4f5ac2a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/156.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/156.png deleted file mode 100644 index aec8ebff..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/157.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/157.png deleted file mode 100644 index 055e642b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/158.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/158.png deleted file mode 100644 index 2e183b78..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/159.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/159.png deleted file mode 100644 index 2219fd82..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/160.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/160.png deleted file mode 100644 index 8ac90588..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/161.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/161.png deleted file mode 100644 index 246d55e5..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/162.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/162.png deleted file mode 100644 index 74057ff0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/163.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/163.png deleted file mode 100644 index 72fdaa88..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/164.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/164.png deleted file mode 100644 index 5f5ec192..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/165.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/165.png deleted file mode 100644 index 7e8b2576..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/166.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/166.png deleted file mode 100644 index ef6d2502..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/166.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/167.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/167.png deleted file mode 100644 index f5fba6f6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/167.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/168.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/168.png deleted file mode 100644 index fdd2c19a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/168.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/169.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/169.png deleted file mode 100644 index 50c68151..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/169.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/170.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/170.png deleted file mode 100644 index ec1f132e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/170.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/171.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/171.png deleted file mode 100644 index aaaf7bcd..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/171.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/172.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/172.png deleted file mode 100644 index 11aa6493..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/172.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/173.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/173.png deleted file mode 100644 index 7e73162a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/173.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/174.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/174.png deleted file mode 100644 index 24b53d13..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/174.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/175.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/175.png deleted file mode 100644 index 0c321828..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/175.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/176.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/176.png deleted file mode 100644 index 5a8f3add..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/176.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/177.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/177.png deleted file mode 100644 index 3a5b95c3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/177.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/178.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/178.png deleted file mode 100644 index ebb69656..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/178.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/179.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/179.png deleted file mode 100644 index d39b0731..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/179.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/180.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/180.png deleted file mode 100644 index 7d1d8052..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/180.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/181.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/181.png deleted file mode 100644 index 91f5d8c4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/181.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/182.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/182.png deleted file mode 100644 index 1a081ff6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/182.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/183.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/183.png deleted file mode 100644 index 460835d8..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/183.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/184.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/184.png deleted file mode 100644 index 01d24aac..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/184.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/185.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/185.png deleted file mode 100644 index 90072aca..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/185.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/186.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/186.png deleted file mode 100644 index 06c562c3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/186.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/187.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/187.png deleted file mode 100644 index 7c7ae34c..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/187.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/188.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/188.png deleted file mode 100644 index e6e685fe..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/188.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/189.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/189.png deleted file mode 100644 index 473193fd..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/189.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/190.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/190.png deleted file mode 100644 index 5b742983..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/190.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/191.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/191.png deleted file mode 100644 index a5d3b844..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/191.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/192.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/192.png deleted file mode 100644 index 437f0a67..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/192.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/193.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/193.png deleted file mode 100644 index 40113ff4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/193.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/194.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/194.png deleted file mode 100644 index ced8ded1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/194.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/195.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/195.png deleted file mode 100644 index 5f493285..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/195.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/196.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/196.png deleted file mode 100644 index 3d3682e0..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/196.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/197.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/197.png deleted file mode 100644 index f55e7a7f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/197.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/198.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/198.png deleted file mode 100644 index efdfb379..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/198.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/199.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/199.png deleted file mode 100644 index 4d754691..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/199.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/200.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/200.png deleted file mode 100644 index 16d49ab2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/200.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/201.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/201.png deleted file mode 100644 index 4c131d9d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/201.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/202.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/202.png deleted file mode 100644 index 70de96a4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/202.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/203.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/203.png deleted file mode 100644 index df9000ef..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/203.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/204.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/204.png deleted file mode 100644 index 93ce1108..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/204.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/205.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/205.png deleted file mode 100644 index 1117e6a9..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/205.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/206.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/206.png deleted file mode 100644 index 9809e37e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/206.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/207.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/207.png deleted file mode 100644 index ae16ca0a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/207.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/208.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/208.png deleted file mode 100644 index 3fa879c1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/208.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/209.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/209.png deleted file mode 100644 index 92dabc7e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/209.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/210.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/210.png deleted file mode 100644 index 6f5ff659..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/210.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/211.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/211.png deleted file mode 100644 index 4bbca563..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/211.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/212.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/212.png deleted file mode 100644 index 4f91e276..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/212.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/213.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/213.png deleted file mode 100644 index 57dfa1b4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/213.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/214.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/214.png deleted file mode 100644 index 2b1830d7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/214.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/215.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/215.png deleted file mode 100644 index 91be20c3..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/215.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/216.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/216.png deleted file mode 100644 index b31fbfd2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/216.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/217.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/217.png deleted file mode 100644 index 4e8e0e33..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/217.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/218.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/218.png deleted file mode 100644 index 2214616a..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/218.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/219.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/219.png deleted file mode 100644 index 710d3bd4..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/219.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/220.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/220.png deleted file mode 100644 index fea6bee7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/220.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/221.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/221.png deleted file mode 100644 index c0531efb..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/221.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/222.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/222.png deleted file mode 100644 index e65a1fe7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/222.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/223.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/223.png deleted file mode 100644 index 852e79f1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/223.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/224.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/224.png deleted file mode 100644 index fe8fe108..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/224.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/225.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/225.png deleted file mode 100644 index 551d9021..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/225.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/226.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/226.png deleted file mode 100644 index 1256e3ec..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/226.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/227.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/227.png deleted file mode 100644 index b0de547f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/227.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/228.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/228.png deleted file mode 100644 index 02692c3d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/228.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/229.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/229.png deleted file mode 100644 index fb8f4605..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/229.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/230.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/230.png deleted file mode 100644 index 77b6c8ed..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/230.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/231.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/231.png deleted file mode 100644 index db737fd5..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/231.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/232.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/232.png deleted file mode 100644 index ec9e509e..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/232.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/233.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/233.png deleted file mode 100644 index eb1e1e18..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/233.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/234.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/234.png deleted file mode 100644 index 5c4ac128..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/234.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/235.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/235.png deleted file mode 100644 index 1bab2645..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/235.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/236.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/236.png deleted file mode 100644 index 7a3e6022..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/236.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/237.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/237.png deleted file mode 100644 index c895f848..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/237.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/238.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/238.png deleted file mode 100644 index da61cef6..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/238.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/239.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/239.png deleted file mode 100644 index c09a734d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/239.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/240.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/240.png deleted file mode 100644 index a537218f..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/240.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/241.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/241.png deleted file mode 100644 index 4e6d1714..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/241.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/242.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/242.png deleted file mode 100644 index 32d72bb2..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/242.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/243.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/243.png deleted file mode 100644 index 3de029d1..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/243.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/244.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/244.png deleted file mode 100644 index 1cda2432..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/244.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/245.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/245.png deleted file mode 100644 index d6bda317..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/245.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/246.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/246.png deleted file mode 100644 index 400fe1b7..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/246.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/247.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/247.png deleted file mode 100644 index 40e6c871..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/247.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/248.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/248.png deleted file mode 100644 index 24eddebc..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/248.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/249.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/249.png deleted file mode 100644 index 74243a5b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/249.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/png/250.png b/public/assets/out/icon-line-pro/hotel-restaurant/png/250.png deleted file mode 100644 index 528d535d..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/png/250.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.eot b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.eot deleted file mode 100644 index 9c293c2b..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.svg b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.svg deleted file mode 100644 index c8e464ee..00000000 --- a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.svg +++ /dev/null @@ -1,260 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.ttf b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.ttf deleted file mode 100644 index 5982d0fa..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.woff b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.woff deleted file mode 100644 index a06f34ab..00000000 Binary files a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/fonts/hotel-restaurant.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/icons-reference.html b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/icons-reference.html deleted file mode 100644 index 0b0cb60a..00000000 --- a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/icons-reference.html +++ /dev/null @@ -1,2069 +0,0 @@ - - - - - - - Font Reference - Hotel & Restaurant - - - - - -
      -

      Hotel & Restaurant

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/styles.css b/public/assets/out/icon-line-pro/hotel-restaurant/webfont/styles.css deleted file mode 100644 index 1647364d..00000000 --- a/public/assets/out/icon-line-pro/hotel-restaurant/webfont/styles.css +++ /dev/null @@ -1,790 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "hotel-restaurant"; - src:url("fonts/hotel-restaurant.eot"); - src:url("fonts/hotel-restaurant.eot?#iefix") format("embedded-opentype"), - url("fonts/hotel-restaurant.woff") format("woff"), - url("fonts/hotel-restaurant.ttf") format("truetype"), - url("fonts/hotel-restaurant.svg#hotel-restaurant") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "hotel-restaurant" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "hotel-restaurant" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-002:before { - content: "b"; -} -.icon-003:before { - content: "c"; -} -.icon-004:before { - content: "d"; -} -.icon-005:before { - content: "e"; -} -.icon-006:before { - content: "f"; -} -.icon-007:before { - content: "g"; -} -.icon-008:before { - content: "h"; -} -.icon-009:before { - content: "i"; -} -.icon-010:before { - content: "j"; -} -.icon-011:before { - content: "k"; -} -.icon-065:before { - content: "l"; -} -.icon-012:before { - content: "m"; -} -.icon-013:before { - content: "n"; -} -.icon-026:before { - content: "o"; -} -.icon-025:before { - content: "p"; -} -.icon-024:before { - content: "q"; -} -.icon-023:before { - content: "r"; -} -.icon-022:before { - content: "s"; -} -.icon-021:before { - content: "t"; -} -.icon-020:before { - content: "u"; -} -.icon-019:before { - content: "v"; -} -.icon-018:before { - content: "w"; -} -.icon-017:before { - content: "x"; -} -.icon-016:before { - content: "y"; -} -.icon-015:before { - content: "z"; -} -.icon-014:before { - content: "A"; -} -.icon-027:before { - content: "B"; -} -.icon-028:before { - content: "C"; -} -.icon-029:before { - content: "D"; -} -.icon-030:before { - content: "E"; -} -.icon-031:before { - content: "F"; -} -.icon-032:before { - content: "G"; -} -.icon-033:before { - content: "H"; -} -.icon-034:before { - content: "I"; -} -.icon-035:before { - content: "J"; -} -.icon-036:before { - content: "K"; -} -.icon-038:before { - content: "L"; -} -.icon-039:before { - content: "M"; -} -.icon-037:before { - content: "N"; -} -.icon-052:before { - content: "O"; -} -.icon-051:before { - content: "P"; -} -.icon-050:before { - content: "Q"; -} -.icon-049:before { - content: "R"; -} -.icon-048:before { - content: "S"; -} -.icon-047:before { - content: "T"; -} -.icon-046:before { - content: "U"; -} -.icon-045:before { - content: "V"; -} -.icon-044:before { - content: "W"; -} -.icon-042:before { - content: "X"; -} -.icon-041:before { - content: "Y"; -} -.icon-040:before { - content: "Z"; -} -.icon-043:before { - content: "0"; -} -.icon-053:before { - content: "1"; -} -.icon-054:before { - content: "2"; -} -.icon-055:before { - content: "3"; -} -.icon-056:before { - content: "4"; -} -.icon-057:before { - content: "5"; -} -.icon-058:before { - content: "6"; -} -.icon-059:before { - content: "7"; -} -.icon-060:before { - content: "8"; -} -.icon-061:before { - content: "9"; -} -.icon-062:before { - content: "!"; -} -.icon-063:before { - content: "\""; -} -.icon-064:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-105:before { - content: "'"; -} -.icon-118:before { - content: "("; -} -.icon-131:before { - content: ")"; -} -.icon-144:before { - content: "*"; -} -.icon-157:before { - content: "+"; -} -.icon-067:before { - content: ","; -} -.icon-080:before { - content: "-"; -} -.icon-068:before { - content: "."; -} -.icon-081:before { - content: "/"; -} -.icon-093:before { - content: ":"; -} -.icon-094:before { - content: ";"; -} -.icon-095:before { - content: "<"; -} -.icon-096:before { - content: "="; -} -.icon-097:before { - content: ">"; -} -.icon-098:before { - content: "?"; -} -.icon-099:before { - content: "@"; -} -.icon-100:before { - content: "["; -} -.icon-101:before { - content: "]"; -} -.icon-102:before { - content: "^"; -} -.icon-103:before { - content: "_"; -} -.icon-104:before { - content: "`"; -} -.icon-091:before { - content: "{"; -} -.icon-090:before { - content: "|"; -} -.icon-089:before { - content: "}"; -} -.icon-088:before { - content: "~"; -} -.icon-087:before { - content: "\\"; -} -.icon-086:before { - content: "\e000"; -} -.icon-085:before { - content: "\e001"; -} -.icon-084:before { - content: "\e002"; -} -.icon-083:before { - content: "\e003"; -} -.icon-082:before { - content: "\e004"; -} -.icon-069:before { - content: "\e005"; -} -.icon-070:before { - content: "\e006"; -} -.icon-071:before { - content: "\e007"; -} -.icon-072:before { - content: "\e008"; -} -.icon-073:before { - content: "\e009"; -} -.icon-074:before { - content: "\e00a"; -} -.icon-075:before { - content: "\e00b"; -} -.icon-076:before { - content: "\e00c"; -} -.icon-077:before { - content: "\e00d"; -} -.icon-078:before { - content: "\e00e"; -} -.icon-117:before { - content: "\e00f"; -} -.icon-116:before { - content: "\e010"; -} -.icon-115:before { - content: "\e011"; -} -.icon-114:before { - content: "\e012"; -} -.icon-113:before { - content: "\e013"; -} -.icon-112:before { - content: "\e014"; -} -.icon-111:before { - content: "\e015"; -} -.icon-110:before { - content: "\e016"; -} -.icon-109:before { - content: "\e017"; -} -.icon-108:before { - content: "\e018"; -} -.icon-107:before { - content: "\e019"; -} -.icon-106:before { - content: "\e01a"; -} -.icon-119:before { - content: "\e01b"; -} -.icon-120:before { - content: "\e01c"; -} -.icon-121:before { - content: "\e01d"; -} -.icon-122:before { - content: "\e01e"; -} -.icon-123:before { - content: "\e01f"; -} -.icon-124:before { - content: "\e020"; -} -.icon-125:before { - content: "\e021"; -} -.icon-126:before { - content: "\e022"; -} -.icon-127:before { - content: "\e023"; -} -.icon-128:before { - content: "\e024"; -} -.icon-129:before { - content: "\e025"; -} -.icon-130:before { - content: "\e026"; -} -.icon-143:before { - content: "\e027"; -} -.icon-142:before { - content: "\e028"; -} -.icon-141:before { - content: "\e029"; -} -.icon-140:before { - content: "\e02a"; -} -.icon-139:before { - content: "\e02b"; -} -.icon-138:before { - content: "\e02c"; -} -.icon-137:before { - content: "\e02d"; -} -.icon-136:before { - content: "\e02e"; -} -.icon-135:before { - content: "\e02f"; -} -.icon-134:before { - content: "\e030"; -} -.icon-133:before { - content: "\e031"; -} -.icon-132:before { - content: "\e032"; -} -.icon-145:before { - content: "\e033"; -} -.icon-146:before { - content: "\e034"; -} -.icon-147:before { - content: "\e035"; -} -.icon-148:before { - content: "\e036"; -} -.icon-149:before { - content: "\e037"; -} -.icon-150:before { - content: "\e038"; -} -.icon-151:before { - content: "\e039"; -} -.icon-152:before { - content: "\e03a"; -} -.icon-153:before { - content: "\e03b"; -} -.icon-154:before { - content: "\e03c"; -} -.icon-155:before { - content: "\e03d"; -} -.icon-156:before { - content: "\e03e"; -} -.icon-169:before { - content: "\e03f"; -} -.icon-168:before { - content: "\e040"; -} -.icon-167:before { - content: "\e041"; -} -.icon-166:before { - content: "\e042"; -} -.icon-165:before { - content: "\e043"; -} -.icon-164:before { - content: "\e044"; -} -.icon-163:before { - content: "\e045"; -} -.icon-162:before { - content: "\e046"; -} -.icon-161:before { - content: "\e047"; -} -.icon-160:before { - content: "\e048"; -} -.icon-159:before { - content: "\e049"; -} -.icon-158:before { - content: "\e04a"; -} -.icon-170:before { - content: "\e04b"; -} -.icon-171:before { - content: "\e04c"; -} -.icon-172:before { - content: "\e04d"; -} -.icon-173:before { - content: "\e04e"; -} -.icon-174:before { - content: "\e04f"; -} -.icon-175:before { - content: "\e050"; -} -.icon-176:before { - content: "\e051"; -} -.icon-177:before { - content: "\e052"; -} -.icon-178:before { - content: "\e053"; -} -.icon-179:before { - content: "\e054"; -} -.icon-180:before { - content: "\e055"; -} -.icon-181:before { - content: "\e056"; -} -.icon-182:before { - content: "\e057"; -} -.icon-195:before { - content: "\e058"; -} -.icon-194:before { - content: "\e059"; -} -.icon-193:before { - content: "\e05a"; -} -.icon-192:before { - content: "\e05b"; -} -.icon-191:before { - content: "\e05c"; -} -.icon-190:before { - content: "\e05d"; -} -.icon-189:before { - content: "\e05e"; -} -.icon-188:before { - content: "\e05f"; -} -.icon-187:before { - content: "\e060"; -} -.icon-186:before { - content: "\e061"; -} -.icon-185:before { - content: "\e062"; -} -.icon-184:before { - content: "\e063"; -} -.icon-183:before { - content: "\e064"; -} -.icon-196:before { - content: "\e065"; -} -.icon-197:before { - content: "\e066"; -} -.icon-198:before { - content: "\e067"; -} -.icon-199:before { - content: "\e068"; -} -.icon-200:before { - content: "\e069"; -} -.icon-201:before { - content: "\e06a"; -} -.icon-202:before { - content: "\e06b"; -} -.icon-203:before { - content: "\e06c"; -} -.icon-204:before { - content: "\e06d"; -} -.icon-205:before { - content: "\e06e"; -} -.icon-206:before { - content: "\e06f"; -} -.icon-207:before { - content: "\e070"; -} -.icon-208:before { - content: "\e071"; -} -.icon-221:before { - content: "\e072"; -} -.icon-220:before { - content: "\e073"; -} -.icon-219:before { - content: "\e074"; -} -.icon-218:before { - content: "\e075"; -} -.icon-217:before { - content: "\e076"; -} -.icon-216:before { - content: "\e077"; -} -.icon-215:before { - content: "\e078"; -} -.icon-214:before { - content: "\e079"; -} -.icon-213:before { - content: "\e07a"; -} -.icon-212:before { - content: "\e07b"; -} -.icon-211:before { - content: "\e07c"; -} -.icon-210:before { - content: "\e07d"; -} -.icon-209:before { - content: "\e07e"; -} -.icon-222:before { - content: "\e07f"; -} -.icon-223:before { - content: "\e080"; -} -.icon-224:before { - content: "\e081"; -} -.icon-225:before { - content: "\e082"; -} -.icon-226:before { - content: "\e083"; -} -.icon-227:before { - content: "\e084"; -} -.icon-228:before { - content: "\e085"; -} -.icon-229:before { - content: "\e086"; -} -.icon-230:before { - content: "\e087"; -} -.icon-231:before { - content: "\e088"; -} -.icon-232:before { - content: "\e089"; -} -.icon-233:before { - content: "\e08a"; -} -.icon-234:before { - content: "\e08b"; -} -.icon-247:before { - content: "\e08c"; -} -.icon-246:before { - content: "\e08d"; -} -.icon-245:before { - content: "\e08e"; -} -.icon-244:before { - content: "\e08f"; -} -.icon-243:before { - content: "\e090"; -} -.icon-242:before { - content: "\e091"; -} -.icon-241:before { - content: "\e092"; -} -.icon-240:before { - content: "\e093"; -} -.icon-239:before { - content: "\e094"; -} -.icon-238:before { - content: "\e095"; -} -.icon-237:before { - content: "\e096"; -} -.icon-236:before { - content: "\e097"; -} -.icon-235:before { - content: "\e098"; -} -.icon-248:before { - content: "\e099"; -} -.icon-249:before { - content: "\e09a"; -} -.icon-250:before { - content: "\e09b"; -} diff --git a/public/assets/out/icon-line-pro/media/png/001.png b/public/assets/out/icon-line-pro/media/png/001.png deleted file mode 100644 index ef2c5a93..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/002.png b/public/assets/out/icon-line-pro/media/png/002.png deleted file mode 100644 index 3ea8bf8d..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/003.png b/public/assets/out/icon-line-pro/media/png/003.png deleted file mode 100644 index 361ffceb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/004.png b/public/assets/out/icon-line-pro/media/png/004.png deleted file mode 100644 index 6fc8e9fc..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/005.png b/public/assets/out/icon-line-pro/media/png/005.png deleted file mode 100644 index dbdc92e3..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/006.png b/public/assets/out/icon-line-pro/media/png/006.png deleted file mode 100644 index b22c0179..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/007.png b/public/assets/out/icon-line-pro/media/png/007.png deleted file mode 100644 index 6601ac03..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/008.png b/public/assets/out/icon-line-pro/media/png/008.png deleted file mode 100644 index b76e310a..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/009.png b/public/assets/out/icon-line-pro/media/png/009.png deleted file mode 100644 index 223b45f7..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/010.png b/public/assets/out/icon-line-pro/media/png/010.png deleted file mode 100644 index 4c018e78..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/011.png b/public/assets/out/icon-line-pro/media/png/011.png deleted file mode 100644 index bf38ab56..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/012.png b/public/assets/out/icon-line-pro/media/png/012.png deleted file mode 100644 index 6fa7715f..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/013.png b/public/assets/out/icon-line-pro/media/png/013.png deleted file mode 100644 index 77815120..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/014.png b/public/assets/out/icon-line-pro/media/png/014.png deleted file mode 100644 index d52443fb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/015.png b/public/assets/out/icon-line-pro/media/png/015.png deleted file mode 100644 index b2bfd3f7..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/016.png b/public/assets/out/icon-line-pro/media/png/016.png deleted file mode 100644 index 6ac104e6..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/017.png b/public/assets/out/icon-line-pro/media/png/017.png deleted file mode 100644 index 83d460c8..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/018.png b/public/assets/out/icon-line-pro/media/png/018.png deleted file mode 100644 index 808bcadb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/019.png b/public/assets/out/icon-line-pro/media/png/019.png deleted file mode 100644 index a75d7261..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/020.png b/public/assets/out/icon-line-pro/media/png/020.png deleted file mode 100644 index 4d958953..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/021.png b/public/assets/out/icon-line-pro/media/png/021.png deleted file mode 100644 index 23eb6ced..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/022.png b/public/assets/out/icon-line-pro/media/png/022.png deleted file mode 100644 index d2055a20..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/023.png b/public/assets/out/icon-line-pro/media/png/023.png deleted file mode 100644 index 88e0c2c5..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/024.png b/public/assets/out/icon-line-pro/media/png/024.png deleted file mode 100644 index a007cd11..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/025.png b/public/assets/out/icon-line-pro/media/png/025.png deleted file mode 100644 index 82dd9462..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/026.png b/public/assets/out/icon-line-pro/media/png/026.png deleted file mode 100644 index 4f0d720c..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/027.png b/public/assets/out/icon-line-pro/media/png/027.png deleted file mode 100644 index aa4a758e..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/028.png b/public/assets/out/icon-line-pro/media/png/028.png deleted file mode 100644 index 0939b0c2..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/029.png b/public/assets/out/icon-line-pro/media/png/029.png deleted file mode 100644 index ea810dbe..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/030.png b/public/assets/out/icon-line-pro/media/png/030.png deleted file mode 100644 index 521cd443..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/031.png b/public/assets/out/icon-line-pro/media/png/031.png deleted file mode 100644 index f9de052b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/032.png b/public/assets/out/icon-line-pro/media/png/032.png deleted file mode 100644 index 943882f4..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/033.png b/public/assets/out/icon-line-pro/media/png/033.png deleted file mode 100644 index 5b281ffd..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/034.png b/public/assets/out/icon-line-pro/media/png/034.png deleted file mode 100644 index a6a11415..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/035.png b/public/assets/out/icon-line-pro/media/png/035.png deleted file mode 100644 index 3da86070..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/036.png b/public/assets/out/icon-line-pro/media/png/036.png deleted file mode 100644 index a8caa839..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/037.png b/public/assets/out/icon-line-pro/media/png/037.png deleted file mode 100644 index 25f3c69b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/038.png b/public/assets/out/icon-line-pro/media/png/038.png deleted file mode 100644 index 1de32b47..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/039.png b/public/assets/out/icon-line-pro/media/png/039.png deleted file mode 100644 index c93c577c..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/040.png b/public/assets/out/icon-line-pro/media/png/040.png deleted file mode 100644 index e8edf818..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/041.png b/public/assets/out/icon-line-pro/media/png/041.png deleted file mode 100644 index 118e3a88..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/042.png b/public/assets/out/icon-line-pro/media/png/042.png deleted file mode 100644 index 830aa8c0..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/043.png b/public/assets/out/icon-line-pro/media/png/043.png deleted file mode 100644 index ae6a2fbb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/044.png b/public/assets/out/icon-line-pro/media/png/044.png deleted file mode 100644 index 78a1f7d5..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/045.png b/public/assets/out/icon-line-pro/media/png/045.png deleted file mode 100644 index 6bc5105f..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/046.png b/public/assets/out/icon-line-pro/media/png/046.png deleted file mode 100644 index c1c58723..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/047.png b/public/assets/out/icon-line-pro/media/png/047.png deleted file mode 100644 index d783a6cf..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/048.png b/public/assets/out/icon-line-pro/media/png/048.png deleted file mode 100644 index 69d068c6..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/049.png b/public/assets/out/icon-line-pro/media/png/049.png deleted file mode 100644 index 2a660797..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/050.png b/public/assets/out/icon-line-pro/media/png/050.png deleted file mode 100644 index e7e569ae..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/051.png b/public/assets/out/icon-line-pro/media/png/051.png deleted file mode 100644 index b4cb6567..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/052.png b/public/assets/out/icon-line-pro/media/png/052.png deleted file mode 100644 index 2cd25015..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/053.png b/public/assets/out/icon-line-pro/media/png/053.png deleted file mode 100644 index 2e8234d0..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/054.png b/public/assets/out/icon-line-pro/media/png/054.png deleted file mode 100644 index b7c935ff..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/055.png b/public/assets/out/icon-line-pro/media/png/055.png deleted file mode 100644 index cba0739a..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/056.png b/public/assets/out/icon-line-pro/media/png/056.png deleted file mode 100644 index d8182731..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/057.png b/public/assets/out/icon-line-pro/media/png/057.png deleted file mode 100644 index 2c8ee64d..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/058.png b/public/assets/out/icon-line-pro/media/png/058.png deleted file mode 100644 index 70daa7bd..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/059.png b/public/assets/out/icon-line-pro/media/png/059.png deleted file mode 100644 index dbc838bd..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/060.png b/public/assets/out/icon-line-pro/media/png/060.png deleted file mode 100644 index 71f4c032..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/061.png b/public/assets/out/icon-line-pro/media/png/061.png deleted file mode 100644 index 9bdb6caf..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/062.png b/public/assets/out/icon-line-pro/media/png/062.png deleted file mode 100644 index 1d0aca1b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/063.png b/public/assets/out/icon-line-pro/media/png/063.png deleted file mode 100644 index cc4ec594..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/064.png b/public/assets/out/icon-line-pro/media/png/064.png deleted file mode 100644 index e3bad9c6..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/065.png b/public/assets/out/icon-line-pro/media/png/065.png deleted file mode 100644 index ea8a329e..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/066.png b/public/assets/out/icon-line-pro/media/png/066.png deleted file mode 100644 index bf1d2a43..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/067.png b/public/assets/out/icon-line-pro/media/png/067.png deleted file mode 100644 index 93d653c6..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/068.png b/public/assets/out/icon-line-pro/media/png/068.png deleted file mode 100644 index b640a95f..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/069.png b/public/assets/out/icon-line-pro/media/png/069.png deleted file mode 100644 index dc38fceb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/070.png b/public/assets/out/icon-line-pro/media/png/070.png deleted file mode 100644 index 28527265..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/071.png b/public/assets/out/icon-line-pro/media/png/071.png deleted file mode 100644 index 220876c2..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/072.png b/public/assets/out/icon-line-pro/media/png/072.png deleted file mode 100644 index fe439645..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/073.png b/public/assets/out/icon-line-pro/media/png/073.png deleted file mode 100644 index 753e264e..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/074.png b/public/assets/out/icon-line-pro/media/png/074.png deleted file mode 100644 index 9225f8c0..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/075.png b/public/assets/out/icon-line-pro/media/png/075.png deleted file mode 100644 index e886f33e..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/076.png b/public/assets/out/icon-line-pro/media/png/076.png deleted file mode 100644 index 22cc0023..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/077.png b/public/assets/out/icon-line-pro/media/png/077.png deleted file mode 100644 index e6390920..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/078.png b/public/assets/out/icon-line-pro/media/png/078.png deleted file mode 100644 index d18a9715..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/079.png b/public/assets/out/icon-line-pro/media/png/079.png deleted file mode 100644 index abf9b3a4..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/080.png b/public/assets/out/icon-line-pro/media/png/080.png deleted file mode 100644 index 74bf4db1..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/081.png b/public/assets/out/icon-line-pro/media/png/081.png deleted file mode 100644 index 070faac2..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/082.png b/public/assets/out/icon-line-pro/media/png/082.png deleted file mode 100644 index 75a5a090..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/083.png b/public/assets/out/icon-line-pro/media/png/083.png deleted file mode 100644 index 314723b1..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/084.png b/public/assets/out/icon-line-pro/media/png/084.png deleted file mode 100644 index 122173af..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/085.png b/public/assets/out/icon-line-pro/media/png/085.png deleted file mode 100644 index 89361435..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/086.png b/public/assets/out/icon-line-pro/media/png/086.png deleted file mode 100644 index ed453c21..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/087.png b/public/assets/out/icon-line-pro/media/png/087.png deleted file mode 100644 index 54918587..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/088.png b/public/assets/out/icon-line-pro/media/png/088.png deleted file mode 100644 index e234c6a0..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/089.png b/public/assets/out/icon-line-pro/media/png/089.png deleted file mode 100644 index 25910ae4..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/090.png b/public/assets/out/icon-line-pro/media/png/090.png deleted file mode 100644 index 51924299..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/091.png b/public/assets/out/icon-line-pro/media/png/091.png deleted file mode 100644 index 6b306722..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/092.png b/public/assets/out/icon-line-pro/media/png/092.png deleted file mode 100644 index 6c1ee3ca..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/093.png b/public/assets/out/icon-line-pro/media/png/093.png deleted file mode 100644 index 5bec8cd9..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/094.png b/public/assets/out/icon-line-pro/media/png/094.png deleted file mode 100644 index cd0b13f4..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/095.png b/public/assets/out/icon-line-pro/media/png/095.png deleted file mode 100644 index 005d7a64..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/096.png b/public/assets/out/icon-line-pro/media/png/096.png deleted file mode 100644 index da0a3946..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/097.png b/public/assets/out/icon-line-pro/media/png/097.png deleted file mode 100644 index 5b7e4589..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/098.png b/public/assets/out/icon-line-pro/media/png/098.png deleted file mode 100644 index 03e4255b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/099.png b/public/assets/out/icon-line-pro/media/png/099.png deleted file mode 100644 index e5ce507d..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/100.png b/public/assets/out/icon-line-pro/media/png/100.png deleted file mode 100644 index d914122e..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/101.png b/public/assets/out/icon-line-pro/media/png/101.png deleted file mode 100644 index 866c4146..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/102.png b/public/assets/out/icon-line-pro/media/png/102.png deleted file mode 100644 index 245cb440..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/103.png b/public/assets/out/icon-line-pro/media/png/103.png deleted file mode 100644 index 8ab52daf..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/104.png b/public/assets/out/icon-line-pro/media/png/104.png deleted file mode 100644 index a1bf0669..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/105.png b/public/assets/out/icon-line-pro/media/png/105.png deleted file mode 100644 index 024141c8..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/106.png b/public/assets/out/icon-line-pro/media/png/106.png deleted file mode 100644 index a0e109e4..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/107.png b/public/assets/out/icon-line-pro/media/png/107.png deleted file mode 100644 index 48e79065..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/108.png b/public/assets/out/icon-line-pro/media/png/108.png deleted file mode 100644 index 3072e3e6..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/109.png b/public/assets/out/icon-line-pro/media/png/109.png deleted file mode 100644 index 24a3c721..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/110.png b/public/assets/out/icon-line-pro/media/png/110.png deleted file mode 100644 index 4f6ce93a..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/111.png b/public/assets/out/icon-line-pro/media/png/111.png deleted file mode 100644 index 16a2a1dd..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/112.png b/public/assets/out/icon-line-pro/media/png/112.png deleted file mode 100644 index df2dbc8a..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/113.png b/public/assets/out/icon-line-pro/media/png/113.png deleted file mode 100644 index 439c7341..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/114.png b/public/assets/out/icon-line-pro/media/png/114.png deleted file mode 100644 index a4f09fcb..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/115.png b/public/assets/out/icon-line-pro/media/png/115.png deleted file mode 100644 index c7a2ad28..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/116.png b/public/assets/out/icon-line-pro/media/png/116.png deleted file mode 100644 index 69ed1cb7..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/117.png b/public/assets/out/icon-line-pro/media/png/117.png deleted file mode 100644 index 1f2d14dc..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/118.png b/public/assets/out/icon-line-pro/media/png/118.png deleted file mode 100644 index 5ec18d18..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/119.png b/public/assets/out/icon-line-pro/media/png/119.png deleted file mode 100644 index 944871ca..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/120.png b/public/assets/out/icon-line-pro/media/png/120.png deleted file mode 100644 index 0d72886b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/121.png b/public/assets/out/icon-line-pro/media/png/121.png deleted file mode 100644 index eeadc305..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/122.png b/public/assets/out/icon-line-pro/media/png/122.png deleted file mode 100644 index 5f5ea031..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/123.png b/public/assets/out/icon-line-pro/media/png/123.png deleted file mode 100644 index 80fda6b3..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/124.png b/public/assets/out/icon-line-pro/media/png/124.png deleted file mode 100644 index f183a99b..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/125.png b/public/assets/out/icon-line-pro/media/png/125.png deleted file mode 100644 index 9a45e556..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/126.png b/public/assets/out/icon-line-pro/media/png/126.png deleted file mode 100644 index a2262101..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/127.png b/public/assets/out/icon-line-pro/media/png/127.png deleted file mode 100644 index c538eda8..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/128.png b/public/assets/out/icon-line-pro/media/png/128.png deleted file mode 100644 index 3605eec1..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/129.png b/public/assets/out/icon-line-pro/media/png/129.png deleted file mode 100644 index 2e1b2baa..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/png/130.png b/public/assets/out/icon-line-pro/media/png/130.png deleted file mode 100644 index 7f00c3b0..00000000 Binary files a/public/assets/out/icon-line-pro/media/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/webfont/fonts/media.eot b/public/assets/out/icon-line-pro/media/webfont/fonts/media.eot deleted file mode 100644 index 21bb5228..00000000 Binary files a/public/assets/out/icon-line-pro/media/webfont/fonts/media.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/webfont/fonts/media.svg b/public/assets/out/icon-line-pro/media/webfont/fonts/media.svg deleted file mode 100644 index f2c8f5f9..00000000 --- a/public/assets/out/icon-line-pro/media/webfont/fonts/media.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/media/webfont/fonts/media.ttf b/public/assets/out/icon-line-pro/media/webfont/fonts/media.ttf deleted file mode 100644 index 28f3daca..00000000 Binary files a/public/assets/out/icon-line-pro/media/webfont/fonts/media.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/webfont/fonts/media.woff b/public/assets/out/icon-line-pro/media/webfont/fonts/media.woff deleted file mode 100644 index 6cade2e5..00000000 Binary files a/public/assets/out/icon-line-pro/media/webfont/fonts/media.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/media/webfont/icons-reference.html b/public/assets/out/icon-line-pro/media/webfont/icons-reference.html deleted file mode 100644 index 95ff96a1..00000000 --- a/public/assets/out/icon-line-pro/media/webfont/icons-reference.html +++ /dev/null @@ -1,1109 +0,0 @@ - - - - - - - Font Reference - Media - - - - - -
      -

      Media

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/media/webfont/styles.css b/public/assets/out/icon-line-pro/media/webfont/styles.css deleted file mode 100644 index dc54cfb2..00000000 --- a/public/assets/out/icon-line-pro/media/webfont/styles.css +++ /dev/null @@ -1,430 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "media"; - src:url("fonts/media.eot"); - src:url("fonts/media.eot?#iefix") format("embedded-opentype"), - url("fonts/media.woff") format("woff"), - url("fonts/media.ttf") format("truetype"), - url("fonts/media.svg#media") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "media" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "media" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-041:before { - content: "e"; -} -.icon-028:before { - content: "f"; -} -.icon-015:before { - content: "g"; -} -.icon-002:before { - content: "h"; -} -.icon-003:before { - content: "i"; -} -.icon-016:before { - content: "j"; -} -.icon-029:before { - content: "k"; -} -.icon-042:before { - content: "l"; -} -.icon-043:before { - content: "m"; -} -.icon-030:before { - content: "n"; -} -.icon-017:before { - content: "o"; -} -.icon-004:before { - content: "p"; -} -.icon-005:before { - content: "q"; -} -.icon-018:before { - content: "r"; -} -.icon-031:before { - content: "s"; -} -.icon-044:before { - content: "t"; -} -.icon-045:before { - content: "u"; -} -.icon-032:before { - content: "v"; -} -.icon-019:before { - content: "w"; -} -.icon-006:before { - content: "x"; -} -.icon-007:before { - content: "y"; -} -.icon-020:before { - content: "z"; -} -.icon-033:before { - content: "A"; -} -.icon-046:before { - content: "B"; -} -.icon-047:before { - content: "C"; -} -.icon-034:before { - content: "D"; -} -.icon-021:before { - content: "E"; -} -.icon-008:before { - content: "F"; -} -.icon-009:before { - content: "G"; -} -.icon-022:before { - content: "H"; -} -.icon-035:before { - content: "I"; -} -.icon-048:before { - content: "J"; -} -.icon-049:before { - content: "K"; -} -.icon-036:before { - content: "L"; -} -.icon-023:before { - content: "M"; -} -.icon-010:before { - content: "N"; -} -.icon-011:before { - content: "O"; -} -.icon-024:before { - content: "P"; -} -.icon-037:before { - content: "Q"; -} -.icon-050:before { - content: "R"; -} -.icon-063:before { - content: "S"; -} -.icon-064:before { - content: "T"; -} -.icon-051:before { - content: "U"; -} -.icon-038:before { - content: "V"; -} -.icon-025:before { - content: "W"; -} -.icon-012:before { - content: "X"; -} -.icon-013:before { - content: "Y"; -} -.icon-026:before { - content: "Z"; -} -.icon-039:before { - content: "0"; -} -.icon-052:before { - content: "1"; -} -.icon-065:before { - content: "2"; -} -.icon-062:before { - content: "3"; -} -.icon-061:before { - content: "4"; -} -.icon-060:before { - content: "5"; -} -.icon-059:before { - content: "6"; -} -.icon-058:before { - content: "7"; -} -.icon-057:before { - content: "8"; -} -.icon-056:before { - content: "9"; -} -.icon-055:before { - content: "!"; -} -.icon-054:before { - content: "\""; -} -.icon-053:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-105:before { - content: "'"; -} -.icon-118:before { - content: "("; -} -.icon-119:before { - content: ")"; -} -.icon-106:before { - content: "*"; -} -.icon-093:before { - content: "+"; -} -.icon-080:before { - content: ","; -} -.icon-067:before { - content: "-"; -} -.icon-068:before { - content: "."; -} -.icon-081:before { - content: "/"; -} -.icon-094:before { - content: ":"; -} -.icon-107:before { - content: ";"; -} -.icon-120:before { - content: "<"; -} -.icon-121:before { - content: "="; -} -.icon-108:before { - content: ">"; -} -.icon-095:before { - content: "?"; -} -.icon-082:before { - content: "@"; -} -.icon-069:before { - content: "["; -} -.icon-070:before { - content: "]"; -} -.icon-083:before { - content: "^"; -} -.icon-096:before { - content: "_"; -} -.icon-109:before { - content: "`"; -} -.icon-122:before { - content: "{"; -} -.icon-123:before { - content: "|"; -} -.icon-110:before { - content: "}"; -} -.icon-097:before { - content: "~"; -} -.icon-084:before { - content: "\\"; -} -.icon-071:before { - content: "\e000"; -} -.icon-072:before { - content: "\e001"; -} -.icon-085:before { - content: "\e002"; -} -.icon-098:before { - content: "\e003"; -} -.icon-111:before { - content: "\e004"; -} -.icon-124:before { - content: "\e005"; -} -.icon-125:before { - content: "\e006"; -} -.icon-112:before { - content: "\e007"; -} -.icon-099:before { - content: "\e008"; -} -.icon-086:before { - content: "\e009"; -} -.icon-073:before { - content: "\e00a"; -} -.icon-074:before { - content: "\e00b"; -} -.icon-087:before { - content: "\e00c"; -} -.icon-100:before { - content: "\e00d"; -} -.icon-113:before { - content: "\e00e"; -} -.icon-126:before { - content: "\e00f"; -} -.icon-127:before { - content: "\e010"; -} -.icon-114:before { - content: "\e011"; -} -.icon-101:before { - content: "\e012"; -} -.icon-088:before { - content: "\e013"; -} -.icon-075:before { - content: "\e014"; -} -.icon-076:before { - content: "\e015"; -} -.icon-089:before { - content: "\e016"; -} -.icon-090:before { - content: "\e017"; -} -.icon-077:before { - content: "\e018"; -} -.icon-078:before { - content: "\e019"; -} -.icon-091:before { - content: "\e01a"; -} -.icon-104:before { - content: "\e01b"; -} -.icon-103:before { - content: "\e01c"; -} -.icon-102:before { - content: "\e01d"; -} -.icon-115:before { - content: "\e01e"; -} -.icon-116:before { - content: "\e01f"; -} -.icon-117:before { - content: "\e020"; -} -.icon-130:before { - content: "\e021"; -} -.icon-129:before { - content: "\e022"; -} -.icon-128:before { - content: "\e023"; -} diff --git a/public/assets/out/icon-line-pro/medical/png/001.png b/public/assets/out/icon-line-pro/medical/png/001.png deleted file mode 100644 index a9a3cb57..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/002.png b/public/assets/out/icon-line-pro/medical/png/002.png deleted file mode 100644 index a54dfd22..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/003.png b/public/assets/out/icon-line-pro/medical/png/003.png deleted file mode 100644 index 8f9e6c15..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/004.png b/public/assets/out/icon-line-pro/medical/png/004.png deleted file mode 100644 index 997bd551..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/005.png b/public/assets/out/icon-line-pro/medical/png/005.png deleted file mode 100644 index dd6313ac..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/006.png b/public/assets/out/icon-line-pro/medical/png/006.png deleted file mode 100644 index 82186bbf..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/007.png b/public/assets/out/icon-line-pro/medical/png/007.png deleted file mode 100644 index 8d9c8d62..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/008.png b/public/assets/out/icon-line-pro/medical/png/008.png deleted file mode 100644 index df47e370..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/009.png b/public/assets/out/icon-line-pro/medical/png/009.png deleted file mode 100644 index 3c5ac60a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/010.png b/public/assets/out/icon-line-pro/medical/png/010.png deleted file mode 100644 index ca6af2b1..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/011.png b/public/assets/out/icon-line-pro/medical/png/011.png deleted file mode 100644 index 09e17ad2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/012.png b/public/assets/out/icon-line-pro/medical/png/012.png deleted file mode 100644 index cf36f5e8..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/013.png b/public/assets/out/icon-line-pro/medical/png/013.png deleted file mode 100644 index 56184b91..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/014.png b/public/assets/out/icon-line-pro/medical/png/014.png deleted file mode 100644 index a4646355..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/015.png b/public/assets/out/icon-line-pro/medical/png/015.png deleted file mode 100644 index abff11c1..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/016.png b/public/assets/out/icon-line-pro/medical/png/016.png deleted file mode 100644 index 60b9539e..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/017.png b/public/assets/out/icon-line-pro/medical/png/017.png deleted file mode 100644 index 6842bf57..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/018.png b/public/assets/out/icon-line-pro/medical/png/018.png deleted file mode 100644 index 6ff499c1..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/019.png b/public/assets/out/icon-line-pro/medical/png/019.png deleted file mode 100644 index 81263487..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/020.png b/public/assets/out/icon-line-pro/medical/png/020.png deleted file mode 100644 index 4a5b932c..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/021.png b/public/assets/out/icon-line-pro/medical/png/021.png deleted file mode 100644 index 026f9c88..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/022.png b/public/assets/out/icon-line-pro/medical/png/022.png deleted file mode 100644 index b44c8ab5..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/023.png b/public/assets/out/icon-line-pro/medical/png/023.png deleted file mode 100644 index c95a5876..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/024.png b/public/assets/out/icon-line-pro/medical/png/024.png deleted file mode 100644 index 190a56ff..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/025.png b/public/assets/out/icon-line-pro/medical/png/025.png deleted file mode 100644 index 191523d6..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/026.png b/public/assets/out/icon-line-pro/medical/png/026.png deleted file mode 100644 index edd653df..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/027.png b/public/assets/out/icon-line-pro/medical/png/027.png deleted file mode 100644 index 1be87a75..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/028.png b/public/assets/out/icon-line-pro/medical/png/028.png deleted file mode 100644 index f3741163..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/029.png b/public/assets/out/icon-line-pro/medical/png/029.png deleted file mode 100644 index a4adc211..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/030.png b/public/assets/out/icon-line-pro/medical/png/030.png deleted file mode 100644 index 018f1b62..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/031.png b/public/assets/out/icon-line-pro/medical/png/031.png deleted file mode 100644 index 446a8572..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/032.png b/public/assets/out/icon-line-pro/medical/png/032.png deleted file mode 100644 index 3f035e79..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/033.png b/public/assets/out/icon-line-pro/medical/png/033.png deleted file mode 100644 index 60d0c4bc..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/034.png b/public/assets/out/icon-line-pro/medical/png/034.png deleted file mode 100644 index 8a351dd2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/035.png b/public/assets/out/icon-line-pro/medical/png/035.png deleted file mode 100644 index 93c130a6..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/036.png b/public/assets/out/icon-line-pro/medical/png/036.png deleted file mode 100644 index 4085ca2d..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/037.png b/public/assets/out/icon-line-pro/medical/png/037.png deleted file mode 100644 index aabd6a6d..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/038.png b/public/assets/out/icon-line-pro/medical/png/038.png deleted file mode 100644 index fa20dd77..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/039.png b/public/assets/out/icon-line-pro/medical/png/039.png deleted file mode 100644 index 1fa146be..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/040.png b/public/assets/out/icon-line-pro/medical/png/040.png deleted file mode 100644 index 8ede2f7b..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/041.png b/public/assets/out/icon-line-pro/medical/png/041.png deleted file mode 100644 index 542ad4aa..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/042.png b/public/assets/out/icon-line-pro/medical/png/042.png deleted file mode 100644 index a60ed0a2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/043.png b/public/assets/out/icon-line-pro/medical/png/043.png deleted file mode 100644 index c9ffd26a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/044.png b/public/assets/out/icon-line-pro/medical/png/044.png deleted file mode 100644 index f2a18c4b..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/045.png b/public/assets/out/icon-line-pro/medical/png/045.png deleted file mode 100644 index 6c74be48..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/046.png b/public/assets/out/icon-line-pro/medical/png/046.png deleted file mode 100644 index 03ff7114..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/047.png b/public/assets/out/icon-line-pro/medical/png/047.png deleted file mode 100644 index 9f35e888..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/048.png b/public/assets/out/icon-line-pro/medical/png/048.png deleted file mode 100644 index 9ea2a9f6..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/049.png b/public/assets/out/icon-line-pro/medical/png/049.png deleted file mode 100644 index 6f50a0ef..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/050.png b/public/assets/out/icon-line-pro/medical/png/050.png deleted file mode 100644 index 3b56b73f..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/051.png b/public/assets/out/icon-line-pro/medical/png/051.png deleted file mode 100644 index dc00d424..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/052.png b/public/assets/out/icon-line-pro/medical/png/052.png deleted file mode 100644 index b9d0f2e1..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/053.png b/public/assets/out/icon-line-pro/medical/png/053.png deleted file mode 100644 index cacf14fe..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/054.png b/public/assets/out/icon-line-pro/medical/png/054.png deleted file mode 100644 index a2f53355..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/055.png b/public/assets/out/icon-line-pro/medical/png/055.png deleted file mode 100644 index 3f319f7b..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/056.png b/public/assets/out/icon-line-pro/medical/png/056.png deleted file mode 100644 index a8e67dca..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/057.png b/public/assets/out/icon-line-pro/medical/png/057.png deleted file mode 100644 index a726002d..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/058.png b/public/assets/out/icon-line-pro/medical/png/058.png deleted file mode 100644 index c4fe6eb2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/059.png b/public/assets/out/icon-line-pro/medical/png/059.png deleted file mode 100644 index c7b80616..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/060.png b/public/assets/out/icon-line-pro/medical/png/060.png deleted file mode 100644 index 4ddca1fb..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/061.png b/public/assets/out/icon-line-pro/medical/png/061.png deleted file mode 100644 index 851c3a61..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/062.png b/public/assets/out/icon-line-pro/medical/png/062.png deleted file mode 100644 index eb55ec97..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/063.png b/public/assets/out/icon-line-pro/medical/png/063.png deleted file mode 100644 index 878b2118..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/064.png b/public/assets/out/icon-line-pro/medical/png/064.png deleted file mode 100644 index e6eb2faf..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/065.png b/public/assets/out/icon-line-pro/medical/png/065.png deleted file mode 100644 index bf68fdef..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/066.png b/public/assets/out/icon-line-pro/medical/png/066.png deleted file mode 100644 index 2f20b944..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/067.png b/public/assets/out/icon-line-pro/medical/png/067.png deleted file mode 100644 index 6cbb6e1b..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/068.png b/public/assets/out/icon-line-pro/medical/png/068.png deleted file mode 100644 index ccfbeca4..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/069.png b/public/assets/out/icon-line-pro/medical/png/069.png deleted file mode 100644 index f5d46753..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/070.png b/public/assets/out/icon-line-pro/medical/png/070.png deleted file mode 100644 index 580e6a32..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/071.png b/public/assets/out/icon-line-pro/medical/png/071.png deleted file mode 100644 index 5af40e5a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/072.png b/public/assets/out/icon-line-pro/medical/png/072.png deleted file mode 100644 index 93cf6f05..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/073.png b/public/assets/out/icon-line-pro/medical/png/073.png deleted file mode 100644 index 3999d899..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/074.png b/public/assets/out/icon-line-pro/medical/png/074.png deleted file mode 100644 index ca2b89ac..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/075.png b/public/assets/out/icon-line-pro/medical/png/075.png deleted file mode 100644 index 1cf12db9..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/076.png b/public/assets/out/icon-line-pro/medical/png/076.png deleted file mode 100644 index ee8a2fe5..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/077.png b/public/assets/out/icon-line-pro/medical/png/077.png deleted file mode 100644 index 4d8816e2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/078.png b/public/assets/out/icon-line-pro/medical/png/078.png deleted file mode 100644 index 33a6f30e..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/079.png b/public/assets/out/icon-line-pro/medical/png/079.png deleted file mode 100644 index dda082d7..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/080.png b/public/assets/out/icon-line-pro/medical/png/080.png deleted file mode 100644 index 016e0ab2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/081.png b/public/assets/out/icon-line-pro/medical/png/081.png deleted file mode 100644 index 67c42e6a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/082.png b/public/assets/out/icon-line-pro/medical/png/082.png deleted file mode 100644 index 035f750a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/083.png b/public/assets/out/icon-line-pro/medical/png/083.png deleted file mode 100644 index e39479f4..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/084.png b/public/assets/out/icon-line-pro/medical/png/084.png deleted file mode 100644 index 7fd41136..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/085.png b/public/assets/out/icon-line-pro/medical/png/085.png deleted file mode 100644 index 4bd572d3..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/086.png b/public/assets/out/icon-line-pro/medical/png/086.png deleted file mode 100644 index e5dbd6b2..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/087.png b/public/assets/out/icon-line-pro/medical/png/087.png deleted file mode 100644 index 96a72050..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/088.png b/public/assets/out/icon-line-pro/medical/png/088.png deleted file mode 100644 index 99e790a3..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/089.png b/public/assets/out/icon-line-pro/medical/png/089.png deleted file mode 100644 index cfac95f5..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/090.png b/public/assets/out/icon-line-pro/medical/png/090.png deleted file mode 100644 index 333085f6..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/091.png b/public/assets/out/icon-line-pro/medical/png/091.png deleted file mode 100644 index c5fcb063..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/092.png b/public/assets/out/icon-line-pro/medical/png/092.png deleted file mode 100644 index 988e2dd9..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/093.png b/public/assets/out/icon-line-pro/medical/png/093.png deleted file mode 100644 index 66d4f118..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/094.png b/public/assets/out/icon-line-pro/medical/png/094.png deleted file mode 100644 index df455468..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/095.png b/public/assets/out/icon-line-pro/medical/png/095.png deleted file mode 100644 index 2b282d9d..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/096.png b/public/assets/out/icon-line-pro/medical/png/096.png deleted file mode 100644 index 750a918c..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/097.png b/public/assets/out/icon-line-pro/medical/png/097.png deleted file mode 100644 index 02126f7c..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/098.png b/public/assets/out/icon-line-pro/medical/png/098.png deleted file mode 100644 index 7a5a6316..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/099.png b/public/assets/out/icon-line-pro/medical/png/099.png deleted file mode 100644 index e18e4691..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/png/100.png b/public/assets/out/icon-line-pro/medical/png/100.png deleted file mode 100644 index a20b9c74..00000000 Binary files a/public/assets/out/icon-line-pro/medical/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.eot b/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.eot deleted file mode 100644 index cb4f2248..00000000 Binary files a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.svg b/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.svg deleted file mode 100644 index 28cad94a..00000000 --- a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.ttf b/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.ttf deleted file mode 100644 index 907f8c0e..00000000 Binary files a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.woff b/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.woff deleted file mode 100644 index ac5d984a..00000000 Binary files a/public/assets/out/icon-line-pro/medical/webfont/fonts/medical-and-health.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/medical/webfont/icons-reference.html b/public/assets/out/icon-line-pro/medical/webfont/icons-reference.html deleted file mode 100644 index 85a7feb0..00000000 --- a/public/assets/out/icon-line-pro/medical/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Medical and Health - - - - - -
      -

      Medical and Health

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/medical/webfont/styles.css b/public/assets/out/icon-line-pro/medical/webfont/styles.css deleted file mode 100644 index 72065bab..00000000 --- a/public/assets/out/icon-line-pro/medical/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "medical-and-health"; - src:url("fonts/medical-and-health.eot"); - src:url("fonts/medical-and-health.eot?#iefix") format("embedded-opentype"), - url("fonts/medical-and-health.woff") format("woff"), - url("fonts/medical-and-health.ttf") format("truetype"), - url("fonts/medical-and-health.svg#medical-and-health") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "medical-and-health" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "medical-and-health" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-002:before { - content: "b"; -} -.icon-015:before { - content: "c"; -} -.icon-014:before { - content: "d"; -} -.icon-027:before { - content: "e"; -} -.icon-028:before { - content: "f"; -} -.icon-029:before { - content: "g"; -} -.icon-016:before { - content: "h"; -} -.icon-003:before { - content: "i"; -} -.icon-004:before { - content: "j"; -} -.icon-017:before { - content: "k"; -} -.icon-030:before { - content: "l"; -} -.icon-031:before { - content: "m"; -} -.icon-018:before { - content: "n"; -} -.icon-005:before { - content: "o"; -} -.icon-006:before { - content: "p"; -} -.icon-019:before { - content: "q"; -} -.icon-032:before { - content: "r"; -} -.icon-033:before { - content: "s"; -} -.icon-020:before { - content: "t"; -} -.icon-007:before { - content: "u"; -} -.icon-008:before { - content: "v"; -} -.icon-021:before { - content: "w"; -} -.icon-034:before { - content: "x"; -} -.icon-035:before { - content: "y"; -} -.icon-022:before { - content: "z"; -} -.icon-009:before { - content: "A"; -} -.icon-010:before { - content: "B"; -} -.icon-023:before { - content: "C"; -} -.icon-036:before { - content: "D"; -} -.icon-037:before { - content: "E"; -} -.icon-024:before { - content: "F"; -} -.icon-011:before { - content: "G"; -} -.icon-012:before { - content: "H"; -} -.icon-025:before { - content: "I"; -} -.icon-038:before { - content: "J"; -} -.icon-039:before { - content: "K"; -} -.icon-026:before { - content: "L"; -} -.icon-013:before { - content: "M"; -} -.icon-040:before { - content: "N"; -} -.icon-053:before { - content: "O"; -} -.icon-066:before { - content: "P"; -} -.icon-079:before { - content: "Q"; -} -.icon-092:before { - content: "R"; -} -.icon-093:before { - content: "S"; -} -.icon-080:before { - content: "T"; -} -.icon-067:before { - content: "U"; -} -.icon-054:before { - content: "V"; -} -.icon-041:before { - content: "W"; -} -.icon-042:before { - content: "X"; -} -.icon-055:before { - content: "Y"; -} -.icon-068:before { - content: "Z"; -} -.icon-081:before { - content: "0"; -} -.icon-094:before { - content: "1"; -} -.icon-096:before { - content: "2"; -} -.icon-082:before { - content: "3"; -} -.icon-095:before { - content: "4"; -} -.icon-069:before { - content: "5"; -} -.icon-056:before { - content: "6"; -} -.icon-043:before { - content: "7"; -} -.icon-044:before { - content: "8"; -} -.icon-057:before { - content: "9"; -} -.icon-070:before { - content: "!"; -} -.icon-083:before { - content: "\""; -} -.icon-084:before { - content: "#"; -} -.icon-071:before { - content: "$"; -} -.icon-058:before { - content: "%"; -} -.icon-045:before { - content: "&"; -} -.icon-046:before { - content: "'"; -} -.icon-059:before { - content: "("; -} -.icon-098:before { - content: ")"; -} -.icon-097:before { - content: "*"; -} -.icon-085:before { - content: "+"; -} -.icon-072:before { - content: ","; -} -.icon-073:before { - content: "-"; -} -.icon-086:before { - content: "."; -} -.icon-099:before { - content: "/"; -} -.icon-100:before { - content: ":"; -} -.icon-087:before { - content: ";"; -} -.icon-074:before { - content: "<"; -} -.icon-060:before { - content: "="; -} -.icon-061:before { - content: ">"; -} -.icon-047:before { - content: "?"; -} -.icon-048:before { - content: "@"; -} -.icon-049:before { - content: "["; -} -.icon-062:before { - content: "]"; -} -.icon-075:before { - content: "^"; -} -.icon-088:before { - content: "_"; -} -.icon-089:before { - content: "`"; -} -.icon-076:before { - content: "{"; -} -.icon-063:before { - content: "|"; -} -.icon-050:before { - content: "}"; -} -.icon-051:before { - content: "~"; -} -.icon-064:before { - content: "\\"; -} -.icon-077:before { - content: "\e000"; -} -.icon-090:before { - content: "\e001"; -} -.icon-091:before { - content: "\e002"; -} -.icon-078:before { - content: "\e003"; -} -.icon-065:before { - content: "\e004"; -} -.icon-052:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/music/png/001.png b/public/assets/out/icon-line-pro/music/png/001.png deleted file mode 100644 index fd998064..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/002.png b/public/assets/out/icon-line-pro/music/png/002.png deleted file mode 100644 index 753cd34a..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/003.png b/public/assets/out/icon-line-pro/music/png/003.png deleted file mode 100644 index 08092915..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/004.png b/public/assets/out/icon-line-pro/music/png/004.png deleted file mode 100644 index 80772803..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/005.png b/public/assets/out/icon-line-pro/music/png/005.png deleted file mode 100644 index 911b803f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/006.png b/public/assets/out/icon-line-pro/music/png/006.png deleted file mode 100644 index a6393577..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/007.png b/public/assets/out/icon-line-pro/music/png/007.png deleted file mode 100644 index d4d634e7..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/008.png b/public/assets/out/icon-line-pro/music/png/008.png deleted file mode 100644 index 05aab63c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/009.png b/public/assets/out/icon-line-pro/music/png/009.png deleted file mode 100644 index b711e712..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/010.png b/public/assets/out/icon-line-pro/music/png/010.png deleted file mode 100644 index e4fe10bc..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/011.png b/public/assets/out/icon-line-pro/music/png/011.png deleted file mode 100644 index 7f6760e5..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/012.png b/public/assets/out/icon-line-pro/music/png/012.png deleted file mode 100644 index b3a20429..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/013.png b/public/assets/out/icon-line-pro/music/png/013.png deleted file mode 100644 index 236eaa2e..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/014.png b/public/assets/out/icon-line-pro/music/png/014.png deleted file mode 100644 index 5351c931..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/015.png b/public/assets/out/icon-line-pro/music/png/015.png deleted file mode 100644 index 7dd69ca5..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/016.png b/public/assets/out/icon-line-pro/music/png/016.png deleted file mode 100644 index 38464f2b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/017.png b/public/assets/out/icon-line-pro/music/png/017.png deleted file mode 100644 index 8164ce4b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/018.png b/public/assets/out/icon-line-pro/music/png/018.png deleted file mode 100644 index 1a7fdd32..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/019.png b/public/assets/out/icon-line-pro/music/png/019.png deleted file mode 100644 index a34ff58b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/020.png b/public/assets/out/icon-line-pro/music/png/020.png deleted file mode 100644 index a37b8b7f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/021.png b/public/assets/out/icon-line-pro/music/png/021.png deleted file mode 100644 index c8aba2dc..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/022.png b/public/assets/out/icon-line-pro/music/png/022.png deleted file mode 100644 index b1d92996..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/023.png b/public/assets/out/icon-line-pro/music/png/023.png deleted file mode 100644 index 04bcb64c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/024.png b/public/assets/out/icon-line-pro/music/png/024.png deleted file mode 100644 index 4628b14c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/025.png b/public/assets/out/icon-line-pro/music/png/025.png deleted file mode 100644 index 835b5ce7..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/026.png b/public/assets/out/icon-line-pro/music/png/026.png deleted file mode 100644 index 36877fde..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/027.png b/public/assets/out/icon-line-pro/music/png/027.png deleted file mode 100644 index 17ef3fca..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/028.png b/public/assets/out/icon-line-pro/music/png/028.png deleted file mode 100644 index 325bbfe7..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/029.png b/public/assets/out/icon-line-pro/music/png/029.png deleted file mode 100644 index 07d6a715..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/030.png b/public/assets/out/icon-line-pro/music/png/030.png deleted file mode 100644 index 72d75c68..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/031.png b/public/assets/out/icon-line-pro/music/png/031.png deleted file mode 100644 index 1593474d..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/032.png b/public/assets/out/icon-line-pro/music/png/032.png deleted file mode 100644 index 5192d002..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/033.png b/public/assets/out/icon-line-pro/music/png/033.png deleted file mode 100644 index d4944cb4..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/034.png b/public/assets/out/icon-line-pro/music/png/034.png deleted file mode 100644 index 5aec06f9..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/035.png b/public/assets/out/icon-line-pro/music/png/035.png deleted file mode 100644 index e47ecf77..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/036.png b/public/assets/out/icon-line-pro/music/png/036.png deleted file mode 100644 index ebe3e7d8..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/037.png b/public/assets/out/icon-line-pro/music/png/037.png deleted file mode 100644 index 76b321dd..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/038.png b/public/assets/out/icon-line-pro/music/png/038.png deleted file mode 100644 index b4caed61..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/039.png b/public/assets/out/icon-line-pro/music/png/039.png deleted file mode 100644 index 1e70597c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/040.png b/public/assets/out/icon-line-pro/music/png/040.png deleted file mode 100644 index 1d322ace..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/041.png b/public/assets/out/icon-line-pro/music/png/041.png deleted file mode 100644 index 692e4a57..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/042.png b/public/assets/out/icon-line-pro/music/png/042.png deleted file mode 100644 index 44ff7f0e..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/043.png b/public/assets/out/icon-line-pro/music/png/043.png deleted file mode 100644 index 72358dec..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/044.png b/public/assets/out/icon-line-pro/music/png/044.png deleted file mode 100644 index ebc3c7b0..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/045.png b/public/assets/out/icon-line-pro/music/png/045.png deleted file mode 100644 index 736bf82b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/046.png b/public/assets/out/icon-line-pro/music/png/046.png deleted file mode 100644 index b7b663d4..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/047.png b/public/assets/out/icon-line-pro/music/png/047.png deleted file mode 100644 index 8cbb96a6..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/048.png b/public/assets/out/icon-line-pro/music/png/048.png deleted file mode 100644 index 9ae9b8c1..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/049.png b/public/assets/out/icon-line-pro/music/png/049.png deleted file mode 100644 index 605a78f2..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/050.png b/public/assets/out/icon-line-pro/music/png/050.png deleted file mode 100644 index 16ec62b0..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/051.png b/public/assets/out/icon-line-pro/music/png/051.png deleted file mode 100644 index f91d2678..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/052.png b/public/assets/out/icon-line-pro/music/png/052.png deleted file mode 100644 index d1993d1f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/053.png b/public/assets/out/icon-line-pro/music/png/053.png deleted file mode 100644 index 515734f4..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/054.png b/public/assets/out/icon-line-pro/music/png/054.png deleted file mode 100644 index 8995b40a..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/055.png b/public/assets/out/icon-line-pro/music/png/055.png deleted file mode 100644 index 996cc1c0..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/056.png b/public/assets/out/icon-line-pro/music/png/056.png deleted file mode 100644 index 64ac2541..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/057.png b/public/assets/out/icon-line-pro/music/png/057.png deleted file mode 100644 index 51d8b04d..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/058.png b/public/assets/out/icon-line-pro/music/png/058.png deleted file mode 100644 index 6e955e06..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/059.png b/public/assets/out/icon-line-pro/music/png/059.png deleted file mode 100644 index 17b072c9..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/060.png b/public/assets/out/icon-line-pro/music/png/060.png deleted file mode 100644 index c652d975..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/061.png b/public/assets/out/icon-line-pro/music/png/061.png deleted file mode 100644 index 923e10ac..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/062.png b/public/assets/out/icon-line-pro/music/png/062.png deleted file mode 100644 index a51481df..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/063.png b/public/assets/out/icon-line-pro/music/png/063.png deleted file mode 100644 index 3a3c4a3c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/064.png b/public/assets/out/icon-line-pro/music/png/064.png deleted file mode 100644 index 5d5d84f1..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/065.png b/public/assets/out/icon-line-pro/music/png/065.png deleted file mode 100644 index 6bbc19cd..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/066.png b/public/assets/out/icon-line-pro/music/png/066.png deleted file mode 100644 index c6c15f85..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/067.png b/public/assets/out/icon-line-pro/music/png/067.png deleted file mode 100644 index 8d3c7518..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/068.png b/public/assets/out/icon-line-pro/music/png/068.png deleted file mode 100644 index 50dc59f7..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/069.png b/public/assets/out/icon-line-pro/music/png/069.png deleted file mode 100644 index 12732f4f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/070.png b/public/assets/out/icon-line-pro/music/png/070.png deleted file mode 100644 index 9cac7951..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/071.png b/public/assets/out/icon-line-pro/music/png/071.png deleted file mode 100644 index 0d364a0d..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/072.png b/public/assets/out/icon-line-pro/music/png/072.png deleted file mode 100644 index f9140225..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/073.png b/public/assets/out/icon-line-pro/music/png/073.png deleted file mode 100644 index 8ffc878a..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/074.png b/public/assets/out/icon-line-pro/music/png/074.png deleted file mode 100644 index fed14a26..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/075.png b/public/assets/out/icon-line-pro/music/png/075.png deleted file mode 100644 index fc9a865b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/076.png b/public/assets/out/icon-line-pro/music/png/076.png deleted file mode 100644 index 114bcecd..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/077.png b/public/assets/out/icon-line-pro/music/png/077.png deleted file mode 100644 index c1e3ecaf..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/078.png b/public/assets/out/icon-line-pro/music/png/078.png deleted file mode 100644 index 28309b9f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/079.png b/public/assets/out/icon-line-pro/music/png/079.png deleted file mode 100644 index 0eaaf97c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/080.png b/public/assets/out/icon-line-pro/music/png/080.png deleted file mode 100644 index 815cade1..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/081.png b/public/assets/out/icon-line-pro/music/png/081.png deleted file mode 100644 index b82669b8..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/082.png b/public/assets/out/icon-line-pro/music/png/082.png deleted file mode 100644 index dbae8b97..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/083.png b/public/assets/out/icon-line-pro/music/png/083.png deleted file mode 100644 index 93e0f149..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/084.png b/public/assets/out/icon-line-pro/music/png/084.png deleted file mode 100644 index 7fe6be19..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/085.png b/public/assets/out/icon-line-pro/music/png/085.png deleted file mode 100644 index 5ce8f343..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/086.png b/public/assets/out/icon-line-pro/music/png/086.png deleted file mode 100644 index b1ffe6fc..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/087.png b/public/assets/out/icon-line-pro/music/png/087.png deleted file mode 100644 index 1b1b0785..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/088.png b/public/assets/out/icon-line-pro/music/png/088.png deleted file mode 100644 index d5e65b25..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/089.png b/public/assets/out/icon-line-pro/music/png/089.png deleted file mode 100644 index 6788f605..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/090.png b/public/assets/out/icon-line-pro/music/png/090.png deleted file mode 100644 index eea116db..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/091.png b/public/assets/out/icon-line-pro/music/png/091.png deleted file mode 100644 index 3dbc5b24..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/092.png b/public/assets/out/icon-line-pro/music/png/092.png deleted file mode 100644 index 561ecf9f..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/093.png b/public/assets/out/icon-line-pro/music/png/093.png deleted file mode 100644 index 3004800b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/094.png b/public/assets/out/icon-line-pro/music/png/094.png deleted file mode 100644 index 3ba5d73c..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/095.png b/public/assets/out/icon-line-pro/music/png/095.png deleted file mode 100644 index 9bff482b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/096.png b/public/assets/out/icon-line-pro/music/png/096.png deleted file mode 100644 index b5073bfa..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/097.png b/public/assets/out/icon-line-pro/music/png/097.png deleted file mode 100644 index 60badb76..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/098.png b/public/assets/out/icon-line-pro/music/png/098.png deleted file mode 100644 index c604ec5e..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/099.png b/public/assets/out/icon-line-pro/music/png/099.png deleted file mode 100644 index 9d548e99..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/png/100.png b/public/assets/out/icon-line-pro/music/png/100.png deleted file mode 100644 index 9575da0b..00000000 Binary files a/public/assets/out/icon-line-pro/music/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/webfont/fonts/music.eot b/public/assets/out/icon-line-pro/music/webfont/fonts/music.eot deleted file mode 100644 index 475e1e64..00000000 Binary files a/public/assets/out/icon-line-pro/music/webfont/fonts/music.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/webfont/fonts/music.svg b/public/assets/out/icon-line-pro/music/webfont/fonts/music.svg deleted file mode 100644 index d134cb38..00000000 --- a/public/assets/out/icon-line-pro/music/webfont/fonts/music.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/music/webfont/fonts/music.ttf b/public/assets/out/icon-line-pro/music/webfont/fonts/music.ttf deleted file mode 100644 index b9bba5d5..00000000 Binary files a/public/assets/out/icon-line-pro/music/webfont/fonts/music.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/webfont/fonts/music.woff b/public/assets/out/icon-line-pro/music/webfont/fonts/music.woff deleted file mode 100644 index d4a5e638..00000000 Binary files a/public/assets/out/icon-line-pro/music/webfont/fonts/music.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/music/webfont/icons-reference.html b/public/assets/out/icon-line-pro/music/webfont/icons-reference.html deleted file mode 100644 index 33834c52..00000000 --- a/public/assets/out/icon-line-pro/music/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Music - - - - - -
      -

      Music

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/music/webfont/styles.css b/public/assets/out/icon-line-pro/music/webfont/styles.css deleted file mode 100644 index 1852d2b9..00000000 --- a/public/assets/out/icon-line-pro/music/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "music"; - src:url("fonts/music.eot"); - src:url("fonts/music.eot?#iefix") format("embedded-opentype"), - url("fonts/music.woff") format("woff"), - url("fonts/music.ttf") format("truetype"), - url("fonts/music.svg#music") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "music" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "music" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-053:before { - content: "e"; -} -.icon-054:before { - content: "f"; -} -.icon-041:before { - content: "g"; -} -.icon-028:before { - content: "h"; -} -.icon-015:before { - content: "i"; -} -.icon-002:before { - content: "j"; -} -.icon-003:before { - content: "k"; -} -.icon-016:before { - content: "l"; -} -.icon-029:before { - content: "m"; -} -.icon-042:before { - content: "n"; -} -.icon-055:before { - content: "o"; -} -.icon-056:before { - content: "p"; -} -.icon-043:before { - content: "q"; -} -.icon-030:before { - content: "r"; -} -.icon-017:before { - content: "s"; -} -.icon-004:before { - content: "t"; -} -.icon-005:before { - content: "u"; -} -.icon-018:before { - content: "v"; -} -.icon-031:before { - content: "w"; -} -.icon-044:before { - content: "x"; -} -.icon-057:before { - content: "y"; -} -.icon-058:before { - content: "z"; -} -.icon-045:before { - content: "A"; -} -.icon-032:before { - content: "B"; -} -.icon-019:before { - content: "C"; -} -.icon-006:before { - content: "D"; -} -.icon-007:before { - content: "E"; -} -.icon-020:before { - content: "F"; -} -.icon-033:before { - content: "G"; -} -.icon-046:before { - content: "H"; -} -.icon-059:before { - content: "I"; -} -.icon-060:before { - content: "J"; -} -.icon-047:before { - content: "K"; -} -.icon-034:before { - content: "L"; -} -.icon-021:before { - content: "M"; -} -.icon-008:before { - content: "N"; -} -.icon-009:before { - content: "O"; -} -.icon-022:before { - content: "P"; -} -.icon-035:before { - content: "Q"; -} -.icon-048:before { - content: "R"; -} -.icon-061:before { - content: "S"; -} -.icon-062:before { - content: "T"; -} -.icon-036:before { - content: "U"; -} -.icon-023:before { - content: "V"; -} -.icon-010:before { - content: "W"; -} -.icon-011:before { - content: "X"; -} -.icon-024:before { - content: "Y"; -} -.icon-037:before { - content: "Z"; -} -.icon-049:before { - content: "0"; -} -.icon-050:before { - content: "1"; -} -.icon-051:before { - content: "2"; -} -.icon-038:before { - content: "3"; -} -.icon-025:before { - content: "4"; -} -.icon-012:before { - content: "5"; -} -.icon-013:before { - content: "6"; -} -.icon-026:before { - content: "7"; -} -.icon-039:before { - content: "8"; -} -.icon-052:before { - content: "9"; -} -.icon-065:before { - content: "!"; -} -.icon-064:before { - content: "\""; -} -.icon-063:before { - content: "#"; -} -.icon-078:before { - content: "$"; -} -.icon-091:before { - content: "%"; -} -.icon-090:before { - content: "&"; -} -.icon-077:before { - content: "'"; -} -.icon-076:before { - content: "("; -} -.icon-089:before { - content: ")"; -} -.icon-088:before { - content: "*"; -} -.icon-075:before { - content: "+"; -} -.icon-074:before { - content: ","; -} -.icon-087:before { - content: "-"; -} -.icon-086:before { - content: "."; -} -.icon-073:before { - content: "/"; -} -.icon-072:before { - content: ":"; -} -.icon-085:before { - content: ";"; -} -.icon-084:before { - content: "<"; -} -.icon-071:before { - content: "="; -} -.icon-070:before { - content: ">"; -} -.icon-083:before { - content: "?"; -} -.icon-082:before { - content: "@"; -} -.icon-069:before { - content: "["; -} -.icon-068:before { - content: "]"; -} -.icon-081:before { - content: "^"; -} -.icon-080:before { - content: "_"; -} -.icon-067:before { - content: "`"; -} -.icon-066:before { - content: "{"; -} -.icon-079:before { - content: "|"; -} -.icon-092:before { - content: "}"; -} -.icon-093:before { - content: "~"; -} -.icon-094:before { - content: "\\"; -} -.icon-095:before { - content: "\e000"; -} -.icon-096:before { - content: "\e001"; -} -.icon-097:before { - content: "\e002"; -} -.icon-098:before { - content: "\e003"; -} -.icon-099:before { - content: "\e004"; -} -.icon-100:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/real-estate/png/001.png b/public/assets/out/icon-line-pro/real-estate/png/001.png deleted file mode 100644 index aa261e8e..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/002.png b/public/assets/out/icon-line-pro/real-estate/png/002.png deleted file mode 100644 index 20050ed3..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/003.png b/public/assets/out/icon-line-pro/real-estate/png/003.png deleted file mode 100644 index 6fa28151..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/004.png b/public/assets/out/icon-line-pro/real-estate/png/004.png deleted file mode 100644 index 4435b229..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/005.png b/public/assets/out/icon-line-pro/real-estate/png/005.png deleted file mode 100644 index f5d2015e..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/006.png b/public/assets/out/icon-line-pro/real-estate/png/006.png deleted file mode 100644 index f92ea259..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/007.png b/public/assets/out/icon-line-pro/real-estate/png/007.png deleted file mode 100644 index 794df9b4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/008.png b/public/assets/out/icon-line-pro/real-estate/png/008.png deleted file mode 100644 index 05d446ef..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/009.png b/public/assets/out/icon-line-pro/real-estate/png/009.png deleted file mode 100644 index 4a0bb576..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/010.png b/public/assets/out/icon-line-pro/real-estate/png/010.png deleted file mode 100644 index 9487aa43..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/011.png b/public/assets/out/icon-line-pro/real-estate/png/011.png deleted file mode 100644 index b3874cc4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/012.png b/public/assets/out/icon-line-pro/real-estate/png/012.png deleted file mode 100644 index a7e463d9..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/013.png b/public/assets/out/icon-line-pro/real-estate/png/013.png deleted file mode 100644 index 88d4f337..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/014.png b/public/assets/out/icon-line-pro/real-estate/png/014.png deleted file mode 100644 index c5cbeda2..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/015.png b/public/assets/out/icon-line-pro/real-estate/png/015.png deleted file mode 100644 index f64c61e0..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/016.png b/public/assets/out/icon-line-pro/real-estate/png/016.png deleted file mode 100644 index ece79902..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/017.png b/public/assets/out/icon-line-pro/real-estate/png/017.png deleted file mode 100644 index abcdfa79..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/018.png b/public/assets/out/icon-line-pro/real-estate/png/018.png deleted file mode 100644 index fe0090eb..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/019.png b/public/assets/out/icon-line-pro/real-estate/png/019.png deleted file mode 100644 index 902e0c25..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/020.png b/public/assets/out/icon-line-pro/real-estate/png/020.png deleted file mode 100644 index 7d78e87a..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/021.png b/public/assets/out/icon-line-pro/real-estate/png/021.png deleted file mode 100644 index d35219e6..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/022.png b/public/assets/out/icon-line-pro/real-estate/png/022.png deleted file mode 100644 index 396fc503..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/023.png b/public/assets/out/icon-line-pro/real-estate/png/023.png deleted file mode 100644 index cff605b2..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/024.png b/public/assets/out/icon-line-pro/real-estate/png/024.png deleted file mode 100644 index 9685f631..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/025.png b/public/assets/out/icon-line-pro/real-estate/png/025.png deleted file mode 100644 index e2777c2b..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/026.png b/public/assets/out/icon-line-pro/real-estate/png/026.png deleted file mode 100644 index ebb8bdf9..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/027.png b/public/assets/out/icon-line-pro/real-estate/png/027.png deleted file mode 100644 index c3732fad..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/028.png b/public/assets/out/icon-line-pro/real-estate/png/028.png deleted file mode 100644 index d47405c5..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/029.png b/public/assets/out/icon-line-pro/real-estate/png/029.png deleted file mode 100644 index 6a58316b..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/030.png b/public/assets/out/icon-line-pro/real-estate/png/030.png deleted file mode 100644 index f4e28602..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/031.png b/public/assets/out/icon-line-pro/real-estate/png/031.png deleted file mode 100644 index 2818b6ec..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/032.png b/public/assets/out/icon-line-pro/real-estate/png/032.png deleted file mode 100644 index ddb54786..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/033.png b/public/assets/out/icon-line-pro/real-estate/png/033.png deleted file mode 100644 index 32ee2b04..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/034.png b/public/assets/out/icon-line-pro/real-estate/png/034.png deleted file mode 100644 index ce871b3a..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/035.png b/public/assets/out/icon-line-pro/real-estate/png/035.png deleted file mode 100644 index 015ad689..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/036.png b/public/assets/out/icon-line-pro/real-estate/png/036.png deleted file mode 100644 index ce372a3d..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/037.png b/public/assets/out/icon-line-pro/real-estate/png/037.png deleted file mode 100644 index d642afce..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/038.png b/public/assets/out/icon-line-pro/real-estate/png/038.png deleted file mode 100644 index 2dff8580..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/039.png b/public/assets/out/icon-line-pro/real-estate/png/039.png deleted file mode 100644 index 9c79dcbe..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/040.png b/public/assets/out/icon-line-pro/real-estate/png/040.png deleted file mode 100644 index a2add596..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/041.png b/public/assets/out/icon-line-pro/real-estate/png/041.png deleted file mode 100644 index e46a048f..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/042.png b/public/assets/out/icon-line-pro/real-estate/png/042.png deleted file mode 100644 index d844234d..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/043.png b/public/assets/out/icon-line-pro/real-estate/png/043.png deleted file mode 100644 index 35b9048f..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/044.png b/public/assets/out/icon-line-pro/real-estate/png/044.png deleted file mode 100644 index 28dab986..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/045.png b/public/assets/out/icon-line-pro/real-estate/png/045.png deleted file mode 100644 index a529703e..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/046.png b/public/assets/out/icon-line-pro/real-estate/png/046.png deleted file mode 100644 index 448428bd..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/047.png b/public/assets/out/icon-line-pro/real-estate/png/047.png deleted file mode 100644 index 15f033f4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/048.png b/public/assets/out/icon-line-pro/real-estate/png/048.png deleted file mode 100644 index 3058e4b4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/049.png b/public/assets/out/icon-line-pro/real-estate/png/049.png deleted file mode 100644 index 0558616a..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/050.png b/public/assets/out/icon-line-pro/real-estate/png/050.png deleted file mode 100644 index df634c96..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/051.png b/public/assets/out/icon-line-pro/real-estate/png/051.png deleted file mode 100644 index d2b3dd84..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/052.png b/public/assets/out/icon-line-pro/real-estate/png/052.png deleted file mode 100644 index af1e445b..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/053.png b/public/assets/out/icon-line-pro/real-estate/png/053.png deleted file mode 100644 index 9f11f573..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/054.png b/public/assets/out/icon-line-pro/real-estate/png/054.png deleted file mode 100644 index 360caf7d..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/055.png b/public/assets/out/icon-line-pro/real-estate/png/055.png deleted file mode 100644 index 3ca06a3c..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/056.png b/public/assets/out/icon-line-pro/real-estate/png/056.png deleted file mode 100644 index 617170a4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/057.png b/public/assets/out/icon-line-pro/real-estate/png/057.png deleted file mode 100644 index d8d2c050..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/058.png b/public/assets/out/icon-line-pro/real-estate/png/058.png deleted file mode 100644 index 6c04edf7..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/059.png b/public/assets/out/icon-line-pro/real-estate/png/059.png deleted file mode 100644 index a904c8ae..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/060.png b/public/assets/out/icon-line-pro/real-estate/png/060.png deleted file mode 100644 index 3e1721a2..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/061.png b/public/assets/out/icon-line-pro/real-estate/png/061.png deleted file mode 100644 index 9c3136cf..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/062.png b/public/assets/out/icon-line-pro/real-estate/png/062.png deleted file mode 100644 index 08ed82d7..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/063.png b/public/assets/out/icon-line-pro/real-estate/png/063.png deleted file mode 100644 index 12d3c999..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/064.png b/public/assets/out/icon-line-pro/real-estate/png/064.png deleted file mode 100644 index ef783e48..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/065.png b/public/assets/out/icon-line-pro/real-estate/png/065.png deleted file mode 100644 index dfb6dcd0..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/066.png b/public/assets/out/icon-line-pro/real-estate/png/066.png deleted file mode 100644 index 20e894c6..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/067.png b/public/assets/out/icon-line-pro/real-estate/png/067.png deleted file mode 100644 index faaf3174..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/068.png b/public/assets/out/icon-line-pro/real-estate/png/068.png deleted file mode 100644 index 4652c8c6..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/069.png b/public/assets/out/icon-line-pro/real-estate/png/069.png deleted file mode 100644 index 4c406be0..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/070.png b/public/assets/out/icon-line-pro/real-estate/png/070.png deleted file mode 100644 index 4b473dee..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/071.png b/public/assets/out/icon-line-pro/real-estate/png/071.png deleted file mode 100644 index 246f5803..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/072.png b/public/assets/out/icon-line-pro/real-estate/png/072.png deleted file mode 100644 index b33b76ec..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/073.png b/public/assets/out/icon-line-pro/real-estate/png/073.png deleted file mode 100644 index 8b0d9314..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/074.png b/public/assets/out/icon-line-pro/real-estate/png/074.png deleted file mode 100644 index ccffcd94..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/075.png b/public/assets/out/icon-line-pro/real-estate/png/075.png deleted file mode 100644 index bd0687a2..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/076.png b/public/assets/out/icon-line-pro/real-estate/png/076.png deleted file mode 100644 index ceac890c..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/077.png b/public/assets/out/icon-line-pro/real-estate/png/077.png deleted file mode 100644 index 0c713ce0..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/078.png b/public/assets/out/icon-line-pro/real-estate/png/078.png deleted file mode 100644 index c6c41699..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/079.png b/public/assets/out/icon-line-pro/real-estate/png/079.png deleted file mode 100644 index fd1ed977..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/080.png b/public/assets/out/icon-line-pro/real-estate/png/080.png deleted file mode 100644 index 282c019d..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/081.png b/public/assets/out/icon-line-pro/real-estate/png/081.png deleted file mode 100644 index 02468b6e..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/082.png b/public/assets/out/icon-line-pro/real-estate/png/082.png deleted file mode 100644 index 02804309..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/083.png b/public/assets/out/icon-line-pro/real-estate/png/083.png deleted file mode 100644 index d9f37cf4..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/084.png b/public/assets/out/icon-line-pro/real-estate/png/084.png deleted file mode 100644 index 2457506a..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/085.png b/public/assets/out/icon-line-pro/real-estate/png/085.png deleted file mode 100644 index 5f0d3dea..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/086.png b/public/assets/out/icon-line-pro/real-estate/png/086.png deleted file mode 100644 index 97879f2a..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/087.png b/public/assets/out/icon-line-pro/real-estate/png/087.png deleted file mode 100644 index 2eee29c2..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/088.png b/public/assets/out/icon-line-pro/real-estate/png/088.png deleted file mode 100644 index e5648f48..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/089.png b/public/assets/out/icon-line-pro/real-estate/png/089.png deleted file mode 100644 index d4dd7b83..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/png/090.png b/public/assets/out/icon-line-pro/real-estate/png/090.png deleted file mode 100644 index 9ac6269d..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.eot b/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.eot deleted file mode 100644 index b097ed70..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.svg b/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.svg deleted file mode 100644 index 33638340..00000000 --- a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.ttf b/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.ttf deleted file mode 100644 index d6200030..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.woff b/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.woff deleted file mode 100644 index 2c519037..00000000 Binary files a/public/assets/out/icon-line-pro/real-estate/webfont/fonts/real-estate.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/icons-reference.html b/public/assets/out/icon-line-pro/real-estate/webfont/icons-reference.html deleted file mode 100644 index ed4518c1..00000000 --- a/public/assets/out/icon-line-pro/real-estate/webfont/icons-reference.html +++ /dev/null @@ -1,789 +0,0 @@ - - - - - - - Font Reference - Real Estate - - - - - -
      -

      Real Estate

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/real-estate/webfont/styles.css b/public/assets/out/icon-line-pro/real-estate/webfont/styles.css deleted file mode 100644 index e3cd96d0..00000000 --- a/public/assets/out/icon-line-pro/real-estate/webfont/styles.css +++ /dev/null @@ -1,310 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "real-estate"; - src:url("fonts/real-estate.eot"); - src:url("fonts/real-estate.eot?#iefix") format("embedded-opentype"), - url("fonts/real-estate.woff") format("woff"), - url("fonts/real-estate.ttf") format("truetype"), - url("fonts/real-estate.svg#real-estate") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "real-estate" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "real-estate" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-053:before { - content: "e"; -} -.icon-066:before { - content: "f"; -} -.icon-079:before { - content: "g"; -} -.icon-080:before { - content: "h"; -} -.icon-081:before { - content: "i"; -} -.icon-082:before { - content: "j"; -} -.icon-083:before { - content: "k"; -} -.icon-084:before { - content: "l"; -} -.icon-085:before { - content: "m"; -} -.icon-086:before { - content: "n"; -} -.icon-087:before { - content: "o"; -} -.icon-088:before { - content: "p"; -} -.icon-089:before { - content: "q"; -} -.icon-090:before { - content: "r"; -} -.icon-077:before { - content: "s"; -} -.icon-078:before { - content: "t"; -} -.icon-065:before { - content: "u"; -} -.icon-064:before { - content: "v"; -} -.icon-063:before { - content: "w"; -} -.icon-076:before { - content: "x"; -} -.icon-075:before { - content: "y"; -} -.icon-062:before { - content: "z"; -} -.icon-061:before { - content: "A"; -} -.icon-074:before { - content: "B"; -} -.icon-073:before { - content: "C"; -} -.icon-059:before { - content: "D"; -} -.icon-072:before { - content: "E"; -} -.icon-060:before { - content: "F"; -} -.icon-058:before { - content: "G"; -} -.icon-071:before { - content: "H"; -} -.icon-070:before { - content: "I"; -} -.icon-057:before { - content: "J"; -} -.icon-056:before { - content: "K"; -} -.icon-069:before { - content: "L"; -} -.icon-068:before { - content: "M"; -} -.icon-055:before { - content: "N"; -} -.icon-054:before { - content: "O"; -} -.icon-067:before { - content: "P"; -} -.icon-041:before { - content: "Q"; -} -.icon-028:before { - content: "R"; -} -.icon-015:before { - content: "S"; -} -.icon-002:before { - content: "T"; -} -.icon-003:before { - content: "U"; -} -.icon-016:before { - content: "V"; -} -.icon-029:before { - content: "W"; -} -.icon-042:before { - content: "X"; -} -.icon-043:before { - content: "Y"; -} -.icon-030:before { - content: "Z"; -} -.icon-017:before { - content: "0"; -} -.icon-004:before { - content: "1"; -} -.icon-005:before { - content: "2"; -} -.icon-018:before { - content: "3"; -} -.icon-031:before { - content: "4"; -} -.icon-044:before { - content: "5"; -} -.icon-045:before { - content: "6"; -} -.icon-032:before { - content: "7"; -} -.icon-019:before { - content: "8"; -} -.icon-006:before { - content: "9"; -} -.icon-008:before { - content: "!"; -} -.icon-020:before { - content: "\""; -} -.icon-007:before { - content: "#"; -} -.icon-021:before { - content: "$"; -} -.icon-033:before { - content: "%"; -} -.icon-034:before { - content: "&"; -} -.icon-047:before { - content: "'"; -} -.icon-046:before { - content: "("; -} -.icon-048:before { - content: ")"; -} -.icon-035:before { - content: "*"; -} -.icon-022:before { - content: "+"; -} -.icon-009:before { - content: ","; -} -.icon-011:before { - content: "-"; -} -.icon-023:before { - content: "."; -} -.icon-010:before { - content: "/"; -} -.icon-024:before { - content: ":"; -} -.icon-037:before { - content: ";"; -} -.icon-036:before { - content: "<"; -} -.icon-049:before { - content: "="; -} -.icon-050:before { - content: ">"; -} -.icon-051:before { - content: "?"; -} -.icon-038:before { - content: "@"; -} -.icon-039:before { - content: "["; -} -.icon-052:before { - content: "]"; -} -.icon-026:before { - content: "^"; -} -.icon-025:before { - content: "_"; -} -.icon-012:before { - content: "`"; -} -.icon-013:before { - content: "{"; -} diff --git a/public/assets/out/icon-line-pro/science/png/001.png b/public/assets/out/icon-line-pro/science/png/001.png deleted file mode 100644 index 6c168e35..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/002.png b/public/assets/out/icon-line-pro/science/png/002.png deleted file mode 100644 index 18e9952a..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/003.png b/public/assets/out/icon-line-pro/science/png/003.png deleted file mode 100644 index ee2bc39d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/004.png b/public/assets/out/icon-line-pro/science/png/004.png deleted file mode 100644 index 006d2ba2..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/005.png b/public/assets/out/icon-line-pro/science/png/005.png deleted file mode 100644 index 680e77d9..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/006.png b/public/assets/out/icon-line-pro/science/png/006.png deleted file mode 100644 index 176b3d29..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/007.png b/public/assets/out/icon-line-pro/science/png/007.png deleted file mode 100644 index 22ccf34e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/008.png b/public/assets/out/icon-line-pro/science/png/008.png deleted file mode 100644 index 414b4f85..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/009.png b/public/assets/out/icon-line-pro/science/png/009.png deleted file mode 100644 index 0bdd38ac..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/010.png b/public/assets/out/icon-line-pro/science/png/010.png deleted file mode 100644 index 88dea6a6..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/011.png b/public/assets/out/icon-line-pro/science/png/011.png deleted file mode 100644 index 18edd27e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/012.png b/public/assets/out/icon-line-pro/science/png/012.png deleted file mode 100644 index bd343ad0..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/013.png b/public/assets/out/icon-line-pro/science/png/013.png deleted file mode 100644 index 245d6710..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/014.png b/public/assets/out/icon-line-pro/science/png/014.png deleted file mode 100644 index fdc6e22a..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/015.png b/public/assets/out/icon-line-pro/science/png/015.png deleted file mode 100644 index e2144a2b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/016.png b/public/assets/out/icon-line-pro/science/png/016.png deleted file mode 100644 index d0d65c53..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/017.png b/public/assets/out/icon-line-pro/science/png/017.png deleted file mode 100644 index 67c03058..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/018.png b/public/assets/out/icon-line-pro/science/png/018.png deleted file mode 100644 index f7135800..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/019.png b/public/assets/out/icon-line-pro/science/png/019.png deleted file mode 100644 index 7e28035e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/020.png b/public/assets/out/icon-line-pro/science/png/020.png deleted file mode 100644 index ed5dbf57..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/021.png b/public/assets/out/icon-line-pro/science/png/021.png deleted file mode 100644 index dd749feb..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/022.png b/public/assets/out/icon-line-pro/science/png/022.png deleted file mode 100644 index 6607e94b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/023.png b/public/assets/out/icon-line-pro/science/png/023.png deleted file mode 100644 index 62709968..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/024.png b/public/assets/out/icon-line-pro/science/png/024.png deleted file mode 100644 index 3b743a7c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/025.png b/public/assets/out/icon-line-pro/science/png/025.png deleted file mode 100644 index 87250345..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/026.png b/public/assets/out/icon-line-pro/science/png/026.png deleted file mode 100644 index 5c945a8f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/027.png b/public/assets/out/icon-line-pro/science/png/027.png deleted file mode 100644 index a91c7b64..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/028.png b/public/assets/out/icon-line-pro/science/png/028.png deleted file mode 100644 index 88cc5128..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/029.png b/public/assets/out/icon-line-pro/science/png/029.png deleted file mode 100644 index e0846754..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/030.png b/public/assets/out/icon-line-pro/science/png/030.png deleted file mode 100644 index 08ff05dd..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/031.png b/public/assets/out/icon-line-pro/science/png/031.png deleted file mode 100644 index 265bee03..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/032.png b/public/assets/out/icon-line-pro/science/png/032.png deleted file mode 100644 index 5a5a5e90..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/033.png b/public/assets/out/icon-line-pro/science/png/033.png deleted file mode 100644 index 2ddb3001..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/034.png b/public/assets/out/icon-line-pro/science/png/034.png deleted file mode 100644 index 0ee686c6..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/035.png b/public/assets/out/icon-line-pro/science/png/035.png deleted file mode 100644 index 09196dc3..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/036.png b/public/assets/out/icon-line-pro/science/png/036.png deleted file mode 100644 index 9d2e4050..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/037.png b/public/assets/out/icon-line-pro/science/png/037.png deleted file mode 100644 index 79d40c44..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/038.png b/public/assets/out/icon-line-pro/science/png/038.png deleted file mode 100644 index e404245f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/039.png b/public/assets/out/icon-line-pro/science/png/039.png deleted file mode 100644 index 1cd34137..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/040.png b/public/assets/out/icon-line-pro/science/png/040.png deleted file mode 100644 index aa4102bc..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/041.png b/public/assets/out/icon-line-pro/science/png/041.png deleted file mode 100644 index e850a6d9..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/042.png b/public/assets/out/icon-line-pro/science/png/042.png deleted file mode 100644 index bbf0315c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/043.png b/public/assets/out/icon-line-pro/science/png/043.png deleted file mode 100644 index 277ee51f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/044.png b/public/assets/out/icon-line-pro/science/png/044.png deleted file mode 100644 index 88b49e46..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/045.png b/public/assets/out/icon-line-pro/science/png/045.png deleted file mode 100644 index 133f9ae1..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/046.png b/public/assets/out/icon-line-pro/science/png/046.png deleted file mode 100644 index 0e3b51d6..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/047.png b/public/assets/out/icon-line-pro/science/png/047.png deleted file mode 100644 index 3f361f86..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/048.png b/public/assets/out/icon-line-pro/science/png/048.png deleted file mode 100644 index d8a807d7..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/049.png b/public/assets/out/icon-line-pro/science/png/049.png deleted file mode 100644 index 5bb4078b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/050.png b/public/assets/out/icon-line-pro/science/png/050.png deleted file mode 100644 index 9f2f7f75..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/051.png b/public/assets/out/icon-line-pro/science/png/051.png deleted file mode 100644 index e4f53316..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/052.png b/public/assets/out/icon-line-pro/science/png/052.png deleted file mode 100644 index e16984f2..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/053.png b/public/assets/out/icon-line-pro/science/png/053.png deleted file mode 100644 index d4aefcbf..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/054.png b/public/assets/out/icon-line-pro/science/png/054.png deleted file mode 100644 index 822274b1..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/055.png b/public/assets/out/icon-line-pro/science/png/055.png deleted file mode 100644 index cc10eee3..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/056.png b/public/assets/out/icon-line-pro/science/png/056.png deleted file mode 100644 index c7243ec5..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/057.png b/public/assets/out/icon-line-pro/science/png/057.png deleted file mode 100644 index 7f4f0b8e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/058.png b/public/assets/out/icon-line-pro/science/png/058.png deleted file mode 100644 index 8937a2c5..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/059.png b/public/assets/out/icon-line-pro/science/png/059.png deleted file mode 100644 index 156c5091..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/060.png b/public/assets/out/icon-line-pro/science/png/060.png deleted file mode 100644 index be60135d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/061.png b/public/assets/out/icon-line-pro/science/png/061.png deleted file mode 100644 index 5c9ae68b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/062.png b/public/assets/out/icon-line-pro/science/png/062.png deleted file mode 100644 index 302171da..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/063.png b/public/assets/out/icon-line-pro/science/png/063.png deleted file mode 100644 index f5524af3..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/064.png b/public/assets/out/icon-line-pro/science/png/064.png deleted file mode 100644 index 99373eea..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/065.png b/public/assets/out/icon-line-pro/science/png/065.png deleted file mode 100644 index 76306681..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/066.png b/public/assets/out/icon-line-pro/science/png/066.png deleted file mode 100644 index 356edc64..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/067.png b/public/assets/out/icon-line-pro/science/png/067.png deleted file mode 100644 index 410cda70..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/068.png b/public/assets/out/icon-line-pro/science/png/068.png deleted file mode 100644 index 5f8e27bd..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/069.png b/public/assets/out/icon-line-pro/science/png/069.png deleted file mode 100644 index ef67229d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/070.png b/public/assets/out/icon-line-pro/science/png/070.png deleted file mode 100644 index 4ca12c0c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/071.png b/public/assets/out/icon-line-pro/science/png/071.png deleted file mode 100644 index 841d1230..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/072.png b/public/assets/out/icon-line-pro/science/png/072.png deleted file mode 100644 index 67e12800..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/073.png b/public/assets/out/icon-line-pro/science/png/073.png deleted file mode 100644 index 178158cb..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/074.png b/public/assets/out/icon-line-pro/science/png/074.png deleted file mode 100644 index 2a6c7440..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/075.png b/public/assets/out/icon-line-pro/science/png/075.png deleted file mode 100644 index 6bd52352..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/076.png b/public/assets/out/icon-line-pro/science/png/076.png deleted file mode 100644 index 21a408bd..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/077.png b/public/assets/out/icon-line-pro/science/png/077.png deleted file mode 100644 index b92faf62..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/078.png b/public/assets/out/icon-line-pro/science/png/078.png deleted file mode 100644 index 25257239..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/079.png b/public/assets/out/icon-line-pro/science/png/079.png deleted file mode 100644 index a7a1d089..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/080.png b/public/assets/out/icon-line-pro/science/png/080.png deleted file mode 100644 index 51644849..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/081.png b/public/assets/out/icon-line-pro/science/png/081.png deleted file mode 100644 index fe4ccb7c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/082.png b/public/assets/out/icon-line-pro/science/png/082.png deleted file mode 100644 index 85b7ba2c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/083.png b/public/assets/out/icon-line-pro/science/png/083.png deleted file mode 100644 index 84cfe32d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/084.png b/public/assets/out/icon-line-pro/science/png/084.png deleted file mode 100644 index 9938dcb5..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/085.png b/public/assets/out/icon-line-pro/science/png/085.png deleted file mode 100644 index 061b3b55..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/086.png b/public/assets/out/icon-line-pro/science/png/086.png deleted file mode 100644 index 45c15c6d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/087.png b/public/assets/out/icon-line-pro/science/png/087.png deleted file mode 100644 index b22c1252..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/088.png b/public/assets/out/icon-line-pro/science/png/088.png deleted file mode 100644 index f11efbb8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/089.png b/public/assets/out/icon-line-pro/science/png/089.png deleted file mode 100644 index 11c44aa8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/090.png b/public/assets/out/icon-line-pro/science/png/090.png deleted file mode 100644 index 90085ec8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/091.png b/public/assets/out/icon-line-pro/science/png/091.png deleted file mode 100644 index aee6ccbd..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/092.png b/public/assets/out/icon-line-pro/science/png/092.png deleted file mode 100644 index e1c5cff0..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/093.png b/public/assets/out/icon-line-pro/science/png/093.png deleted file mode 100644 index 857acd6b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/094.png b/public/assets/out/icon-line-pro/science/png/094.png deleted file mode 100644 index a01cb0ee..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/095.png b/public/assets/out/icon-line-pro/science/png/095.png deleted file mode 100644 index 55d38ba8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/096.png b/public/assets/out/icon-line-pro/science/png/096.png deleted file mode 100644 index 7faa89c0..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/097.png b/public/assets/out/icon-line-pro/science/png/097.png deleted file mode 100644 index d738dd9d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/098.png b/public/assets/out/icon-line-pro/science/png/098.png deleted file mode 100644 index 5e19df03..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/099.png b/public/assets/out/icon-line-pro/science/png/099.png deleted file mode 100644 index 3e081f1d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/100.png b/public/assets/out/icon-line-pro/science/png/100.png deleted file mode 100644 index 2fd40c7e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/101.png b/public/assets/out/icon-line-pro/science/png/101.png deleted file mode 100644 index 1c9c59f8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/102.png b/public/assets/out/icon-line-pro/science/png/102.png deleted file mode 100644 index 19f4b56f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/103.png b/public/assets/out/icon-line-pro/science/png/103.png deleted file mode 100644 index 3d5289df..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/104.png b/public/assets/out/icon-line-pro/science/png/104.png deleted file mode 100644 index 7c31fa92..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/105.png b/public/assets/out/icon-line-pro/science/png/105.png deleted file mode 100644 index 03da237f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/106.png b/public/assets/out/icon-line-pro/science/png/106.png deleted file mode 100644 index 3aa8aadb..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/107.png b/public/assets/out/icon-line-pro/science/png/107.png deleted file mode 100644 index 5b713f6e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/108.png b/public/assets/out/icon-line-pro/science/png/108.png deleted file mode 100644 index 9f191791..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/109.png b/public/assets/out/icon-line-pro/science/png/109.png deleted file mode 100644 index 3e58da7d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/110.png b/public/assets/out/icon-line-pro/science/png/110.png deleted file mode 100644 index ddbcb1a2..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/111.png b/public/assets/out/icon-line-pro/science/png/111.png deleted file mode 100644 index d119bc6f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/112.png b/public/assets/out/icon-line-pro/science/png/112.png deleted file mode 100644 index 7cb27c08..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/113.png b/public/assets/out/icon-line-pro/science/png/113.png deleted file mode 100644 index 6998b4fa..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/114.png b/public/assets/out/icon-line-pro/science/png/114.png deleted file mode 100644 index ae263132..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/115.png b/public/assets/out/icon-line-pro/science/png/115.png deleted file mode 100644 index d4b7ef49..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/116.png b/public/assets/out/icon-line-pro/science/png/116.png deleted file mode 100644 index 581e8466..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/117.png b/public/assets/out/icon-line-pro/science/png/117.png deleted file mode 100644 index eb8bdc35..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/118.png b/public/assets/out/icon-line-pro/science/png/118.png deleted file mode 100644 index c2032885..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/119.png b/public/assets/out/icon-line-pro/science/png/119.png deleted file mode 100644 index b5dcd909..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/120.png b/public/assets/out/icon-line-pro/science/png/120.png deleted file mode 100644 index 8bc634d6..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/121.png b/public/assets/out/icon-line-pro/science/png/121.png deleted file mode 100644 index 406ca568..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/122.png b/public/assets/out/icon-line-pro/science/png/122.png deleted file mode 100644 index 22a51f3c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/123.png b/public/assets/out/icon-line-pro/science/png/123.png deleted file mode 100644 index 60fb973d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/124.png b/public/assets/out/icon-line-pro/science/png/124.png deleted file mode 100644 index 240547ba..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/125.png b/public/assets/out/icon-line-pro/science/png/125.png deleted file mode 100644 index 5dc799cf..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/126.png b/public/assets/out/icon-line-pro/science/png/126.png deleted file mode 100644 index 9734a349..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/127.png b/public/assets/out/icon-line-pro/science/png/127.png deleted file mode 100644 index 5facd89e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/128.png b/public/assets/out/icon-line-pro/science/png/128.png deleted file mode 100644 index f5150005..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/129.png b/public/assets/out/icon-line-pro/science/png/129.png deleted file mode 100644 index 0fc260f2..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/130.png b/public/assets/out/icon-line-pro/science/png/130.png deleted file mode 100644 index cc19f6de..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/131.png b/public/assets/out/icon-line-pro/science/png/131.png deleted file mode 100644 index 3698d4ed..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/132.png b/public/assets/out/icon-line-pro/science/png/132.png deleted file mode 100644 index 157360ae..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/133.png b/public/assets/out/icon-line-pro/science/png/133.png deleted file mode 100644 index 50c84bf7..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/134.png b/public/assets/out/icon-line-pro/science/png/134.png deleted file mode 100644 index 2005895d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/135.png b/public/assets/out/icon-line-pro/science/png/135.png deleted file mode 100644 index 2c32b2dd..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/136.png b/public/assets/out/icon-line-pro/science/png/136.png deleted file mode 100644 index 10662061..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/137.png b/public/assets/out/icon-line-pro/science/png/137.png deleted file mode 100644 index 5ec6331a..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/138.png b/public/assets/out/icon-line-pro/science/png/138.png deleted file mode 100644 index 40f980f4..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/139.png b/public/assets/out/icon-line-pro/science/png/139.png deleted file mode 100644 index 0c32b115..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/140.png b/public/assets/out/icon-line-pro/science/png/140.png deleted file mode 100644 index 63d9fd8e..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/141.png b/public/assets/out/icon-line-pro/science/png/141.png deleted file mode 100644 index fc451175..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/142.png b/public/assets/out/icon-line-pro/science/png/142.png deleted file mode 100644 index a8153a32..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/143.png b/public/assets/out/icon-line-pro/science/png/143.png deleted file mode 100644 index 1aaa4597..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/144.png b/public/assets/out/icon-line-pro/science/png/144.png deleted file mode 100644 index c6cae149..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/145.png b/public/assets/out/icon-line-pro/science/png/145.png deleted file mode 100644 index 92a10169..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/146.png b/public/assets/out/icon-line-pro/science/png/146.png deleted file mode 100644 index 31d3f4a8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/147.png b/public/assets/out/icon-line-pro/science/png/147.png deleted file mode 100644 index 888619b5..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/148.png b/public/assets/out/icon-line-pro/science/png/148.png deleted file mode 100644 index 5f2798d8..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/149.png b/public/assets/out/icon-line-pro/science/png/149.png deleted file mode 100644 index e190de32..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/150.png b/public/assets/out/icon-line-pro/science/png/150.png deleted file mode 100644 index e7d28d2c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/151.png b/public/assets/out/icon-line-pro/science/png/151.png deleted file mode 100644 index f9edc62c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/152.png b/public/assets/out/icon-line-pro/science/png/152.png deleted file mode 100644 index fea36e0b..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/153.png b/public/assets/out/icon-line-pro/science/png/153.png deleted file mode 100644 index 7d630eeb..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/154.png b/public/assets/out/icon-line-pro/science/png/154.png deleted file mode 100644 index 35a59230..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/155.png b/public/assets/out/icon-line-pro/science/png/155.png deleted file mode 100644 index d6efa63f..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/156.png b/public/assets/out/icon-line-pro/science/png/156.png deleted file mode 100644 index 8f40d957..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/157.png b/public/assets/out/icon-line-pro/science/png/157.png deleted file mode 100644 index e3f9f24c..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/158.png b/public/assets/out/icon-line-pro/science/png/158.png deleted file mode 100644 index 4b3bd08d..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/159.png b/public/assets/out/icon-line-pro/science/png/159.png deleted file mode 100644 index 605a03eb..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/png/160.png b/public/assets/out/icon-line-pro/science/png/160.png deleted file mode 100644 index bd6e6321..00000000 Binary files a/public/assets/out/icon-line-pro/science/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/webfont/fonts/science.eot b/public/assets/out/icon-line-pro/science/webfont/fonts/science.eot deleted file mode 100644 index 7c532547..00000000 Binary files a/public/assets/out/icon-line-pro/science/webfont/fonts/science.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/webfont/fonts/science.svg b/public/assets/out/icon-line-pro/science/webfont/fonts/science.svg deleted file mode 100644 index 194c0f27..00000000 --- a/public/assets/out/icon-line-pro/science/webfont/fonts/science.svg +++ /dev/null @@ -1,170 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/science/webfont/fonts/science.ttf b/public/assets/out/icon-line-pro/science/webfont/fonts/science.ttf deleted file mode 100644 index 2d050142..00000000 Binary files a/public/assets/out/icon-line-pro/science/webfont/fonts/science.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/webfont/fonts/science.woff b/public/assets/out/icon-line-pro/science/webfont/fonts/science.woff deleted file mode 100644 index 930c51af..00000000 Binary files a/public/assets/out/icon-line-pro/science/webfont/fonts/science.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/science/webfont/icons-reference.html b/public/assets/out/icon-line-pro/science/webfont/icons-reference.html deleted file mode 100644 index ef4d14af..00000000 --- a/public/assets/out/icon-line-pro/science/webfont/icons-reference.html +++ /dev/null @@ -1,1349 +0,0 @@ - - - - - - - Font Reference - Science - - - - - -
      -

      Science

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/science/webfont/styles.css b/public/assets/out/icon-line-pro/science/webfont/styles.css deleted file mode 100644 index 424468ee..00000000 --- a/public/assets/out/icon-line-pro/science/webfont/styles.css +++ /dev/null @@ -1,520 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "science"; - src:url("fonts/science.eot"); - src:url("fonts/science.eot?#iefix") format("embedded-opentype"), - url("fonts/science.woff") format("woff"), - url("fonts/science.ttf") format("truetype"), - url("fonts/science.svg#science") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "science" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "science" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-002:before { - content: "c"; -} -.icon-015:before { - content: "d"; -} -.icon-016:before { - content: "e"; -} -.icon-003:before { - content: "f"; -} -.icon-004:before { - content: "g"; -} -.icon-017:before { - content: "h"; -} -.icon-019:before { - content: "i"; -} -.icon-005:before { - content: "j"; -} -.icon-018:before { - content: "k"; -} -.icon-006:before { - content: "l"; -} -.icon-007:before { - content: "m"; -} -.icon-020:before { - content: "n"; -} -.icon-021:before { - content: "o"; -} -.icon-008:before { - content: "p"; -} -.icon-009:before { - content: "q"; -} -.icon-022:before { - content: "r"; -} -.icon-023:before { - content: "s"; -} -.icon-010:before { - content: "t"; -} -.icon-011:before { - content: "u"; -} -.icon-024:before { - content: "v"; -} -.icon-025:before { - content: "w"; -} -.icon-012:before { - content: "x"; -} -.icon-013:before { - content: "y"; -} -.icon-026:before { - content: "z"; -} -.icon-039:before { - content: "A"; -} -.icon-052:before { - content: "B"; -} -.icon-065:before { - content: "C"; -} -.icon-078:before { - content: "D"; -} -.icon-077:before { - content: "E"; -} -.icon-064:before { - content: "F"; -} -.icon-051:before { - content: "G"; -} -.icon-038:before { - content: "H"; -} -.icon-037:before { - content: "I"; -} -.icon-050:before { - content: "J"; -} -.icon-063:before { - content: "K"; -} -.icon-076:before { - content: "L"; -} -.icon-075:before { - content: "M"; -} -.icon-062:before { - content: "N"; -} -.icon-049:before { - content: "O"; -} -.icon-036:before { - content: "P"; -} -.icon-035:before { - content: "Q"; -} -.icon-048:before { - content: "R"; -} -.icon-061:before { - content: "S"; -} -.icon-074:before { - content: "T"; -} -.icon-073:before { - content: "U"; -} -.icon-060:before { - content: "V"; -} -.icon-047:before { - content: "W"; -} -.icon-034:before { - content: "X"; -} -.icon-033:before { - content: "Y"; -} -.icon-046:before { - content: "Z"; -} -.icon-059:before { - content: "0"; -} -.icon-072:before { - content: "1"; -} -.icon-071:before { - content: "2"; -} -.icon-058:before { - content: "3"; -} -.icon-045:before { - content: "4"; -} -.icon-032:before { - content: "5"; -} -.icon-031:before { - content: "6"; -} -.icon-044:before { - content: "7"; -} -.icon-057:before { - content: "8"; -} -.icon-070:before { - content: "9"; -} -.icon-069:before { - content: "!"; -} -.icon-056:before { - content: "\""; -} -.icon-043:before { - content: "#"; -} -.icon-030:before { - content: "$"; -} -.icon-029:before { - content: "%"; -} -.icon-042:before { - content: "&"; -} -.icon-055:before { - content: "'"; -} -.icon-068:before { - content: "("; -} -.icon-067:before { - content: ")"; -} -.icon-054:before { - content: "*"; -} -.icon-041:before { - content: "+"; -} -.icon-028:before { - content: ","; -} -.icon-027:before { - content: "-"; -} -.icon-040:before { - content: "."; -} -.icon-053:before { - content: "/"; -} -.icon-066:before { - content: ":"; -} -.icon-079:before { - content: ";"; -} -.icon-092:before { - content: "<"; -} -.icon-105:before { - content: "="; -} -.icon-118:before { - content: ">"; -} -.icon-131:before { - content: "?"; -} -.icon-144:before { - content: "@"; -} -.icon-145:before { - content: "["; -} -.icon-132:before { - content: "]"; -} -.icon-119:before { - content: "^"; -} -.icon-106:before { - content: "_"; -} -.icon-093:before { - content: "`"; -} -.icon-080:before { - content: "{"; -} -.icon-081:before { - content: "|"; -} -.icon-094:before { - content: "}"; -} -.icon-107:before { - content: "~"; -} -.icon-120:before { - content: "\\"; -} -.icon-133:before { - content: "\e000"; -} -.icon-146:before { - content: "\e001"; -} -.icon-147:before { - content: "\e002"; -} -.icon-134:before { - content: "\e003"; -} -.icon-121:before { - content: "\e004"; -} -.icon-108:before { - content: "\e005"; -} -.icon-095:before { - content: "\e006"; -} -.icon-082:before { - content: "\e007"; -} -.icon-083:before { - content: "\e008"; -} -.icon-096:before { - content: "\e009"; -} -.icon-109:before { - content: "\e00a"; -} -.icon-122:before { - content: "\e00b"; -} -.icon-135:before { - content: "\e00c"; -} -.icon-148:before { - content: "\e00d"; -} -.icon-149:before { - content: "\e00e"; -} -.icon-136:before { - content: "\e00f"; -} -.icon-123:before { - content: "\e010"; -} -.icon-110:before { - content: "\e011"; -} -.icon-097:before { - content: "\e012"; -} -.icon-084:before { - content: "\e013"; -} -.icon-085:before { - content: "\e014"; -} -.icon-098:before { - content: "\e015"; -} -.icon-111:before { - content: "\e016"; -} -.icon-124:before { - content: "\e017"; -} -.icon-137:before { - content: "\e018"; -} -.icon-150:before { - content: "\e019"; -} -.icon-151:before { - content: "\e01a"; -} -.icon-138:before { - content: "\e01b"; -} -.icon-125:before { - content: "\e01c"; -} -.icon-112:before { - content: "\e01d"; -} -.icon-099:before { - content: "\e01e"; -} -.icon-086:before { - content: "\e01f"; -} -.icon-087:before { - content: "\e020"; -} -.icon-100:before { - content: "\e021"; -} -.icon-113:before { - content: "\e022"; -} -.icon-126:before { - content: "\e023"; -} -.icon-139:before { - content: "\e024"; -} -.icon-152:before { - content: "\e025"; -} -.icon-153:before { - content: "\e026"; -} -.icon-140:before { - content: "\e027"; -} -.icon-127:before { - content: "\e028"; -} -.icon-114:before { - content: "\e029"; -} -.icon-101:before { - content: "\e02a"; -} -.icon-088:before { - content: "\e02b"; -} -.icon-089:before { - content: "\e02c"; -} -.icon-102:before { - content: "\e02d"; -} -.icon-115:before { - content: "\e02e"; -} -.icon-128:before { - content: "\e02f"; -} -.icon-141:before { - content: "\e030"; -} -.icon-154:before { - content: "\e031"; -} -.icon-155:before { - content: "\e032"; -} -.icon-142:before { - content: "\e033"; -} -.icon-129:before { - content: "\e034"; -} -.icon-116:before { - content: "\e035"; -} -.icon-103:before { - content: "\e036"; -} -.icon-090:before { - content: "\e037"; -} -.icon-091:before { - content: "\e038"; -} -.icon-104:before { - content: "\e039"; -} -.icon-117:before { - content: "\e03a"; -} -.icon-130:before { - content: "\e03b"; -} -.icon-143:before { - content: "\e03c"; -} -.icon-156:before { - content: "\e03d"; -} -.icon-157:before { - content: "\e03e"; -} -.icon-158:before { - content: "\e03f"; -} -.icon-159:before { - content: "\e040"; -} -.icon-160:before { - content: "\e041"; -} diff --git a/public/assets/out/icon-line-pro/snowflakes/png/001.png b/public/assets/out/icon-line-pro/snowflakes/png/001.png deleted file mode 100644 index 6f6bc813..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/002.png b/public/assets/out/icon-line-pro/snowflakes/png/002.png deleted file mode 100644 index 9554a66e..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/003.png b/public/assets/out/icon-line-pro/snowflakes/png/003.png deleted file mode 100644 index 09cf38c5..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/004.png b/public/assets/out/icon-line-pro/snowflakes/png/004.png deleted file mode 100644 index 84654fd9..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/005.png b/public/assets/out/icon-line-pro/snowflakes/png/005.png deleted file mode 100644 index 0e834b0e..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/006.png b/public/assets/out/icon-line-pro/snowflakes/png/006.png deleted file mode 100644 index d38ee2ff..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/007.png b/public/assets/out/icon-line-pro/snowflakes/png/007.png deleted file mode 100644 index 3188b1f1..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/008.png b/public/assets/out/icon-line-pro/snowflakes/png/008.png deleted file mode 100644 index f940fa32..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/009.png b/public/assets/out/icon-line-pro/snowflakes/png/009.png deleted file mode 100644 index 46cb0e15..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/010.png b/public/assets/out/icon-line-pro/snowflakes/png/010.png deleted file mode 100644 index abad88a3..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/011.png b/public/assets/out/icon-line-pro/snowflakes/png/011.png deleted file mode 100644 index 4194f081..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/012.png b/public/assets/out/icon-line-pro/snowflakes/png/012.png deleted file mode 100644 index 564d4aed..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/013.png b/public/assets/out/icon-line-pro/snowflakes/png/013.png deleted file mode 100644 index a880eca4..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/014.png b/public/assets/out/icon-line-pro/snowflakes/png/014.png deleted file mode 100644 index f079552d..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/015.png b/public/assets/out/icon-line-pro/snowflakes/png/015.png deleted file mode 100644 index d053b8a9..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/016.png b/public/assets/out/icon-line-pro/snowflakes/png/016.png deleted file mode 100644 index 006f306b..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/017.png b/public/assets/out/icon-line-pro/snowflakes/png/017.png deleted file mode 100644 index 3236e6d4..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/018.png b/public/assets/out/icon-line-pro/snowflakes/png/018.png deleted file mode 100644 index f25a3f76..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/019.png b/public/assets/out/icon-line-pro/snowflakes/png/019.png deleted file mode 100644 index 9657aafe..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/020.png b/public/assets/out/icon-line-pro/snowflakes/png/020.png deleted file mode 100644 index 38f14ee5..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/021.png b/public/assets/out/icon-line-pro/snowflakes/png/021.png deleted file mode 100644 index 6d4b98cc..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/022.png b/public/assets/out/icon-line-pro/snowflakes/png/022.png deleted file mode 100644 index ced3941f..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/023.png b/public/assets/out/icon-line-pro/snowflakes/png/023.png deleted file mode 100644 index 84f8dbcc..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/024.png b/public/assets/out/icon-line-pro/snowflakes/png/024.png deleted file mode 100644 index 14f6429c..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/025.png b/public/assets/out/icon-line-pro/snowflakes/png/025.png deleted file mode 100644 index 654ab0ba..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/026.png b/public/assets/out/icon-line-pro/snowflakes/png/026.png deleted file mode 100644 index 11713b96..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/027.png b/public/assets/out/icon-line-pro/snowflakes/png/027.png deleted file mode 100644 index f75d4e97..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/028.png b/public/assets/out/icon-line-pro/snowflakes/png/028.png deleted file mode 100644 index 67f3cbed..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/029.png b/public/assets/out/icon-line-pro/snowflakes/png/029.png deleted file mode 100644 index c461a006..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/030.png b/public/assets/out/icon-line-pro/snowflakes/png/030.png deleted file mode 100644 index 6158980c..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/031.png b/public/assets/out/icon-line-pro/snowflakes/png/031.png deleted file mode 100644 index 216296ba..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/032.png b/public/assets/out/icon-line-pro/snowflakes/png/032.png deleted file mode 100644 index 9c283619..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/033.png b/public/assets/out/icon-line-pro/snowflakes/png/033.png deleted file mode 100644 index 992822d4..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/034.png b/public/assets/out/icon-line-pro/snowflakes/png/034.png deleted file mode 100644 index 1e1b91d2..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/035.png b/public/assets/out/icon-line-pro/snowflakes/png/035.png deleted file mode 100644 index 658b3a1e..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/036.png b/public/assets/out/icon-line-pro/snowflakes/png/036.png deleted file mode 100644 index d5f17dc0..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/037.png b/public/assets/out/icon-line-pro/snowflakes/png/037.png deleted file mode 100644 index 839527f3..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/038.png b/public/assets/out/icon-line-pro/snowflakes/png/038.png deleted file mode 100644 index 1142403f..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/039.png b/public/assets/out/icon-line-pro/snowflakes/png/039.png deleted file mode 100644 index 66aa9963..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/040.png b/public/assets/out/icon-line-pro/snowflakes/png/040.png deleted file mode 100644 index 21da8e76..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/041.png b/public/assets/out/icon-line-pro/snowflakes/png/041.png deleted file mode 100644 index f84535e9..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/042.png b/public/assets/out/icon-line-pro/snowflakes/png/042.png deleted file mode 100644 index badff3ef..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/043.png b/public/assets/out/icon-line-pro/snowflakes/png/043.png deleted file mode 100644 index da06af2a..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/044.png b/public/assets/out/icon-line-pro/snowflakes/png/044.png deleted file mode 100644 index cc3a0282..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/045.png b/public/assets/out/icon-line-pro/snowflakes/png/045.png deleted file mode 100644 index a76084ec..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/046.png b/public/assets/out/icon-line-pro/snowflakes/png/046.png deleted file mode 100644 index 30c81998..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/047.png b/public/assets/out/icon-line-pro/snowflakes/png/047.png deleted file mode 100644 index 3bd3db3e..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/048.png b/public/assets/out/icon-line-pro/snowflakes/png/048.png deleted file mode 100644 index e1db4ceb..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/049.png b/public/assets/out/icon-line-pro/snowflakes/png/049.png deleted file mode 100644 index 60b20dca..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/050.png b/public/assets/out/icon-line-pro/snowflakes/png/050.png deleted file mode 100644 index bc7e5525..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/051.png b/public/assets/out/icon-line-pro/snowflakes/png/051.png deleted file mode 100644 index 65698f83..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/052.png b/public/assets/out/icon-line-pro/snowflakes/png/052.png deleted file mode 100644 index 9220a9f1..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/053.png b/public/assets/out/icon-line-pro/snowflakes/png/053.png deleted file mode 100644 index 1ae62634..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/054.png b/public/assets/out/icon-line-pro/snowflakes/png/054.png deleted file mode 100644 index 6729a4f2..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/055.png b/public/assets/out/icon-line-pro/snowflakes/png/055.png deleted file mode 100644 index 9dee1286..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/056.png b/public/assets/out/icon-line-pro/snowflakes/png/056.png deleted file mode 100644 index 0c43b155..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/057.png b/public/assets/out/icon-line-pro/snowflakes/png/057.png deleted file mode 100644 index 0ecb8048..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/058.png b/public/assets/out/icon-line-pro/snowflakes/png/058.png deleted file mode 100644 index 8ea3cb55..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/059.png b/public/assets/out/icon-line-pro/snowflakes/png/059.png deleted file mode 100644 index 7da79a5d..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/060.png b/public/assets/out/icon-line-pro/snowflakes/png/060.png deleted file mode 100644 index 0b7d5cff..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/061.png b/public/assets/out/icon-line-pro/snowflakes/png/061.png deleted file mode 100644 index 8cd903d6..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/062.png b/public/assets/out/icon-line-pro/snowflakes/png/062.png deleted file mode 100644 index 41cb8f5f..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/063.png b/public/assets/out/icon-line-pro/snowflakes/png/063.png deleted file mode 100644 index 5f699d73..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/064.png b/public/assets/out/icon-line-pro/snowflakes/png/064.png deleted file mode 100644 index 1cf63312..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/065.png b/public/assets/out/icon-line-pro/snowflakes/png/065.png deleted file mode 100644 index ab825b57..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/066.png b/public/assets/out/icon-line-pro/snowflakes/png/066.png deleted file mode 100644 index 050f5f54..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/067.png b/public/assets/out/icon-line-pro/snowflakes/png/067.png deleted file mode 100644 index 66c69572..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/068.png b/public/assets/out/icon-line-pro/snowflakes/png/068.png deleted file mode 100644 index 3d9abad2..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/069.png b/public/assets/out/icon-line-pro/snowflakes/png/069.png deleted file mode 100644 index f10b0947..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/snowflakes/png/070.png b/public/assets/out/icon-line-pro/snowflakes/png/070.png deleted file mode 100644 index d14b4a9a..00000000 Binary files a/public/assets/out/icon-line-pro/snowflakes/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/001.png b/public/assets/out/icon-line-pro/sports/png/001.png deleted file mode 100644 index f46cc89e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/002.png b/public/assets/out/icon-line-pro/sports/png/002.png deleted file mode 100644 index e7b916af..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/003.png b/public/assets/out/icon-line-pro/sports/png/003.png deleted file mode 100644 index 728b0d74..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/004.png b/public/assets/out/icon-line-pro/sports/png/004.png deleted file mode 100644 index ad42f5b5..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/005.png b/public/assets/out/icon-line-pro/sports/png/005.png deleted file mode 100644 index ee2e19b4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/006.png b/public/assets/out/icon-line-pro/sports/png/006.png deleted file mode 100644 index acc29488..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/007.png b/public/assets/out/icon-line-pro/sports/png/007.png deleted file mode 100644 index ebca65db..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/008.png b/public/assets/out/icon-line-pro/sports/png/008.png deleted file mode 100644 index 2ff2f927..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/009.png b/public/assets/out/icon-line-pro/sports/png/009.png deleted file mode 100644 index 15d695bc..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/010.png b/public/assets/out/icon-line-pro/sports/png/010.png deleted file mode 100644 index 4cda6f28..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/011.png b/public/assets/out/icon-line-pro/sports/png/011.png deleted file mode 100644 index 23bfd092..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/012.png b/public/assets/out/icon-line-pro/sports/png/012.png deleted file mode 100644 index f8cba24c..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/013.png b/public/assets/out/icon-line-pro/sports/png/013.png deleted file mode 100644 index 3604c100..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/014.png b/public/assets/out/icon-line-pro/sports/png/014.png deleted file mode 100644 index 78646dba..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/015.png b/public/assets/out/icon-line-pro/sports/png/015.png deleted file mode 100644 index f747c265..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/016.png b/public/assets/out/icon-line-pro/sports/png/016.png deleted file mode 100644 index d93b2951..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/017.png b/public/assets/out/icon-line-pro/sports/png/017.png deleted file mode 100644 index 318e80db..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/018.png b/public/assets/out/icon-line-pro/sports/png/018.png deleted file mode 100644 index 14904921..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/019.png b/public/assets/out/icon-line-pro/sports/png/019.png deleted file mode 100644 index f7946c0b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/020.png b/public/assets/out/icon-line-pro/sports/png/020.png deleted file mode 100644 index 642deb4f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/021.png b/public/assets/out/icon-line-pro/sports/png/021.png deleted file mode 100644 index 0e0650e7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/022.png b/public/assets/out/icon-line-pro/sports/png/022.png deleted file mode 100644 index 98314539..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/023.png b/public/assets/out/icon-line-pro/sports/png/023.png deleted file mode 100644 index f80885bc..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/024.png b/public/assets/out/icon-line-pro/sports/png/024.png deleted file mode 100644 index 31cca054..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/025.png b/public/assets/out/icon-line-pro/sports/png/025.png deleted file mode 100644 index 048314d3..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/026.png b/public/assets/out/icon-line-pro/sports/png/026.png deleted file mode 100644 index 0b188e83..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/027.png b/public/assets/out/icon-line-pro/sports/png/027.png deleted file mode 100644 index 8518ddfa..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/028.png b/public/assets/out/icon-line-pro/sports/png/028.png deleted file mode 100644 index 7538e6f2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/029.png b/public/assets/out/icon-line-pro/sports/png/029.png deleted file mode 100644 index b3052c1b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/030.png b/public/assets/out/icon-line-pro/sports/png/030.png deleted file mode 100644 index 68048705..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/031.png b/public/assets/out/icon-line-pro/sports/png/031.png deleted file mode 100644 index 1c7b8e8a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/032.png b/public/assets/out/icon-line-pro/sports/png/032.png deleted file mode 100644 index 3fba3f4b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/033.png b/public/assets/out/icon-line-pro/sports/png/033.png deleted file mode 100644 index 7d03f49c..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/034.png b/public/assets/out/icon-line-pro/sports/png/034.png deleted file mode 100644 index fef0fac9..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/035.png b/public/assets/out/icon-line-pro/sports/png/035.png deleted file mode 100644 index 0c03f1e2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/036.png b/public/assets/out/icon-line-pro/sports/png/036.png deleted file mode 100644 index cb67d254..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/037.png b/public/assets/out/icon-line-pro/sports/png/037.png deleted file mode 100644 index 8f2b3454..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/038.png b/public/assets/out/icon-line-pro/sports/png/038.png deleted file mode 100644 index bd7d1e9a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/039.png b/public/assets/out/icon-line-pro/sports/png/039.png deleted file mode 100644 index ec046cbd..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/040.png b/public/assets/out/icon-line-pro/sports/png/040.png deleted file mode 100644 index 23117ec2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/041.png b/public/assets/out/icon-line-pro/sports/png/041.png deleted file mode 100644 index bea89632..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/042.png b/public/assets/out/icon-line-pro/sports/png/042.png deleted file mode 100644 index 1576f689..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/043.png b/public/assets/out/icon-line-pro/sports/png/043.png deleted file mode 100644 index ca1da967..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/044.png b/public/assets/out/icon-line-pro/sports/png/044.png deleted file mode 100644 index 80fa721a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/045.png b/public/assets/out/icon-line-pro/sports/png/045.png deleted file mode 100644 index c792fdf7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/046.png b/public/assets/out/icon-line-pro/sports/png/046.png deleted file mode 100644 index eeeae709..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/047.png b/public/assets/out/icon-line-pro/sports/png/047.png deleted file mode 100644 index 9ff5471f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/048.png b/public/assets/out/icon-line-pro/sports/png/048.png deleted file mode 100644 index d2128efe..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/049.png b/public/assets/out/icon-line-pro/sports/png/049.png deleted file mode 100644 index 69791787..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/050.png b/public/assets/out/icon-line-pro/sports/png/050.png deleted file mode 100644 index d58ee461..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/051.png b/public/assets/out/icon-line-pro/sports/png/051.png deleted file mode 100644 index 713f3ad2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/052.png b/public/assets/out/icon-line-pro/sports/png/052.png deleted file mode 100644 index 73da6b14..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/053.png b/public/assets/out/icon-line-pro/sports/png/053.png deleted file mode 100644 index bdd5947d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/054.png b/public/assets/out/icon-line-pro/sports/png/054.png deleted file mode 100644 index ab84c17a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/055.png b/public/assets/out/icon-line-pro/sports/png/055.png deleted file mode 100644 index 466f730b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/056.png b/public/assets/out/icon-line-pro/sports/png/056.png deleted file mode 100644 index b06469db..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/057.png b/public/assets/out/icon-line-pro/sports/png/057.png deleted file mode 100644 index 906b0064..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/058.png b/public/assets/out/icon-line-pro/sports/png/058.png deleted file mode 100644 index 346bbff2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/059.png b/public/assets/out/icon-line-pro/sports/png/059.png deleted file mode 100644 index ae9232f6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/060.png b/public/assets/out/icon-line-pro/sports/png/060.png deleted file mode 100644 index c6c8dbcc..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/061.png b/public/assets/out/icon-line-pro/sports/png/061.png deleted file mode 100644 index 3c22a3f5..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/062.png b/public/assets/out/icon-line-pro/sports/png/062.png deleted file mode 100644 index 41be1c67..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/063.png b/public/assets/out/icon-line-pro/sports/png/063.png deleted file mode 100644 index 473bd71b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/064.png b/public/assets/out/icon-line-pro/sports/png/064.png deleted file mode 100644 index ab269022..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/065.png b/public/assets/out/icon-line-pro/sports/png/065.png deleted file mode 100644 index c4d5c054..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/066.png b/public/assets/out/icon-line-pro/sports/png/066.png deleted file mode 100644 index c13fb39b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/067.png b/public/assets/out/icon-line-pro/sports/png/067.png deleted file mode 100644 index d14add81..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/068.png b/public/assets/out/icon-line-pro/sports/png/068.png deleted file mode 100644 index 17cb18e7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/069.png b/public/assets/out/icon-line-pro/sports/png/069.png deleted file mode 100644 index db5764aa..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/070.png b/public/assets/out/icon-line-pro/sports/png/070.png deleted file mode 100644 index 5ae974c0..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/071.png b/public/assets/out/icon-line-pro/sports/png/071.png deleted file mode 100644 index 30d46773..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/072.png b/public/assets/out/icon-line-pro/sports/png/072.png deleted file mode 100644 index eac9e666..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/073.png b/public/assets/out/icon-line-pro/sports/png/073.png deleted file mode 100644 index dde1af8e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/074.png b/public/assets/out/icon-line-pro/sports/png/074.png deleted file mode 100644 index d3fb9b36..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/075.png b/public/assets/out/icon-line-pro/sports/png/075.png deleted file mode 100644 index c30148f0..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/076.png b/public/assets/out/icon-line-pro/sports/png/076.png deleted file mode 100644 index 3c7d8e01..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/077.png b/public/assets/out/icon-line-pro/sports/png/077.png deleted file mode 100644 index 39097617..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/078.png b/public/assets/out/icon-line-pro/sports/png/078.png deleted file mode 100644 index 39dab167..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/079.png b/public/assets/out/icon-line-pro/sports/png/079.png deleted file mode 100644 index c6e8030b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/080.png b/public/assets/out/icon-line-pro/sports/png/080.png deleted file mode 100644 index 338928a6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/081.png b/public/assets/out/icon-line-pro/sports/png/081.png deleted file mode 100644 index 7877a93d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/082.png b/public/assets/out/icon-line-pro/sports/png/082.png deleted file mode 100644 index fb302c8e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/083.png b/public/assets/out/icon-line-pro/sports/png/083.png deleted file mode 100644 index 9b6ab24d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/084.png b/public/assets/out/icon-line-pro/sports/png/084.png deleted file mode 100644 index c4056c5a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/085.png b/public/assets/out/icon-line-pro/sports/png/085.png deleted file mode 100644 index 179597a3..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/086.png b/public/assets/out/icon-line-pro/sports/png/086.png deleted file mode 100644 index a562b06b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/087.png b/public/assets/out/icon-line-pro/sports/png/087.png deleted file mode 100644 index bc47fe0f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/088.png b/public/assets/out/icon-line-pro/sports/png/088.png deleted file mode 100644 index 3c2b0af4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/089.png b/public/assets/out/icon-line-pro/sports/png/089.png deleted file mode 100644 index 35e964a2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/090.png b/public/assets/out/icon-line-pro/sports/png/090.png deleted file mode 100644 index 199ede11..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/091.png b/public/assets/out/icon-line-pro/sports/png/091.png deleted file mode 100644 index be1d5cb3..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/092.png b/public/assets/out/icon-line-pro/sports/png/092.png deleted file mode 100644 index 86a845d4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/093.png b/public/assets/out/icon-line-pro/sports/png/093.png deleted file mode 100644 index 93bef8ee..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/094.png b/public/assets/out/icon-line-pro/sports/png/094.png deleted file mode 100644 index 7f977ba1..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/095.png b/public/assets/out/icon-line-pro/sports/png/095.png deleted file mode 100644 index e32d550b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/096.png b/public/assets/out/icon-line-pro/sports/png/096.png deleted file mode 100644 index 26df9422..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/097.png b/public/assets/out/icon-line-pro/sports/png/097.png deleted file mode 100644 index 2049795f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/098.png b/public/assets/out/icon-line-pro/sports/png/098.png deleted file mode 100644 index 7b7bc02c..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/099.png b/public/assets/out/icon-line-pro/sports/png/099.png deleted file mode 100644 index bce9cbe5..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/100.png b/public/assets/out/icon-line-pro/sports/png/100.png deleted file mode 100644 index ca8fad03..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/101.png b/public/assets/out/icon-line-pro/sports/png/101.png deleted file mode 100644 index b0ad5fb4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/102.png b/public/assets/out/icon-line-pro/sports/png/102.png deleted file mode 100644 index 4a399e72..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/103.png b/public/assets/out/icon-line-pro/sports/png/103.png deleted file mode 100644 index 5b111efa..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/104.png b/public/assets/out/icon-line-pro/sports/png/104.png deleted file mode 100644 index ad285e0a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/105.png b/public/assets/out/icon-line-pro/sports/png/105.png deleted file mode 100644 index ae23729f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/106.png b/public/assets/out/icon-line-pro/sports/png/106.png deleted file mode 100644 index 814c2ad4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/107.png b/public/assets/out/icon-line-pro/sports/png/107.png deleted file mode 100644 index 355b91b6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/108.png b/public/assets/out/icon-line-pro/sports/png/108.png deleted file mode 100644 index 928e8ca0..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/109.png b/public/assets/out/icon-line-pro/sports/png/109.png deleted file mode 100644 index fad30a37..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/110.png b/public/assets/out/icon-line-pro/sports/png/110.png deleted file mode 100644 index 55827b87..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/111.png b/public/assets/out/icon-line-pro/sports/png/111.png deleted file mode 100644 index 38df7f68..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/112.png b/public/assets/out/icon-line-pro/sports/png/112.png deleted file mode 100644 index bee23ac4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/113.png b/public/assets/out/icon-line-pro/sports/png/113.png deleted file mode 100644 index 0edb3d00..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/114.png b/public/assets/out/icon-line-pro/sports/png/114.png deleted file mode 100644 index fc10e87b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/115.png b/public/assets/out/icon-line-pro/sports/png/115.png deleted file mode 100644 index 530454e1..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/116.png b/public/assets/out/icon-line-pro/sports/png/116.png deleted file mode 100644 index 93f6bace..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/117.png b/public/assets/out/icon-line-pro/sports/png/117.png deleted file mode 100644 index 757f8b28..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/118.png b/public/assets/out/icon-line-pro/sports/png/118.png deleted file mode 100644 index b68771b2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/119.png b/public/assets/out/icon-line-pro/sports/png/119.png deleted file mode 100644 index 3f43846e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/120.png b/public/assets/out/icon-line-pro/sports/png/120.png deleted file mode 100644 index 8c075c73..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/121.png b/public/assets/out/icon-line-pro/sports/png/121.png deleted file mode 100644 index dace9f17..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/122.png b/public/assets/out/icon-line-pro/sports/png/122.png deleted file mode 100644 index 73a49de7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/123.png b/public/assets/out/icon-line-pro/sports/png/123.png deleted file mode 100644 index 0a3693fe..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/124.png b/public/assets/out/icon-line-pro/sports/png/124.png deleted file mode 100644 index eacb735a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/125.png b/public/assets/out/icon-line-pro/sports/png/125.png deleted file mode 100644 index 8c0b5cad..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/126.png b/public/assets/out/icon-line-pro/sports/png/126.png deleted file mode 100644 index 00ca31d6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/127.png b/public/assets/out/icon-line-pro/sports/png/127.png deleted file mode 100644 index dbe8060b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/128.png b/public/assets/out/icon-line-pro/sports/png/128.png deleted file mode 100644 index 4a4d036d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/129.png b/public/assets/out/icon-line-pro/sports/png/129.png deleted file mode 100644 index a690b055..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/130.png b/public/assets/out/icon-line-pro/sports/png/130.png deleted file mode 100644 index b53a9709..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/131.png b/public/assets/out/icon-line-pro/sports/png/131.png deleted file mode 100644 index 67a63e8e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/132.png b/public/assets/out/icon-line-pro/sports/png/132.png deleted file mode 100644 index 3127cdd0..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/133.png b/public/assets/out/icon-line-pro/sports/png/133.png deleted file mode 100644 index f47fefa8..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/134.png b/public/assets/out/icon-line-pro/sports/png/134.png deleted file mode 100644 index 1326a506..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/135.png b/public/assets/out/icon-line-pro/sports/png/135.png deleted file mode 100644 index 53beceb6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/136.png b/public/assets/out/icon-line-pro/sports/png/136.png deleted file mode 100644 index 940c512d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/137.png b/public/assets/out/icon-line-pro/sports/png/137.png deleted file mode 100644 index b00ab8dd..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/138.png b/public/assets/out/icon-line-pro/sports/png/138.png deleted file mode 100644 index 1c35ea57..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/139.png b/public/assets/out/icon-line-pro/sports/png/139.png deleted file mode 100644 index dc76291b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/140.png b/public/assets/out/icon-line-pro/sports/png/140.png deleted file mode 100644 index cf3ad24d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/141.png b/public/assets/out/icon-line-pro/sports/png/141.png deleted file mode 100644 index 4a4be916..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/142.png b/public/assets/out/icon-line-pro/sports/png/142.png deleted file mode 100644 index 0e67f592..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/143.png b/public/assets/out/icon-line-pro/sports/png/143.png deleted file mode 100644 index cad72091..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/144.png b/public/assets/out/icon-line-pro/sports/png/144.png deleted file mode 100644 index f6c87d15..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/145.png b/public/assets/out/icon-line-pro/sports/png/145.png deleted file mode 100644 index b4a5a379..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/146.png b/public/assets/out/icon-line-pro/sports/png/146.png deleted file mode 100644 index c4240555..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/147.png b/public/assets/out/icon-line-pro/sports/png/147.png deleted file mode 100644 index c38bbdff..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/148.png b/public/assets/out/icon-line-pro/sports/png/148.png deleted file mode 100644 index 94ebb1a8..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/149.png b/public/assets/out/icon-line-pro/sports/png/149.png deleted file mode 100644 index c75b83fc..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/150.png b/public/assets/out/icon-line-pro/sports/png/150.png deleted file mode 100644 index 13573021..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/151.png b/public/assets/out/icon-line-pro/sports/png/151.png deleted file mode 100644 index 0a37eda9..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/151.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/152.png b/public/assets/out/icon-line-pro/sports/png/152.png deleted file mode 100644 index 5a66658d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/152.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/153.png b/public/assets/out/icon-line-pro/sports/png/153.png deleted file mode 100644 index d5b863dc..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/153.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/154.png b/public/assets/out/icon-line-pro/sports/png/154.png deleted file mode 100644 index b24a1fc8..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/154.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/155.png b/public/assets/out/icon-line-pro/sports/png/155.png deleted file mode 100644 index 524ad9bd..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/155.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/156.png b/public/assets/out/icon-line-pro/sports/png/156.png deleted file mode 100644 index 9530d93d..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/156.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/157.png b/public/assets/out/icon-line-pro/sports/png/157.png deleted file mode 100644 index d3ec3be9..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/157.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/158.png b/public/assets/out/icon-line-pro/sports/png/158.png deleted file mode 100644 index cfd64e62..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/158.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/159.png b/public/assets/out/icon-line-pro/sports/png/159.png deleted file mode 100644 index 73da6b14..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/159.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/160.png b/public/assets/out/icon-line-pro/sports/png/160.png deleted file mode 100644 index fba6c87e..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/160.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/161.png b/public/assets/out/icon-line-pro/sports/png/161.png deleted file mode 100644 index 0ea38df2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/161.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/162.png b/public/assets/out/icon-line-pro/sports/png/162.png deleted file mode 100644 index 62aefd8a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/162.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/163.png b/public/assets/out/icon-line-pro/sports/png/163.png deleted file mode 100644 index e638728f..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/163.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/164.png b/public/assets/out/icon-line-pro/sports/png/164.png deleted file mode 100644 index 6bea5dfa..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/164.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/165.png b/public/assets/out/icon-line-pro/sports/png/165.png deleted file mode 100644 index 43262b89..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/165.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/166.png b/public/assets/out/icon-line-pro/sports/png/166.png deleted file mode 100644 index 9f1554b7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/166.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/167.png b/public/assets/out/icon-line-pro/sports/png/167.png deleted file mode 100644 index bdadd801..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/167.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/168.png b/public/assets/out/icon-line-pro/sports/png/168.png deleted file mode 100644 index 744b0ef9..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/168.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/169.png b/public/assets/out/icon-line-pro/sports/png/169.png deleted file mode 100644 index f2f70b01..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/169.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/170.png b/public/assets/out/icon-line-pro/sports/png/170.png deleted file mode 100644 index b17c466a..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/170.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/171.png b/public/assets/out/icon-line-pro/sports/png/171.png deleted file mode 100644 index 3d092e66..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/171.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/172.png b/public/assets/out/icon-line-pro/sports/png/172.png deleted file mode 100644 index 7c21a4df..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/172.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/173.png b/public/assets/out/icon-line-pro/sports/png/173.png deleted file mode 100644 index ce42e4c2..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/173.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/174.png b/public/assets/out/icon-line-pro/sports/png/174.png deleted file mode 100644 index 3c12253c..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/174.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/175.png b/public/assets/out/icon-line-pro/sports/png/175.png deleted file mode 100644 index 98ed4017..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/175.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/176.png b/public/assets/out/icon-line-pro/sports/png/176.png deleted file mode 100644 index 69a23cad..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/176.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/177.png b/public/assets/out/icon-line-pro/sports/png/177.png deleted file mode 100644 index c2307d49..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/177.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/178.png b/public/assets/out/icon-line-pro/sports/png/178.png deleted file mode 100644 index ce0cc7d5..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/178.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/179.png b/public/assets/out/icon-line-pro/sports/png/179.png deleted file mode 100644 index 851179a0..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/179.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/180.png b/public/assets/out/icon-line-pro/sports/png/180.png deleted file mode 100644 index c56a4dfb..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/180.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/181.png b/public/assets/out/icon-line-pro/sports/png/181.png deleted file mode 100644 index 727fd347..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/181.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/182.png b/public/assets/out/icon-line-pro/sports/png/182.png deleted file mode 100644 index 14756c2b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/182.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/183.png b/public/assets/out/icon-line-pro/sports/png/183.png deleted file mode 100644 index 2ab506ca..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/183.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/184.png b/public/assets/out/icon-line-pro/sports/png/184.png deleted file mode 100644 index ab86d6ac..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/184.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/185.png b/public/assets/out/icon-line-pro/sports/png/185.png deleted file mode 100644 index 7cc77641..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/185.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/186.png b/public/assets/out/icon-line-pro/sports/png/186.png deleted file mode 100644 index 2109d39b..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/186.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/187.png b/public/assets/out/icon-line-pro/sports/png/187.png deleted file mode 100644 index 603af9eb..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/187.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/188.png b/public/assets/out/icon-line-pro/sports/png/188.png deleted file mode 100644 index 36f8111c..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/188.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/189.png b/public/assets/out/icon-line-pro/sports/png/189.png deleted file mode 100644 index 50d8ae76..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/189.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/190.png b/public/assets/out/icon-line-pro/sports/png/190.png deleted file mode 100644 index 85a9dad4..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/190.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/191.png b/public/assets/out/icon-line-pro/sports/png/191.png deleted file mode 100644 index f4ab48f7..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/191.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/192.png b/public/assets/out/icon-line-pro/sports/png/192.png deleted file mode 100644 index 0b4cdbc8..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/192.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/193.png b/public/assets/out/icon-line-pro/sports/png/193.png deleted file mode 100644 index 47a831d1..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/193.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/194.png b/public/assets/out/icon-line-pro/sports/png/194.png deleted file mode 100644 index 4e0ee8ab..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/194.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/195.png b/public/assets/out/icon-line-pro/sports/png/195.png deleted file mode 100644 index 292a55a6..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/195.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/196.png b/public/assets/out/icon-line-pro/sports/png/196.png deleted file mode 100644 index df2b6bcf..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/196.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/197.png b/public/assets/out/icon-line-pro/sports/png/197.png deleted file mode 100644 index f4673042..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/197.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/198.png b/public/assets/out/icon-line-pro/sports/png/198.png deleted file mode 100644 index 4f4b7c50..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/198.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/199.png b/public/assets/out/icon-line-pro/sports/png/199.png deleted file mode 100644 index b0961725..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/199.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/png/200.png b/public/assets/out/icon-line-pro/sports/png/200.png deleted file mode 100644 index 7ee30e09..00000000 Binary files a/public/assets/out/icon-line-pro/sports/png/200.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.eot b/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.eot deleted file mode 100644 index 14605959..00000000 Binary files a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.svg b/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.svg deleted file mode 100644 index 1dd9fba2..00000000 --- a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.svg +++ /dev/null @@ -1,210 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.ttf b/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.ttf deleted file mode 100644 index d09434fe..00000000 Binary files a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.woff b/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.woff deleted file mode 100644 index d3cfdf74..00000000 Binary files a/public/assets/out/icon-line-pro/sports/webfont/fonts/sports-48-x-48.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/sports/webfont/icons-reference.html b/public/assets/out/icon-line-pro/sports/webfont/icons-reference.html deleted file mode 100644 index 57feede4..00000000 --- a/public/assets/out/icon-line-pro/sports/webfont/icons-reference.html +++ /dev/null @@ -1,1669 +0,0 @@ - - - - - - - Font Reference - Sports ( 48 x 48 ) - - - - - -
      -

      Sports ( 48 x 48 )

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/sports/webfont/styles.css b/public/assets/out/icon-line-pro/sports/webfont/styles.css deleted file mode 100644 index 41498fe0..00000000 --- a/public/assets/out/icon-line-pro/sports/webfont/styles.css +++ /dev/null @@ -1,640 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "sports-48-x-48"; - src:url("fonts/sports-48-x-48.eot"); - src:url("fonts/sports-48-x-48.eot?#iefix") format("embedded-opentype"), - url("fonts/sports-48-x-48.woff") format("woff"), - url("fonts/sports-48-x-48.ttf") format("truetype"), - url("fonts/sports-48-x-48.svg#sports-48-x-48") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "sports-48-x-48" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "sports-48-x-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-028:before { - content: "d"; -} -.icon-015:before { - content: "e"; -} -.icon-002:before { - content: "f"; -} -.icon-003:before { - content: "g"; -} -.icon-016:before { - content: "h"; -} -.icon-029:before { - content: "i"; -} -.icon-030:before { - content: "j"; -} -.icon-017:before { - content: "k"; -} -.icon-004:before { - content: "l"; -} -.icon-005:before { - content: "m"; -} -.icon-018:before { - content: "n"; -} -.icon-031:before { - content: "o"; -} -.icon-032:before { - content: "p"; -} -.icon-019:before { - content: "q"; -} -.icon-006:before { - content: "r"; -} -.icon-007:before { - content: "s"; -} -.icon-020:before { - content: "t"; -} -.icon-033:before { - content: "u"; -} -.icon-034:before { - content: "v"; -} -.icon-021:before { - content: "w"; -} -.icon-008:before { - content: "x"; -} -.icon-009:before { - content: "y"; -} -.icon-022:before { - content: "z"; -} -.icon-035:before { - content: "A"; -} -.icon-036:before { - content: "B"; -} -.icon-023:before { - content: "C"; -} -.icon-010:before { - content: "D"; -} -.icon-011:before { - content: "E"; -} -.icon-024:before { - content: "F"; -} -.icon-037:before { - content: "G"; -} -.icon-038:before { - content: "H"; -} -.icon-025:before { - content: "I"; -} -.icon-012:before { - content: "J"; -} -.icon-013:before { - content: "K"; -} -.icon-026:before { - content: "L"; -} -.icon-039:before { - content: "M"; -} -.icon-040:before { - content: "N"; -} -.icon-053:before { - content: "O"; -} -.icon-066:before { - content: "P"; -} -.icon-079:before { - content: "Q"; -} -.icon-080:before { - content: "R"; -} -.icon-067:before { - content: "S"; -} -.icon-054:before { - content: "T"; -} -.icon-041:before { - content: "U"; -} -.icon-042:before { - content: "V"; -} -.icon-055:before { - content: "W"; -} -.icon-068:before { - content: "X"; -} -.icon-081:before { - content: "Y"; -} -.icon-082:before { - content: "Z"; -} -.icon-069:before { - content: "0"; -} -.icon-056:before { - content: "1"; -} -.icon-043:before { - content: "2"; -} -.icon-044:before { - content: "3"; -} -.icon-057:before { - content: "4"; -} -.icon-070:before { - content: "5"; -} -.icon-083:before { - content: "6"; -} -.icon-084:before { - content: "7"; -} -.icon-071:before { - content: "8"; -} -.icon-058:before { - content: "9"; -} -.icon-045:before { - content: "!"; -} -.icon-046:before { - content: "\""; -} -.icon-059:before { - content: "#"; -} -.icon-072:before { - content: "$"; -} -.icon-085:before { - content: "%"; -} -.icon-086:before { - content: "&"; -} -.icon-073:before { - content: "'"; -} -.icon-060:before { - content: "("; -} -.icon-047:before { - content: ")"; -} -.icon-048:before { - content: "*"; -} -.icon-061:before { - content: "+"; -} -.icon-074:before { - content: ","; -} -.icon-087:before { - content: "-"; -} -.icon-075:before { - content: "."; -} -.icon-062:before { - content: "/"; -} -.icon-049:before { - content: ":"; -} -.icon-050:before { - content: ";"; -} -.icon-063:before { - content: "<"; -} -.icon-064:before { - content: "="; -} -.icon-051:before { - content: ">"; -} -.icon-052:before { - content: "?"; -} -.icon-065:before { - content: "@"; -} -.icon-078:before { - content: "["; -} -.icon-091:before { - content: "]"; -} -.icon-090:before { - content: "^"; -} -.icon-077:before { - content: "_"; -} -.icon-076:before { - content: "`"; -} -.icon-089:before { - content: "{"; -} -.icon-088:before { - content: "|"; -} -.icon-092:before { - content: "}"; -} -.icon-105:before { - content: "~"; -} -.icon-118:before { - content: "\\"; -} -.icon-131:before { - content: "\e000"; -} -.icon-144:before { - content: "\e001"; -} -.icon-145:before { - content: "\e002"; -} -.icon-132:before { - content: "\e003"; -} -.icon-119:before { - content: "\e004"; -} -.icon-106:before { - content: "\e005"; -} -.icon-093:before { - content: "\e006"; -} -.icon-094:before { - content: "\e007"; -} -.icon-107:before { - content: "\e008"; -} -.icon-120:before { - content: "\e009"; -} -.icon-133:before { - content: "\e00a"; -} -.icon-146:before { - content: "\e00b"; -} -.icon-147:before { - content: "\e00c"; -} -.icon-134:before { - content: "\e00d"; -} -.icon-121:before { - content: "\e00e"; -} -.icon-108:before { - content: "\e00f"; -} -.icon-095:before { - content: "\e010"; -} -.icon-096:before { - content: "\e011"; -} -.icon-109:before { - content: "\e012"; -} -.icon-122:before { - content: "\e013"; -} -.icon-135:before { - content: "\e014"; -} -.icon-148:before { - content: "\e015"; -} -.icon-149:before { - content: "\e016"; -} -.icon-136:before { - content: "\e017"; -} -.icon-123:before { - content: "\e018"; -} -.icon-110:before { - content: "\e019"; -} -.icon-097:before { - content: "\e01a"; -} -.icon-098:before { - content: "\e01b"; -} -.icon-111:before { - content: "\e01c"; -} -.icon-124:before { - content: "\e01d"; -} -.icon-137:before { - content: "\e01e"; -} -.icon-150:before { - content: "\e01f"; -} -.icon-151:before { - content: "\e020"; -} -.icon-138:before { - content: "\e021"; -} -.icon-125:before { - content: "\e022"; -} -.icon-112:before { - content: "\e023"; -} -.icon-099:before { - content: "\e024"; -} -.icon-100:before { - content: "\e025"; -} -.icon-113:before { - content: "\e026"; -} -.icon-126:before { - content: "\e027"; -} -.icon-139:before { - content: "\e028"; -} -.icon-152:before { - content: "\e029"; -} -.icon-153:before { - content: "\e02a"; -} -.icon-140:before { - content: "\e02b"; -} -.icon-127:before { - content: "\e02c"; -} -.icon-114:before { - content: "\e02d"; -} -.icon-101:before { - content: "\e02e"; -} -.icon-102:before { - content: "\e02f"; -} -.icon-115:before { - content: "\e030"; -} -.icon-128:before { - content: "\e031"; -} -.icon-141:before { - content: "\e032"; -} -.icon-154:before { - content: "\e033"; -} -.icon-155:before { - content: "\e034"; -} -.icon-142:before { - content: "\e035"; -} -.icon-129:before { - content: "\e036"; -} -.icon-116:before { - content: "\e037"; -} -.icon-103:before { - content: "\e038"; -} -.icon-104:before { - content: "\e039"; -} -.icon-117:before { - content: "\e03a"; -} -.icon-130:before { - content: "\e03b"; -} -.icon-143:before { - content: "\e03c"; -} -.icon-156:before { - content: "\e03d"; -} -.icon-157:before { - content: "\e03e"; -} -.icon-170:before { - content: "\e03f"; -} -.icon-183:before { - content: "\e040"; -} -.icon-196:before { - content: "\e041"; -} -.icon-197:before { - content: "\e042"; -} -.icon-184:before { - content: "\e043"; -} -.icon-171:before { - content: "\e044"; -} -.icon-158:before { - content: "\e045"; -} -.icon-159:before { - content: "\e046"; -} -.icon-172:before { - content: "\e047"; -} -.icon-185:before { - content: "\e048"; -} -.icon-198:before { - content: "\e049"; -} -.icon-199:before { - content: "\e04a"; -} -.icon-186:before { - content: "\e04b"; -} -.icon-173:before { - content: "\e04c"; -} -.icon-160:before { - content: "\e04d"; -} -.icon-174:before { - content: "\e04e"; -} -.icon-187:before { - content: "\e04f"; -} -.icon-200:before { - content: "\e050"; -} -.icon-188:before { - content: "\e051"; -} -.icon-175:before { - content: "\e052"; -} -.icon-162:before { - content: "\e053"; -} -.icon-163:before { - content: "\e054"; -} -.icon-176:before { - content: "\e055"; -} -.icon-189:before { - content: "\e056"; -} -.icon-190:before { - content: "\e057"; -} -.icon-177:before { - content: "\e058"; -} -.icon-164:before { - content: "\e059"; -} -.icon-165:before { - content: "\e05a"; -} -.icon-178:before { - content: "\e05b"; -} -.icon-191:before { - content: "\e05c"; -} -.icon-192:before { - content: "\e05d"; -} -.icon-179:before { - content: "\e05e"; -} -.icon-166:before { - content: "\e05f"; -} -.icon-167:before { - content: "\e060"; -} -.icon-180:before { - content: "\e061"; -} -.icon-193:before { - content: "\e062"; -} -.icon-194:before { - content: "\e063"; -} -.icon-181:before { - content: "\e064"; -} -.icon-168:before { - content: "\e065"; -} -.icon-169:before { - content: "\e066"; -} -.icon-182:before { - content: "\e067"; -} -.icon-195:before { - content: "\e068"; -} -.icon-161:before { - content: "\e069"; -} diff --git a/public/assets/out/icon-line-pro/style.css b/public/assets/out/icon-line-pro/style.css deleted file mode 100644 index a62ba704..00000000 --- a/public/assets/out/icon-line-pro/style.css +++ /dev/null @@ -1,8941 +0,0 @@ -@charset "UTF-8"; - -/* Christmas */ -@font-face { - font-family: "cristmas"; - src:url("christmas/webfont/fonts/cristmas.eot"); - src:url("christmas/webfont/fonts/cristmas.eot?#iefix") format("embedded-opentype"), - url("christmas/webfont/fonts/cristmas.woff") format("woff"), - url("christmas/webfont/fonts/cristmas.ttf") format("truetype"), - url("christmas/webfont/fonts/cristmas.svg#cristmas") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-christmas]:before { - font-family: "cristmas" !important; - content: attr(data-icon-christmas); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-christmas"]:before, -[class*=" icon-christmas"]:before { - font-family: "cristmas" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-christmas-001:before { - content: "a"; -} -.icon-christmas-014:before { - content: "b"; -} -.icon-christmas-015:before { - content: "c"; -} -.icon-christmas-002:before { - content: "d"; -} -.icon-christmas-003:before { - content: "e"; -} -.icon-christmas-016:before { - content: "f"; -} -.icon-christmas-017:before { - content: "g"; -} -.icon-christmas-004:before { - content: "h"; -} -.icon-christmas-005:before { - content: "i"; -} -.icon-christmas-018:before { - content: "j"; -} -.icon-christmas-019:before { - content: "k"; -} -.icon-christmas-006:before { - content: "l"; -} -.icon-christmas-007:before { - content: "m"; -} -.icon-christmas-020:before { - content: "n"; -} -.icon-christmas-021:before { - content: "o"; -} -.icon-christmas-008:before { - content: "p"; -} -.icon-christmas-009:before { - content: "q"; -} -.icon-christmas-022:before { - content: "r"; -} -.icon-christmas-023:before { - content: "s"; -} -.icon-christmas-010:before { - content: "t"; -} -.icon-christmas-011:before { - content: "u"; -} -.icon-christmas-024:before { - content: "v"; -} -.icon-christmas-025:before { - content: "w"; -} -.icon-christmas-012:before { - content: "x"; -} -.icon-christmas-013:before { - content: "y"; -} -.icon-christmas-026:before { - content: "z"; -} -.icon-christmas-039:before { - content: "A"; -} -.icon-christmas-038:before { - content: "B"; -} -.icon-christmas-051:before { - content: "C"; -} -.icon-christmas-052:before { - content: "D"; -} -.icon-christmas-065:before { - content: "E"; -} -.icon-christmas-064:before { - content: "F"; -} -.icon-christmas-063:before { - content: "G"; -} -.icon-christmas-050:before { - content: "H"; -} -.icon-christmas-037:before { - content: "I"; -} -.icon-christmas-036:before { - content: "J"; -} -.icon-christmas-049:before { - content: "K"; -} -.icon-christmas-062:before { - content: "L"; -} -.icon-christmas-061:before { - content: "M"; -} -.icon-christmas-048:before { - content: "N"; -} -.icon-christmas-035:before { - content: "O"; -} -.icon-christmas-034:before { - content: "P"; -} -.icon-christmas-047:before { - content: "Q"; -} -.icon-christmas-060:before { - content: "R"; -} -.icon-christmas-059:before { - content: "S"; -} -.icon-christmas-046:before { - content: "T"; -} -.icon-christmas-033:before { - content: "U"; -} -.icon-christmas-032:before { - content: "V"; -} -.icon-christmas-045:before { - content: "W"; -} -.icon-christmas-058:before { - content: "X"; -} -.icon-christmas-031:before { - content: "Y"; -} -.icon-christmas-044:before { - content: "Z"; -} -.icon-christmas-057:before { - content: "0"; -} -.icon-christmas-056:before { - content: "1"; -} -.icon-christmas-043:before { - content: "2"; -} -.icon-christmas-030:before { - content: "3"; -} -.icon-christmas-029:before { - content: "4"; -} -.icon-christmas-042:before { - content: "5"; -} -.icon-christmas-055:before { - content: "6"; -} -.icon-christmas-054:before { - content: "7"; -} -.icon-christmas-041:before { - content: "8"; -} -.icon-christmas-028:before { - content: "9"; -} -.icon-christmas-027:before { - content: "!"; -} -.icon-christmas-040:before { - content: "\""; -} -.icon-christmas-053:before { - content: "#"; -} -.icon-christmas-066:before { - content: "$"; -} -.icon-christmas-079:before { - content: "%"; -} -.icon-christmas-092:before { - content: "&"; -} -.icon-christmas-093:before { - content: "'"; -} -.icon-christmas-080:before { - content: "("; -} -.icon-christmas-067:before { - content: ")"; -} -.icon-christmas-068:before { - content: "*"; -} -.icon-christmas-081:before { - content: "+"; -} -.icon-christmas-094:before { - content: ","; -} -.icon-christmas-095:before { - content: "-"; -} -.icon-christmas-082:before { - content: "."; -} -.icon-christmas-069:before { - content: "/"; -} -.icon-christmas-070:before { - content: ":"; -} -.icon-christmas-083:before { - content: ";"; -} -.icon-christmas-096:before { - content: "<"; -} -.icon-christmas-097:before { - content: "="; -} -.icon-christmas-084:before { - content: ">"; -} -.icon-christmas-071:before { - content: "?"; -} -.icon-christmas-072:before { - content: "@"; -} -.icon-christmas-085:before { - content: "["; -} -.icon-christmas-098:before { - content: "]"; -} -.icon-christmas-099:before { - content: "^"; -} -.icon-christmas-086:before { - content: "_"; -} -.icon-christmas-073:before { - content: "`"; -} -.icon-christmas-074:before { - content: "{"; -} -.icon-christmas-087:before { - content: "|"; -} -.icon-christmas-100:before { - content: "}"; -} -.icon-christmas-088:before { - content: "~"; -} -.icon-christmas-075:before { - content: "\\"; -} -.icon-christmas-076:before { - content: "\e000"; -} -.icon-christmas-089:before { - content: "\e001"; -} -.icon-christmas-090:before { - content: "\e002"; -} -.icon-christmas-077:before { - content: "\e003"; -} -.icon-christmas-078:before { - content: "\e004"; -} -.icon-christmas-091:before { - content: "\e005"; -} - - -/* Clothes */ -@font-face { - font-family: "clothes"; - src:url("clothes/webfont/fonts/clothes.eot"); - src:url("clothes/webfont/fonts/clothes.eot?#iefix") format("embedded-opentype"), - url("clothes/webfont/fonts/clothes.woff") format("woff"), - url("clothes/webfont/fonts/clothes.ttf") format("truetype"), - url("clothes/webfont/fonts/clothes.svg#clothes") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-clothes]:before { - font-family: "clothes" !important; - content: attr(data-icon-clothes); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-clothes"]:before, -[class*=" icon-clothes"]:before { - font-family: "clothes" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-clothes-014:before { - content: "a"; -} -.icon-clothes-027:before { - content: "b"; -} -.icon-clothes-040:before { - content: "c"; -} -.icon-clothes-053:before { - content: "d"; -} -.icon-clothes-066:before { - content: "e"; -} -.icon-clothes-079:before { - content: "f"; -} -.icon-clothes-092:before { - content: "g"; -} -.icon-clothes-093:before { - content: "h"; -} -.icon-clothes-080:before { - content: "i"; -} -.icon-clothes-067:before { - content: "j"; -} -.icon-clothes-054:before { - content: "k"; -} -.icon-clothes-041:before { - content: "l"; -} -.icon-clothes-028:before { - content: "m"; -} -.icon-clothes-015:before { - content: "n"; -} -.icon-clothes-016:before { - content: "o"; -} -.icon-clothes-029:before { - content: "p"; -} -.icon-clothes-042:before { - content: "q"; -} -.icon-clothes-055:before { - content: "r"; -} -.icon-clothes-068:before { - content: "s"; -} -.icon-clothes-081:before { - content: "t"; -} -.icon-clothes-094:before { - content: "u"; -} -.icon-clothes-095:before { - content: "v"; -} -.icon-clothes-082:before { - content: "w"; -} -.icon-clothes-083:before { - content: "x"; -} -.icon-clothes-096:before { - content: "y"; -} -.icon-clothes-097:before { - content: "z"; -} -.icon-clothes-084:before { - content: "A"; -} -.icon-clothes-085:before { - content: "B"; -} -.icon-clothes-098:before { - content: "C"; -} -.icon-clothes-099:before { - content: "D"; -} -.icon-clothes-086:before { - content: "E"; -} -.icon-clothes-087:before { - content: "F"; -} -.icon-clothes-100:before { - content: "G"; -} -.icon-clothes-088:before { - content: "H"; -} -.icon-clothes-089:before { - content: "I"; -} -.icon-clothes-090:before { - content: "J"; -} -.icon-clothes-091:before { - content: "K"; -} -.icon-clothes-078:before { - content: "L"; -} -.icon-clothes-077:before { - content: "M"; -} -.icon-clothes-076:before { - content: "N"; -} -.icon-clothes-075:before { - content: "O"; -} -.icon-clothes-074:before { - content: "P"; -} -.icon-clothes-073:before { - content: "Q"; -} -.icon-clothes-072:before { - content: "R"; -} -.icon-clothes-071:before { - content: "S"; -} -.icon-clothes-070:before { - content: "T"; -} -.icon-clothes-069:before { - content: "U"; -} -.icon-clothes-056:before { - content: "V"; -} -.icon-clothes-043:before { - content: "W"; -} -.icon-clothes-030:before { - content: "X"; -} -.icon-clothes-017:before { - content: "Y"; -} -.icon-clothes-018:before { - content: "Z"; -} -.icon-clothes-031:before { - content: "0"; -} -.icon-clothes-044:before { - content: "1"; -} -.icon-clothes-057:before { - content: "2"; -} -.icon-clothes-058:before { - content: "3"; -} -.icon-clothes-045:before { - content: "4"; -} -.icon-clothes-032:before { - content: "5"; -} -.icon-clothes-019:before { - content: "6"; -} -.icon-clothes-020:before { - content: "7"; -} -.icon-clothes-033:before { - content: "8"; -} -.icon-clothes-046:before { - content: "9"; -} -.icon-clothes-059:before { - content: "!"; -} -.icon-clothes-060:before { - content: "\""; -} -.icon-clothes-047:before { - content: "#"; -} -.icon-clothes-034:before { - content: "$"; -} -.icon-clothes-021:before { - content: "%"; -} -.icon-clothes-022:before { - content: "&"; -} -.icon-clothes-035:before { - content: "'"; -} -.icon-clothes-048:before { - content: "("; -} -.icon-clothes-061:before { - content: ")"; -} -.icon-clothes-062:before { - content: "*"; -} -.icon-clothes-049:before { - content: "+"; -} -.icon-clothes-036:before { - content: ","; -} -.icon-clothes-023:before { - content: "-"; -} -.icon-clothes-024:before { - content: "."; -} -.icon-clothes-037:before { - content: "/"; -} -.icon-clothes-050:before { - content: ":"; -} -.icon-clothes-063:before { - content: ";"; -} -.icon-clothes-064:before { - content: "<"; -} -.icon-clothes-051:before { - content: "="; -} -.icon-clothes-038:before { - content: ">"; -} -.icon-clothes-025:before { - content: "?"; -} -.icon-clothes-026:before { - content: "@"; -} -.icon-clothes-039:before { - content: "["; -} -.icon-clothes-052:before { - content: "]"; -} -.icon-clothes-065:before { - content: "^"; -} -.icon-clothes-001:before { - content: "_"; -} -.icon-clothes-002:before { - content: "`"; -} -.icon-clothes-003:before { - content: "{"; -} -.icon-clothes-004:before { - content: "|"; -} -.icon-clothes-005:before { - content: "}"; -} -.icon-clothes-006:before { - content: "~"; -} -.icon-clothes-007:before { - content: "\\"; -} -.icon-clothes-008:before { - content: "\e000"; -} -.icon-clothes-009:before { - content: "\e001"; -} -.icon-clothes-010:before { - content: "\e002"; -} -.icon-clothes-011:before { - content: "\e003"; -} -.icon-clothes-012:before { - content: "\e004"; -} -.icon-clothes-013:before { - content: "\e005"; -} - -/* Comunnication */ -@font-face { - font-family: "communication-48-x-48"; - src:url("communication/webfont/fonts/communication-48-x-48.eot"); - src:url("communication/webfont/fonts/communication-48-x-48.eot?#iefix") format("embedded-opentype"), - url("communication/webfont/fonts/communication-48-x-48.woff") format("woff"), - url("communication/webfont/fonts/communication-48-x-48.ttf") format("truetype"), - url("communication/webfont/fonts/communication-48-x-48.svg#communication-48-x-48") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-communication]:before { - font-family: "communication-48-x-48" !important; - content: attr(data-icon-communication); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - -[class^="icon-communication"]:before, -[class*=" icon-communication"]:before { - font-family: "communication-48-x-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-communication-001:before { - content: "a"; -} -.icon-communication-002:before { - content: "b"; -} -.icon-communication-003:before { - content: "c"; -} -.icon-communication-004:before { - content: "d"; -} -.icon-communication-005:before { - content: "e"; -} -.icon-communication-006:before { - content: "f"; -} -.icon-communication-008:before { - content: "g"; -} -.icon-communication-007:before { - content: "h"; -} -.icon-communication-009:before { - content: "i"; -} -.icon-communication-010:before { - content: "j"; -} -.icon-communication-011:before { - content: "k"; -} -.icon-communication-012:before { - content: "l"; -} -.icon-communication-013:before { - content: "m"; -} -.icon-communication-026:before { - content: "n"; -} -.icon-communication-025:before { - content: "o"; -} -.icon-communication-024:before { - content: "p"; -} -.icon-communication-023:before { - content: "q"; -} -.icon-communication-022:before { - content: "r"; -} -.icon-communication-020:before { - content: "s"; -} -.icon-communication-019:before { - content: "t"; -} -.icon-communication-018:before { - content: "u"; -} -.icon-communication-016:before { - content: "v"; -} -.icon-communication-015:before { - content: "w"; -} -.icon-communication-014:before { - content: "x"; -} -.icon-communication-021:before { - content: "y"; -} -.icon-communication-017:before { - content: "z"; -} -.icon-communication-027:before { - content: "A"; -} -.icon-communication-040:before { - content: "B"; -} -.icon-communication-053:before { - content: "C"; -} -.icon-communication-054:before { - content: "D"; -} -.icon-communication-041:before { - content: "E"; -} -.icon-communication-028:before { - content: "F"; -} -.icon-communication-029:before { - content: "G"; -} -.icon-communication-042:before { - content: "H"; -} -.icon-communication-055:before { - content: "I"; -} -.icon-communication-056:before { - content: "J"; -} -.icon-communication-043:before { - content: "K"; -} -.icon-communication-030:before { - content: "L"; -} -.icon-communication-031:before { - content: "M"; -} -.icon-communication-044:before { - content: "N"; -} -.icon-communication-057:before { - content: "O"; -} -.icon-communication-058:before { - content: "P"; -} -.icon-communication-045:before { - content: "Q"; -} -.icon-communication-032:before { - content: "R"; -} -.icon-communication-033:before { - content: "S"; -} -.icon-communication-046:before { - content: "T"; -} -.icon-communication-059:before { - content: "U"; -} -.icon-communication-060:before { - content: "V"; -} -.icon-communication-047:before { - content: "W"; -} -.icon-communication-034:before { - content: "X"; -} -.icon-communication-035:before { - content: "Y"; -} -.icon-communication-048:before { - content: "Z"; -} -.icon-communication-061:before { - content: "0"; -} -.icon-communication-062:before { - content: "1"; -} -.icon-communication-049:before { - content: "2"; -} -.icon-communication-036:before { - content: "3"; -} -.icon-communication-037:before { - content: "4"; -} -.icon-communication-050:before { - content: "5"; -} -.icon-communication-063:before { - content: "6"; -} -.icon-communication-064:before { - content: "7"; -} -.icon-communication-051:before { - content: "8"; -} -.icon-communication-038:before { - content: "9"; -} -.icon-communication-039:before { - content: "!"; -} -.icon-communication-052:before { - content: "\""; -} -.icon-communication-065:before { - content: "#"; -} -.icon-communication-066:before { - content: "$"; -} -.icon-communication-079:before { - content: "%"; -} -.icon-communication-092:before { - content: "&"; -} -.icon-communication-105:before { - content: "'"; -} -.icon-communication-106:before { - content: "("; -} -.icon-communication-093:before { - content: ")"; -} -.icon-communication-080:before { - content: "*"; -} -.icon-communication-067:before { - content: "+"; -} -.icon-communication-068:before { - content: ","; -} -.icon-communication-081:before { - content: "-"; -} -.icon-communication-082:before { - content: "."; -} -.icon-communication-069:before { - content: "/"; -} -.icon-communication-070:before { - content: ":"; -} -.icon-communication-083:before { - content: ";"; -} -.icon-communication-084:before { - content: "<"; -} -.icon-communication-071:before { - content: "="; -} -.icon-communication-072:before { - content: ">"; -} -.icon-communication-085:before { - content: "?"; -} -.icon-communication-086:before { - content: "@"; -} -.icon-communication-073:before { - content: "["; -} -.icon-communication-074:before { - content: "]"; -} -.icon-communication-087:before { - content: "^"; -} -.icon-communication-088:before { - content: "_"; -} -.icon-communication-075:before { - content: "`"; -} -.icon-communication-076:before { - content: "{"; -} -.icon-communication-089:before { - content: "|"; -} -.icon-communication-090:before { - content: "}"; -} -.icon-communication-077:before { - content: "~"; -} -.icon-communication-078:before { - content: "\\"; -} -.icon-communication-091:before { - content: "\e000"; -} -.icon-communication-104:before { - content: "\e001"; -} -.icon-communication-117:before { - content: "\e002"; -} -.icon-communication-116:before { - content: "\e003"; -} -.icon-communication-103:before { - content: "\e004"; -} -.icon-communication-102:before { - content: "\e005"; -} -.icon-communication-115:before { - content: "\e006"; -} -.icon-communication-114:before { - content: "\e007"; -} -.icon-communication-101:before { - content: "\e008"; -} -.icon-communication-100:before { - content: "\e009"; -} -.icon-communication-113:before { - content: "\e00a"; -} -.icon-communication-112:before { - content: "\e00b"; -} -.icon-communication-099:before { - content: "\e00c"; -} -.icon-communication-098:before { - content: "\e00d"; -} -.icon-communication-111:before { - content: "\e00e"; -} -.icon-communication-110:before { - content: "\e00f"; -} -.icon-communication-097:before { - content: "\e010"; -} -.icon-communication-096:before { - content: "\e011"; -} -.icon-communication-109:before { - content: "\e012"; -} -.icon-communication-108:before { - content: "\e013"; -} -.icon-communication-095:before { - content: "\e014"; -} -.icon-communication-094:before { - content: "\e015"; -} -.icon-communication-107:before { - content: "\e016"; -} -.icon-communication-118:before { - content: "\e017"; -} -.icon-communication-131:before { - content: "\e018"; -} -.icon-communication-144:before { - content: "\e019"; -} -.icon-communication-157:before { - content: "\e01a"; -} -.icon-communication-170:before { - content: "\e01b"; -} -.icon-communication-171:before { - content: "\e01c"; -} -.icon-communication-158:before { - content: "\e01d"; -} -.icon-communication-145:before { - content: "\e01e"; -} -.icon-communication-132:before { - content: "\e01f"; -} -.icon-communication-119:before { - content: "\e020"; -} -.icon-communication-120:before { - content: "\e021"; -} -.icon-communication-133:before { - content: "\e022"; -} -.icon-communication-146:before { - content: "\e023"; -} -.icon-communication-159:before { - content: "\e024"; -} -.icon-communication-172:before { - content: "\e025"; -} -.icon-communication-173:before { - content: "\e026"; -} -.icon-communication-160:before { - content: "\e027"; -} -.icon-communication-147:before { - content: "\e028"; -} -.icon-communication-134:before { - content: "\e029"; -} -.icon-communication-121:before { - content: "\e02a"; -} -.icon-communication-122:before { - content: "\e02b"; -} -.icon-communication-135:before { - content: "\e02c"; -} -.icon-communication-148:before { - content: "\e02d"; -} -.icon-communication-161:before { - content: "\e02e"; -} -.icon-communication-174:before { - content: "\e02f"; -} -.icon-communication-175:before { - content: "\e030"; -} -.icon-communication-162:before { - content: "\e031"; -} -.icon-communication-149:before { - content: "\e032"; -} -.icon-communication-136:before { - content: "\e033"; -} -.icon-communication-123:before { - content: "\e034"; -} -.icon-communication-124:before { - content: "\e035"; -} -.icon-communication-137:before { - content: "\e036"; -} -.icon-communication-150:before { - content: "\e037"; -} -.icon-communication-163:before { - content: "\e038"; -} -.icon-communication-176:before { - content: "\e039"; -} -.icon-communication-177:before { - content: "\e03a"; -} -.icon-communication-164:before { - content: "\e03b"; -} -.icon-communication-151:before { - content: "\e03c"; -} -.icon-communication-138:before { - content: "\e03d"; -} -.icon-communication-125:before { - content: "\e03e"; -} -.icon-communication-126:before { - content: "\e03f"; -} -.icon-communication-139:before { - content: "\e040"; -} -.icon-communication-152:before { - content: "\e041"; -} -.icon-communication-165:before { - content: "\e042"; -} -.icon-communication-178:before { - content: "\e043"; -} -.icon-communication-179:before { - content: "\e044"; -} -.icon-communication-166:before { - content: "\e045"; -} -.icon-communication-153:before { - content: "\e046"; -} -.icon-communication-140:before { - content: "\e047"; -} -.icon-communication-127:before { - content: "\e048"; -} -.icon-communication-128:before { - content: "\e049"; -} -.icon-communication-141:before { - content: "\e04a"; -} -.icon-communication-154:before { - content: "\e04b"; -} -.icon-communication-167:before { - content: "\e04c"; -} -.icon-communication-180:before { - content: "\e04d"; -} -.icon-communication-168:before { - content: "\e04e"; -} -.icon-communication-169:before { - content: "\e04f"; -} -.icon-communication-156:before { - content: "\e050"; -} -.icon-communication-155:before { - content: "\e051"; -} -.icon-communication-142:before { - content: "\e052"; -} -.icon-communication-143:before { - content: "\e053"; -} -.icon-communication-130:before { - content: "\e054"; -} -.icon-communication-129:before { - content: "\e055"; -} - -/* Education */ -@font-face { - font-family: "education-48"; - src:url("education/webfont/fonts/education-48.eot"); - src:url("education/webfont/fonts/education-48.eot?#iefix") format("embedded-opentype"), - url("education/webfont/fonts/education-48.woff") format("woff"), - url("education/webfont/fonts/education-48.ttf") format("truetype"), - url("education/webfont/fonts/education-48.svg#education-48") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-education]:before { - font-family: "education-48" !important; - content: attr(data-icon-education); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-education"]:before, -[class*=" icon-education"]:before { - font-family: "education-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-education-001:before { - content: "a"; -} -.icon-education-014:before { - content: "b"; -} -.icon-education-027:before { - content: "c"; -} -.icon-education-028:before { - content: "d"; -} -.icon-education-015:before { - content: "e"; -} -.icon-education-002:before { - content: "f"; -} -.icon-education-003:before { - content: "g"; -} -.icon-education-016:before { - content: "h"; -} -.icon-education-029:before { - content: "i"; -} -.icon-education-030:before { - content: "j"; -} -.icon-education-017:before { - content: "k"; -} -.icon-education-004:before { - content: "l"; -} -.icon-education-005:before { - content: "m"; -} -.icon-education-018:before { - content: "n"; -} -.icon-education-031:before { - content: "o"; -} -.icon-education-032:before { - content: "p"; -} -.icon-education-019:before { - content: "q"; -} -.icon-education-006:before { - content: "r"; -} -.icon-education-007:before { - content: "s"; -} -.icon-education-020:before { - content: "t"; -} -.icon-education-033:before { - content: "u"; -} -.icon-education-034:before { - content: "v"; -} -.icon-education-021:before { - content: "w"; -} -.icon-education-008:before { - content: "x"; -} -.icon-education-009:before { - content: "y"; -} -.icon-education-022:before { - content: "z"; -} -.icon-education-035:before { - content: "A"; -} -.icon-education-036:before { - content: "B"; -} -.icon-education-023:before { - content: "C"; -} -.icon-education-010:before { - content: "D"; -} -.icon-education-011:before { - content: "E"; -} -.icon-education-024:before { - content: "F"; -} -.icon-education-037:before { - content: "G"; -} -.icon-education-038:before { - content: "H"; -} -.icon-education-025:before { - content: "I"; -} -.icon-education-012:before { - content: "J"; -} -.icon-education-013:before { - content: "K"; -} -.icon-education-026:before { - content: "L"; -} -.icon-education-039:before { - content: "M"; -} -.icon-education-052:before { - content: "N"; -} -.icon-education-065:before { - content: "O"; -} -.icon-education-078:before { - content: "P"; -} -.icon-education-091:before { - content: "Q"; -} -.icon-education-104:before { - content: "R"; -} -.icon-education-117:before { - content: "S"; -} -.icon-education-130:before { - content: "T"; -} -.icon-education-143:before { - content: "U"; -} -.icon-education-142:before { - content: "V"; -} -.icon-education-129:before { - content: "W"; -} -.icon-education-116:before { - content: "X"; -} -.icon-education-103:before { - content: "Y"; -} -.icon-education-090:before { - content: "Z"; -} -.icon-education-077:before { - content: "0"; -} -.icon-education-064:before { - content: "1"; -} -.icon-education-051:before { - content: "2"; -} -.icon-education-050:before { - content: "3"; -} -.icon-education-063:before { - content: "4"; -} -.icon-education-076:before { - content: "5"; -} -.icon-education-089:before { - content: "6"; -} -.icon-education-088:before { - content: "7"; -} -.icon-education-075:before { - content: "8"; -} -.icon-education-062:before { - content: "9"; -} -.icon-education-049:before { - content: "!"; -} -.icon-education-048:before { - content: "\""; -} -.icon-education-061:before { - content: "#"; -} -.icon-education-074:before { - content: "$"; -} -.icon-education-087:before { - content: "%"; -} -.icon-education-100:before { - content: "&"; -} -.icon-education-101:before { - content: "'"; -} -.icon-education-102:before { - content: "("; -} -.icon-education-115:before { - content: ")"; -} -.icon-education-114:before { - content: "*"; -} -.icon-education-113:before { - content: "+"; -} -.icon-education-126:before { - content: ","; -} -.icon-education-127:before { - content: "-"; -} -.icon-education-128:before { - content: "."; -} -.icon-education-141:before { - content: "/"; -} -.icon-education-140:before { - content: ":"; -} -.icon-education-139:before { - content: ";"; -} -.icon-education-138:before { - content: "<"; -} -.icon-education-125:before { - content: "="; -} -.icon-education-124:before { - content: ">"; -} -.icon-education-137:before { - content: "?"; -} -.icon-education-136:before { - content: "@"; -} -.icon-education-123:before { - content: "["; -} -.icon-education-110:before { - content: "]"; -} -.icon-education-111:before { - content: "^"; -} -.icon-education-112:before { - content: "_"; -} -.icon-education-099:before { - content: "`"; -} -.icon-education-098:before { - content: "{"; -} -.icon-education-097:before { - content: "|"; -} -.icon-education-084:before { - content: "}"; -} -.icon-education-085:before { - content: "~"; -} -.icon-education-086:before { - content: "\\"; -} -.icon-education-073:before { - content: "\e000"; -} -.icon-education-072:before { - content: "\e001"; -} -.icon-education-071:before { - content: "\e002"; -} -.icon-education-058:before { - content: "\e003"; -} -.icon-education-059:before { - content: "\e004"; -} -.icon-education-060:before { - content: "\e005"; -} -.icon-education-047:before { - content: "\e006"; -} -.icon-education-046:before { - content: "\e007"; -} -.icon-education-045:before { - content: "\e008"; -} -.icon-education-040:before { - content: "\e009"; -} -.icon-education-041:before { - content: "\e00a"; -} -.icon-education-054:before { - content: "\e00b"; -} -.icon-education-053:before { - content: "\e00c"; -} -.icon-education-066:before { - content: "\e00d"; -} -.icon-education-067:before { - content: "\e00e"; -} -.icon-education-068:before { - content: "\e00f"; -} -.icon-education-055:before { - content: "\e010"; -} -.icon-education-042:before { - content: "\e011"; -} -.icon-education-043:before { - content: "\e012"; -} -.icon-education-056:before { - content: "\e013"; -} -.icon-education-069:before { - content: "\e014"; -} -.icon-education-070:before { - content: "\e015"; -} -.icon-education-057:before { - content: "\e016"; -} -.icon-education-044:before { - content: "\e017"; -} -.icon-education-083:before { - content: "\e018"; -} -.icon-education-082:before { - content: "\e019"; -} -.icon-education-081:before { - content: "\e01a"; -} -.icon-education-080:before { - content: "\e01b"; -} -.icon-education-079:before { - content: "\e01c"; -} -.icon-education-092:before { - content: "\e01d"; -} -.icon-education-105:before { - content: "\e01e"; -} -.icon-education-118:before { - content: "\e01f"; -} -.icon-education-131:before { - content: "\e020"; -} -.icon-education-132:before { - content: "\e021"; -} -.icon-education-119:before { - content: "\e022"; -} -.icon-education-106:before { - content: "\e023"; -} -.icon-education-093:before { - content: "\e024"; -} -.icon-education-094:before { - content: "\e025"; -} -.icon-education-107:before { - content: "\e026"; -} -.icon-education-120:before { - content: "\e027"; -} -.icon-education-133:before { - content: "\e028"; -} -.icon-education-134:before { - content: "\e029"; -} -.icon-education-108:before { - content: "\e02a"; -} -.icon-education-095:before { - content: "\e02b"; -} -.icon-education-096:before { - content: "\e02c"; -} -.icon-education-109:before { - content: "\e02d"; -} -.icon-education-122:before { - content: "\e02e"; -} -.icon-education-121:before { - content: "\e02f"; -} -.icon-education-135:before { - content: "\e030"; -} -.icon-education-144:before { - content: "\e031"; -} -.icon-education-157:before { - content: "\e032"; -} -.icon-education-170:before { - content: "\e033"; -} -.icon-education-183:before { - content: "\e034"; -} -.icon-education-196:before { - content: "\e035"; -} -.icon-education-197:before { - content: "\e036"; -} -.icon-education-184:before { - content: "\e037"; -} -.icon-education-171:before { - content: "\e038"; -} -.icon-education-158:before { - content: "\e039"; -} -.icon-education-145:before { - content: "\e03a"; -} -.icon-education-146:before { - content: "\e03b"; -} -.icon-education-159:before { - content: "\e03c"; -} -.icon-education-172:before { - content: "\e03d"; -} -.icon-education-185:before { - content: "\e03e"; -} -.icon-education-198:before { - content: "\e03f"; -} -.icon-education-199:before { - content: "\e040"; -} -.icon-education-186:before { - content: "\e041"; -} -.icon-education-173:before { - content: "\e042"; -} -.icon-education-160:before { - content: "\e043"; -} -.icon-education-147:before { - content: "\e044"; -} -.icon-education-148:before { - content: "\e045"; -} -.icon-education-161:before { - content: "\e046"; -} -.icon-education-174:before { - content: "\e047"; -} -.icon-education-187:before { - content: "\e048"; -} -.icon-education-200:before { - content: "\e049"; -} -.icon-education-188:before { - content: "\e04a"; -} -.icon-education-175:before { - content: "\e04b"; -} -.icon-education-162:before { - content: "\e04c"; -} -.icon-education-149:before { - content: "\e04d"; -} -.icon-education-150:before { - content: "\e04e"; -} -.icon-education-163:before { - content: "\e04f"; -} -.icon-education-176:before { - content: "\e050"; -} -.icon-education-189:before { - content: "\e051"; -} -.icon-education-190:before { - content: "\e052"; -} -.icon-education-177:before { - content: "\e053"; -} -.icon-education-164:before { - content: "\e054"; -} -.icon-education-151:before { - content: "\e055"; -} -.icon-education-152:before { - content: "\e056"; -} -.icon-education-165:before { - content: "\e057"; -} -.icon-education-178:before { - content: "\e058"; -} -.icon-education-191:before { - content: "\e059"; -} -.icon-education-192:before { - content: "\e05a"; -} -.icon-education-179:before { - content: "\e05b"; -} -.icon-education-166:before { - content: "\e05c"; -} -.icon-education-153:before { - content: "\e05d"; -} -.icon-education-154:before { - content: "\e05e"; -} -.icon-education-167:before { - content: "\e05f"; -} -.icon-education-180:before { - content: "\e060"; -} -.icon-education-193:before { - content: "\e061"; -} -.icon-education-194:before { - content: "\e062"; -} -.icon-education-181:before { - content: "\e063"; -} -.icon-education-168:before { - content: "\e064"; -} -.icon-education-155:before { - content: "\e065"; -} -.icon-education-156:before { - content: "\e066"; -} -.icon-education-169:before { - content: "\e067"; -} -.icon-education-182:before { - content: "\e068"; -} -.icon-education-195:before { - content: "\e069"; -} - -/* Electronics */ -@font-face { - font-family: "electronics"; - src:url("electronics/webfont/fonts/electronics.eot"); - src:url("electronics/webfont/fonts/electronics.eot?#iefix") format("embedded-opentype"), - url("electronics/webfont/fonts/electronics.woff") format("woff"), - url("electronics/webfont/fonts/electronics.ttf") format("truetype"), - url("electronics/webfont/fonts/electronics.svg#electronics") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-electronics]:before { - font-family: "electronics" !important; - content: attr(data-icon-electronics); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-electronics"]:before, -[class*=" icon-electronics"]:before { - font-family: "electronics" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-electronics-001:before { - content: "a"; -} -.icon-electronics-014:before { - content: "b"; -} -.icon-electronics-027:before { - content: "c"; -} -.icon-electronics-040:before { - content: "d"; -} -.icon-electronics-053:before { - content: "e"; -} -.icon-electronics-066:before { - content: "f"; -} -.icon-electronics-079:before { - content: "g"; -} -.icon-electronics-092:before { - content: "h"; -} -.icon-electronics-093:before { - content: "i"; -} -.icon-electronics-080:before { - content: "j"; -} -.icon-electronics-067:before { - content: "k"; -} -.icon-electronics-054:before { - content: "l"; -} -.icon-electronics-041:before { - content: "m"; -} -.icon-electronics-028:before { - content: "n"; -} -.icon-electronics-015:before { - content: "o"; -} -.icon-electronics-002:before { - content: "p"; -} -.icon-electronics-003:before { - content: "q"; -} -.icon-electronics-016:before { - content: "r"; -} -.icon-electronics-029:before { - content: "s"; -} -.icon-electronics-042:before { - content: "t"; -} -.icon-electronics-055:before { - content: "u"; -} -.icon-electronics-068:before { - content: "v"; -} -.icon-electronics-081:before { - content: "w"; -} -.icon-electronics-094:before { - content: "x"; -} -.icon-electronics-095:before { - content: "y"; -} -.icon-electronics-082:before { - content: "z"; -} -.icon-electronics-069:before { - content: "A"; -} -.icon-electronics-056:before { - content: "B"; -} -.icon-electronics-043:before { - content: "C"; -} -.icon-electronics-030:before { - content: "D"; -} -.icon-electronics-017:before { - content: "E"; -} -.icon-electronics-004:before { - content: "F"; -} -.icon-electronics-005:before { - content: "G"; -} -.icon-electronics-018:before { - content: "H"; -} -.icon-electronics-031:before { - content: "I"; -} -.icon-electronics-044:before { - content: "J"; -} -.icon-electronics-057:before { - content: "K"; -} -.icon-electronics-070:before { - content: "L"; -} -.icon-electronics-083:before { - content: "M"; -} -.icon-electronics-096:before { - content: "N"; -} -.icon-electronics-097:before { - content: "O"; -} -.icon-electronics-084:before { - content: "P"; -} -.icon-electronics-071:before { - content: "Q"; -} -.icon-electronics-058:before { - content: "R"; -} -.icon-electronics-045:before { - content: "S"; -} -.icon-electronics-032:before { - content: "T"; -} -.icon-electronics-019:before { - content: "U"; -} -.icon-electronics-006:before { - content: "V"; -} -.icon-electronics-007:before { - content: "W"; -} -.icon-electronics-020:before { - content: "X"; -} -.icon-electronics-033:before { - content: "Y"; -} -.icon-electronics-046:before { - content: "Z"; -} -.icon-electronics-059:before { - content: "0"; -} -.icon-electronics-072:before { - content: "1"; -} -.icon-electronics-085:before { - content: "2"; -} -.icon-electronics-098:before { - content: "3"; -} -.icon-electronics-099:before { - content: "4"; -} -.icon-electronics-086:before { - content: "5"; -} -.icon-electronics-073:before { - content: "6"; -} -.icon-electronics-060:before { - content: "7"; -} -.icon-electronics-047:before { - content: "8"; -} -.icon-electronics-034:before { - content: "9"; -} -.icon-electronics-021:before { - content: "!"; -} -.icon-electronics-008:before { - content: "\""; -} -.icon-electronics-009:before { - content: "#"; -} -.icon-electronics-022:before { - content: "$"; -} -.icon-electronics-035:before { - content: "%"; -} -.icon-electronics-048:before { - content: "&"; -} -.icon-electronics-049:before { - content: "'"; -} -.icon-electronics-036:before { - content: "("; -} -.icon-electronics-023:before { - content: ")"; -} -.icon-electronics-010:before { - content: "*"; -} -.icon-electronics-011:before { - content: "+"; -} -.icon-electronics-024:before { - content: ","; -} -.icon-electronics-025:before { - content: "-"; -} -.icon-electronics-012:before { - content: "."; -} -.icon-electronics-013:before { - content: "/"; -} -.icon-electronics-026:before { - content: ":"; -} -.icon-electronics-039:before { - content: ";"; -} -.icon-electronics-052:before { - content: "<"; -} -.icon-electronics-065:before { - content: "="; -} -.icon-electronics-078:before { - content: ">"; -} -.icon-electronics-091:before { - content: "?"; -} -.icon-electronics-104:before { - content: "@"; -} -.icon-electronics-103:before { - content: "["; -} -.icon-electronics-090:before { - content: "]"; -} -.icon-electronics-064:before { - content: "^"; -} -.icon-electronics-051:before { - content: "_"; -} -.icon-electronics-038:before { - content: "`"; -} -.icon-electronics-037:before { - content: "{"; -} -.icon-electronics-050:before { - content: "|"; -} -.icon-electronics-063:before { - content: "}"; -} -.icon-electronics-076:before { - content: "~"; -} -.icon-electronics-077:before { - content: "\\"; -} -.icon-electronics-062:before { - content: "\e000"; -} -.icon-electronics-061:before { - content: "\e001"; -} -.icon-electronics-074:before { - content: "\e002"; -} -.icon-electronics-075:before { - content: "\e003"; -} -.icon-electronics-088:before { - content: "\e004"; -} -.icon-electronics-087:before { - content: "\e005"; -} -.icon-electronics-089:before { - content: "\e006"; -} -.icon-electronics-102:before { - content: "\e007"; -} -.icon-electronics-101:before { - content: "\e008"; -} -.icon-electronics-100:before { - content: "\e009"; -} -.icon-electronics-105:before { - content: "\e00a"; -} -.icon-electronics-118:before { - content: "\e00b"; -} -.icon-electronics-131:before { - content: "\e00c"; -} -.icon-electronics-144:before { - content: "\e00d"; -} -.icon-electronics-157:before { - content: "\e00e"; -} -.icon-electronics-158:before { - content: "\e00f"; -} -.icon-electronics-145:before { - content: "\e010"; -} -.icon-electronics-132:before { - content: "\e011"; -} -.icon-electronics-119:before { - content: "\e012"; -} -.icon-electronics-106:before { - content: "\e013"; -} -.icon-electronics-107:before { - content: "\e014"; -} -.icon-electronics-120:before { - content: "\e015"; -} -.icon-electronics-133:before { - content: "\e016"; -} -.icon-electronics-146:before { - content: "\e017"; -} -.icon-electronics-159:before { - content: "\e018"; -} -.icon-electronics-160:before { - content: "\e019"; -} -.icon-electronics-147:before { - content: "\e01a"; -} -.icon-electronics-134:before { - content: "\e01b"; -} -.icon-electronics-121:before { - content: "\e01c"; -} -.icon-electronics-108:before { - content: "\e01d"; -} -.icon-electronics-109:before { - content: "\e01e"; -} -.icon-electronics-122:before { - content: "\e01f"; -} -.icon-electronics-135:before { - content: "\e020"; -} -.icon-electronics-148:before { - content: "\e021"; -} -.icon-electronics-149:before { - content: "\e022"; -} -.icon-electronics-136:before { - content: "\e023"; -} -.icon-electronics-123:before { - content: "\e024"; -} -.icon-electronics-110:before { - content: "\e025"; -} -.icon-electronics-111:before { - content: "\e026"; -} -.icon-electronics-124:before { - content: "\e027"; -} -.icon-electronics-137:before { - content: "\e028"; -} -.icon-electronics-150:before { - content: "\e029"; -} -.icon-electronics-151:before { - content: "\e02a"; -} -.icon-electronics-138:before { - content: "\e02b"; -} -.icon-electronics-125:before { - content: "\e02c"; -} -.icon-electronics-112:before { - content: "\e02d"; -} -.icon-electronics-113:before { - content: "\e02e"; -} -.icon-electronics-126:before { - content: "\e02f"; -} -.icon-electronics-139:before { - content: "\e030"; -} -.icon-electronics-152:before { - content: "\e031"; -} -.icon-electronics-153:before { - content: "\e032"; -} -.icon-electronics-140:before { - content: "\e033"; -} -.icon-electronics-127:before { - content: "\e034"; -} -.icon-electronics-114:before { - content: "\e035"; -} -.icon-electronics-115:before { - content: "\e036"; -} -.icon-electronics-128:before { - content: "\e037"; -} -.icon-electronics-141:before { - content: "\e038"; -} -.icon-electronics-154:before { - content: "\e039"; -} -.icon-electronics-155:before { - content: "\e03a"; -} -.icon-electronics-142:before { - content: "\e03b"; -} -.icon-electronics-129:before { - content: "\e03c"; -} -.icon-electronics-116:before { - content: "\e03d"; -} -.icon-electronics-117:before { - content: "\e03e"; -} -.icon-electronics-130:before { - content: "\e03f"; -} -.icon-electronics-143:before { - content: "\e040"; -} -.icon-electronics-156:before { - content: "\e041"; -} - - -/* Finance */ -@font-face { - font-family: "finance"; - src:url("finance/webfont/fonts/finance.eot"); - src:url("finance/webfont/fonts/finance.eot?#iefix") format("embedded-opentype"), - url("finance/webfont/fonts/finance.woff") format("woff"), - url("finance/webfont/fonts/finance.ttf") format("truetype"), - url("finance/webfont/fonts/finance.svg#finance") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-finance]:before { - font-family: "finance" !important; - content: attr(data-icon-finance); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-finance"]:before, -[class*=" icon-finance"]:before { - font-family: "finance" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-finance-260:before { - content: "a"; -} -.icon-finance-259:before { - content: "b"; -} -.icon-finance-246:before { - content: "c"; -} -.icon-finance-247:before { - content: "d"; -} -.icon-finance-234:before { - content: "e"; -} -.icon-finance-233:before { - content: "f"; -} -.icon-finance-232:before { - content: "g"; -} -.icon-finance-245:before { - content: "h"; -} -.icon-finance-258:before { - content: "i"; -} -.icon-finance-257:before { - content: "j"; -} -.icon-finance-256:before { - content: "k"; -} -.icon-finance-243:before { - content: "l"; -} -.icon-finance-244:before { - content: "m"; -} -.icon-finance-231:before { - content: "n"; -} -.icon-finance-230:before { - content: "o"; -} -.icon-finance-229:before { - content: "p"; -} -.icon-finance-242:before { - content: "q"; -} -.icon-finance-255:before { - content: "r"; -} -.icon-finance-254:before { - content: "s"; -} -.icon-finance-241:before { - content: "t"; -} -.icon-finance-228:before { - content: "u"; -} -.icon-finance-227:before { - content: "v"; -} -.icon-finance-240:before { - content: "w"; -} -.icon-finance-253:before { - content: "x"; -} -.icon-finance-252:before { - content: "y"; -} -.icon-finance-239:before { - content: "z"; -} -.icon-finance-226:before { - content: "A"; -} -.icon-finance-225:before { - content: "B"; -} -.icon-finance-238:before { - content: "C"; -} -.icon-finance-251:before { - content: "D"; -} -.icon-finance-250:before { - content: "E"; -} -.icon-finance-237:before { - content: "F"; -} -.icon-finance-224:before { - content: "G"; -} -.icon-finance-223:before { - content: "H"; -} -.icon-finance-236:before { - content: "I"; -} -.icon-finance-249:before { - content: "J"; -} -.icon-finance-235:before { - content: "K"; -} -.icon-finance-222:before { - content: "L"; -} -.icon-finance-248:before { - content: "M"; -} -.icon-finance-209:before { - content: "N"; -} -.icon-finance-196:before { - content: "O"; -} -.icon-finance-183:before { - content: "P"; -} -.icon-finance-184:before { - content: "Q"; -} -.icon-finance-197:before { - content: "R"; -} -.icon-finance-210:before { - content: "S"; -} -.icon-finance-211:before { - content: "T"; -} -.icon-finance-198:before { - content: "U"; -} -.icon-finance-185:before { - content: "V"; -} -.icon-finance-186:before { - content: "W"; -} -.icon-finance-199:before { - content: "X"; -} -.icon-finance-212:before { - content: "Y"; -} -.icon-finance-213:before { - content: "Z"; -} -.icon-finance-200:before { - content: "0"; -} -.icon-finance-187:before { - content: "1"; -} -.icon-finance-188:before { - content: "2"; -} -.icon-finance-189:before { - content: "3"; -} -.icon-finance-201:before { - content: "4"; -} -.icon-finance-214:before { - content: "5"; -} -.icon-finance-215:before { - content: "6"; -} -.icon-finance-202:before { - content: "7"; -} -.icon-finance-216:before { - content: "8"; -} -.icon-finance-203:before { - content: "9"; -} -.icon-finance-204:before { - content: "!"; -} -.icon-finance-217:before { - content: "\""; -} -.icon-finance-191:before { - content: "#"; -} -.icon-finance-190:before { - content: "$"; -} -.icon-finance-192:before { - content: "%"; -} -.icon-finance-205:before { - content: "&"; -} -.icon-finance-218:before { - content: "'"; -} -.icon-finance-219:before { - content: "("; -} -.icon-finance-206:before { - content: ")"; -} -.icon-finance-193:before { - content: "*"; -} -.icon-finance-194:before { - content: "+"; -} -.icon-finance-207:before { - content: ","; -} -.icon-finance-220:before { - content: "-"; -} -.icon-finance-221:before { - content: "."; -} -.icon-finance-208:before { - content: "/"; -} -.icon-finance-195:before { - content: ":"; -} -.icon-finance-182:before { - content: ";"; -} -.icon-finance-181:before { - content: "<"; -} -.icon-finance-180:before { - content: "="; -} -.icon-finance-167:before { - content: ">"; -} -.icon-finance-168:before { - content: "?"; -} -.icon-finance-169:before { - content: "@"; -} -.icon-finance-156:before { - content: "["; -} -.icon-finance-155:before { - content: "]"; -} -.icon-finance-154:before { - content: "^"; -} -.icon-finance-141:before { - content: "_"; -} -.icon-finance-142:before { - content: "`"; -} -.icon-finance-143:before { - content: "{"; -} -.icon-finance-130:before { - content: "|"; -} -.icon-finance-129:before { - content: "}"; -} -.icon-finance-128:before { - content: "~"; -} -.icon-finance-127:before { - content: "\\"; -} -.icon-finance-140:before { - content: "\e000"; -} -.icon-finance-139:before { - content: "\e001"; -} -.icon-finance-126:before { - content: "\e002"; -} -.icon-finance-125:before { - content: "\e003"; -} -.icon-finance-138:before { - content: "\e004"; -} -.icon-finance-151:before { - content: "\e005"; -} -.icon-finance-152:before { - content: "\e006"; -} -.icon-finance-153:before { - content: "\e007"; -} -.icon-finance-166:before { - content: "\e008"; -} -.icon-finance-179:before { - content: "\e009"; -} -.icon-finance-178:before { - content: "\e00a"; -} -.icon-finance-165:before { - content: "\e00b"; -} -.icon-finance-164:before { - content: "\e00c"; -} -.icon-finance-177:before { - content: "\e00d"; -} -.icon-finance-176:before { - content: "\e00e"; -} -.icon-finance-163:before { - content: "\e00f"; -} -.icon-finance-150:before { - content: "\e010"; -} -.icon-finance-137:before { - content: "\e011"; -} -.icon-finance-124:before { - content: "\e012"; -} -.icon-finance-123:before { - content: "\e013"; -} -.icon-finance-136:before { - content: "\e014"; -} -.icon-finance-149:before { - content: "\e015"; -} -.icon-finance-162:before { - content: "\e016"; -} -.icon-finance-175:before { - content: "\e017"; -} -.icon-finance-174:before { - content: "\e018"; -} -.icon-finance-161:before { - content: "\e019"; -} -.icon-finance-148:before { - content: "\e01a"; -} -.icon-finance-135:before { - content: "\e01b"; -} -.icon-finance-122:before { - content: "\e01c"; -} -.icon-finance-121:before { - content: "\e01d"; -} -.icon-finance-134:before { - content: "\e01e"; -} -.icon-finance-147:before { - content: "\e01f"; -} -.icon-finance-160:before { - content: "\e020"; -} -.icon-finance-173:before { - content: "\e021"; -} -.icon-finance-172:before { - content: "\e022"; -} -.icon-finance-146:before { - content: "\e023"; -} -.icon-finance-133:before { - content: "\e024"; -} -.icon-finance-120:before { - content: "\e025"; -} -.icon-finance-159:before { - content: "\e026"; -} -.icon-finance-158:before { - content: "\e027"; -} -.icon-finance-171:before { - content: "\e028"; -} -.icon-finance-170:before { - content: "\e029"; -} -.icon-finance-157:before { - content: "\e02a"; -} -.icon-finance-144:before { - content: "\e02b"; -} -.icon-finance-145:before { - content: "\e02c"; -} -.icon-finance-132:before { - content: "\e02d"; -} -.icon-finance-131:before { - content: "\e02e"; -} -.icon-finance-118:before { - content: "\e02f"; -} -.icon-finance-119:before { - content: "\e030"; -} -.icon-finance-106:before { - content: "\e031"; -} -.icon-finance-105:before { - content: "\e032"; -} -.icon-finance-092:before { - content: "\e033"; -} -.icon-finance-093:before { - content: "\e034"; -} -.icon-finance-107:before { - content: "\e035"; -} -.icon-finance-094:before { - content: "\e036"; -} -.icon-finance-095:before { - content: "\e037"; -} -.icon-finance-108:before { - content: "\e038"; -} -.icon-finance-109:before { - content: "\e039"; -} -.icon-finance-096:before { - content: "\e03a"; -} -.icon-finance-097:before { - content: "\e03b"; -} -.icon-finance-110:before { - content: "\e03c"; -} -.icon-finance-111:before { - content: "\e03d"; -} -.icon-finance-098:before { - content: "\e03e"; -} -.icon-finance-099:before { - content: "\e03f"; -} -.icon-finance-112:before { - content: "\e040"; -} -.icon-finance-113:before { - content: "\e041"; -} -.icon-finance-100:before { - content: "\e042"; -} -.icon-finance-101:before { - content: "\e043"; -} -.icon-finance-114:before { - content: "\e044"; -} -.icon-finance-115:before { - content: "\e045"; -} -.icon-finance-102:before { - content: "\e046"; -} -.icon-finance-116:before { - content: "\e048"; -} -.icon-finance-117:before { - content: "\e049"; -} -.icon-finance-104:before { - content: "\e047"; -} -.icon-finance-103:before { - content: "\e04a"; -} -.icon-finance-014:before { - content: "\e04b"; -} -.icon-finance-027:before { - content: "\e04c"; -} -.icon-finance-040:before { - content: "\e04d"; -} -.icon-finance-053:before { - content: "\e04e"; -} -.icon-finance-066:before { - content: "\e04f"; -} -.icon-finance-079:before { - content: "\e050"; -} -.icon-finance-080:before { - content: "\e051"; -} -.icon-finance-067:before { - content: "\e052"; -} -.icon-finance-068:before { - content: "\e053"; -} -.icon-finance-081:before { - content: "\e054"; -} -.icon-finance-070:before { - content: "\e055"; -} -.icon-finance-083:before { - content: "\e056"; -} -.icon-finance-082:before { - content: "\e057"; -} -.icon-finance-069:before { - content: "\e058"; -} -.icon-finance-071:before { - content: "\e059"; -} -.icon-finance-084:before { - content: "\e05a"; -} -.icon-finance-085:before { - content: "\e05b"; -} -.icon-finance-072:before { - content: "\e05c"; -} -.icon-finance-073:before { - content: "\e05d"; -} -.icon-finance-086:before { - content: "\e05e"; -} -.icon-finance-087:before { - content: "\e05f"; -} -.icon-finance-074:before { - content: "\e060"; -} -.icon-finance-075:before { - content: "\e061"; -} -.icon-finance-088:before { - content: "\e062"; -} -.icon-finance-089:before { - content: "\e063"; -} -.icon-finance-076:before { - content: "\e064"; -} -.icon-finance-077:before { - content: "\e065"; -} -.icon-finance-090:before { - content: "\e066"; -} -.icon-finance-091:before { - content: "\e067"; -} -.icon-finance-078:before { - content: "\e068"; -} -.icon-finance-065:before { - content: "\e069"; -} -.icon-finance-052:before { - content: "\e06a"; -} -.icon-finance-039:before { - content: "\e06b"; -} -.icon-finance-026:before { - content: "\e06c"; -} -.icon-finance-025:before { - content: "\e06d"; -} -.icon-finance-038:before { - content: "\e06e"; -} -.icon-finance-051:before { - content: "\e06f"; -} -.icon-finance-064:before { - content: "\e070"; -} -.icon-finance-063:before { - content: "\e071"; -} -.icon-finance-050:before { - content: "\e072"; -} -.icon-finance-037:before { - content: "\e073"; -} -.icon-finance-024:before { - content: "\e074"; -} -.icon-finance-023:before { - content: "\e075"; -} -.icon-finance-036:before { - content: "\e076"; -} -.icon-finance-049:before { - content: "\e077"; -} -.icon-finance-062:before { - content: "\e078"; -} -.icon-finance-061:before { - content: "\e079"; -} -.icon-finance-048:before { - content: "\e07a"; -} -.icon-finance-035:before { - content: "\e07b"; -} -.icon-finance-022:before { - content: "\e07c"; -} -.icon-finance-021:before { - content: "\e07d"; -} -.icon-finance-034:before { - content: "\e07e"; -} -.icon-finance-047:before { - content: "\e07f"; -} -.icon-finance-060:before { - content: "\e080"; -} -.icon-finance-059:before { - content: "\e081"; -} -.icon-finance-046:before { - content: "\e082"; -} -.icon-finance-033:before { - content: "\e083"; -} -.icon-finance-020:before { - content: "\e084"; -} -.icon-finance-019:before { - content: "\e085"; -} -.icon-finance-032:before { - content: "\e086"; -} -.icon-finance-045:before { - content: "\e087"; -} -.icon-finance-058:before { - content: "\e088"; -} -.icon-finance-057:before { - content: "\e089"; -} -.icon-finance-044:before { - content: "\e08a"; -} -.icon-finance-031:before { - content: "\e08b"; -} -.icon-finance-018:before { - content: "\e08c"; -} -.icon-finance-017:before { - content: "\e08d"; -} -.icon-finance-030:before { - content: "\e08e"; -} -.icon-finance-043:before { - content: "\e08f"; -} -.icon-finance-056:before { - content: "\e090"; -} -.icon-finance-055:before { - content: "\e091"; -} -.icon-finance-042:before { - content: "\e092"; -} -.icon-finance-029:before { - content: "\e093"; -} -.icon-finance-016:before { - content: "\e094"; -} -.icon-finance-015:before { - content: "\e095"; -} -.icon-finance-028:before { - content: "\e096"; -} -.icon-finance-041:before { - content: "\e097"; -} -.icon-finance-054:before { - content: "\e098"; -} -.icon-finance-001:before { - content: "\e099"; -} -.icon-finance-002:before { - content: "\e09a"; -} -.icon-finance-003:before { - content: "\e09b"; -} -.icon-finance-004:before { - content: "\e09c"; -} -.icon-finance-005:before { - content: "\e09d"; -} -.icon-finance-006:before { - content: "\e09e"; -} -.icon-finance-007:before { - content: "\e09f"; -} -.icon-finance-008:before { - content: "\e0a0"; -} -.icon-finance-009:before { - content: "\e0a1"; -} -.icon-finance-010:before { - content: "\e0a2"; -} -.icon-finance-011:before { - content: "\e0a3"; -} -.icon-finance-012:before { - content: "\e0a4"; -} -.icon-finance-013:before { - content: "\e0a5"; -} - -/* Food */ -@font-face { - font-family: "food-48"; - src:url("food/webfont/fonts/food-48.eot"); - src:url("food/webfont/fonts/food-48.eot?#iefix") format("embedded-opentype"), - url("food/webfont/fonts/food-48.woff") format("woff"), - url("food/webfont/fonts/food-48.ttf") format("truetype"), - url("food/webfont/fonts/food-48.svg#food-48") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-food]:before { - font-family: "food-48" !important; - content: attr(data-icon-food); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-food"]:before, -[class*=" icon-food"]:before { - font-family: "food-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-food-001:before { - content: "a"; -} -.icon-food-014:before { - content: "b"; -} -.icon-food-027:before { - content: "c"; -} -.icon-food-040:before { - content: "d"; -} -.icon-food-041:before { - content: "e"; -} -.icon-food-028:before { - content: "f"; -} -.icon-food-015:before { - content: "g"; -} -.icon-food-002:before { - content: "h"; -} -.icon-food-003:before { - content: "i"; -} -.icon-food-016:before { - content: "j"; -} -.icon-food-029:before { - content: "k"; -} -.icon-food-042:before { - content: "l"; -} -.icon-food-043:before { - content: "m"; -} -.icon-food-030:before { - content: "n"; -} -.icon-food-017:before { - content: "o"; -} -.icon-food-004:before { - content: "p"; -} -.icon-food-005:before { - content: "q"; -} -.icon-food-018:before { - content: "r"; -} -.icon-food-031:before { - content: "s"; -} -.icon-food-044:before { - content: "t"; -} -.icon-food-045:before { - content: "u"; -} -.icon-food-032:before { - content: "v"; -} -.icon-food-019:before { - content: "w"; -} -.icon-food-006:before { - content: "x"; -} -.icon-food-007:before { - content: "y"; -} -.icon-food-020:before { - content: "z"; -} -.icon-food-033:before { - content: "A"; -} -.icon-food-046:before { - content: "B"; -} -.icon-food-047:before { - content: "C"; -} -.icon-food-034:before { - content: "D"; -} -.icon-food-021:before { - content: "E"; -} -.icon-food-008:before { - content: "F"; -} -.icon-food-009:before { - content: "G"; -} -.icon-food-022:before { - content: "H"; -} -.icon-food-035:before { - content: "I"; -} -.icon-food-048:before { - content: "J"; -} -.icon-food-049:before { - content: "K"; -} -.icon-food-036:before { - content: "L"; -} -.icon-food-023:before { - content: "M"; -} -.icon-food-010:before { - content: "N"; -} -.icon-food-011:before { - content: "O"; -} -.icon-food-024:before { - content: "P"; -} -.icon-food-037:before { - content: "Q"; -} -.icon-food-050:before { - content: "R"; -} -.icon-food-051:before { - content: "S"; -} -.icon-food-038:before { - content: "T"; -} -.icon-food-025:before { - content: "U"; -} -.icon-food-012:before { - content: "V"; -} -.icon-food-013:before { - content: "W"; -} -.icon-food-026:before { - content: "X"; -} -.icon-food-039:before { - content: "Y"; -} -.icon-food-052:before { - content: "Z"; -} -.icon-food-065:before { - content: "0"; -} -.icon-food-078:before { - content: "1"; -} -.icon-food-091:before { - content: "2"; -} -.icon-food-104:before { - content: "3"; -} -.icon-food-103:before { - content: "4"; -} -.icon-food-090:before { - content: "5"; -} -.icon-food-077:before { - content: "6"; -} -.icon-food-064:before { - content: "7"; -} -.icon-food-063:before { - content: "8"; -} -.icon-food-076:before { - content: "9"; -} -.icon-food-089:before { - content: "!"; -} -.icon-food-102:before { - content: "\""; -} -.icon-food-101:before { - content: "#"; -} -.icon-food-088:before { - content: "$"; -} -.icon-food-075:before { - content: "%"; -} -.icon-food-062:before { - content: "&"; -} -.icon-food-061:before { - content: "'"; -} -.icon-food-074:before { - content: "("; -} -.icon-food-087:before { - content: ")"; -} -.icon-food-100:before { - content: "*"; -} -.icon-food-099:before { - content: "+"; -} -.icon-food-086:before { - content: ","; -} -.icon-food-073:before { - content: "-"; -} -.icon-food-060:before { - content: "."; -} -.icon-food-059:before { - content: "/"; -} -.icon-food-072:before { - content: ":"; -} -.icon-food-085:before { - content: ";"; -} -.icon-food-098:before { - content: "<"; -} -.icon-food-097:before { - content: "="; -} -.icon-food-084:before { - content: ">"; -} -.icon-food-071:before { - content: "?"; -} -.icon-food-058:before { - content: "@"; -} -.icon-food-057:before { - content: "["; -} -.icon-food-070:before { - content: "]"; -} -.icon-food-083:before { - content: "^"; -} -.icon-food-096:before { - content: "_"; -} -.icon-food-095:before { - content: "`"; -} -.icon-food-082:before { - content: "{"; -} -.icon-food-069:before { - content: "|"; -} -.icon-food-056:before { - content: "}"; -} -.icon-food-055:before { - content: "~"; -} -.icon-food-068:before { - content: "\\"; -} -.icon-food-081:before { - content: "\e000"; -} -.icon-food-094:before { - content: "\e001"; -} -.icon-food-093:before { - content: "\e002"; -} -.icon-food-080:before { - content: "\e003"; -} -.icon-food-067:before { - content: "\e004"; -} -.icon-food-054:before { - content: "\e005"; -} -.icon-food-053:before { - content: "\e006"; -} -.icon-food-066:before { - content: "\e007"; -} -.icon-food-079:before { - content: "\e008"; -} -.icon-food-092:before { - content: "\e009"; -} -.icon-food-105:before { - content: "\e00a"; -} -.icon-food-118:before { - content: "\e00b"; -} -.icon-food-131:before { - content: "\e00c"; -} -.icon-food-144:before { - content: "\e00d"; -} -.icon-food-157:before { - content: "\e00e"; -} -.icon-food-170:before { - content: "\e00f"; -} -.icon-food-171:before { - content: "\e010"; -} -.icon-food-158:before { - content: "\e011"; -} -.icon-food-145:before { - content: "\e012"; -} -.icon-food-132:before { - content: "\e013"; -} -.icon-food-119:before { - content: "\e014"; -} -.icon-food-106:before { - content: "\e015"; -} -.icon-food-107:before { - content: "\e016"; -} -.icon-food-120:before { - content: "\e017"; -} -.icon-food-133:before { - content: "\e018"; -} -.icon-food-146:before { - content: "\e019"; -} -.icon-food-159:before { - content: "\e01a"; -} -.icon-food-172:before { - content: "\e01b"; -} -.icon-food-173:before { - content: "\e01c"; -} -.icon-food-160:before { - content: "\e01d"; -} -.icon-food-147:before { - content: "\e01e"; -} -.icon-food-134:before { - content: "\e01f"; -} -.icon-food-121:before { - content: "\e020"; -} -.icon-food-108:before { - content: "\e021"; -} -.icon-food-109:before { - content: "\e022"; -} -.icon-food-122:before { - content: "\e023"; -} -.icon-food-135:before { - content: "\e024"; -} -.icon-food-148:before { - content: "\e025"; -} -.icon-food-161:before { - content: "\e026"; -} -.icon-food-174:before { - content: "\e027"; -} -.icon-food-175:before { - content: "\e028"; -} -.icon-food-162:before { - content: "\e029"; -} -.icon-food-149:before { - content: "\e02a"; -} -.icon-food-136:before { - content: "\e02b"; -} -.icon-food-123:before { - content: "\e02c"; -} -.icon-food-110:before { - content: "\e02d"; -} -.icon-food-111:before { - content: "\e02e"; -} -.icon-food-124:before { - content: "\e02f"; -} -.icon-food-137:before { - content: "\e030"; -} -.icon-food-150:before { - content: "\e031"; -} -.icon-food-163:before { - content: "\e032"; -} -.icon-food-176:before { - content: "\e033"; -} -.icon-food-177:before { - content: "\e034"; -} -.icon-food-164:before { - content: "\e035"; -} -.icon-food-151:before { - content: "\e036"; -} -.icon-food-138:before { - content: "\e037"; -} -.icon-food-125:before { - content: "\e038"; -} -.icon-food-112:before { - content: "\e039"; -} -.icon-food-113:before { - content: "\e03a"; -} -.icon-food-126:before { - content: "\e03b"; -} -.icon-food-139:before { - content: "\e03c"; -} -.icon-food-152:before { - content: "\e03d"; -} -.icon-food-165:before { - content: "\e03e"; -} -.icon-food-178:before { - content: "\e03f"; -} -.icon-food-191:before { - content: "\e040"; -} -.icon-food-192:before { - content: "\e041"; -} -.icon-food-166:before { - content: "\e042"; -} -.icon-food-153:before { - content: "\e043"; -} -.icon-food-140:before { - content: "\e044"; -} -.icon-food-127:before { - content: "\e045"; -} -.icon-food-114:before { - content: "\e046"; -} -.icon-food-115:before { - content: "\e047"; -} -.icon-food-128:before { - content: "\e048"; -} -.icon-food-129:before { - content: "\e049"; -} -.icon-food-116:before { - content: "\e04a"; -} -.icon-food-117:before { - content: "\e04b"; -} -.icon-food-130:before { - content: "\e04c"; -} -.icon-food-143:before { - content: "\e04d"; -} -.icon-food-142:before { - content: "\e04e"; -} -.icon-food-141:before { - content: "\e04f"; -} -.icon-food-154:before { - content: "\e050"; -} -.icon-food-155:before { - content: "\e051"; -} -.icon-food-156:before { - content: "\e052"; -} -.icon-food-169:before { - content: "\e053"; -} -.icon-food-168:before { - content: "\e054"; -} -.icon-food-167:before { - content: "\e055"; -} -.icon-food-179:before { - content: "\e056"; -} -.icon-food-180:before { - content: "\e057"; -} -.icon-food-181:before { - content: "\e058"; -} -.icon-food-182:before { - content: "\e059"; -} -.icon-food-195:before { - content: "\e05a"; -} -.icon-food-194:before { - content: "\e05b"; -} -.icon-food-193:before { - content: "\e05c"; -} -.icon-food-190:before { - content: "\e05d"; -} -.icon-food-189:before { - content: "\e05e"; -} -.icon-food-188:before { - content: "\e05f"; -} -.icon-food-187:before { - content: "\e060"; -} -.icon-food-185:before { - content: "\e061"; -} -.icon-food-184:before { - content: "\e062"; -} -.icon-food-183:before { - content: "\e063"; -} -.icon-food-186:before { - content: "\e064"; -} -.icon-food-208:before { - content: "\e065"; -} -.icon-food-221:before { - content: "\e066"; -} -.icon-food-220:before { - content: "\e067"; -} -.icon-food-207:before { - content: "\e068"; -} -.icon-food-206:before { - content: "\e069"; -} -.icon-food-219:before { - content: "\e06a"; -} -.icon-food-205:before { - content: "\e06b"; -} -.icon-food-204:before { - content: "\e06c"; -} -.icon-food-217:before { - content: "\e06d"; -} -.icon-food-216:before { - content: "\e06e"; -} -.icon-food-203:before { - content: "\e06f"; -} -.icon-food-202:before { - content: "\e070"; -} -.icon-food-215:before { - content: "\e071"; -} -.icon-food-214:before { - content: "\e072"; -} -.icon-food-201:before { - content: "\e073"; -} -.icon-food-200:before { - content: "\e074"; -} -.icon-food-213:before { - content: "\e075"; -} -.icon-food-212:before { - content: "\e076"; -} -.icon-food-199:before { - content: "\e077"; -} -.icon-food-198:before { - content: "\e078"; -} -.icon-food-211:before { - content: "\e079"; -} -.icon-food-210:before { - content: "\e07a"; -} -.icon-food-197:before { - content: "\e07b"; -} -.icon-food-196:before { - content: "\e07c"; -} -.icon-food-209:before { - content: "\e07d"; -} -.icon-food-222:before { - content: "\e07e"; -} -.icon-food-235:before { - content: "\e07f"; -} -.icon-food-248:before { - content: "\e080"; -} -.icon-food-249:before { - content: "\e081"; -} -.icon-food-236:before { - content: "\e082"; -} -.icon-food-223:before { - content: "\e083"; -} -.icon-food-224:before { - content: "\e084"; -} -.icon-food-237:before { - content: "\e085"; -} -.icon-food-250:before { - content: "\e086"; -} -.icon-food-251:before { - content: "\e087"; -} -.icon-food-238:before { - content: "\e088"; -} -.icon-food-225:before { - content: "\e089"; -} -.icon-food-226:before { - content: "\e08a"; -} -.icon-food-239:before { - content: "\e08b"; -} -.icon-food-252:before { - content: "\e08c"; -} -.icon-food-253:before { - content: "\e08d"; -} -.icon-food-240:before { - content: "\e08e"; -} -.icon-food-227:before { - content: "\e08f"; -} -.icon-food-228:before { - content: "\e090"; -} -.icon-food-241:before { - content: "\e091"; -} -.icon-food-254:before { - content: "\e092"; -} -.icon-food-255:before { - content: "\e093"; -} -.icon-food-242:before { - content: "\e094"; -} -.icon-food-229:before { - content: "\e095"; -} -.icon-food-230:before { - content: "\e096"; -} -.icon-food-243:before { - content: "\e097"; -} -.icon-food-256:before { - content: "\e098"; -} -.icon-food-257:before { - content: "\e099"; -} -.icon-food-244:before { - content: "\e09a"; -} -.icon-food-231:before { - content: "\e09b"; -} -.icon-food-232:before { - content: "\e09c"; -} -.icon-food-245:before { - content: "\e09d"; -} -.icon-food-258:before { - content: "\e09e"; -} -.icon-food-218:before { - content: "\e09f"; -} -.icon-food-233:before { - content: "\e0a0"; -} -.icon-food-246:before { - content: "\e0a1"; -} -.icon-food-259:before { - content: "\e0a2"; -} -.icon-food-260:before { - content: "\e0a3"; -} -.icon-food-247:before { - content: "\e0a4"; -} -.icon-food-234:before { - content: "\e0a5"; -} -.icon-food-273:before { - content: "\e0a6"; -} -.icon-food-286:before { - content: "\e0a7"; -} -.icon-food-299:before { - content: "\e0a8"; -} -.icon-food-298:before { - content: "\e0a9"; -} -.icon-food-285:before { - content: "\e0aa"; -} -.icon-food-272:before { - content: "\e0ab"; -} -.icon-food-271:before { - content: "\e0ac"; -} -.icon-food-284:before { - content: "\e0ad"; -} -.icon-food-297:before { - content: "\e0ae"; -} -.icon-food-296:before { - content: "\e0af"; -} -.icon-food-283:before { - content: "\e0b0"; -} -.icon-food-270:before { - content: "\e0b1"; -} -.icon-food-269:before { - content: "\e0b2"; -} -.icon-food-282:before { - content: "\e0b3"; -} -.icon-food-295:before { - content: "\e0b4"; -} -.icon-food-294:before { - content: "\e0b5"; -} -.icon-food-281:before { - content: "\e0b6"; -} -.icon-food-268:before { - content: "\e0b7"; -} -.icon-food-267:before { - content: "\e0b8"; -} -.icon-food-280:before { - content: "\e0b9"; -} -.icon-food-293:before { - content: "\e0ba"; -} -.icon-food-292:before { - content: "\e0bb"; -} -.icon-food-279:before { - content: "\e0bc"; -} -.icon-food-266:before { - content: "\e0bd"; -} -.icon-food-265:before { - content: "\e0be"; -} -.icon-food-278:before { - content: "\e0bf"; -} -.icon-food-291:before { - content: "\e0c0"; -} -.icon-food-290:before { - content: "\e0c1"; -} -.icon-food-277:before { - content: "\e0c2"; -} -.icon-food-264:before { - content: "\e0c3"; -} -.icon-food-263:before { - content: "\e0c4"; -} -.icon-food-276:before { - content: "\e0c5"; -} -.icon-food-289:before { - content: "\e0c6"; -} -.icon-food-288:before { - content: "\e0c7"; -} -.icon-food-275:before { - content: "\e0c8"; -} -.icon-food-262:before { - content: "\e0c9"; -} -.icon-food-261:before { - content: "\e0ca"; -} -.icon-food-274:before { - content: "\e0cb"; -} -.icon-food-287:before { - content: "\e0cc"; -} -.icon-food-300:before { - content: "\e0cd"; -} - -/* Furniture */ -@font-face { - font-family: "furniture"; - src:url("furniture/webfont/fonts/furniture.eot"); - src:url("furniture/webfont/fonts/furniture.eot?#iefix") format("embedded-opentype"), - url("furniture/webfont/fonts/furniture.woff") format("woff"), - url("furniture/webfont/fonts/furniture.ttf") format("truetype"), - url("furniture/webfont/fonts/furniture.svg#furniture") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-furniture]:before { - font-family: "furniture" !important; - content: attr(data-icon-furniture); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-furniture"]:before, -[class*=" icon-furniture"]:before { - font-family: "furniture" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-furniture-001:before { - content: "a"; -} -.icon-furniture-014:before { - content: "b"; -} -.icon-furniture-027:before { - content: "c"; -} -.icon-furniture-040:before { - content: "d"; -} -.icon-furniture-041:before { - content: "e"; -} -.icon-furniture-028:before { - content: "f"; -} -.icon-furniture-015:before { - content: "g"; -} -.icon-furniture-002:before { - content: "h"; -} -.icon-furniture-003:before { - content: "i"; -} -.icon-furniture-016:before { - content: "j"; -} -.icon-furniture-029:before { - content: "k"; -} -.icon-furniture-042:before { - content: "l"; -} -.icon-furniture-043:before { - content: "m"; -} -.icon-furniture-030:before { - content: "n"; -} -.icon-furniture-017:before { - content: "o"; -} -.icon-furniture-004:before { - content: "p"; -} -.icon-furniture-005:before { - content: "q"; -} -.icon-furniture-018:before { - content: "r"; -} -.icon-furniture-031:before { - content: "s"; -} -.icon-furniture-044:before { - content: "t"; -} -.icon-furniture-045:before { - content: "u"; -} -.icon-furniture-032:before { - content: "v"; -} -.icon-furniture-019:before { - content: "w"; -} -.icon-furniture-006:before { - content: "x"; -} -.icon-furniture-007:before { - content: "y"; -} -.icon-furniture-020:before { - content: "z"; -} -.icon-furniture-033:before { - content: "A"; -} -.icon-furniture-046:before { - content: "B"; -} -.icon-furniture-047:before { - content: "C"; -} -.icon-furniture-034:before { - content: "D"; -} -.icon-furniture-021:before { - content: "E"; -} -.icon-furniture-008:before { - content: "F"; -} -.icon-furniture-009:before { - content: "G"; -} -.icon-furniture-022:before { - content: "H"; -} -.icon-furniture-035:before { - content: "I"; -} -.icon-furniture-048:before { - content: "J"; -} -.icon-furniture-049:before { - content: "K"; -} -.icon-furniture-036:before { - content: "L"; -} -.icon-furniture-023:before { - content: "M"; -} -.icon-furniture-010:before { - content: "N"; -} -.icon-furniture-011:before { - content: "O"; -} -.icon-furniture-024:before { - content: "P"; -} -.icon-furniture-037:before { - content: "Q"; -} -.icon-furniture-050:before { - content: "R"; -} -.icon-furniture-051:before { - content: "S"; -} -.icon-furniture-038:before { - content: "T"; -} -.icon-furniture-025:before { - content: "U"; -} -.icon-furniture-012:before { - content: "V"; -} -.icon-furniture-013:before { - content: "W"; -} -.icon-furniture-026:before { - content: "X"; -} -.icon-furniture-039:before { - content: "Y"; -} -.icon-furniture-052:before { - content: "Z"; -} -.icon-furniture-065:before { - content: "0"; -} -.icon-furniture-064:before { - content: "1"; -} -.icon-furniture-063:before { - content: "2"; -} -.icon-furniture-062:before { - content: "3"; -} -.icon-furniture-061:before { - content: "4"; -} -.icon-furniture-060:before { - content: "5"; -} -.icon-furniture-059:before { - content: "6"; -} -.icon-furniture-058:before { - content: "7"; -} -.icon-furniture-057:before { - content: "8"; -} -.icon-furniture-056:before { - content: "9"; -} -.icon-furniture-055:before { - content: "!"; -} -.icon-furniture-054:before { - content: "\""; -} -.icon-furniture-053:before { - content: "#"; -} -.icon-furniture-066:before { - content: "$"; -} -.icon-furniture-079:before { - content: "%"; -} -.icon-furniture-092:before { - content: "&"; -} -.icon-furniture-093:before { - content: "'"; -} -.icon-furniture-080:before { - content: "("; -} -.icon-furniture-067:before { - content: ")"; -} -.icon-furniture-068:before { - content: "*"; -} -.icon-furniture-081:before { - content: "+"; -} -.icon-furniture-094:before { - content: ","; -} -.icon-furniture-095:before { - content: "-"; -} -.icon-furniture-082:before { - content: "."; -} -.icon-furniture-069:before { - content: "/"; -} -.icon-furniture-070:before { - content: ":"; -} -.icon-furniture-083:before { - content: ";"; -} -.icon-furniture-096:before { - content: "<"; -} -.icon-furniture-097:before { - content: "="; -} -.icon-furniture-084:before { - content: ">"; -} -.icon-furniture-071:before { - content: "?"; -} -.icon-furniture-073:before { - content: "@"; -} -.icon-furniture-072:before { - content: "["; -} -.icon-furniture-085:before { - content: "]"; -} -.icon-furniture-098:before { - content: "^"; -} -.icon-furniture-099:before { - content: "_"; -} -.icon-furniture-086:before { - content: "`"; -} -.icon-furniture-087:before { - content: "{"; -} -.icon-furniture-100:before { - content: "|"; -} -.icon-furniture-075:before { - content: "}"; -} -.icon-furniture-074:before { - content: "~"; -} -.icon-furniture-076:before { - content: "\\"; -} -.icon-furniture-089:before { - content: "\e000"; -} -.icon-furniture-088:before { - content: "\e001"; -} -.icon-furniture-090:before { - content: "\e002"; -} -.icon-furniture-077:before { - content: "\e003"; -} -.icon-furniture-078:before { - content: "\e004"; -} -.icon-furniture-091:before { - content: "\e005"; -} - - -@charset "UTF-8"; - -@font-face { - font-family: "hotel-restaurant"; - src:url("hotel-restaurant/webfont/fonts/hotel-restaurant.eot"); - src:url("hotel-restaurant/webfont/fonts/hotel-restaurant.eot?#iefix") format("embedded-opentype"), - url("hotel-restaurant/webfont/fonts/hotel-restaurant.woff") format("woff"), - url("hotel-restaurant/webfont/fonts/hotel-restaurant.ttf") format("truetype"), - url("hotel-restaurant/webfont/fonts/hotel-restaurant.svg#hotel-restaurant") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-hotel-restaurant]:before { - font-family: "hotel-restaurant" !important; - content: attr(data-icon-hotel-restaurant); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-hotel-restaurant"]:before, -[class*=" icon-hotel-restaurant"]:before { - font-family: "hotel-restaurant" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-hotel-restaurant-001:before { - content: "a"; -} -.icon-hotel-restaurant-002:before { - content: "b"; -} -.icon-hotel-restaurant-003:before { - content: "c"; -} -.icon-hotel-restaurant-004:before { - content: "d"; -} -.icon-hotel-restaurant-005:before { - content: "e"; -} -.icon-hotel-restaurant-006:before { - content: "f"; -} -.icon-hotel-restaurant-007:before { - content: "g"; -} -.icon-hotel-restaurant-008:before { - content: "h"; -} -.icon-hotel-restaurant-009:before { - content: "i"; -} -.icon-hotel-restaurant-010:before { - content: "j"; -} -.icon-hotel-restaurant-011:before { - content: "k"; -} -.icon-hotel-restaurant-065:before { - content: "l"; -} -.icon-hotel-restaurant-012:before { - content: "m"; -} -.icon-hotel-restaurant-013:before { - content: "n"; -} -.icon-hotel-restaurant-026:before { - content: "o"; -} -.icon-hotel-restaurant-025:before { - content: "p"; -} -.icon-hotel-restaurant-024:before { - content: "q"; -} -.icon-hotel-restaurant-023:before { - content: "r"; -} -.icon-hotel-restaurant-022:before { - content: "s"; -} -.icon-hotel-restaurant-021:before { - content: "t"; -} -.icon-hotel-restaurant-020:before { - content: "u"; -} -.icon-hotel-restaurant-019:before { - content: "v"; -} -.icon-hotel-restaurant-018:before { - content: "w"; -} -.icon-hotel-restaurant-017:before { - content: "x"; -} -.icon-hotel-restaurant-016:before { - content: "y"; -} -.icon-hotel-restaurant-015:before { - content: "z"; -} -.icon-hotel-restaurant-014:before { - content: "A"; -} -.icon-hotel-restaurant-027:before { - content: "B"; -} -.icon-hotel-restaurant-028:before { - content: "C"; -} -.icon-hotel-restaurant-029:before { - content: "D"; -} -.icon-hotel-restaurant-030:before { - content: "E"; -} -.icon-hotel-restaurant-031:before { - content: "F"; -} -.icon-hotel-restaurant-032:before { - content: "G"; -} -.icon-hotel-restaurant-033:before { - content: "H"; -} -.icon-hotel-restaurant-034:before { - content: "I"; -} -.icon-hotel-restaurant-035:before { - content: "J"; -} -.icon-hotel-restaurant-036:before { - content: "K"; -} -.icon-hotel-restaurant-038:before { - content: "L"; -} -.icon-hotel-restaurant-039:before { - content: "M"; -} -.icon-hotel-restaurant-037:before { - content: "N"; -} -.icon-hotel-restaurant-052:before { - content: "O"; -} -.icon-hotel-restaurant-051:before { - content: "P"; -} -.icon-hotel-restaurant-050:before { - content: "Q"; -} -.icon-hotel-restaurant-049:before { - content: "R"; -} -.icon-hotel-restaurant-048:before { - content: "S"; -} -.icon-hotel-restaurant-047:before { - content: "T"; -} -.icon-hotel-restaurant-046:before { - content: "U"; -} -.icon-hotel-restaurant-045:before { - content: "V"; -} -.icon-hotel-restaurant-044:before { - content: "W"; -} -.icon-hotel-restaurant-042:before { - content: "X"; -} -.icon-hotel-restaurant-041:before { - content: "Y"; -} -.icon-hotel-restaurant-040:before { - content: "Z"; -} -.icon-hotel-restaurant-043:before { - content: "0"; -} -.icon-hotel-restaurant-053:before { - content: "1"; -} -.icon-hotel-restaurant-054:before { - content: "2"; -} -.icon-hotel-restaurant-055:before { - content: "3"; -} -.icon-hotel-restaurant-056:before { - content: "4"; -} -.icon-hotel-restaurant-057:before { - content: "5"; -} -.icon-hotel-restaurant-058:before { - content: "6"; -} -.icon-hotel-restaurant-059:before { - content: "7"; -} -.icon-hotel-restaurant-060:before { - content: "8"; -} -.icon-hotel-restaurant-061:before { - content: "9"; -} -.icon-hotel-restaurant-062:before { - content: "!"; -} -.icon-hotel-restaurant-063:before { - content: "\""; -} -.icon-hotel-restaurant-064:before { - content: "#"; -} -.icon-hotel-restaurant-066:before { - content: "$"; -} -.icon-hotel-restaurant-079:before { - content: "%"; -} -.icon-hotel-restaurant-092:before { - content: "&"; -} -.icon-hotel-restaurant-105:before { - content: "'"; -} -.icon-hotel-restaurant-118:before { - content: "("; -} -.icon-hotel-restaurant-131:before { - content: ")"; -} -.icon-hotel-restaurant-144:before { - content: "*"; -} -.icon-hotel-restaurant-157:before { - content: "+"; -} -.icon-hotel-restaurant-067:before { - content: ","; -} -.icon-hotel-restaurant-080:before { - content: "-"; -} -.icon-hotel-restaurant-068:before { - content: "."; -} -.icon-hotel-restaurant-081:before { - content: "/"; -} -.icon-hotel-restaurant-093:before { - content: ":"; -} -.icon-hotel-restaurant-094:before { - content: ";"; -} -.icon-hotel-restaurant-095:before { - content: "<"; -} -.icon-hotel-restaurant-096:before { - content: "="; -} -.icon-hotel-restaurant-097:before { - content: ">"; -} -.icon-hotel-restaurant-098:before { - content: "?"; -} -.icon-hotel-restaurant-099:before { - content: "@"; -} -.icon-hotel-restaurant-100:before { - content: "["; -} -.icon-hotel-restaurant-101:before { - content: "]"; -} -.icon-hotel-restaurant-102:before { - content: "^"; -} -.icon-hotel-restaurant-103:before { - content: "_"; -} -.icon-hotel-restaurant-104:before { - content: "`"; -} -.icon-hotel-restaurant-091:before { - content: "{"; -} -.icon-hotel-restaurant-090:before { - content: "|"; -} -.icon-hotel-restaurant-089:before { - content: "}"; -} -.icon-hotel-restaurant-088:before { - content: "~"; -} -.icon-hotel-restaurant-087:before { - content: "\\"; -} -.icon-hotel-restaurant-086:before { - content: "\e000"; -} -.icon-hotel-restaurant-085:before { - content: "\e001"; -} -.icon-hotel-restaurant-084:before { - content: "\e002"; -} -.icon-hotel-restaurant-083:before { - content: "\e003"; -} -.icon-hotel-restaurant-082:before { - content: "\e004"; -} -.icon-hotel-restaurant-069:before { - content: "\e005"; -} -.icon-hotel-restaurant-070:before { - content: "\e006"; -} -.icon-hotel-restaurant-071:before { - content: "\e007"; -} -.icon-hotel-restaurant-072:before { - content: "\e008"; -} -.icon-hotel-restaurant-073:before { - content: "\e009"; -} -.icon-hotel-restaurant-074:before { - content: "\e00a"; -} -.icon-hotel-restaurant-075:before { - content: "\e00b"; -} -.icon-hotel-restaurant-076:before { - content: "\e00c"; -} -.icon-hotel-restaurant-077:before { - content: "\e00d"; -} -.icon-hotel-restaurant-078:before { - content: "\e00e"; -} -.icon-hotel-restaurant-117:before { - content: "\e00f"; -} -.icon-hotel-restaurant-116:before { - content: "\e010"; -} -.icon-hotel-restaurant-115:before { - content: "\e011"; -} -.icon-hotel-restaurant-114:before { - content: "\e012"; -} -.icon-hotel-restaurant-113:before { - content: "\e013"; -} -.icon-hotel-restaurant-112:before { - content: "\e014"; -} -.icon-hotel-restaurant-111:before { - content: "\e015"; -} -.icon-hotel-restaurant-110:before { - content: "\e016"; -} -.icon-hotel-restaurant-109:before { - content: "\e017"; -} -.icon-hotel-restaurant-108:before { - content: "\e018"; -} -.icon-hotel-restaurant-107:before { - content: "\e019"; -} -.icon-hotel-restaurant-106:before { - content: "\e01a"; -} -.icon-hotel-restaurant-119:before { - content: "\e01b"; -} -.icon-hotel-restaurant-120:before { - content: "\e01c"; -} -.icon-hotel-restaurant-121:before { - content: "\e01d"; -} -.icon-hotel-restaurant-122:before { - content: "\e01e"; -} -.icon-hotel-restaurant-123:before { - content: "\e01f"; -} -.icon-hotel-restaurant-124:before { - content: "\e020"; -} -.icon-hotel-restaurant-125:before { - content: "\e021"; -} -.icon-hotel-restaurant-126:before { - content: "\e022"; -} -.icon-hotel-restaurant-127:before { - content: "\e023"; -} -.icon-hotel-restaurant-128:before { - content: "\e024"; -} -.icon-hotel-restaurant-129:before { - content: "\e025"; -} -.icon-hotel-restaurant-130:before { - content: "\e026"; -} -.icon-hotel-restaurant-143:before { - content: "\e027"; -} -.icon-hotel-restaurant-142:before { - content: "\e028"; -} -.icon-hotel-restaurant-141:before { - content: "\e029"; -} -.icon-hotel-restaurant-140:before { - content: "\e02a"; -} -.icon-hotel-restaurant-139:before { - content: "\e02b"; -} -.icon-hotel-restaurant-138:before { - content: "\e02c"; -} -.icon-hotel-restaurant-137:before { - content: "\e02d"; -} -.icon-hotel-restaurant-136:before { - content: "\e02e"; -} -.icon-hotel-restaurant-135:before { - content: "\e02f"; -} -.icon-hotel-restaurant-134:before { - content: "\e030"; -} -.icon-hotel-restaurant-133:before { - content: "\e031"; -} -.icon-hotel-restaurant-132:before { - content: "\e032"; -} -.icon-hotel-restaurant-145:before { - content: "\e033"; -} -.icon-hotel-restaurant-146:before { - content: "\e034"; -} -.icon-hotel-restaurant-147:before { - content: "\e035"; -} -.icon-hotel-restaurant-148:before { - content: "\e036"; -} -.icon-hotel-restaurant-149:before { - content: "\e037"; -} -.icon-hotel-restaurant-150:before { - content: "\e038"; -} -.icon-hotel-restaurant-151:before { - content: "\e039"; -} -.icon-hotel-restaurant-152:before { - content: "\e03a"; -} -.icon-hotel-restaurant-153:before { - content: "\e03b"; -} -.icon-hotel-restaurant-154:before { - content: "\e03c"; -} -.icon-hotel-restaurant-155:before { - content: "\e03d"; -} -.icon-hotel-restaurant-156:before { - content: "\e03e"; -} -.icon-hotel-restaurant-169:before { - content: "\e03f"; -} -.icon-hotel-restaurant-168:before { - content: "\e040"; -} -.icon-hotel-restaurant-167:before { - content: "\e041"; -} -.icon-hotel-restaurant-166:before { - content: "\e042"; -} -.icon-hotel-restaurant-165:before { - content: "\e043"; -} -.icon-hotel-restaurant-164:before { - content: "\e044"; -} -.icon-hotel-restaurant-163:before { - content: "\e045"; -} -.icon-hotel-restaurant-162:before { - content: "\e046"; -} -.icon-hotel-restaurant-161:before { - content: "\e047"; -} -.icon-hotel-restaurant-160:before { - content: "\e048"; -} -.icon-hotel-restaurant-159:before { - content: "\e049"; -} -.icon-hotel-restaurant-158:before { - content: "\e04a"; -} -.icon-hotel-restaurant-170:before { - content: "\e04b"; -} -.icon-hotel-restaurant-171:before { - content: "\e04c"; -} -.icon-hotel-restaurant-172:before { - content: "\e04d"; -} -.icon-hotel-restaurant-173:before { - content: "\e04e"; -} -.icon-hotel-restaurant-174:before { - content: "\e04f"; -} -.icon-hotel-restaurant-175:before { - content: "\e050"; -} -.icon-hotel-restaurant-176:before { - content: "\e051"; -} -.icon-hotel-restaurant-177:before { - content: "\e052"; -} -.icon-hotel-restaurant-178:before { - content: "\e053"; -} -.icon-hotel-restaurant-179:before { - content: "\e054"; -} -.icon-hotel-restaurant-180:before { - content: "\e055"; -} -.icon-hotel-restaurant-181:before { - content: "\e056"; -} -.icon-hotel-restaurant-182:before { - content: "\e057"; -} -.icon-hotel-restaurant-195:before { - content: "\e058"; -} -.icon-hotel-restaurant-194:before { - content: "\e059"; -} -.icon-hotel-restaurant-193:before { - content: "\e05a"; -} -.icon-hotel-restaurant-192:before { - content: "\e05b"; -} -.icon-hotel-restaurant-191:before { - content: "\e05c"; -} -.icon-hotel-restaurant-190:before { - content: "\e05d"; -} -.icon-hotel-restaurant-189:before { - content: "\e05e"; -} -.icon-hotel-restaurant-188:before { - content: "\e05f"; -} -.icon-hotel-restaurant-187:before { - content: "\e060"; -} -.icon-hotel-restaurant-186:before { - content: "\e061"; -} -.icon-hotel-restaurant-185:before { - content: "\e062"; -} -.icon-hotel-restaurant-184:before { - content: "\e063"; -} -.icon-hotel-restaurant-183:before { - content: "\e064"; -} -.icon-hotel-restaurant-196:before { - content: "\e065"; -} -.icon-hotel-restaurant-197:before { - content: "\e066"; -} -.icon-hotel-restaurant-198:before { - content: "\e067"; -} -.icon-hotel-restaurant-199:before { - content: "\e068"; -} -.icon-hotel-restaurant-200:before { - content: "\e069"; -} -.icon-hotel-restaurant-201:before { - content: "\e06a"; -} -.icon-hotel-restaurant-202:before { - content: "\e06b"; -} -.icon-hotel-restaurant-203:before { - content: "\e06c"; -} -.icon-hotel-restaurant-204:before { - content: "\e06d"; -} -.icon-hotel-restaurant-205:before { - content: "\e06e"; -} -.icon-hotel-restaurant-206:before { - content: "\e06f"; -} -.icon-hotel-restaurant-207:before { - content: "\e070"; -} -.icon-hotel-restaurant-208:before { - content: "\e071"; -} -.icon-hotel-restaurant-221:before { - content: "\e072"; -} -.icon-hotel-restaurant-220:before { - content: "\e073"; -} -.icon-hotel-restaurant-219:before { - content: "\e074"; -} -.icon-hotel-restaurant-218:before { - content: "\e075"; -} -.icon-hotel-restaurant-217:before { - content: "\e076"; -} -.icon-hotel-restaurant-216:before { - content: "\e077"; -} -.icon-hotel-restaurant-215:before { - content: "\e078"; -} -.icon-hotel-restaurant-214:before { - content: "\e079"; -} -.icon-hotel-restaurant-213:before { - content: "\e07a"; -} -.icon-hotel-restaurant-212:before { - content: "\e07b"; -} -.icon-hotel-restaurant-211:before { - content: "\e07c"; -} -.icon-hotel-restaurant-210:before { - content: "\e07d"; -} -.icon-hotel-restaurant-209:before { - content: "\e07e"; -} -.icon-hotel-restaurant-222:before { - content: "\e07f"; -} -.icon-hotel-restaurant-223:before { - content: "\e080"; -} -.icon-hotel-restaurant-224:before { - content: "\e081"; -} -.icon-hotel-restaurant-225:before { - content: "\e082"; -} -.icon-hotel-restaurant-226:before { - content: "\e083"; -} -.icon-hotel-restaurant-227:before { - content: "\e084"; -} -.icon-hotel-restaurant-228:before { - content: "\e085"; -} -.icon-hotel-restaurant-229:before { - content: "\e086"; -} -.icon-hotel-restaurant-230:before { - content: "\e087"; -} -.icon-hotel-restaurant-231:before { - content: "\e088"; -} -.icon-hotel-restaurant-232:before { - content: "\e089"; -} -.icon-hotel-restaurant-233:before { - content: "\e08a"; -} -.icon-hotel-restaurant-234:before { - content: "\e08b"; -} -.icon-hotel-restaurant-247:before { - content: "\e08c"; -} -.icon-hotel-restaurant-246:before { - content: "\e08d"; -} -.icon-hotel-restaurant-245:before { - content: "\e08e"; -} -.icon-hotel-restaurant-244:before { - content: "\e08f"; -} -.icon-hotel-restaurant-243:before { - content: "\e090"; -} -.icon-hotel-restaurant-242:before { - content: "\e091"; -} -.icon-hotel-restaurant-241:before { - content: "\e092"; -} -.icon-hotel-restaurant-240:before { - content: "\e093"; -} -.icon-hotel-restaurant-239:before { - content: "\e094"; -} -.icon-hotel-restaurant-238:before { - content: "\e095"; -} -.icon-hotel-restaurant-237:before { - content: "\e096"; -} -.icon-hotel-restaurant-236:before { - content: "\e097"; -} -.icon-hotel-restaurant-235:before { - content: "\e098"; -} -.icon-hotel-restaurant-248:before { - content: "\e099"; -} -.icon-hotel-restaurant-249:before { - content: "\e09a"; -} -.icon-hotel-restaurant-250:before { - content: "\e09b"; -} - -@charset "UTF-8"; - -@font-face { - font-family: "media"; - src:url("media/webfont/fonts/media.eot"); - src:url("media/webfont/fonts/media.eot?#iefix") format("embedded-opentype"), - url("media/webfont/fonts/media.woff") format("woff"), - url("media/webfont/fonts/media.ttf") format("truetype"), - url("media/webfont/fonts/media.svg#media") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-media]:before { - font-family: "media" !important; - content: attr(data-icon-media); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-media"]:before, -[class*=" icon-media"]:before { - font-family: "media" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-media-001:before { - content: "a"; -} -.icon-media-014:before { - content: "b"; -} -.icon-media-027:before { - content: "c"; -} -.icon-media-040:before { - content: "d"; -} -.icon-media-041:before { - content: "e"; -} -.icon-media-028:before { - content: "f"; -} -.icon-media-015:before { - content: "g"; -} -.icon-media-002:before { - content: "h"; -} -.icon-media-003:before { - content: "i"; -} -.icon-media-016:before { - content: "j"; -} -.icon-media-029:before { - content: "k"; -} -.icon-media-042:before { - content: "l"; -} -.icon-media-043:before { - content: "m"; -} -.icon-media-030:before { - content: "n"; -} -.icon-media-017:before { - content: "o"; -} -.icon-media-004:before { - content: "p"; -} -.icon-media-005:before { - content: "q"; -} -.icon-media-018:before { - content: "r"; -} -.icon-media-031:before { - content: "s"; -} -.icon-media-044:before { - content: "t"; -} -.icon-media-045:before { - content: "u"; -} -.icon-media-032:before { - content: "v"; -} -.icon-media-019:before { - content: "w"; -} -.icon-media-006:before { - content: "x"; -} -.icon-media-007:before { - content: "y"; -} -.icon-media-020:before { - content: "z"; -} -.icon-media-033:before { - content: "A"; -} -.icon-media-046:before { - content: "B"; -} -.icon-media-047:before { - content: "C"; -} -.icon-media-034:before { - content: "D"; -} -.icon-media-021:before { - content: "E"; -} -.icon-media-008:before { - content: "F"; -} -.icon-media-009:before { - content: "G"; -} -.icon-media-022:before { - content: "H"; -} -.icon-media-035:before { - content: "I"; -} -.icon-media-048:before { - content: "J"; -} -.icon-media-049:before { - content: "K"; -} -.icon-media-036:before { - content: "L"; -} -.icon-media-023:before { - content: "M"; -} -.icon-media-010:before { - content: "N"; -} -.icon-media-011:before { - content: "O"; -} -.icon-media-024:before { - content: "P"; -} -.icon-media-037:before { - content: "Q"; -} -.icon-media-050:before { - content: "R"; -} -.icon-media-063:before { - content: "S"; -} -.icon-media-064:before { - content: "T"; -} -.icon-media-051:before { - content: "U"; -} -.icon-media-038:before { - content: "V"; -} -.icon-media-025:before { - content: "W"; -} -.icon-media-012:before { - content: "X"; -} -.icon-media-013:before { - content: "Y"; -} -.icon-media-026:before { - content: "Z"; -} -.icon-media-039:before { - content: "0"; -} -.icon-media-052:before { - content: "1"; -} -.icon-media-065:before { - content: "2"; -} -.icon-media-062:before { - content: "3"; -} -.icon-media-061:before { - content: "4"; -} -.icon-media-060:before { - content: "5"; -} -.icon-media-059:before { - content: "6"; -} -.icon-media-058:before { - content: "7"; -} -.icon-media-057:before { - content: "8"; -} -.icon-media-056:before { - content: "9"; -} -.icon-media-055:before { - content: "!"; -} -.icon-media-054:before { - content: "\""; -} -.icon-media-053:before { - content: "#"; -} -.icon-media-066:before { - content: "$"; -} -.icon-media-079:before { - content: "%"; -} -.icon-media-092:before { - content: "&"; -} -.icon-media-105:before { - content: "'"; -} -.icon-media-118:before { - content: "("; -} -.icon-media-119:before { - content: ")"; -} -.icon-media-106:before { - content: "*"; -} -.icon-media-093:before { - content: "+"; -} -.icon-media-080:before { - content: ","; -} -.icon-media-067:before { - content: "-"; -} -.icon-media-068:before { - content: "."; -} -.icon-media-081:before { - content: "/"; -} -.icon-media-094:before { - content: ":"; -} -.icon-media-107:before { - content: ";"; -} -.icon-media-120:before { - content: "<"; -} -.icon-media-121:before { - content: "="; -} -.icon-media-108:before { - content: ">"; -} -.icon-media-095:before { - content: "?"; -} -.icon-media-082:before { - content: "@"; -} -.icon-media-069:before { - content: "["; -} -.icon-media-070:before { - content: "]"; -} -.icon-media-083:before { - content: "^"; -} -.icon-media-096:before { - content: "_"; -} -.icon-media-109:before { - content: "`"; -} -.icon-media-122:before { - content: "{"; -} -.icon-media-123:before { - content: "|"; -} -.icon-media-110:before { - content: "}"; -} -.icon-media-097:before { - content: "~"; -} -.icon-media-084:before { - content: "\\"; -} -.icon-media-071:before { - content: "\e000"; -} -.icon-media-072:before { - content: "\e001"; -} -.icon-media-085:before { - content: "\e002"; -} -.icon-media-098:before { - content: "\e003"; -} -.icon-media-111:before { - content: "\e004"; -} -.icon-media-124:before { - content: "\e005"; -} -.icon-media-125:before { - content: "\e006"; -} -.icon-media-112:before { - content: "\e007"; -} -.icon-media-099:before { - content: "\e008"; -} -.icon-media-086:before { - content: "\e009"; -} -.icon-media-073:before { - content: "\e00a"; -} -.icon-media-074:before { - content: "\e00b"; -} -.icon-media-087:before { - content: "\e00c"; -} -.icon-media-100:before { - content: "\e00d"; -} -.icon-media-113:before { - content: "\e00e"; -} -.icon-media-126:before { - content: "\e00f"; -} -.icon-media-127:before { - content: "\e010"; -} -.icon-media-114:before { - content: "\e011"; -} -.icon-media-101:before { - content: "\e012"; -} -.icon-media-088:before { - content: "\e013"; -} -.icon-media-075:before { - content: "\e014"; -} -.icon-media-076:before { - content: "\e015"; -} -.icon-media-089:before { - content: "\e016"; -} -.icon-media-090:before { - content: "\e017"; -} -.icon-media-077:before { - content: "\e018"; -} -.icon-media-078:before { - content: "\e019"; -} -.icon-media-091:before { - content: "\e01a"; -} -.icon-media-104:before { - content: "\e01b"; -} -.icon-media-103:before { - content: "\e01c"; -} -.icon-media-102:before { - content: "\e01d"; -} -.icon-media-115:before { - content: "\e01e"; -} -.icon-media-116:before { - content: "\e01f"; -} -.icon-media-117:before { - content: "\e020"; -} -.icon-media-130:before { - content: "\e021"; -} -.icon-media-129:before { - content: "\e022"; -} -.icon-media-128:before { - content: "\e023"; -} - -/* medical-and-health */ -@font-face { - font-family: "medical-and-health"; - src:url("medical/webfont/fonts/medical-and-health.eot"); - src:url("medical/webfont/fonts/medical-and-health.eot?#iefix") format("embedded-opentype"), - url("medical/webfont/fonts/medical-and-health.woff") format("woff"), - url("medical/webfont/fonts/medical-and-health.ttf") format("truetype"), - url("medical/webfont/fonts/medical-and-health.svg#medical-and-health") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-medical]:before { - font-family: "medical-and-health" !important; - content: attr(data-icon-medical); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-medical"]:before, -[class*=" icon-medical"]:before { - font-family: "medical-and-health" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-medical-001:before { - content: "a"; -} -.icon-medical-002:before { - content: "b"; -} -.icon-medical-015:before { - content: "c"; -} -.icon-medical-014:before { - content: "d"; -} -.icon-medical-027:before { - content: "e"; -} -.icon-medical-028:before { - content: "f"; -} -.icon-medical-029:before { - content: "g"; -} -.icon-medical-016:before { - content: "h"; -} -.icon-medical-003:before { - content: "i"; -} -.icon-medical-004:before { - content: "j"; -} -.icon-medical-017:before { - content: "k"; -} -.icon-medical-030:before { - content: "l"; -} -.icon-medical-031:before { - content: "m"; -} -.icon-medical-018:before { - content: "n"; -} -.icon-medical-005:before { - content: "o"; -} -.icon-medical-006:before { - content: "p"; -} -.icon-medical-019:before { - content: "q"; -} -.icon-medical-032:before { - content: "r"; -} -.icon-medical-033:before { - content: "s"; -} -.icon-medical-020:before { - content: "t"; -} -.icon-medical-007:before { - content: "u"; -} -.icon-medical-008:before { - content: "v"; -} -.icon-medical-021:before { - content: "w"; -} -.icon-medical-034:before { - content: "x"; -} -.icon-medical-035:before { - content: "y"; -} -.icon-medical-022:before { - content: "z"; -} -.icon-medical-009:before { - content: "A"; -} -.icon-medical-010:before { - content: "B"; -} -.icon-medical-023:before { - content: "C"; -} -.icon-medical-036:before { - content: "D"; -} -.icon-medical-037:before { - content: "E"; -} -.icon-medical-024:before { - content: "F"; -} -.icon-medical-011:before { - content: "G"; -} -.icon-medical-012:before { - content: "H"; -} -.icon-medical-025:before { - content: "I"; -} -.icon-medical-038:before { - content: "J"; -} -.icon-medical-039:before { - content: "K"; -} -.icon-medical-026:before { - content: "L"; -} -.icon-medical-013:before { - content: "M"; -} -.icon-medical-040:before { - content: "N"; -} -.icon-medical-053:before { - content: "O"; -} -.icon-medical-066:before { - content: "P"; -} -.icon-medical-079:before { - content: "Q"; -} -.icon-medical-092:before { - content: "R"; -} -.icon-medical-093:before { - content: "S"; -} -.icon-medical-080:before { - content: "T"; -} -.icon-medical-067:before { - content: "U"; -} -.icon-medical-054:before { - content: "V"; -} -.icon-medical-041:before { - content: "W"; -} -.icon-medical-042:before { - content: "X"; -} -.icon-medical-055:before { - content: "Y"; -} -.icon-medical-068:before { - content: "Z"; -} -.icon-medical-081:before { - content: "0"; -} -.icon-medical-094:before { - content: "1"; -} -.icon-medical-096:before { - content: "2"; -} -.icon-medical-082:before { - content: "3"; -} -.icon-medical-095:before { - content: "4"; -} -.icon-medical-069:before { - content: "5"; -} -.icon-medical-056:before { - content: "6"; -} -.icon-medical-043:before { - content: "7"; -} -.icon-medical-044:before { - content: "8"; -} -.icon-medical-057:before { - content: "9"; -} -.icon-medical-070:before { - content: "!"; -} -.icon-medical-083:before { - content: "\""; -} -.icon-medical-084:before { - content: "#"; -} -.icon-medical-071:before { - content: "$"; -} -.icon-medical-058:before { - content: "%"; -} -.icon-medical-045:before { - content: "&"; -} -.icon-medical-046:before { - content: "'"; -} -.icon-medical-059:before { - content: "("; -} -.icon-medical-098:before { - content: ")"; -} -.icon-medical-097:before { - content: "*"; -} -.icon-medical-085:before { - content: "+"; -} -.icon-medical-072:before { - content: ","; -} -.icon-medical-073:before { - content: "-"; -} -.icon-medical-086:before { - content: "."; -} -.icon-medical-099:before { - content: "/"; -} -.icon-medical-100:before { - content: ":"; -} -.icon-medical-087:before { - content: ";"; -} -.icon-medical-074:before { - content: "<"; -} -.icon-medical-060:before { - content: "="; -} -.icon-medical-061:before { - content: ">"; -} -.icon-medical-047:before { - content: "?"; -} -.icon-medical-048:before { - content: "@"; -} -.icon-medical-049:before { - content: "["; -} -.icon-medical-062:before { - content: "]"; -} -.icon-medical-075:before { - content: "^"; -} -.icon-medical-088:before { - content: "_"; -} -.icon-medical-089:before { - content: "`"; -} -.icon-medical-076:before { - content: "{"; -} -.icon-medical-063:before { - content: "|"; -} -.icon-medical-050:before { - content: "}"; -} -.icon-medical-051:before { - content: "~"; -} -.icon-medical-064:before { - content: "\\"; -} -.icon-medical-077:before { - content: "\e000"; -} -.icon-medical-090:before { - content: "\e001"; -} -.icon-medical-091:before { - content: "\e002"; -} -.icon-medical-078:before { - content: "\e003"; -} -.icon-medical-065:before { - content: "\e004"; -} -.icon-medical-052:before { - content: "\e005"; -} - -/* Music */ -@font-face { - font-family: "music"; - src:url("music/webfont/fonts/music.eot"); - src:url("music/webfont/fonts/music.eot?#iefix") format("embedded-opentype"), - url("music/webfont/fonts/music.woff") format("woff"), - url("music/webfont/fonts/music.ttf") format("truetype"), - url("music/webfont/fonts/music.svg#music") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-music]:before { - font-family: "music" !important; - content: attr(data-icon-music); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-music"]:before, -[class*=" icon-music"]:before { - font-family: "music" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-music-001:before { - content: "a"; -} -.icon-music-014:before { - content: "b"; -} -.icon-music-027:before { - content: "c"; -} -.icon-music-040:before { - content: "d"; -} -.icon-music-053:before { - content: "e"; -} -.icon-music-054:before { - content: "f"; -} -.icon-music-041:before { - content: "g"; -} -.icon-music-028:before { - content: "h"; -} -.icon-music-015:before { - content: "i"; -} -.icon-music-002:before { - content: "j"; -} -.icon-music-003:before { - content: "k"; -} -.icon-music-016:before { - content: "l"; -} -.icon-music-029:before { - content: "m"; -} -.icon-music-042:before { - content: "n"; -} -.icon-music-055:before { - content: "o"; -} -.icon-music-056:before { - content: "p"; -} -.icon-music-043:before { - content: "q"; -} -.icon-music-030:before { - content: "r"; -} -.icon-music-017:before { - content: "s"; -} -.icon-music-004:before { - content: "t"; -} -.icon-music-005:before { - content: "u"; -} -.icon-music-018:before { - content: "v"; -} -.icon-music-031:before { - content: "w"; -} -.icon-music-044:before { - content: "x"; -} -.icon-music-057:before { - content: "y"; -} -.icon-music-058:before { - content: "z"; -} -.icon-music-045:before { - content: "A"; -} -.icon-music-032:before { - content: "B"; -} -.icon-music-019:before { - content: "C"; -} -.icon-music-006:before { - content: "D"; -} -.icon-music-007:before { - content: "E"; -} -.icon-music-020:before { - content: "F"; -} -.icon-music-033:before { - content: "G"; -} -.icon-music-046:before { - content: "H"; -} -.icon-music-059:before { - content: "I"; -} -.icon-music-060:before { - content: "J"; -} -.icon-music-047:before { - content: "K"; -} -.icon-music-034:before { - content: "L"; -} -.icon-music-021:before { - content: "M"; -} -.icon-music-008:before { - content: "N"; -} -.icon-music-009:before { - content: "O"; -} -.icon-music-022:before { - content: "P"; -} -.icon-music-035:before { - content: "Q"; -} -.icon-music-048:before { - content: "R"; -} -.icon-music-061:before { - content: "S"; -} -.icon-music-062:before { - content: "T"; -} -.icon-music-036:before { - content: "U"; -} -.icon-music-023:before { - content: "V"; -} -.icon-music-010:before { - content: "W"; -} -.icon-music-011:before { - content: "X"; -} -.icon-music-024:before { - content: "Y"; -} -.icon-music-037:before { - content: "Z"; -} -.icon-music-049:before { - content: "0"; -} -.icon-music-050:before { - content: "1"; -} -.icon-music-051:before { - content: "2"; -} -.icon-music-038:before { - content: "3"; -} -.icon-music-025:before { - content: "4"; -} -.icon-music-012:before { - content: "5"; -} -.icon-music-013:before { - content: "6"; -} -.icon-music-026:before { - content: "7"; -} -.icon-music-039:before { - content: "8"; -} -.icon-music-052:before { - content: "9"; -} -.icon-music-065:before { - content: "!"; -} -.icon-music-064:before { - content: "\""; -} -.icon-music-063:before { - content: "#"; -} -.icon-music-078:before { - content: "$"; -} -.icon-music-091:before { - content: "%"; -} -.icon-music-090:before { - content: "&"; -} -.icon-music-077:before { - content: "'"; -} -.icon-music-076:before { - content: "("; -} -.icon-music-089:before { - content: ")"; -} -.icon-music-088:before { - content: "*"; -} -.icon-music-075:before { - content: "+"; -} -.icon-music-074:before { - content: ","; -} -.icon-music-087:before { - content: "-"; -} -.icon-music-086:before { - content: "."; -} -.icon-music-073:before { - content: "/"; -} -.icon-music-072:before { - content: ":"; -} -.icon-music-085:before { - content: ";"; -} -.icon-music-084:before { - content: "<"; -} -.icon-music-071:before { - content: "="; -} -.icon-music-070:before { - content: ">"; -} -.icon-music-083:before { - content: "?"; -} -.icon-music-082:before { - content: "@"; -} -.icon-music-069:before { - content: "["; -} -.icon-music-068:before { - content: "]"; -} -.icon-music-081:before { - content: "^"; -} -.icon-music-080:before { - content: "_"; -} -.icon-music-067:before { - content: "`"; -} -.icon-music-066:before { - content: "{"; -} -.icon-music-079:before { - content: "|"; -} -.icon-music-092:before { - content: "}"; -} -.icon-music-093:before { - content: "~"; -} -.icon-music-094:before { - content: "\\"; -} -.icon-music-095:before { - content: "\e000"; -} -.icon-music-096:before { - content: "\e001"; -} -.icon-music-097:before { - content: "\e002"; -} -.icon-music-098:before { - content: "\e003"; -} -.icon-music-099:before { - content: "\e004"; -} -.icon-music-100:before { - content: "\e005"; -} - -/* Real Estate */ -@font-face { - font-family: "real-estate"; - src:url("real-estate/webfont/fonts/real-estate.eot"); - src:url("real-estate/webfont/fonts/real-estate.eot?#iefix") format("embedded-opentype"), - url("real-estate/webfont/fonts/real-estate.woff") format("woff"), - url("real-estate/webfont/fonts/real-estate.ttf") format("truetype"), - url("real-estate/webfont/fonts/real-estate.svg#real-estate") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-real-estate]:before { - font-family: "real-estate" !important; - content: attr(data-icon-real-estate); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-real-estate"]:before, -[class*=" icon-real-estate"]:before { - font-family: "real-estate" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-real-estate-001:before { - content: "a"; -} -.icon-real-estate-014:before { - content: "b"; -} -.icon-real-estate-027:before { - content: "c"; -} -.icon-real-estate-040:before { - content: "d"; -} -.icon-real-estate-053:before { - content: "e"; -} -.icon-real-estate-066:before { - content: "f"; -} -.icon-real-estate-079:before { - content: "g"; -} -.icon-real-estate-080:before { - content: "h"; -} -.icon-real-estate-081:before { - content: "i"; -} -.icon-real-estate-082:before { - content: "j"; -} -.icon-real-estate-083:before { - content: "k"; -} -.icon-real-estate-084:before { - content: "l"; -} -.icon-real-estate-085:before { - content: "m"; -} -.icon-real-estate-086:before { - content: "n"; -} -.icon-real-estate-087:before { - content: "o"; -} -.icon-real-estate-088:before { - content: "p"; -} -.icon-real-estate-089:before { - content: "q"; -} -.icon-real-estate-090:before { - content: "r"; -} -.icon-real-estate-077:before { - content: "s"; -} -.icon-real-estate-078:before { - content: "t"; -} -.icon-real-estate-065:before { - content: "u"; -} -.icon-real-estate-064:before { - content: "v"; -} -.icon-real-estate-063:before { - content: "w"; -} -.icon-real-estate-076:before { - content: "x"; -} -.icon-real-estate-075:before { - content: "y"; -} -.icon-real-estate-062:before { - content: "z"; -} -.icon-real-estate-061:before { - content: "A"; -} -.icon-real-estate-074:before { - content: "B"; -} -.icon-real-estate-073:before { - content: "C"; -} -.icon-real-estate-059:before { - content: "D"; -} -.icon-real-estate-072:before { - content: "E"; -} -.icon-real-estate-060:before { - content: "F"; -} -.icon-real-estate-058:before { - content: "G"; -} -.icon-real-estate-071:before { - content: "H"; -} -.icon-real-estate-070:before { - content: "I"; -} -.icon-real-estate-057:before { - content: "J"; -} -.icon-real-estate-056:before { - content: "K"; -} -.icon-real-estate-069:before { - content: "L"; -} -.icon-real-estate-068:before { - content: "M"; -} -.icon-real-estate-055:before { - content: "N"; -} -.icon-real-estate-054:before { - content: "O"; -} -.icon-real-estate-067:before { - content: "P"; -} -.icon-real-estate-041:before { - content: "Q"; -} -.icon-real-estate-028:before { - content: "R"; -} -.icon-real-estate-015:before { - content: "S"; -} -.icon-real-estate-002:before { - content: "T"; -} -.icon-real-estate-003:before { - content: "U"; -} -.icon-real-estate-016:before { - content: "V"; -} -.icon-real-estate-029:before { - content: "W"; -} -.icon-real-estate-042:before { - content: "X"; -} -.icon-real-estate-043:before { - content: "Y"; -} -.icon-real-estate-030:before { - content: "Z"; -} -.icon-real-estate-017:before { - content: "0"; -} -.icon-real-estate-004:before { - content: "1"; -} -.icon-real-estate-005:before { - content: "2"; -} -.icon-real-estate-018:before { - content: "3"; -} -.icon-real-estate-031:before { - content: "4"; -} -.icon-real-estate-044:before { - content: "5"; -} -.icon-real-estate-045:before { - content: "6"; -} -.icon-real-estate-032:before { - content: "7"; -} -.icon-real-estate-019:before { - content: "8"; -} -.icon-real-estate-006:before { - content: "9"; -} -.icon-real-estate-008:before { - content: "!"; -} -.icon-real-estate-020:before { - content: "\""; -} -.icon-real-estate-007:before { - content: "#"; -} -.icon-real-estate-021:before { - content: "$"; -} -.icon-real-estate-033:before { - content: "%"; -} -.icon-real-estate-034:before { - content: "&"; -} -.icon-real-estate-047:before { - content: "'"; -} -.icon-real-estate-046:before { - content: "("; -} -.icon-real-estate-048:before { - content: ")"; -} -.icon-real-estate-035:before { - content: "*"; -} -.icon-real-estate-022:before { - content: "+"; -} -.icon-real-estate-009:before { - content: ","; -} -.icon-real-estate-011:before { - content: "-"; -} -.icon-real-estate-023:before { - content: "."; -} -.icon-real-estate-010:before { - content: "/"; -} -.icon-real-estate-024:before { - content: ":"; -} -.icon-real-estate-037:before { - content: ";"; -} -.icon-real-estate-036:before { - content: "<"; -} -.icon-real-estate-049:before { - content: "="; -} -.icon-real-estate-050:before { - content: ">"; -} -.icon-real-estate-051:before { - content: "?"; -} -.icon-real-estate-038:before { - content: "@"; -} -.icon-real-estate-039:before { - content: "["; -} -.icon-real-estate-052:before { - content: "]"; -} -.icon-real-estate-026:before { - content: "^"; -} -.icon-real-estate-025:before { - content: "_"; -} -.icon-real-estate-012:before { - content: "`"; -} -.icon-real-estate-013:before { - content: "{"; -} - -/* Science */ -@font-face { - font-family: "science"; - src:url("science/webfont/fonts/science.eot"); - src:url("science/webfont/fonts/science.eot?#iefix") format("embedded-opentype"), - url("science/webfont/fonts/science.woff") format("woff"), - url("science/webfont/fonts/science.ttf") format("truetype"), - url("science/webfont/fonts/science.svg#science") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-science]:before { - font-family: "science" !important; - content: attr(data-icon-science); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-science"]:before, -[class*=" icon-science"]:before { - font-family: "science" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-science-001:before { - content: "a"; -} -.icon-science-014:before { - content: "b"; -} -.icon-science-002:before { - content: "c"; -} -.icon-science-015:before { - content: "d"; -} -.icon-science-016:before { - content: "e"; -} -.icon-science-003:before { - content: "f"; -} -.icon-science-004:before { - content: "g"; -} -.icon-science-017:before { - content: "h"; -} -.icon-science-019:before { - content: "i"; -} -.icon-science-005:before { - content: "j"; -} -.icon-science-018:before { - content: "k"; -} -.icon-science-006:before { - content: "l"; -} -.icon-science-007:before { - content: "m"; -} -.icon-science-020:before { - content: "n"; -} -.icon-science-021:before { - content: "o"; -} -.icon-science-008:before { - content: "p"; -} -.icon-science-009:before { - content: "q"; -} -.icon-science-022:before { - content: "r"; -} -.icon-science-023:before { - content: "s"; -} -.icon-science-010:before { - content: "t"; -} -.icon-science-011:before { - content: "u"; -} -.icon-science-024:before { - content: "v"; -} -.icon-science-025:before { - content: "w"; -} -.icon-science-012:before { - content: "x"; -} -.icon-science-013:before { - content: "y"; -} -.icon-science-026:before { - content: "z"; -} -.icon-science-039:before { - content: "A"; -} -.icon-science-052:before { - content: "B"; -} -.icon-science-065:before { - content: "C"; -} -.icon-science-078:before { - content: "D"; -} -.icon-science-077:before { - content: "E"; -} -.icon-science-064:before { - content: "F"; -} -.icon-science-051:before { - content: "G"; -} -.icon-science-038:before { - content: "H"; -} -.icon-science-037:before { - content: "I"; -} -.icon-science-050:before { - content: "J"; -} -.icon-science-063:before { - content: "K"; -} -.icon-science-076:before { - content: "L"; -} -.icon-science-075:before { - content: "M"; -} -.icon-science-062:before { - content: "N"; -} -.icon-science-049:before { - content: "O"; -} -.icon-science-036:before { - content: "P"; -} -.icon-science-035:before { - content: "Q"; -} -.icon-science-048:before { - content: "R"; -} -.icon-science-061:before { - content: "S"; -} -.icon-science-074:before { - content: "T"; -} -.icon-science-073:before { - content: "U"; -} -.icon-science-060:before { - content: "V"; -} -.icon-science-047:before { - content: "W"; -} -.icon-science-034:before { - content: "X"; -} -.icon-science-033:before { - content: "Y"; -} -.icon-science-046:before { - content: "Z"; -} -.icon-science-059:before { - content: "0"; -} -.icon-science-072:before { - content: "1"; -} -.icon-science-071:before { - content: "2"; -} -.icon-science-058:before { - content: "3"; -} -.icon-science-045:before { - content: "4"; -} -.icon-science-032:before { - content: "5"; -} -.icon-science-031:before { - content: "6"; -} -.icon-science-044:before { - content: "7"; -} -.icon-science-057:before { - content: "8"; -} -.icon-science-070:before { - content: "9"; -} -.icon-science-069:before { - content: "!"; -} -.icon-science-056:before { - content: "\""; -} -.icon-science-043:before { - content: "#"; -} -.icon-science-030:before { - content: "$"; -} -.icon-science-029:before { - content: "%"; -} -.icon-science-042:before { - content: "&"; -} -.icon-science-055:before { - content: "'"; -} -.icon-science-068:before { - content: "("; -} -.icon-science-067:before { - content: ")"; -} -.icon-science-054:before { - content: "*"; -} -.icon-science-041:before { - content: "+"; -} -.icon-science-028:before { - content: ","; -} -.icon-science-027:before { - content: "-"; -} -.icon-science-040:before { - content: "."; -} -.icon-science-053:before { - content: "/"; -} -.icon-science-066:before { - content: ":"; -} -.icon-science-079:before { - content: ";"; -} -.icon-science-092:before { - content: "<"; -} -.icon-science-105:before { - content: "="; -} -.icon-science-118:before { - content: ">"; -} -.icon-science-131:before { - content: "?"; -} -.icon-science-144:before { - content: "@"; -} -.icon-science-145:before { - content: "["; -} -.icon-science-132:before { - content: "]"; -} -.icon-science-119:before { - content: "^"; -} -.icon-science-106:before { - content: "_"; -} -.icon-science-093:before { - content: "`"; -} -.icon-science-080:before { - content: "{"; -} -.icon-science-081:before { - content: "|"; -} -.icon-science-094:before { - content: "}"; -} -.icon-science-107:before { - content: "~"; -} -.icon-science-120:before { - content: "\\"; -} -.icon-science-133:before { - content: "\e000"; -} -.icon-science-146:before { - content: "\e001"; -} -.icon-science-147:before { - content: "\e002"; -} -.icon-science-134:before { - content: "\e003"; -} -.icon-science-121:before { - content: "\e004"; -} -.icon-science-108:before { - content: "\e005"; -} -.icon-science-095:before { - content: "\e006"; -} -.icon-science-082:before { - content: "\e007"; -} -.icon-science-083:before { - content: "\e008"; -} -.icon-science-096:before { - content: "\e009"; -} -.icon-science-109:before { - content: "\e00a"; -} -.icon-science-122:before { - content: "\e00b"; -} -.icon-science-135:before { - content: "\e00c"; -} -.icon-science-148:before { - content: "\e00d"; -} -.icon-science-149:before { - content: "\e00e"; -} -.icon-science-136:before { - content: "\e00f"; -} -.icon-science-123:before { - content: "\e010"; -} -.icon-science-110:before { - content: "\e011"; -} -.icon-science-097:before { - content: "\e012"; -} -.icon-science-084:before { - content: "\e013"; -} -.icon-science-085:before { - content: "\e014"; -} -.icon-science-098:before { - content: "\e015"; -} -.icon-science-111:before { - content: "\e016"; -} -.icon-science-124:before { - content: "\e017"; -} -.icon-science-137:before { - content: "\e018"; -} -.icon-science-150:before { - content: "\e019"; -} -.icon-science-151:before { - content: "\e01a"; -} -.icon-science-138:before { - content: "\e01b"; -} -.icon-science-125:before { - content: "\e01c"; -} -.icon-science-112:before { - content: "\e01d"; -} -.icon-science-099:before { - content: "\e01e"; -} -.icon-science-086:before { - content: "\e01f"; -} -.icon-science-087:before { - content: "\e020"; -} -.icon-science-100:before { - content: "\e021"; -} -.icon-science-113:before { - content: "\e022"; -} -.icon-science-126:before { - content: "\e023"; -} -.icon-science-139:before { - content: "\e024"; -} -.icon-science-152:before { - content: "\e025"; -} -.icon-science-153:before { - content: "\e026"; -} -.icon-science-140:before { - content: "\e027"; -} -.icon-science-127:before { - content: "\e028"; -} -.icon-science-114:before { - content: "\e029"; -} -.icon-science-101:before { - content: "\e02a"; -} -.icon-science-088:before { - content: "\e02b"; -} -.icon-science-089:before { - content: "\e02c"; -} -.icon-science-102:before { - content: "\e02d"; -} -.icon-science-115:before { - content: "\e02e"; -} -.icon-science-128:before { - content: "\e02f"; -} -.icon-science-141:before { - content: "\e030"; -} -.icon-science-154:before { - content: "\e031"; -} -.icon-science-155:before { - content: "\e032"; -} -.icon-science-142:before { - content: "\e033"; -} -.icon-science-129:before { - content: "\e034"; -} -.icon-science-116:before { - content: "\e035"; -} -.icon-science-103:before { - content: "\e036"; -} -.icon-science-090:before { - content: "\e037"; -} -.icon-science-091:before { - content: "\e038"; -} -.icon-science-104:before { - content: "\e039"; -} -.icon-science-117:before { - content: "\e03a"; -} -.icon-science-130:before { - content: "\e03b"; -} -.icon-science-143:before { - content: "\e03c"; -} -.icon-science-156:before { - content: "\e03d"; -} -.icon-science-157:before { - content: "\e03e"; -} -.icon-science-158:before { - content: "\e03f"; -} -.icon-science-159:before { - content: "\e040"; -} -.icon-science-160:before { - content: "\e041"; -} - -/* Sport */ -@font-face { - font-family: "sports-48-x-48"; - src:url("sports/webfont/fonts/sports-48-x-48.eot"); - src:url("sports/webfont/fonts/sports-48-x-48.eot?#iefix") format("embedded-opentype"), - url("sports/webfont/fonts/sports-48-x-48.woff") format("woff"), - url("sports/webfont/fonts/sports-48-x-48.ttf") format("truetype"), - url("sports/webfont/fonts/sports-48-x-48.svg#sports-48-x-48") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-sport]:before { - font-family: "sports-48-x-48" !important; - content: attr(data-icon-sport); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-sport"]:before, -[class*="icon-sport"]:before { - font-family: "sports-48-x-48" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-christmas"]:before, -[class*=" icon-christmas"]:before { - font-family: "cristmas" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-sport-001:before { - content: "a"; -} -.icon-sport-014:before { - content: "b"; -} -.icon-sport-027:before { - content: "c"; -} -.icon-sport-028:before { - content: "d"; -} -.icon-sport-015:before { - content: "e"; -} -.icon-sport-002:before { - content: "f"; -} -.icon-sport-003:before { - content: "g"; -} -.icon-sport-016:before { - content: "h"; -} -.icon-sport-029:before { - content: "i"; -} -.icon-sport-030:before { - content: "j"; -} -.icon-sport-017:before { - content: "k"; -} -.icon-sport-004:before { - content: "l"; -} -.icon-sport-005:before { - content: "m"; -} -.icon-sport-018:before { - content: "n"; -} -.icon-sport-031:before { - content: "o"; -} -.icon-sport-032:before { - content: "p"; -} -.icon-sport-019:before { - content: "q"; -} -.icon-sport-006:before { - content: "r"; -} -.icon-sport-007:before { - content: "s"; -} -.icon-sport-020:before { - content: "t"; -} -.icon-sport-033:before { - content: "u"; -} -.icon-sport-034:before { - content: "v"; -} -.icon-sport-021:before { - content: "w"; -} -.icon-sport-008:before { - content: "x"; -} -.icon-sport-009:before { - content: "y"; -} -.icon-sport-022:before { - content: "z"; -} -.icon-sport-035:before { - content: "A"; -} -.icon-sport-036:before { - content: "B"; -} -.icon-sport-023:before { - content: "C"; -} -.icon-sport-010:before { - content: "D"; -} -.icon-sport-011:before { - content: "E"; -} -.icon-sport-024:before { - content: "F"; -} -.icon-sport-037:before { - content: "G"; -} -.icon-sport-038:before { - content: "H"; -} -.icon-sport-025:before { - content: "I"; -} -.icon-sport-012:before { - content: "J"; -} -.icon-sport-013:before { - content: "K"; -} -.icon-sport-026:before { - content: "L"; -} -.icon-sport-039:before { - content: "M"; -} -.icon-sport-040:before { - content: "N"; -} -.icon-sport-053:before { - content: "O"; -} -.icon-sport-066:before { - content: "P"; -} -.icon-sport-079:before { - content: "Q"; -} -.icon-sport-080:before { - content: "R"; -} -.icon-sport-067:before { - content: "S"; -} -.icon-sport-054:before { - content: "T"; -} -.icon-sport-041:before { - content: "U"; -} -.icon-sport-042:before { - content: "V"; -} -.icon-sport-055:before { - content: "W"; -} -.icon-sport-068:before { - content: "X"; -} -.icon-sport-081:before { - content: "Y"; -} -.icon-sport-082:before { - content: "Z"; -} -.icon-sport-069:before { - content: "0"; -} -.icon-sport-056:before { - content: "1"; -} -.icon-sport-043:before { - content: "2"; -} -.icon-sport-044:before { - content: "3"; -} -.icon-sport-057:before { - content: "4"; -} -.icon-sport-070:before { - content: "5"; -} -.icon-sport-083:before { - content: "6"; -} -.icon-sport-084:before { - content: "7"; -} -.icon-sport-071:before { - content: "8"; -} -.icon-sport-058:before { - content: "9"; -} -.icon-sport-045:before { - content: "!"; -} -.icon-sport-046:before { - content: "\""; -} -.icon-sport-059:before { - content: "#"; -} -.icon-sport-072:before { - content: "$"; -} -.icon-sport-085:before { - content: "%"; -} -.icon-sport-086:before { - content: "&"; -} -.icon-sport-073:before { - content: "'"; -} -.icon-sport-060:before { - content: "("; -} -.icon-sport-047:before { - content: ")"; -} -.icon-sport-048:before { - content: "*"; -} -.icon-sport-061:before { - content: "+"; -} -.icon-sport-074:before { - content: ","; -} -.icon-sport-087:before { - content: "-"; -} -.icon-sport-075:before { - content: "."; -} -.icon-sport-062:before { - content: "/"; -} -.icon-sport-049:before { - content: ":"; -} -.icon-sport-050:before { - content: ";"; -} -.icon-sport-063:before { - content: "<"; -} -.icon-sport-064:before { - content: "="; -} -.icon-sport-051:before { - content: ">"; -} -.icon-sport-052:before { - content: "?"; -} -.icon-sport-065:before { - content: "@"; -} -.icon-sport-078:before { - content: "["; -} -.icon-sport-091:before { - content: "]"; -} -.icon-sport-090:before { - content: "^"; -} -.icon-sport-077:before { - content: "_"; -} -.icon-sport-076:before { - content: "`"; -} -.icon-sport-089:before { - content: "{"; -} -.icon-sport-088:before { - content: "|"; -} -.icon-sport-092:before { - content: "}"; -} -.icon-sport-105:before { - content: "~"; -} -.icon-sport-118:before { - content: "\\"; -} -.icon-sport-131:before { - content: "\e000"; -} -.icon-sport-144:before { - content: "\e001"; -} -.icon-sport-145:before { - content: "\e002"; -} -.icon-sport-132:before { - content: "\e003"; -} -.icon-sport-119:before { - content: "\e004"; -} -.icon-sport-106:before { - content: "\e005"; -} -.icon-sport-093:before { - content: "\e006"; -} -.icon-sport-094:before { - content: "\e007"; -} -.icon-sport-107:before { - content: "\e008"; -} -.icon-sport-120:before { - content: "\e009"; -} -.icon-sport-133:before { - content: "\e00a"; -} -.icon-sport-146:before { - content: "\e00b"; -} -.icon-sport-147:before { - content: "\e00c"; -} -.icon-sport-134:before { - content: "\e00d"; -} -.icon-sport-121:before { - content: "\e00e"; -} -.icon-sport-108:before { - content: "\e00f"; -} -.icon-sport-095:before { - content: "\e010"; -} -.icon-sport-096:before { - content: "\e011"; -} -.icon-sport-109:before { - content: "\e012"; -} -.icon-sport-122:before { - content: "\e013"; -} -.icon-sport-135:before { - content: "\e014"; -} -.icon-sport-148:before { - content: "\e015"; -} -.icon-sport-149:before { - content: "\e016"; -} -.icon-sport-136:before { - content: "\e017"; -} -.icon-sport-123:before { - content: "\e018"; -} -.icon-sport-110:before { - content: "\e019"; -} -.icon-sport-097:before { - content: "\e01a"; -} -.icon-sport-098:before { - content: "\e01b"; -} -.icon-sport-111:before { - content: "\e01c"; -} -.icon-sport-124:before { - content: "\e01d"; -} -.icon-sport-137:before { - content: "\e01e"; -} -.icon-sport-150:before { - content: "\e01f"; -} -.icon-sport-151:before { - content: "\e020"; -} -.icon-sport-138:before { - content: "\e021"; -} -.icon-sport-125:before { - content: "\e022"; -} -.icon-sport-112:before { - content: "\e023"; -} -.icon-sport-099:before { - content: "\e024"; -} -.icon-sport-100:before { - content: "\e025"; -} -.icon-sport-113:before { - content: "\e026"; -} -.icon-sport-126:before { - content: "\e027"; -} -.icon-sport-139:before { - content: "\e028"; -} -.icon-sport-152:before { - content: "\e029"; -} -.icon-sport-153:before { - content: "\e02a"; -} -.icon-sport-140:before { - content: "\e02b"; -} -.icon-sport-127:before { - content: "\e02c"; -} -.icon-sport-114:before { - content: "\e02d"; -} -.icon-sport-101:before { - content: "\e02e"; -} -.icon-sport-102:before { - content: "\e02f"; -} -.icon-sport-115:before { - content: "\e030"; -} -.icon-sport-128:before { - content: "\e031"; -} -.icon-sport-141:before { - content: "\e032"; -} -.icon-sport-154:before { - content: "\e033"; -} -.icon-sport-155:before { - content: "\e034"; -} -.icon-sport-142:before { - content: "\e035"; -} -.icon-sport-129:before { - content: "\e036"; -} -.icon-sport-116:before { - content: "\e037"; -} -.icon-sport-103:before { - content: "\e038"; -} -.icon-sport-104:before { - content: "\e039"; -} -.icon-sport-117:before { - content: "\e03a"; -} -.icon-sport-130:before { - content: "\e03b"; -} -.icon-sport-143:before { - content: "\e03c"; -} -.icon-sport-156:before { - content: "\e03d"; -} -.icon-sport-157:before { - content: "\e03e"; -} -.icon-sport-170:before { - content: "\e03f"; -} -.icon-sport-183:before { - content: "\e040"; -} -.icon-sport-196:before { - content: "\e041"; -} -.icon-sport-197:before { - content: "\e042"; -} -.icon-sport-184:before { - content: "\e043"; -} -.icon-sport-171:before { - content: "\e044"; -} -.icon-sport-158:before { - content: "\e045"; -} -.icon-sport-159:before { - content: "\e046"; -} -.icon-sport-172:before { - content: "\e047"; -} -.icon-sport-185:before { - content: "\e048"; -} -.icon-sport-198:before { - content: "\e049"; -} -.icon-sport-199:before { - content: "\e04a"; -} -.icon-sport-186:before { - content: "\e04b"; -} -.icon-sport-173:before { - content: "\e04c"; -} -.icon-sport-160:before { - content: "\e04d"; -} -.icon-sport-174:before { - content: "\e04e"; -} -.icon-sport-187:before { - content: "\e04f"; -} -.icon-sport-200:before { - content: "\e050"; -} -.icon-sport-188:before { - content: "\e051"; -} -.icon-sport-175:before { - content: "\e052"; -} -.icon-sport-162:before { - content: "\e053"; -} -.icon-sport-163:before { - content: "\e054"; -} -.icon-sport-176:before { - content: "\e055"; -} -.icon-sport-189:before { - content: "\e056"; -} -.icon-sport-190:before { - content: "\e057"; -} -.icon-sport-177:before { - content: "\e058"; -} -.icon-sport-164:before { - content: "\e059"; -} -.icon-sport-165:before { - content: "\e05a"; -} -.icon-sport-178:before { - content: "\e05b"; -} -.icon-sport-191:before { - content: "\e05c"; -} -.icon-sport-192:before { - content: "\e05d"; -} -.icon-sport-179:before { - content: "\e05e"; -} -.icon-sport-166:before { - content: "\e05f"; -} -.icon-sport-167:before { - content: "\e060"; -} -.icon-sport-180:before { - content: "\e061"; -} -.icon-sport-193:before { - content: "\e062"; -} -.icon-sport-194:before { - content: "\e063"; -} -.icon-sport-181:before { - content: "\e064"; -} -.icon-sport-168:before { - content: "\e065"; -} -.icon-sport-169:before { - content: "\e066"; -} -.icon-sport-182:before { - content: "\e067"; -} -.icon-sport-195:before { - content: "\e068"; -} -.icon-sport-161:before { - content: "\e069"; -} - -/* Travel */ -@font-face { - font-family: "travel"; - src:url("travel/webfont/fonts/travel.eot"); - src:url("travel/webfont/fonts/travel.eot?#iefix") format("embedded-opentype"), - url("travel/webfont/fonts/travel.woff") format("woff"), - url("travel/webfont/fonts/travel.ttf") format("truetype"), - url("travel/webfont/fonts/travel.svg#travel") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-travel]:before { - font-family: "travel" !important; - content: attr(data-icon-travel); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-travel"]:before, -[class*=" icon-travel"]:before { - font-family: "travel" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-travel-001:before { - content: "a"; -} -.icon-travel-014:before { - content: "b"; -} -.icon-travel-015:before { - content: "c"; -} -.icon-travel-002:before { - content: "d"; -} -.icon-travel-003:before { - content: "e"; -} -.icon-travel-016:before { - content: "f"; -} -.icon-travel-017:before { - content: "g"; -} -.icon-travel-004:before { - content: "h"; -} -.icon-travel-005:before { - content: "i"; -} -.icon-travel-018:before { - content: "j"; -} -.icon-travel-019:before { - content: "k"; -} -.icon-travel-006:before { - content: "l"; -} -.icon-travel-007:before { - content: "m"; -} -.icon-travel-020:before { - content: "n"; -} -.icon-travel-021:before { - content: "o"; -} -.icon-travel-008:before { - content: "p"; -} -.icon-travel-009:before { - content: "q"; -} -.icon-travel-022:before { - content: "r"; -} -.icon-travel-023:before { - content: "s"; -} -.icon-travel-010:before { - content: "t"; -} -.icon-travel-011:before { - content: "u"; -} -.icon-travel-024:before { - content: "v"; -} -.icon-travel-025:before { - content: "w"; -} -.icon-travel-012:before { - content: "x"; -} -.icon-travel-013:before { - content: "y"; -} -.icon-travel-026:before { - content: "z"; -} -.icon-travel-039:before { - content: "A"; -} -.icon-travel-052:before { - content: "B"; -} -.icon-travel-065:before { - content: "C"; -} -.icon-travel-064:before { - content: "D"; -} -.icon-travel-051:before { - content: "E"; -} -.icon-travel-038:before { - content: "F"; -} -.icon-travel-037:before { - content: "G"; -} -.icon-travel-050:before { - content: "H"; -} -.icon-travel-063:before { - content: "I"; -} -.icon-travel-062:before { - content: "J"; -} -.icon-travel-049:before { - content: "K"; -} -.icon-travel-036:before { - content: "L"; -} -.icon-travel-035:before { - content: "M"; -} -.icon-travel-048:before { - content: "N"; -} -.icon-travel-061:before { - content: "O"; -} -.icon-travel-060:before { - content: "P"; -} -.icon-travel-047:before { - content: "Q"; -} -.icon-travel-034:before { - content: "R"; -} -.icon-travel-033:before { - content: "S"; -} -.icon-travel-046:before { - content: "T"; -} -.icon-travel-059:before { - content: "U"; -} -.icon-travel-058:before { - content: "V"; -} -.icon-travel-045:before { - content: "W"; -} -.icon-travel-032:before { - content: "X"; -} -.icon-travel-031:before { - content: "Y"; -} -.icon-travel-044:before { - content: "Z"; -} -.icon-travel-057:before { - content: "0"; -} -.icon-travel-056:before { - content: "1"; -} -.icon-travel-043:before { - content: "2"; -} -.icon-travel-030:before { - content: "3"; -} -.icon-travel-029:before { - content: "4"; -} -.icon-travel-042:before { - content: "5"; -} -.icon-travel-055:before { - content: "6"; -} -.icon-travel-054:before { - content: "7"; -} -.icon-travel-041:before { - content: "8"; -} -.icon-travel-028:before { - content: "9"; -} -.icon-travel-027:before { - content: "!"; -} -.icon-travel-040:before { - content: "\""; -} -.icon-travel-053:before { - content: "#"; -} -.icon-travel-066:before { - content: "$"; -} -.icon-travel-079:before { - content: "%"; -} -.icon-travel-092:before { - content: "&"; -} -.icon-travel-105:before { - content: "'"; -} -.icon-travel-106:before { - content: "("; -} -.icon-travel-093:before { - content: ")"; -} -.icon-travel-080:before { - content: "*"; -} -.icon-travel-067:before { - content: "+"; -} -.icon-travel-068:before { - content: ","; -} -.icon-travel-081:before { - content: "-"; -} -.icon-travel-094:before { - content: "."; -} -.icon-travel-107:before { - content: "/"; -} -.icon-travel-108:before { - content: ":"; -} -.icon-travel-095:before { - content: ";"; -} -.icon-travel-082:before { - content: "<"; -} -.icon-travel-069:before { - content: "="; -} -.icon-travel-070:before { - content: ">"; -} -.icon-travel-083:before { - content: "?"; -} -.icon-travel-096:before { - content: "@"; -} -.icon-travel-109:before { - content: "["; -} -.icon-travel-110:before { - content: "]"; -} -.icon-travel-097:before { - content: "^"; -} -.icon-travel-084:before { - content: "_"; -} -.icon-travel-071:before { - content: "`"; -} -.icon-travel-072:before { - content: "{"; -} -.icon-travel-085:before { - content: "|"; -} -.icon-travel-098:before { - content: "}"; -} -.icon-travel-111:before { - content: "~"; -} -.icon-travel-112:before { - content: "\\"; -} -.icon-travel-099:before { - content: "\e000"; -} -.icon-travel-086:before { - content: "\e001"; -} -.icon-travel-073:before { - content: "\e002"; -} -.icon-travel-074:before { - content: "\e003"; -} -.icon-travel-087:before { - content: "\e004"; -} -.icon-travel-100:before { - content: "\e005"; -} -.icon-travel-113:before { - content: "\e006"; -} -.icon-travel-114:before { - content: "\e007"; -} -.icon-travel-101:before { - content: "\e008"; -} -.icon-travel-088:before { - content: "\e009"; -} -.icon-travel-075:before { - content: "\e00a"; -} -.icon-travel-076:before { - content: "\e00b"; -} -.icon-travel-089:before { - content: "\e00c"; -} -.icon-travel-102:before { - content: "\e00d"; -} -.icon-travel-115:before { - content: "\e00e"; -} -.icon-travel-116:before { - content: "\e00f"; -} -.icon-travel-103:before { - content: "\e010"; -} -.icon-travel-090:before { - content: "\e011"; -} -.icon-travel-077:before { - content: "\e012"; -} -.icon-travel-091:before { - content: "\e013"; -} -.icon-travel-104:before { - content: "\e014"; -} -.icon-travel-117:before { - content: "\e015"; -} -.icon-travel-078:before { - content: "\e016"; -} -.icon-travel-130:before { - content: "\e017"; -} -.icon-travel-143:before { - content: "\e018"; -} -.icon-travel-142:before { - content: "\e019"; -} -.icon-travel-129:before { - content: "\e01a"; -} -.icon-travel-128:before { - content: "\e01b"; -} -.icon-travel-141:before { - content: "\e01c"; -} -.icon-travel-140:before { - content: "\e01d"; -} -.icon-travel-127:before { - content: "\e01e"; -} -.icon-travel-126:before { - content: "\e01f"; -} -.icon-travel-139:before { - content: "\e020"; -} -.icon-travel-138:before { - content: "\e021"; -} -.icon-travel-125:before { - content: "\e022"; -} -.icon-travel-124:before { - content: "\e023"; -} -.icon-travel-137:before { - content: "\e024"; -} -.icon-travel-150:before { - content: "\e025"; -} -.icon-travel-149:before { - content: "\e026"; -} -.icon-travel-136:before { - content: "\e027"; -} -.icon-travel-123:before { - content: "\e028"; -} -.icon-travel-122:before { - content: "\e029"; -} -.icon-travel-135:before { - content: "\e02a"; -} -.icon-travel-148:before { - content: "\e02b"; -} -.icon-travel-147:before { - content: "\e02c"; -} -.icon-travel-134:before { - content: "\e02d"; -} -.icon-travel-121:before { - content: "\e02e"; -} -.icon-travel-120:before { - content: "\e02f"; -} -.icon-travel-133:before { - content: "\e030"; -} -.icon-travel-146:before { - content: "\e031"; -} -.icon-travel-145:before { - content: "\e032"; -} -.icon-travel-132:before { - content: "\e033"; -} -.icon-travel-119:before { - content: "\e034"; -} -.icon-travel-118:before { - content: "\e035"; -} -.icon-travel-131:before { - content: "\e036"; -} -.icon-travel-144:before { - content: "\e037"; -} - -/* Weather */ -@font-face { - font-family: "weather"; - src:url("weather/webfont/fonts/weather.eot"); - src:url("weather/webfont/fonts/weather.eot?#iefix") format("embedded-opentype"), - url("weather/webfont/fonts/weather.woff") format("woff"), - url("weather/webfont/fonts/weather.ttf") format("truetype"), - url("weather/webfont/fonts/weather.svg#weather") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-weather]:before { - font-family: "weather" !important; - content: attr(data-icon-weather); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-weather"]:before, -[class*=" icon-weather"]:before { - font-family: "weather" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-weather-001:before { - content: "a"; -} -.icon-weather-014:before { - content: "b"; -} -.icon-weather-027:before { - content: "c"; -} -.icon-weather-040:before { - content: "d"; -} -.icon-weather-053:before { - content: "e"; -} -.icon-weather-054:before { - content: "f"; -} -.icon-weather-041:before { - content: "g"; -} -.icon-weather-028:before { - content: "h"; -} -.icon-weather-015:before { - content: "i"; -} -.icon-weather-002:before { - content: "j"; -} -.icon-weather-003:before { - content: "k"; -} -.icon-weather-016:before { - content: "l"; -} -.icon-weather-029:before { - content: "m"; -} -.icon-weather-042:before { - content: "n"; -} -.icon-weather-055:before { - content: "o"; -} -.icon-weather-056:before { - content: "p"; -} -.icon-weather-043:before { - content: "q"; -} -.icon-weather-030:before { - content: "r"; -} -.icon-weather-017:before { - content: "s"; -} -.icon-weather-004:before { - content: "t"; -} -.icon-weather-005:before { - content: "u"; -} -.icon-weather-018:before { - content: "v"; -} -.icon-weather-031:before { - content: "w"; -} -.icon-weather-044:before { - content: "x"; -} -.icon-weather-057:before { - content: "y"; -} -.icon-weather-058:before { - content: "z"; -} -.icon-weather-045:before { - content: "A"; -} -.icon-weather-032:before { - content: "B"; -} -.icon-weather-019:before { - content: "C"; -} -.icon-weather-006:before { - content: "D"; -} -.icon-weather-007:before { - content: "E"; -} -.icon-weather-020:before { - content: "F"; -} -.icon-weather-033:before { - content: "G"; -} -.icon-weather-046:before { - content: "H"; -} -.icon-weather-059:before { - content: "I"; -} -.icon-weather-060:before { - content: "J"; -} -.icon-weather-047:before { - content: "K"; -} -.icon-weather-034:before { - content: "L"; -} -.icon-weather-021:before { - content: "M"; -} -.icon-weather-008:before { - content: "N"; -} -.icon-weather-009:before { - content: "O"; -} -.icon-weather-022:before { - content: "P"; -} -.icon-weather-035:before { - content: "Q"; -} -.icon-weather-048:before { - content: "R"; -} -.icon-weather-049:before { - content: "S"; -} -.icon-weather-036:before { - content: "T"; -} -.icon-weather-023:before { - content: "U"; -} -.icon-weather-010:before { - content: "V"; -} -.icon-weather-011:before { - content: "W"; -} -.icon-weather-024:before { - content: "X"; -} -.icon-weather-037:before { - content: "Y"; -} -.icon-weather-050:before { - content: "Z"; -} -.icon-weather-051:before { - content: "0"; -} -.icon-weather-038:before { - content: "1"; -} -.icon-weather-025:before { - content: "2"; -} -.icon-weather-012:before { - content: "3"; -} -.icon-weather-013:before { - content: "4"; -} -.icon-weather-026:before { - content: "5"; -} -.icon-weather-039:before { - content: "6"; -} -.icon-weather-052:before { - content: "7"; -} - -/* Transport */ -@font-face { - font-family: "transport"; - src:url("transport/webfont/fonts/transport.eot"); - src:url("transport/webfont/fonts/transport.eot?#iefix") format("embedded-opentype"), - url("transport/webfont/fonts/transport.woff") format("woff"), - url("transport/webfont/fonts/transport.ttf") format("truetype"), - url("transport/webfont/fonts/transport.svg#transport") format("svg"); - font-weight: normal; - font-style: normal; -} - -[data-icon-transport]:before { - font-family: "transport" !important; - content: attr(data-icon-transport); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-transport"]:before, -[class*=" icon-transport"]:before { - font-family: "transport" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-transport-001:before { - content: "a"; -} -.icon-transport-014:before { - content: "b"; -} -.icon-transport-015:before { - content: "c"; -} -.icon-transport-002:before { - content: "d"; -} -.icon-transport-003:before { - content: "e"; -} -.icon-transport-016:before { - content: "f"; -} -.icon-transport-017:before { - content: "g"; -} -.icon-transport-004:before { - content: "h"; -} -.icon-transport-005:before { - content: "i"; -} -.icon-transport-018:before { - content: "j"; -} -.icon-transport-019:before { - content: "k"; -} -.icon-transport-006:before { - content: "l"; -} -.icon-transport-007:before { - content: "m"; -} -.icon-transport-020:before { - content: "n"; -} -.icon-transport-021:before { - content: "o"; -} -.icon-transport-008:before { - content: "p"; -} -.icon-transport-009:before { - content: "q"; -} -.icon-transport-022:before { - content: "r"; -} -.icon-transport-023:before { - content: "s"; -} -.icon-transport-010:before { - content: "t"; -} -.icon-transport-024:before { - content: "u"; -} -.icon-transport-025:before { - content: "v"; -} -.icon-transport-012:before { - content: "w"; -} -.icon-transport-011:before { - content: "x"; -} -.icon-transport-013:before { - content: "y"; -} -.icon-transport-026:before { - content: "z"; -} -.icon-transport-039:before { - content: "A"; -} -.icon-transport-052:before { - content: "B"; -} -.icon-transport-051:before { - content: "C"; -} -.icon-transport-038:before { - content: "D"; -} -.icon-transport-037:before { - content: "E"; -} -.icon-transport-050:before { - content: "F"; -} -.icon-transport-049:before { - content: "G"; -} -.icon-transport-036:before { - content: "H"; -} -.icon-transport-035:before { - content: "I"; -} -.icon-transport-048:before { - content: "J"; -} -.icon-transport-047:before { - content: "K"; -} -.icon-transport-034:before { - content: "L"; -} -.icon-transport-033:before { - content: "M"; -} -.icon-transport-046:before { - content: "N"; -} -.icon-transport-045:before { - content: "O"; -} -.icon-transport-032:before { - content: "P"; -} -.icon-transport-031:before { - content: "Q"; -} -.icon-transport-044:before { - content: "R"; -} -.icon-transport-043:before { - content: "S"; -} -.icon-transport-030:before { - content: "T"; -} -.icon-transport-029:before { - content: "U"; -} -.icon-transport-042:before { - content: "V"; -} -.icon-transport-041:before { - content: "W"; -} -.icon-transport-028:before { - content: "X"; -} -.icon-transport-027:before { - content: "Y"; -} -.icon-transport-040:before { - content: "Z"; -} -.icon-transport-053:before { - content: "0"; -} -.icon-transport-066:before { - content: "1"; -} -.icon-transport-079:before { - content: "2"; -} -.icon-transport-092:before { - content: "3"; -} -.icon-transport-093:before { - content: "4"; -} -.icon-transport-080:before { - content: "5"; -} -.icon-transport-067:before { - content: "6"; -} -.icon-transport-054:before { - content: "7"; -} -.icon-transport-055:before { - content: "8"; -} -.icon-transport-068:before { - content: "9"; -} -.icon-transport-081:before { - content: "!"; -} -.icon-transport-094:before { - content: "\""; -} -.icon-transport-095:before { - content: "#"; -} -.icon-transport-082:before { - content: "$"; -} -.icon-transport-069:before { - content: "%"; -} -.icon-transport-056:before { - content: "&"; -} -.icon-transport-057:before { - content: "'"; -} -.icon-transport-070:before { - content: "("; -} -.icon-transport-083:before { - content: ")"; -} -.icon-transport-096:before { - content: "*"; -} -.icon-transport-097:before { - content: "+"; -} -.icon-transport-084:before { - content: ","; -} -.icon-transport-071:before { - content: "-"; -} -.icon-transport-058:before { - content: "."; -} -.icon-transport-059:before { - content: "/"; -} -.icon-transport-072:before { - content: ":"; -} -.icon-transport-085:before { - content: ";"; -} -.icon-transport-098:before { - content: "<"; -} -.icon-transport-099:before { - content: "="; -} -.icon-transport-086:before { - content: ">"; -} -.icon-transport-073:before { - content: "?"; -} -.icon-transport-060:before { - content: "@"; -} -.icon-transport-061:before { - content: "["; -} -.icon-transport-074:before { - content: "]"; -} -.icon-transport-087:before { - content: "^"; -} -.icon-transport-100:before { - content: "_"; -} -.icon-transport-088:before { - content: "`"; -} -.icon-transport-075:before { - content: "{"; -} -.icon-transport-076:before { - content: "|"; -} -.icon-transport-089:before { - content: "}"; -} -.icon-transport-090:before { - content: "~"; -} -.icon-transport-077:before { - content: "\\"; -} -.icon-transport-078:before { - content: "\e000"; -} -.icon-transport-091:before { - content: "\e001"; -} -.icon-transport-065:before { - content: "\e002"; -} -.icon-transport-064:before { - content: "\e003"; -} -.icon-transport-063:before { - content: "\e004"; -} -.icon-transport-062:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/transport/png/001.png b/public/assets/out/icon-line-pro/transport/png/001.png deleted file mode 100644 index d596efa6..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/002.png b/public/assets/out/icon-line-pro/transport/png/002.png deleted file mode 100644 index ce1de5eb..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/003.png b/public/assets/out/icon-line-pro/transport/png/003.png deleted file mode 100644 index 21686807..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/004.png b/public/assets/out/icon-line-pro/transport/png/004.png deleted file mode 100644 index 1bdd2a0c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/005.png b/public/assets/out/icon-line-pro/transport/png/005.png deleted file mode 100644 index 51f6dd04..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/006.png b/public/assets/out/icon-line-pro/transport/png/006.png deleted file mode 100644 index da33e567..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/007.png b/public/assets/out/icon-line-pro/transport/png/007.png deleted file mode 100644 index 91d68c76..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/008.png b/public/assets/out/icon-line-pro/transport/png/008.png deleted file mode 100644 index f6bf0360..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/009.png b/public/assets/out/icon-line-pro/transport/png/009.png deleted file mode 100644 index 4842f7d3..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/010.png b/public/assets/out/icon-line-pro/transport/png/010.png deleted file mode 100644 index 8b501e4b..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/011.png b/public/assets/out/icon-line-pro/transport/png/011.png deleted file mode 100644 index 39cf6584..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/012.png b/public/assets/out/icon-line-pro/transport/png/012.png deleted file mode 100644 index 3fe64f40..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/013.png b/public/assets/out/icon-line-pro/transport/png/013.png deleted file mode 100644 index 1de96f41..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/014.png b/public/assets/out/icon-line-pro/transport/png/014.png deleted file mode 100644 index 89424234..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/015.png b/public/assets/out/icon-line-pro/transport/png/015.png deleted file mode 100644 index e164396b..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/016.png b/public/assets/out/icon-line-pro/transport/png/016.png deleted file mode 100644 index c233f983..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/017.png b/public/assets/out/icon-line-pro/transport/png/017.png deleted file mode 100644 index d7acba4f..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/018.png b/public/assets/out/icon-line-pro/transport/png/018.png deleted file mode 100644 index 76ecd969..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/019.png b/public/assets/out/icon-line-pro/transport/png/019.png deleted file mode 100644 index 28f6ebd9..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/020.png b/public/assets/out/icon-line-pro/transport/png/020.png deleted file mode 100644 index 4f9f6c60..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/021.png b/public/assets/out/icon-line-pro/transport/png/021.png deleted file mode 100644 index 396d09bf..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/022.png b/public/assets/out/icon-line-pro/transport/png/022.png deleted file mode 100644 index aa259ef1..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/023.png b/public/assets/out/icon-line-pro/transport/png/023.png deleted file mode 100644 index fb486853..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/024.png b/public/assets/out/icon-line-pro/transport/png/024.png deleted file mode 100644 index 20d1d512..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/025.png b/public/assets/out/icon-line-pro/transport/png/025.png deleted file mode 100644 index 245a22d1..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/026.png b/public/assets/out/icon-line-pro/transport/png/026.png deleted file mode 100644 index a3340579..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/027.png b/public/assets/out/icon-line-pro/transport/png/027.png deleted file mode 100644 index 9ac4530d..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/028.png b/public/assets/out/icon-line-pro/transport/png/028.png deleted file mode 100644 index ce162f33..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/029.png b/public/assets/out/icon-line-pro/transport/png/029.png deleted file mode 100644 index b3c87509..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/030.png b/public/assets/out/icon-line-pro/transport/png/030.png deleted file mode 100644 index 553177c3..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/031.png b/public/assets/out/icon-line-pro/transport/png/031.png deleted file mode 100644 index 6476d1ee..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/032.png b/public/assets/out/icon-line-pro/transport/png/032.png deleted file mode 100644 index 2efa4b8a..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/033.png b/public/assets/out/icon-line-pro/transport/png/033.png deleted file mode 100644 index 4ddd6920..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/034.png b/public/assets/out/icon-line-pro/transport/png/034.png deleted file mode 100644 index 1c199f41..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/035.png b/public/assets/out/icon-line-pro/transport/png/035.png deleted file mode 100644 index 2e37ece3..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/036.png b/public/assets/out/icon-line-pro/transport/png/036.png deleted file mode 100644 index 025225f5..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/037.png b/public/assets/out/icon-line-pro/transport/png/037.png deleted file mode 100644 index c5942bb9..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/038.png b/public/assets/out/icon-line-pro/transport/png/038.png deleted file mode 100644 index 42b5b110..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/039.png b/public/assets/out/icon-line-pro/transport/png/039.png deleted file mode 100644 index 54d0fa0e..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/040.png b/public/assets/out/icon-line-pro/transport/png/040.png deleted file mode 100644 index fecda297..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/041.png b/public/assets/out/icon-line-pro/transport/png/041.png deleted file mode 100644 index d8ee55e0..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/042.png b/public/assets/out/icon-line-pro/transport/png/042.png deleted file mode 100644 index 29d1909f..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/043.png b/public/assets/out/icon-line-pro/transport/png/043.png deleted file mode 100644 index 73e49067..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/044.png b/public/assets/out/icon-line-pro/transport/png/044.png deleted file mode 100644 index e8d2adcb..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/045.png b/public/assets/out/icon-line-pro/transport/png/045.png deleted file mode 100644 index 740a7e06..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/046.png b/public/assets/out/icon-line-pro/transport/png/046.png deleted file mode 100644 index f0dea695..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/047.png b/public/assets/out/icon-line-pro/transport/png/047.png deleted file mode 100644 index cd2dc72f..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/048.png b/public/assets/out/icon-line-pro/transport/png/048.png deleted file mode 100644 index de7958dd..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/049.png b/public/assets/out/icon-line-pro/transport/png/049.png deleted file mode 100644 index 5b6b111d..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/050.png b/public/assets/out/icon-line-pro/transport/png/050.png deleted file mode 100644 index 23d63cab..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/051.png b/public/assets/out/icon-line-pro/transport/png/051.png deleted file mode 100644 index 468bab0e..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/052.png b/public/assets/out/icon-line-pro/transport/png/052.png deleted file mode 100644 index cd88211c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/053.png b/public/assets/out/icon-line-pro/transport/png/053.png deleted file mode 100644 index a01c4e5d..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/054.png b/public/assets/out/icon-line-pro/transport/png/054.png deleted file mode 100644 index f9476f2b..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/055.png b/public/assets/out/icon-line-pro/transport/png/055.png deleted file mode 100644 index ffdac7e6..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/056.png b/public/assets/out/icon-line-pro/transport/png/056.png deleted file mode 100644 index 204db915..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/057.png b/public/assets/out/icon-line-pro/transport/png/057.png deleted file mode 100644 index 82c1055b..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/058.png b/public/assets/out/icon-line-pro/transport/png/058.png deleted file mode 100644 index c0158fa0..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/059.png b/public/assets/out/icon-line-pro/transport/png/059.png deleted file mode 100644 index 3b82d530..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/060.png b/public/assets/out/icon-line-pro/transport/png/060.png deleted file mode 100644 index 46c903ed..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/061.png b/public/assets/out/icon-line-pro/transport/png/061.png deleted file mode 100644 index 0baf43ec..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/062.png b/public/assets/out/icon-line-pro/transport/png/062.png deleted file mode 100644 index 7bf9a0a0..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/063.png b/public/assets/out/icon-line-pro/transport/png/063.png deleted file mode 100644 index 48ea643c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/064.png b/public/assets/out/icon-line-pro/transport/png/064.png deleted file mode 100644 index f1eb503a..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/065.png b/public/assets/out/icon-line-pro/transport/png/065.png deleted file mode 100644 index 4fb3dd1b..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/066.png b/public/assets/out/icon-line-pro/transport/png/066.png deleted file mode 100644 index 2a8f1803..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/067.png b/public/assets/out/icon-line-pro/transport/png/067.png deleted file mode 100644 index e6905dd7..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/068.png b/public/assets/out/icon-line-pro/transport/png/068.png deleted file mode 100644 index 7dcbb338..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/069.png b/public/assets/out/icon-line-pro/transport/png/069.png deleted file mode 100644 index 11669868..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/070.png b/public/assets/out/icon-line-pro/transport/png/070.png deleted file mode 100644 index 647dd920..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/071.png b/public/assets/out/icon-line-pro/transport/png/071.png deleted file mode 100644 index e04b2f2d..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/072.png b/public/assets/out/icon-line-pro/transport/png/072.png deleted file mode 100644 index 068f713c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/073.png b/public/assets/out/icon-line-pro/transport/png/073.png deleted file mode 100644 index 915ae46a..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/074.png b/public/assets/out/icon-line-pro/transport/png/074.png deleted file mode 100644 index 2f403112..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/075.png b/public/assets/out/icon-line-pro/transport/png/075.png deleted file mode 100644 index de65d6cd..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/076.png b/public/assets/out/icon-line-pro/transport/png/076.png deleted file mode 100644 index 056e2f06..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/077.png b/public/assets/out/icon-line-pro/transport/png/077.png deleted file mode 100644 index 11bbe626..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/078.png b/public/assets/out/icon-line-pro/transport/png/078.png deleted file mode 100644 index 4961c4f1..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/079.png b/public/assets/out/icon-line-pro/transport/png/079.png deleted file mode 100644 index f1305aee..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/080.png b/public/assets/out/icon-line-pro/transport/png/080.png deleted file mode 100644 index ce09e248..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/081.png b/public/assets/out/icon-line-pro/transport/png/081.png deleted file mode 100644 index 4c296dc0..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/082.png b/public/assets/out/icon-line-pro/transport/png/082.png deleted file mode 100644 index eac26b19..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/083.png b/public/assets/out/icon-line-pro/transport/png/083.png deleted file mode 100644 index 29536e38..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/084.png b/public/assets/out/icon-line-pro/transport/png/084.png deleted file mode 100644 index b9498a24..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/085.png b/public/assets/out/icon-line-pro/transport/png/085.png deleted file mode 100644 index 472f3429..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/086.png b/public/assets/out/icon-line-pro/transport/png/086.png deleted file mode 100644 index bbb7231c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/087.png b/public/assets/out/icon-line-pro/transport/png/087.png deleted file mode 100644 index 0b179f88..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/088.png b/public/assets/out/icon-line-pro/transport/png/088.png deleted file mode 100644 index 8afcc64a..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/089.png b/public/assets/out/icon-line-pro/transport/png/089.png deleted file mode 100644 index e0292c8f..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/090.png b/public/assets/out/icon-line-pro/transport/png/090.png deleted file mode 100644 index c3b85761..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/091.png b/public/assets/out/icon-line-pro/transport/png/091.png deleted file mode 100644 index a6503037..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/092.png b/public/assets/out/icon-line-pro/transport/png/092.png deleted file mode 100644 index ae2f47e5..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/093.png b/public/assets/out/icon-line-pro/transport/png/093.png deleted file mode 100644 index 42b0f966..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/094.png b/public/assets/out/icon-line-pro/transport/png/094.png deleted file mode 100644 index a5fffd53..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/095.png b/public/assets/out/icon-line-pro/transport/png/095.png deleted file mode 100644 index ee50df15..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/096.png b/public/assets/out/icon-line-pro/transport/png/096.png deleted file mode 100644 index 32875f4c..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/097.png b/public/assets/out/icon-line-pro/transport/png/097.png deleted file mode 100644 index 66c580ef..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/098.png b/public/assets/out/icon-line-pro/transport/png/098.png deleted file mode 100644 index 99587a0e..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/099.png b/public/assets/out/icon-line-pro/transport/png/099.png deleted file mode 100644 index bb34ff03..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/png/100.png b/public/assets/out/icon-line-pro/transport/png/100.png deleted file mode 100644 index b925f7d5..00000000 Binary files a/public/assets/out/icon-line-pro/transport/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.eot b/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.eot deleted file mode 100644 index f7019f3f..00000000 Binary files a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.svg b/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.svg deleted file mode 100644 index 9806853a..00000000 --- a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.ttf b/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.ttf deleted file mode 100644 index 8a329f01..00000000 Binary files a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.woff b/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.woff deleted file mode 100644 index 65f95f87..00000000 Binary files a/public/assets/out/icon-line-pro/transport/webfont/fonts/transport.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/transport/webfont/icons-reference.html b/public/assets/out/icon-line-pro/transport/webfont/icons-reference.html deleted file mode 100644 index d3716be6..00000000 --- a/public/assets/out/icon-line-pro/transport/webfont/icons-reference.html +++ /dev/null @@ -1,869 +0,0 @@ - - - - - - - Font Reference - Transport - - - - - -
      -

      Transport

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/transport/webfont/styles.css b/public/assets/out/icon-line-pro/transport/webfont/styles.css deleted file mode 100644 index c709710b..00000000 --- a/public/assets/out/icon-line-pro/transport/webfont/styles.css +++ /dev/null @@ -1,340 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "transport"; - src:url("fonts/transport.eot"); - src:url("fonts/transport.eot?#iefix") format("embedded-opentype"), - url("fonts/transport.woff") format("woff"), - url("fonts/transport.ttf") format("truetype"), - url("fonts/transport.svg#transport") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "transport" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "transport" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-015:before { - content: "c"; -} -.icon-002:before { - content: "d"; -} -.icon-003:before { - content: "e"; -} -.icon-016:before { - content: "f"; -} -.icon-017:before { - content: "g"; -} -.icon-004:before { - content: "h"; -} -.icon-005:before { - content: "i"; -} -.icon-018:before { - content: "j"; -} -.icon-019:before { - content: "k"; -} -.icon-006:before { - content: "l"; -} -.icon-007:before { - content: "m"; -} -.icon-020:before { - content: "n"; -} -.icon-021:before { - content: "o"; -} -.icon-008:before { - content: "p"; -} -.icon-009:before { - content: "q"; -} -.icon-022:before { - content: "r"; -} -.icon-023:before { - content: "s"; -} -.icon-010:before { - content: "t"; -} -.icon-024:before { - content: "u"; -} -.icon-025:before { - content: "v"; -} -.icon-012:before { - content: "w"; -} -.icon-011:before { - content: "x"; -} -.icon-013:before { - content: "y"; -} -.icon-026:before { - content: "z"; -} -.icon-039:before { - content: "A"; -} -.icon-052:before { - content: "B"; -} -.icon-051:before { - content: "C"; -} -.icon-038:before { - content: "D"; -} -.icon-037:before { - content: "E"; -} -.icon-050:before { - content: "F"; -} -.icon-049:before { - content: "G"; -} -.icon-036:before { - content: "H"; -} -.icon-035:before { - content: "I"; -} -.icon-048:before { - content: "J"; -} -.icon-047:before { - content: "K"; -} -.icon-034:before { - content: "L"; -} -.icon-033:before { - content: "M"; -} -.icon-046:before { - content: "N"; -} -.icon-045:before { - content: "O"; -} -.icon-032:before { - content: "P"; -} -.icon-031:before { - content: "Q"; -} -.icon-044:before { - content: "R"; -} -.icon-043:before { - content: "S"; -} -.icon-030:before { - content: "T"; -} -.icon-029:before { - content: "U"; -} -.icon-042:before { - content: "V"; -} -.icon-041:before { - content: "W"; -} -.icon-028:before { - content: "X"; -} -.icon-027:before { - content: "Y"; -} -.icon-040:before { - content: "Z"; -} -.icon-053:before { - content: "0"; -} -.icon-066:before { - content: "1"; -} -.icon-079:before { - content: "2"; -} -.icon-092:before { - content: "3"; -} -.icon-093:before { - content: "4"; -} -.icon-080:before { - content: "5"; -} -.icon-067:before { - content: "6"; -} -.icon-054:before { - content: "7"; -} -.icon-055:before { - content: "8"; -} -.icon-068:before { - content: "9"; -} -.icon-081:before { - content: "!"; -} -.icon-094:before { - content: "\""; -} -.icon-095:before { - content: "#"; -} -.icon-082:before { - content: "$"; -} -.icon-069:before { - content: "%"; -} -.icon-056:before { - content: "&"; -} -.icon-057:before { - content: "'"; -} -.icon-070:before { - content: "("; -} -.icon-083:before { - content: ")"; -} -.icon-096:before { - content: "*"; -} -.icon-097:before { - content: "+"; -} -.icon-084:before { - content: ","; -} -.icon-071:before { - content: "-"; -} -.icon-058:before { - content: "."; -} -.icon-059:before { - content: "/"; -} -.icon-072:before { - content: ":"; -} -.icon-085:before { - content: ";"; -} -.icon-098:before { - content: "<"; -} -.icon-099:before { - content: "="; -} -.icon-086:before { - content: ">"; -} -.icon-073:before { - content: "?"; -} -.icon-060:before { - content: "@"; -} -.icon-061:before { - content: "["; -} -.icon-074:before { - content: "]"; -} -.icon-087:before { - content: "^"; -} -.icon-100:before { - content: "_"; -} -.icon-088:before { - content: "`"; -} -.icon-075:before { - content: "{"; -} -.icon-076:before { - content: "|"; -} -.icon-089:before { - content: "}"; -} -.icon-090:before { - content: "~"; -} -.icon-077:before { - content: "\\"; -} -.icon-078:before { - content: "\e000"; -} -.icon-091:before { - content: "\e001"; -} -.icon-065:before { - content: "\e002"; -} -.icon-064:before { - content: "\e003"; -} -.icon-063:before { - content: "\e004"; -} -.icon-062:before { - content: "\e005"; -} diff --git a/public/assets/out/icon-line-pro/travel/png/001.png b/public/assets/out/icon-line-pro/travel/png/001.png deleted file mode 100644 index 3e440a3a..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/002.png b/public/assets/out/icon-line-pro/travel/png/002.png deleted file mode 100644 index f2d468f4..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/003.png b/public/assets/out/icon-line-pro/travel/png/003.png deleted file mode 100644 index 31d831d6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/004.png b/public/assets/out/icon-line-pro/travel/png/004.png deleted file mode 100644 index bcfda80c..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/005.png b/public/assets/out/icon-line-pro/travel/png/005.png deleted file mode 100644 index 023ffff9..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/006.png b/public/assets/out/icon-line-pro/travel/png/006.png deleted file mode 100644 index 46ec377f..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/007.png b/public/assets/out/icon-line-pro/travel/png/007.png deleted file mode 100644 index 082eebdc..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/008.png b/public/assets/out/icon-line-pro/travel/png/008.png deleted file mode 100644 index 4d1a1c80..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/009.png b/public/assets/out/icon-line-pro/travel/png/009.png deleted file mode 100644 index 034463ef..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/010.png b/public/assets/out/icon-line-pro/travel/png/010.png deleted file mode 100644 index a9547ee6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/011.png b/public/assets/out/icon-line-pro/travel/png/011.png deleted file mode 100644 index 5bafec54..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/012.png b/public/assets/out/icon-line-pro/travel/png/012.png deleted file mode 100644 index 4bc8b034..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/013.png b/public/assets/out/icon-line-pro/travel/png/013.png deleted file mode 100644 index 4db89bd9..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/014.png b/public/assets/out/icon-line-pro/travel/png/014.png deleted file mode 100644 index 6f046f41..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/015.png b/public/assets/out/icon-line-pro/travel/png/015.png deleted file mode 100644 index 55a7e8c5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/016.png b/public/assets/out/icon-line-pro/travel/png/016.png deleted file mode 100644 index 3b82d530..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/017.png b/public/assets/out/icon-line-pro/travel/png/017.png deleted file mode 100644 index adffbbd8..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/018.png b/public/assets/out/icon-line-pro/travel/png/018.png deleted file mode 100644 index 630b1fd8..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/019.png b/public/assets/out/icon-line-pro/travel/png/019.png deleted file mode 100644 index 8e82eafb..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/020.png b/public/assets/out/icon-line-pro/travel/png/020.png deleted file mode 100644 index 578890aa..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/021.png b/public/assets/out/icon-line-pro/travel/png/021.png deleted file mode 100644 index f361742b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/022.png b/public/assets/out/icon-line-pro/travel/png/022.png deleted file mode 100644 index be9186f6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/023.png b/public/assets/out/icon-line-pro/travel/png/023.png deleted file mode 100644 index 116f4339..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/024.png b/public/assets/out/icon-line-pro/travel/png/024.png deleted file mode 100644 index 48cf2d96..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/025.png b/public/assets/out/icon-line-pro/travel/png/025.png deleted file mode 100644 index 4f5cfef3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/026.png b/public/assets/out/icon-line-pro/travel/png/026.png deleted file mode 100644 index 1978cc04..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/027.png b/public/assets/out/icon-line-pro/travel/png/027.png deleted file mode 100644 index ccc626ca..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/028.png b/public/assets/out/icon-line-pro/travel/png/028.png deleted file mode 100644 index 3dc00a85..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/029.png b/public/assets/out/icon-line-pro/travel/png/029.png deleted file mode 100644 index 7944d510..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/030.png b/public/assets/out/icon-line-pro/travel/png/030.png deleted file mode 100644 index d4906db5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/031.png b/public/assets/out/icon-line-pro/travel/png/031.png deleted file mode 100644 index 039703e0..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/032.png b/public/assets/out/icon-line-pro/travel/png/032.png deleted file mode 100644 index b94b2eac..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/033.png b/public/assets/out/icon-line-pro/travel/png/033.png deleted file mode 100644 index ce0035e4..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/034.png b/public/assets/out/icon-line-pro/travel/png/034.png deleted file mode 100644 index 1a244731..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/035.png b/public/assets/out/icon-line-pro/travel/png/035.png deleted file mode 100644 index 991d21ac..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/036.png b/public/assets/out/icon-line-pro/travel/png/036.png deleted file mode 100644 index 6e19bbc0..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/037.png b/public/assets/out/icon-line-pro/travel/png/037.png deleted file mode 100644 index 72a0f435..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/038.png b/public/assets/out/icon-line-pro/travel/png/038.png deleted file mode 100644 index f9f9b95e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/039.png b/public/assets/out/icon-line-pro/travel/png/039.png deleted file mode 100644 index 18f44b8c..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/040.png b/public/assets/out/icon-line-pro/travel/png/040.png deleted file mode 100644 index eb73da0b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/041.png b/public/assets/out/icon-line-pro/travel/png/041.png deleted file mode 100644 index 8796d8bf..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/042.png b/public/assets/out/icon-line-pro/travel/png/042.png deleted file mode 100644 index fa91762d..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/043.png b/public/assets/out/icon-line-pro/travel/png/043.png deleted file mode 100644 index 7b3aa285..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/044.png b/public/assets/out/icon-line-pro/travel/png/044.png deleted file mode 100644 index f7ef5dd6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/045.png b/public/assets/out/icon-line-pro/travel/png/045.png deleted file mode 100644 index 7a8a054f..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/046.png b/public/assets/out/icon-line-pro/travel/png/046.png deleted file mode 100644 index 90cc3030..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/047.png b/public/assets/out/icon-line-pro/travel/png/047.png deleted file mode 100644 index 3a445a61..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/048.png b/public/assets/out/icon-line-pro/travel/png/048.png deleted file mode 100644 index 88030e20..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/049.png b/public/assets/out/icon-line-pro/travel/png/049.png deleted file mode 100644 index 53b549b8..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/050.png b/public/assets/out/icon-line-pro/travel/png/050.png deleted file mode 100644 index 4bd189c3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/051.png b/public/assets/out/icon-line-pro/travel/png/051.png deleted file mode 100644 index 91d68c76..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/052.png b/public/assets/out/icon-line-pro/travel/png/052.png deleted file mode 100644 index da282b98..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/053.png b/public/assets/out/icon-line-pro/travel/png/053.png deleted file mode 100644 index f6b187da..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/054.png b/public/assets/out/icon-line-pro/travel/png/054.png deleted file mode 100644 index 59625c3e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/055.png b/public/assets/out/icon-line-pro/travel/png/055.png deleted file mode 100644 index cc50db82..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/056.png b/public/assets/out/icon-line-pro/travel/png/056.png deleted file mode 100644 index 04922ca1..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/057.png b/public/assets/out/icon-line-pro/travel/png/057.png deleted file mode 100644 index fd5b4a0b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/058.png b/public/assets/out/icon-line-pro/travel/png/058.png deleted file mode 100644 index 0db48305..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/059.png b/public/assets/out/icon-line-pro/travel/png/059.png deleted file mode 100644 index c3b85761..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/060.png b/public/assets/out/icon-line-pro/travel/png/060.png deleted file mode 100644 index 7b097e3b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/061.png b/public/assets/out/icon-line-pro/travel/png/061.png deleted file mode 100644 index 1ffc853a..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/061.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/062.png b/public/assets/out/icon-line-pro/travel/png/062.png deleted file mode 100644 index 2a5eaec3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/062.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/063.png b/public/assets/out/icon-line-pro/travel/png/063.png deleted file mode 100644 index 2e6648eb..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/063.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/064.png b/public/assets/out/icon-line-pro/travel/png/064.png deleted file mode 100644 index 66dbd10e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/064.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/065.png b/public/assets/out/icon-line-pro/travel/png/065.png deleted file mode 100644 index 0baf43ec..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/065.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/066.png b/public/assets/out/icon-line-pro/travel/png/066.png deleted file mode 100644 index 651f78d7..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/066.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/067.png b/public/assets/out/icon-line-pro/travel/png/067.png deleted file mode 100644 index 8a867bd5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/067.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/068.png b/public/assets/out/icon-line-pro/travel/png/068.png deleted file mode 100644 index e4e0e7f5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/068.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/069.png b/public/assets/out/icon-line-pro/travel/png/069.png deleted file mode 100644 index 1899b18e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/069.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/070.png b/public/assets/out/icon-line-pro/travel/png/070.png deleted file mode 100644 index 49a97d06..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/070.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/071.png b/public/assets/out/icon-line-pro/travel/png/071.png deleted file mode 100644 index 20f5dc90..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/071.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/072.png b/public/assets/out/icon-line-pro/travel/png/072.png deleted file mode 100644 index cadad330..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/072.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/073.png b/public/assets/out/icon-line-pro/travel/png/073.png deleted file mode 100644 index 5c30135f..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/073.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/074.png b/public/assets/out/icon-line-pro/travel/png/074.png deleted file mode 100644 index 0748b4b0..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/074.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/075.png b/public/assets/out/icon-line-pro/travel/png/075.png deleted file mode 100644 index d1e32c1b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/075.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/076.png b/public/assets/out/icon-line-pro/travel/png/076.png deleted file mode 100644 index 177b9ff2..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/076.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/077.png b/public/assets/out/icon-line-pro/travel/png/077.png deleted file mode 100644 index fa4b8ac5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/077.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/078.png b/public/assets/out/icon-line-pro/travel/png/078.png deleted file mode 100644 index f8d2e5be..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/078.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/079.png b/public/assets/out/icon-line-pro/travel/png/079.png deleted file mode 100644 index f8fc6ee5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/079.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/080.png b/public/assets/out/icon-line-pro/travel/png/080.png deleted file mode 100644 index 5babe3ef..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/080.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/081.png b/public/assets/out/icon-line-pro/travel/png/081.png deleted file mode 100644 index dfd7fce5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/081.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/082.png b/public/assets/out/icon-line-pro/travel/png/082.png deleted file mode 100644 index 9b0d47bf..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/082.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/083.png b/public/assets/out/icon-line-pro/travel/png/083.png deleted file mode 100644 index 9cef96d3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/083.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/084.png b/public/assets/out/icon-line-pro/travel/png/084.png deleted file mode 100644 index 89464231..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/084.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/085.png b/public/assets/out/icon-line-pro/travel/png/085.png deleted file mode 100644 index f87addcd..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/085.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/086.png b/public/assets/out/icon-line-pro/travel/png/086.png deleted file mode 100644 index e0ac3fbb..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/086.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/087.png b/public/assets/out/icon-line-pro/travel/png/087.png deleted file mode 100644 index 779983b2..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/087.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/088.png b/public/assets/out/icon-line-pro/travel/png/088.png deleted file mode 100644 index a8c2da53..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/088.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/089.png b/public/assets/out/icon-line-pro/travel/png/089.png deleted file mode 100644 index f3aecfa3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/089.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/090.png b/public/assets/out/icon-line-pro/travel/png/090.png deleted file mode 100644 index c54c38b0..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/090.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/091.png b/public/assets/out/icon-line-pro/travel/png/091.png deleted file mode 100644 index fdb017e8..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/091.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/092.png b/public/assets/out/icon-line-pro/travel/png/092.png deleted file mode 100644 index 0cd8ace5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/092.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/093.png b/public/assets/out/icon-line-pro/travel/png/093.png deleted file mode 100644 index 138dcc41..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/093.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/094.png b/public/assets/out/icon-line-pro/travel/png/094.png deleted file mode 100644 index c924a107..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/094.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/095.png b/public/assets/out/icon-line-pro/travel/png/095.png deleted file mode 100644 index 35e3c0c4..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/095.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/096.png b/public/assets/out/icon-line-pro/travel/png/096.png deleted file mode 100644 index 99aa9f8d..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/096.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/097.png b/public/assets/out/icon-line-pro/travel/png/097.png deleted file mode 100644 index 18b56f62..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/097.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/098.png b/public/assets/out/icon-line-pro/travel/png/098.png deleted file mode 100644 index 566b1f04..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/098.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/099.png b/public/assets/out/icon-line-pro/travel/png/099.png deleted file mode 100644 index 86c50ba6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/099.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/100.png b/public/assets/out/icon-line-pro/travel/png/100.png deleted file mode 100644 index 65d04998..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/100.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/101.png b/public/assets/out/icon-line-pro/travel/png/101.png deleted file mode 100644 index a4c0efbb..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/101.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/102.png b/public/assets/out/icon-line-pro/travel/png/102.png deleted file mode 100644 index 8e0ad8d6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/102.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/103.png b/public/assets/out/icon-line-pro/travel/png/103.png deleted file mode 100644 index 1bdde3d9..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/103.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/104.png b/public/assets/out/icon-line-pro/travel/png/104.png deleted file mode 100644 index 19d6b647..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/104.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/105.png b/public/assets/out/icon-line-pro/travel/png/105.png deleted file mode 100644 index 36d24524..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/105.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/106.png b/public/assets/out/icon-line-pro/travel/png/106.png deleted file mode 100644 index c66a165e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/106.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/107.png b/public/assets/out/icon-line-pro/travel/png/107.png deleted file mode 100644 index afb8cfcf..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/107.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/108.png b/public/assets/out/icon-line-pro/travel/png/108.png deleted file mode 100644 index 839252e5..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/108.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/109.png b/public/assets/out/icon-line-pro/travel/png/109.png deleted file mode 100644 index 0e648e4c..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/109.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/110.png b/public/assets/out/icon-line-pro/travel/png/110.png deleted file mode 100644 index abc54b56..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/110.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/111.png b/public/assets/out/icon-line-pro/travel/png/111.png deleted file mode 100644 index c87df9c6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/111.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/112.png b/public/assets/out/icon-line-pro/travel/png/112.png deleted file mode 100644 index c9256e67..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/112.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/113.png b/public/assets/out/icon-line-pro/travel/png/113.png deleted file mode 100644 index 888aa21b..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/113.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/114.png b/public/assets/out/icon-line-pro/travel/png/114.png deleted file mode 100644 index 0f91bfe3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/114.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/115.png b/public/assets/out/icon-line-pro/travel/png/115.png deleted file mode 100644 index b800f68f..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/115.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/116.png b/public/assets/out/icon-line-pro/travel/png/116.png deleted file mode 100644 index 70947aa3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/116.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/117.png b/public/assets/out/icon-line-pro/travel/png/117.png deleted file mode 100644 index a9ec6d87..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/117.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/118.png b/public/assets/out/icon-line-pro/travel/png/118.png deleted file mode 100644 index 026859b7..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/118.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/119.png b/public/assets/out/icon-line-pro/travel/png/119.png deleted file mode 100644 index 502bb7d7..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/119.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/120.png b/public/assets/out/icon-line-pro/travel/png/120.png deleted file mode 100644 index 089bc3a2..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/120.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/121.png b/public/assets/out/icon-line-pro/travel/png/121.png deleted file mode 100644 index 11669868..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/121.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/122.png b/public/assets/out/icon-line-pro/travel/png/122.png deleted file mode 100644 index c6c26d5c..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/122.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/123.png b/public/assets/out/icon-line-pro/travel/png/123.png deleted file mode 100644 index 361d9c89..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/123.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/124.png b/public/assets/out/icon-line-pro/travel/png/124.png deleted file mode 100644 index 66ac8016..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/124.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/125.png b/public/assets/out/icon-line-pro/travel/png/125.png deleted file mode 100644 index 2d9828ce..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/125.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/126.png b/public/assets/out/icon-line-pro/travel/png/126.png deleted file mode 100644 index c09acb8e..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/126.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/127.png b/public/assets/out/icon-line-pro/travel/png/127.png deleted file mode 100644 index aece114c..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/127.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/128.png b/public/assets/out/icon-line-pro/travel/png/128.png deleted file mode 100644 index 515f97e4..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/128.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/129.png b/public/assets/out/icon-line-pro/travel/png/129.png deleted file mode 100644 index 045f97ac..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/129.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/130.png b/public/assets/out/icon-line-pro/travel/png/130.png deleted file mode 100644 index e58c0ada..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/130.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/131.png b/public/assets/out/icon-line-pro/travel/png/131.png deleted file mode 100644 index 2a40bf65..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/131.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/132.png b/public/assets/out/icon-line-pro/travel/png/132.png deleted file mode 100644 index 921560db..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/132.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/133.png b/public/assets/out/icon-line-pro/travel/png/133.png deleted file mode 100644 index a69e1461..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/133.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/134.png b/public/assets/out/icon-line-pro/travel/png/134.png deleted file mode 100644 index d7956307..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/134.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/135.png b/public/assets/out/icon-line-pro/travel/png/135.png deleted file mode 100644 index 7c22ea1a..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/135.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/136.png b/public/assets/out/icon-line-pro/travel/png/136.png deleted file mode 100644 index d494c8ef..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/136.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/137.png b/public/assets/out/icon-line-pro/travel/png/137.png deleted file mode 100644 index c18a3029..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/137.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/138.png b/public/assets/out/icon-line-pro/travel/png/138.png deleted file mode 100644 index bff44087..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/138.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/139.png b/public/assets/out/icon-line-pro/travel/png/139.png deleted file mode 100644 index a2fce8d3..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/139.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/140.png b/public/assets/out/icon-line-pro/travel/png/140.png deleted file mode 100644 index a852f2c1..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/140.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/141.png b/public/assets/out/icon-line-pro/travel/png/141.png deleted file mode 100644 index 4f5d9e27..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/141.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/142.png b/public/assets/out/icon-line-pro/travel/png/142.png deleted file mode 100644 index 2c42db1f..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/142.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/143.png b/public/assets/out/icon-line-pro/travel/png/143.png deleted file mode 100644 index 3e86a841..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/143.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/144.png b/public/assets/out/icon-line-pro/travel/png/144.png deleted file mode 100644 index a0690a8d..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/144.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/145.png b/public/assets/out/icon-line-pro/travel/png/145.png deleted file mode 100644 index 578890aa..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/145.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/146.png b/public/assets/out/icon-line-pro/travel/png/146.png deleted file mode 100644 index 76ecd969..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/146.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/147.png b/public/assets/out/icon-line-pro/travel/png/147.png deleted file mode 100644 index 323298d6..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/147.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/148.png b/public/assets/out/icon-line-pro/travel/png/148.png deleted file mode 100644 index 5dc8ede2..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/148.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/149.png b/public/assets/out/icon-line-pro/travel/png/149.png deleted file mode 100644 index 66376264..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/149.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/png/150.png b/public/assets/out/icon-line-pro/travel/png/150.png deleted file mode 100644 index 6bcf34aa..00000000 Binary files a/public/assets/out/icon-line-pro/travel/png/150.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.eot b/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.eot deleted file mode 100644 index 7bbb5f56..00000000 Binary files a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.svg b/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.svg deleted file mode 100644 index ab8c9b65..00000000 --- a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.ttf b/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.ttf deleted file mode 100644 index daea0bf9..00000000 Binary files a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.woff b/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.woff deleted file mode 100644 index c3fa0283..00000000 Binary files a/public/assets/out/icon-line-pro/travel/webfont/fonts/travel.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/travel/webfont/icons-reference.html b/public/assets/out/icon-line-pro/travel/webfont/icons-reference.html deleted file mode 100644 index 284f11e5..00000000 --- a/public/assets/out/icon-line-pro/travel/webfont/icons-reference.html +++ /dev/null @@ -1,1269 +0,0 @@ - - - - - - - Font Reference - Travel - - - - - -
      -

      Travel

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/travel/webfont/styles.css b/public/assets/out/icon-line-pro/travel/webfont/styles.css deleted file mode 100644 index dc7027b6..00000000 --- a/public/assets/out/icon-line-pro/travel/webfont/styles.css +++ /dev/null @@ -1,490 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "travel"; - src:url("fonts/travel.eot"); - src:url("fonts/travel.eot?#iefix") format("embedded-opentype"), - url("fonts/travel.woff") format("woff"), - url("fonts/travel.ttf") format("truetype"), - url("fonts/travel.svg#travel") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "travel" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "travel" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-015:before { - content: "c"; -} -.icon-002:before { - content: "d"; -} -.icon-003:before { - content: "e"; -} -.icon-016:before { - content: "f"; -} -.icon-017:before { - content: "g"; -} -.icon-004:before { - content: "h"; -} -.icon-005:before { - content: "i"; -} -.icon-018:before { - content: "j"; -} -.icon-019:before { - content: "k"; -} -.icon-006:before { - content: "l"; -} -.icon-007:before { - content: "m"; -} -.icon-020:before { - content: "n"; -} -.icon-021:before { - content: "o"; -} -.icon-008:before { - content: "p"; -} -.icon-009:before { - content: "q"; -} -.icon-022:before { - content: "r"; -} -.icon-023:before { - content: "s"; -} -.icon-010:before { - content: "t"; -} -.icon-011:before { - content: "u"; -} -.icon-024:before { - content: "v"; -} -.icon-025:before { - content: "w"; -} -.icon-012:before { - content: "x"; -} -.icon-013:before { - content: "y"; -} -.icon-026:before { - content: "z"; -} -.icon-039:before { - content: "A"; -} -.icon-052:before { - content: "B"; -} -.icon-065:before { - content: "C"; -} -.icon-064:before { - content: "D"; -} -.icon-051:before { - content: "E"; -} -.icon-038:before { - content: "F"; -} -.icon-037:before { - content: "G"; -} -.icon-050:before { - content: "H"; -} -.icon-063:before { - content: "I"; -} -.icon-062:before { - content: "J"; -} -.icon-049:before { - content: "K"; -} -.icon-036:before { - content: "L"; -} -.icon-035:before { - content: "M"; -} -.icon-048:before { - content: "N"; -} -.icon-061:before { - content: "O"; -} -.icon-060:before { - content: "P"; -} -.icon-047:before { - content: "Q"; -} -.icon-034:before { - content: "R"; -} -.icon-033:before { - content: "S"; -} -.icon-046:before { - content: "T"; -} -.icon-059:before { - content: "U"; -} -.icon-058:before { - content: "V"; -} -.icon-045:before { - content: "W"; -} -.icon-032:before { - content: "X"; -} -.icon-031:before { - content: "Y"; -} -.icon-044:before { - content: "Z"; -} -.icon-057:before { - content: "0"; -} -.icon-056:before { - content: "1"; -} -.icon-043:before { - content: "2"; -} -.icon-030:before { - content: "3"; -} -.icon-029:before { - content: "4"; -} -.icon-042:before { - content: "5"; -} -.icon-055:before { - content: "6"; -} -.icon-054:before { - content: "7"; -} -.icon-041:before { - content: "8"; -} -.icon-028:before { - content: "9"; -} -.icon-027:before { - content: "!"; -} -.icon-040:before { - content: "\""; -} -.icon-053:before { - content: "#"; -} -.icon-066:before { - content: "$"; -} -.icon-079:before { - content: "%"; -} -.icon-092:before { - content: "&"; -} -.icon-105:before { - content: "'"; -} -.icon-106:before { - content: "("; -} -.icon-093:before { - content: ")"; -} -.icon-080:before { - content: "*"; -} -.icon-067:before { - content: "+"; -} -.icon-068:before { - content: ","; -} -.icon-081:before { - content: "-"; -} -.icon-094:before { - content: "."; -} -.icon-107:before { - content: "/"; -} -.icon-108:before { - content: ":"; -} -.icon-095:before { - content: ";"; -} -.icon-082:before { - content: "<"; -} -.icon-069:before { - content: "="; -} -.icon-070:before { - content: ">"; -} -.icon-083:before { - content: "?"; -} -.icon-096:before { - content: "@"; -} -.icon-109:before { - content: "["; -} -.icon-110:before { - content: "]"; -} -.icon-097:before { - content: "^"; -} -.icon-084:before { - content: "_"; -} -.icon-071:before { - content: "`"; -} -.icon-072:before { - content: "{"; -} -.icon-085:before { - content: "|"; -} -.icon-098:before { - content: "}"; -} -.icon-111:before { - content: "~"; -} -.icon-112:before { - content: "\\"; -} -.icon-099:before { - content: "\e000"; -} -.icon-086:before { - content: "\e001"; -} -.icon-073:before { - content: "\e002"; -} -.icon-074:before { - content: "\e003"; -} -.icon-087:before { - content: "\e004"; -} -.icon-100:before { - content: "\e005"; -} -.icon-113:before { - content: "\e006"; -} -.icon-114:before { - content: "\e007"; -} -.icon-101:before { - content: "\e008"; -} -.icon-088:before { - content: "\e009"; -} -.icon-075:before { - content: "\e00a"; -} -.icon-076:before { - content: "\e00b"; -} -.icon-089:before { - content: "\e00c"; -} -.icon-102:before { - content: "\e00d"; -} -.icon-115:before { - content: "\e00e"; -} -.icon-116:before { - content: "\e00f"; -} -.icon-103:before { - content: "\e010"; -} -.icon-090:before { - content: "\e011"; -} -.icon-077:before { - content: "\e012"; -} -.icon-091:before { - content: "\e013"; -} -.icon-104:before { - content: "\e014"; -} -.icon-117:before { - content: "\e015"; -} -.icon-078:before { - content: "\e016"; -} -.icon-130:before { - content: "\e017"; -} -.icon-143:before { - content: "\e018"; -} -.icon-142:before { - content: "\e019"; -} -.icon-129:before { - content: "\e01a"; -} -.icon-128:before { - content: "\e01b"; -} -.icon-141:before { - content: "\e01c"; -} -.icon-140:before { - content: "\e01d"; -} -.icon-127:before { - content: "\e01e"; -} -.icon-126:before { - content: "\e01f"; -} -.icon-139:before { - content: "\e020"; -} -.icon-138:before { - content: "\e021"; -} -.icon-125:before { - content: "\e022"; -} -.icon-124:before { - content: "\e023"; -} -.icon-137:before { - content: "\e024"; -} -.icon-150:before { - content: "\e025"; -} -.icon-149:before { - content: "\e026"; -} -.icon-136:before { - content: "\e027"; -} -.icon-123:before { - content: "\e028"; -} -.icon-122:before { - content: "\e029"; -} -.icon-135:before { - content: "\e02a"; -} -.icon-148:before { - content: "\e02b"; -} -.icon-147:before { - content: "\e02c"; -} -.icon-134:before { - content: "\e02d"; -} -.icon-121:before { - content: "\e02e"; -} -.icon-120:before { - content: "\e02f"; -} -.icon-133:before { - content: "\e030"; -} -.icon-146:before { - content: "\e031"; -} -.icon-145:before { - content: "\e032"; -} -.icon-132:before { - content: "\e033"; -} -.icon-119:before { - content: "\e034"; -} -.icon-118:before { - content: "\e035"; -} -.icon-131:before { - content: "\e036"; -} -.icon-144:before { - content: "\e037"; -} diff --git a/public/assets/out/icon-line-pro/weather/png/001.png b/public/assets/out/icon-line-pro/weather/png/001.png deleted file mode 100644 index c1e3145e..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/001.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/002.png b/public/assets/out/icon-line-pro/weather/png/002.png deleted file mode 100644 index 78063d6b..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/002.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/003.png b/public/assets/out/icon-line-pro/weather/png/003.png deleted file mode 100644 index 248ba47a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/003.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/004.png b/public/assets/out/icon-line-pro/weather/png/004.png deleted file mode 100644 index aa338b4a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/004.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/005.png b/public/assets/out/icon-line-pro/weather/png/005.png deleted file mode 100644 index 2e945455..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/005.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/006.png b/public/assets/out/icon-line-pro/weather/png/006.png deleted file mode 100644 index ea497525..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/006.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/007.png b/public/assets/out/icon-line-pro/weather/png/007.png deleted file mode 100644 index f1227a16..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/007.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/008.png b/public/assets/out/icon-line-pro/weather/png/008.png deleted file mode 100644 index 9e516be4..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/008.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/009.png b/public/assets/out/icon-line-pro/weather/png/009.png deleted file mode 100644 index 9dbe2572..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/009.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/010.png b/public/assets/out/icon-line-pro/weather/png/010.png deleted file mode 100644 index 2ea9d2ea..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/010.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/011.png b/public/assets/out/icon-line-pro/weather/png/011.png deleted file mode 100644 index 33e1d357..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/011.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/012.png b/public/assets/out/icon-line-pro/weather/png/012.png deleted file mode 100644 index 761eef85..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/012.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/013.png b/public/assets/out/icon-line-pro/weather/png/013.png deleted file mode 100644 index e71efacc..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/013.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/014.png b/public/assets/out/icon-line-pro/weather/png/014.png deleted file mode 100644 index 016a7f24..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/014.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/015.png b/public/assets/out/icon-line-pro/weather/png/015.png deleted file mode 100644 index 21cbbb73..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/015.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/016.png b/public/assets/out/icon-line-pro/weather/png/016.png deleted file mode 100644 index dd5bfa07..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/016.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/017.png b/public/assets/out/icon-line-pro/weather/png/017.png deleted file mode 100644 index 6a0b0528..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/017.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/018.png b/public/assets/out/icon-line-pro/weather/png/018.png deleted file mode 100644 index 499f8777..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/018.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/019.png b/public/assets/out/icon-line-pro/weather/png/019.png deleted file mode 100644 index b8718ab0..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/019.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/020.png b/public/assets/out/icon-line-pro/weather/png/020.png deleted file mode 100644 index efff54e0..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/020.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/021.png b/public/assets/out/icon-line-pro/weather/png/021.png deleted file mode 100644 index 3db0dbdd..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/021.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/022.png b/public/assets/out/icon-line-pro/weather/png/022.png deleted file mode 100644 index cde0c83d..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/022.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/023.png b/public/assets/out/icon-line-pro/weather/png/023.png deleted file mode 100644 index 88898103..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/023.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/024.png b/public/assets/out/icon-line-pro/weather/png/024.png deleted file mode 100644 index cf67607c..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/024.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/025.png b/public/assets/out/icon-line-pro/weather/png/025.png deleted file mode 100644 index ccdbc93d..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/025.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/026.png b/public/assets/out/icon-line-pro/weather/png/026.png deleted file mode 100644 index 1129dd20..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/026.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/027.png b/public/assets/out/icon-line-pro/weather/png/027.png deleted file mode 100644 index d22ab56a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/027.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/028.png b/public/assets/out/icon-line-pro/weather/png/028.png deleted file mode 100644 index b1a785cd..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/028.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/029.png b/public/assets/out/icon-line-pro/weather/png/029.png deleted file mode 100644 index 333afec9..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/029.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/030.png b/public/assets/out/icon-line-pro/weather/png/030.png deleted file mode 100644 index f81517bd..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/030.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/031.png b/public/assets/out/icon-line-pro/weather/png/031.png deleted file mode 100644 index 44fdad3c..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/031.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/032.png b/public/assets/out/icon-line-pro/weather/png/032.png deleted file mode 100644 index 44f62dbb..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/032.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/033.png b/public/assets/out/icon-line-pro/weather/png/033.png deleted file mode 100644 index ea688cbb..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/033.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/034.png b/public/assets/out/icon-line-pro/weather/png/034.png deleted file mode 100644 index 6b53e01c..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/034.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/035.png b/public/assets/out/icon-line-pro/weather/png/035.png deleted file mode 100644 index b1a9c95e..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/035.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/036.png b/public/assets/out/icon-line-pro/weather/png/036.png deleted file mode 100644 index e4a8b758..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/036.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/037.png b/public/assets/out/icon-line-pro/weather/png/037.png deleted file mode 100644 index 196fd0c0..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/037.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/038.png b/public/assets/out/icon-line-pro/weather/png/038.png deleted file mode 100644 index a09acf2e..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/038.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/039.png b/public/assets/out/icon-line-pro/weather/png/039.png deleted file mode 100644 index b5e0c96a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/039.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/040.png b/public/assets/out/icon-line-pro/weather/png/040.png deleted file mode 100644 index 6ddeb15a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/040.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/041.png b/public/assets/out/icon-line-pro/weather/png/041.png deleted file mode 100644 index 68620c2c..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/041.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/042.png b/public/assets/out/icon-line-pro/weather/png/042.png deleted file mode 100644 index ca03583e..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/042.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/043.png b/public/assets/out/icon-line-pro/weather/png/043.png deleted file mode 100644 index 169240ae..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/043.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/044.png b/public/assets/out/icon-line-pro/weather/png/044.png deleted file mode 100644 index 3d935e56..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/044.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/045.png b/public/assets/out/icon-line-pro/weather/png/045.png deleted file mode 100644 index dea7b962..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/045.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/046.png b/public/assets/out/icon-line-pro/weather/png/046.png deleted file mode 100644 index 14ad04a7..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/046.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/047.png b/public/assets/out/icon-line-pro/weather/png/047.png deleted file mode 100644 index db9a1917..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/047.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/048.png b/public/assets/out/icon-line-pro/weather/png/048.png deleted file mode 100644 index b2bd9457..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/048.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/049.png b/public/assets/out/icon-line-pro/weather/png/049.png deleted file mode 100644 index a86a8e78..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/049.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/050.png b/public/assets/out/icon-line-pro/weather/png/050.png deleted file mode 100644 index 66a368c0..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/050.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/051.png b/public/assets/out/icon-line-pro/weather/png/051.png deleted file mode 100644 index a4f41451..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/051.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/052.png b/public/assets/out/icon-line-pro/weather/png/052.png deleted file mode 100644 index e3452597..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/052.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/053.png b/public/assets/out/icon-line-pro/weather/png/053.png deleted file mode 100644 index fe1c5f5e..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/053.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/054.png b/public/assets/out/icon-line-pro/weather/png/054.png deleted file mode 100644 index 26fdc268..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/054.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/055.png b/public/assets/out/icon-line-pro/weather/png/055.png deleted file mode 100644 index 40ab66c8..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/055.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/056.png b/public/assets/out/icon-line-pro/weather/png/056.png deleted file mode 100644 index 4035836a..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/056.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/057.png b/public/assets/out/icon-line-pro/weather/png/057.png deleted file mode 100644 index c615985c..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/057.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/058.png b/public/assets/out/icon-line-pro/weather/png/058.png deleted file mode 100644 index 77514c34..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/058.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/059.png b/public/assets/out/icon-line-pro/weather/png/059.png deleted file mode 100644 index 43366a11..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/059.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/png/060.png b/public/assets/out/icon-line-pro/weather/png/060.png deleted file mode 100644 index 6308f929..00000000 Binary files a/public/assets/out/icon-line-pro/weather/png/060.png and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.eot b/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.eot deleted file mode 100644 index 303bb13f..00000000 Binary files a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.eot and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.svg b/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.svg deleted file mode 100644 index 6dc65e47..00000000 --- a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.svg +++ /dev/null @@ -1,70 +0,0 @@ - - - -Generated by Fontastic.me - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.ttf b/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.ttf deleted file mode 100644 index ff6051b6..00000000 Binary files a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.ttf and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.woff b/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.woff deleted file mode 100644 index 049a9634..00000000 Binary files a/public/assets/out/icon-line-pro/weather/webfont/fonts/weather.woff and /dev/null differ diff --git a/public/assets/out/icon-line-pro/weather/webfont/icons-reference.html b/public/assets/out/icon-line-pro/weather/webfont/icons-reference.html deleted file mode 100644 index f76798f9..00000000 --- a/public/assets/out/icon-line-pro/weather/webfont/icons-reference.html +++ /dev/null @@ -1,549 +0,0 @@ - - - - - - - Font Reference - Weather - - - - - -
      -

      Weather

      -

      This font was created withFontastic

      -

      CSS mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -

      Character mapping

      -
        -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      • -
        - -
      • -
      -
      - - \ No newline at end of file diff --git a/public/assets/out/icon-line-pro/weather/webfont/styles.css b/public/assets/out/icon-line-pro/weather/webfont/styles.css deleted file mode 100644 index ac6d5ee0..00000000 --- a/public/assets/out/icon-line-pro/weather/webfont/styles.css +++ /dev/null @@ -1,220 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: "weather"; - src:url("fonts/weather.eot"); - src:url("fonts/weather.eot?#iefix") format("embedded-opentype"), - url("fonts/weather.woff") format("woff"), - url("fonts/weather.ttf") format("truetype"), - url("fonts/weather.svg#weather") format("svg"); - font-weight: normal; - font-style: normal; - -} - -[data-icon]:before { - font-family: "weather" !important; - content: attr(data-icon); - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - font-family: "weather" !important; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - speak: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-001:before { - content: "a"; -} -.icon-014:before { - content: "b"; -} -.icon-027:before { - content: "c"; -} -.icon-040:before { - content: "d"; -} -.icon-053:before { - content: "e"; -} -.icon-054:before { - content: "f"; -} -.icon-041:before { - content: "g"; -} -.icon-028:before { - content: "h"; -} -.icon-015:before { - content: "i"; -} -.icon-002:before { - content: "j"; -} -.icon-003:before { - content: "k"; -} -.icon-016:before { - content: "l"; -} -.icon-029:before { - content: "m"; -} -.icon-042:before { - content: "n"; -} -.icon-055:before { - content: "o"; -} -.icon-056:before { - content: "p"; -} -.icon-043:before { - content: "q"; -} -.icon-030:before { - content: "r"; -} -.icon-017:before { - content: "s"; -} -.icon-004:before { - content: "t"; -} -.icon-005:before { - content: "u"; -} -.icon-018:before { - content: "v"; -} -.icon-031:before { - content: "w"; -} -.icon-044:before { - content: "x"; -} -.icon-057:before { - content: "y"; -} -.icon-058:before { - content: "z"; -} -.icon-045:before { - content: "A"; -} -.icon-032:before { - content: "B"; -} -.icon-019:before { - content: "C"; -} -.icon-006:before { - content: "D"; -} -.icon-007:before { - content: "E"; -} -.icon-020:before { - content: "F"; -} -.icon-033:before { - content: "G"; -} -.icon-046:before { - content: "H"; -} -.icon-059:before { - content: "I"; -} -.icon-060:before { - content: "J"; -} -.icon-047:before { - content: "K"; -} -.icon-034:before { - content: "L"; -} -.icon-021:before { - content: "M"; -} -.icon-008:before { - content: "N"; -} -.icon-009:before { - content: "O"; -} -.icon-022:before { - content: "P"; -} -.icon-035:before { - content: "Q"; -} -.icon-048:before { - content: "R"; -} -.icon-049:before { - content: "S"; -} -.icon-036:before { - content: "T"; -} -.icon-023:before { - content: "U"; -} -.icon-010:before { - content: "V"; -} -.icon-011:before { - content: "W"; -} -.icon-024:before { - content: "X"; -} -.icon-037:before { - content: "Y"; -} -.icon-050:before { - content: "Z"; -} -.icon-051:before { - content: "0"; -} -.icon-038:before { - content: "1"; -} -.icon-025:before { - content: "2"; -} -.icon-012:before { - content: "3"; -} -.icon-013:before { - content: "4"; -} -.icon-026:before { - content: "5"; -} -.icon-039:before { - content: "6"; -} -.icon-052:before { - content: "7"; -} diff --git a/public/assets/out/icon-line/css/simple-line-icons.css b/public/assets/out/icon-line/css/simple-line-icons.css deleted file mode 100644 index a5e97e26..00000000 --- a/public/assets/out/icon-line/css/simple-line-icons.css +++ /dev/null @@ -1,778 +0,0 @@ -@font-face { - font-family: 'simple-line-icons'; - src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0'); - src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); - font-weight: normal; - font-style: normal; -} -/* - Use the following CSS code if you want to have a class per icon. - Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: -*/ -.icon-user, -.icon-people, -.icon-user-female, -.icon-user-follow, -.icon-user-following, -.icon-user-unfollow, -.icon-login, -.icon-logout, -.icon-emotsmile, -.icon-phone, -.icon-call-end, -.icon-call-in, -.icon-call-out, -.icon-map, -.icon-location-pin, -.icon-direction, -.icon-directions, -.icon-compass, -.icon-layers, -.icon-menu, -.icon-list, -.icon-options-vertical, -.icon-options, -.icon-arrow-down, -.icon-arrow-left, -.icon-arrow-right, -.icon-arrow-up, -.icon-arrow-up-circle, -.icon-arrow-left-circle, -.icon-arrow-right-circle, -.icon-arrow-down-circle, -.icon-check, -.icon-clock, -.icon-plus, -.icon-minus, -.icon-close, -.icon-event, -.icon-exclamation, -.icon-organization, -.icon-trophy, -.icon-screen-smartphone, -.icon-screen-desktop, -.icon-plane, -.icon-notebook, -.icon-mustache, -.icon-mouse, -.icon-magnet, -.icon-energy, -.icon-disc, -.icon-cursor, -.icon-cursor-move, -.icon-crop, -.icon-chemistry, -.icon-speedometer, -.icon-shield, -.icon-screen-tablet, -.icon-magic-wand, -.icon-hourglass, -.icon-graduation, -.icon-ghost, -.icon-game-controller, -.icon-fire, -.icon-eyeglass, -.icon-envelope-open, -.icon-envelope-letter, -.icon-bell, -.icon-badge, -.icon-anchor, -.icon-wallet, -.icon-vector, -.icon-speech, -.icon-puzzle, -.icon-printer, -.icon-present, -.icon-playlist, -.icon-pin, -.icon-picture, -.icon-handbag, -.icon-globe-alt, -.icon-globe, -.icon-folder-alt, -.icon-folder, -.icon-film, -.icon-feed, -.icon-drop, -.icon-drawer, -.icon-docs, -.icon-doc, -.icon-diamond, -.icon-cup, -.icon-calculator, -.icon-bubbles, -.icon-briefcase, -.icon-book-open, -.icon-basket-loaded, -.icon-basket, -.icon-bag, -.icon-action-undo, -.icon-action-redo, -.icon-wrench, -.icon-umbrella, -.icon-trash, -.icon-tag, -.icon-support, -.icon-frame, -.icon-size-fullscreen, -.icon-size-actual, -.icon-shuffle, -.icon-share-alt, -.icon-share, -.icon-rocket, -.icon-question, -.icon-pie-chart, -.icon-pencil, -.icon-note, -.icon-loop, -.icon-home, -.icon-grid, -.icon-graph, -.icon-microphone, -.icon-music-tone-alt, -.icon-music-tone, -.icon-earphones-alt, -.icon-earphones, -.icon-equalizer, -.icon-like, -.icon-dislike, -.icon-control-start, -.icon-control-rewind, -.icon-control-play, -.icon-control-pause, -.icon-control-forward, -.icon-control-end, -.icon-volume-1, -.icon-volume-2, -.icon-volume-off, -.icon-calendar, -.icon-bulb, -.icon-chart, -.icon-ban, -.icon-bubble, -.icon-camrecorder, -.icon-camera, -.icon-cloud-download, -.icon-cloud-upload, -.icon-envelope, -.icon-eye, -.icon-flag, -.icon-heart, -.icon-info, -.icon-key, -.icon-link, -.icon-lock, -.icon-lock-open, -.icon-magnifier, -.icon-magnifier-add, -.icon-magnifier-remove, -.icon-paper-clip, -.icon-paper-plane, -.icon-power, -.icon-refresh, -.icon-reload, -.icon-settings, -.icon-star, -.icon-symbol-female, -.icon-symbol-male, -.icon-target, -.icon-credit-card, -.icon-paypal, -.icon-social-tumblr, -.icon-social-twitter, -.icon-social-facebook, -.icon-social-instagram, -.icon-social-linkedin, -.icon-social-pinterest, -.icon-social-github, -.icon-social-google, -.icon-social-reddit, -.icon-social-skype, -.icon-social-dribbble, -.icon-social-behance, -.icon-social-foursqare, -.icon-social-soundcloud, -.icon-social-spotify, -.icon-social-stumbleupon, -.icon-social-youtube, -.icon-social-dropbox, -.icon-social-vkontakte, -.icon-social-steam { - font-family: 'simple-line-icons'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.icon-user:before { - content: "\e005"; -} -.icon-people:before { - content: "\e001"; -} -.icon-user-female:before { - content: "\e000"; -} -.icon-user-follow:before { - content: "\e002"; -} -.icon-user-following:before { - content: "\e003"; -} -.icon-user-unfollow:before { - content: "\e004"; -} -.icon-login:before { - content: "\e066"; -} -.icon-logout:before { - content: "\e065"; -} -.icon-emotsmile:before { - content: "\e021"; -} -.icon-phone:before { - content: "\e600"; -} -.icon-call-end:before { - content: "\e048"; -} -.icon-call-in:before { - content: "\e047"; -} -.icon-call-out:before { - content: "\e046"; -} -.icon-map:before { - content: "\e033"; -} -.icon-location-pin:before { - content: "\e096"; -} -.icon-direction:before { - content: "\e042"; -} -.icon-directions:before { - content: "\e041"; -} -.icon-compass:before { - content: "\e045"; -} -.icon-layers:before { - content: "\e034"; -} -.icon-menu:before { - content: "\e601"; -} -.icon-list:before { - content: "\e067"; -} -.icon-options-vertical:before { - content: "\e602"; -} -.icon-options:before { - content: "\e603"; -} -.icon-arrow-down:before { - content: "\e604"; -} -.icon-arrow-left:before { - content: "\e605"; -} -.icon-arrow-right:before { - content: "\e606"; -} -.icon-arrow-up:before { - content: "\e607"; -} -.icon-arrow-up-circle:before { - content: "\e078"; -} -.icon-arrow-left-circle:before { - content: "\e07a"; -} -.icon-arrow-right-circle:before { - content: "\e079"; -} -.icon-arrow-down-circle:before { - content: "\e07b"; -} -.icon-check:before { - content: "\e080"; -} -.icon-clock:before { - content: "\e081"; -} -.icon-plus:before { - content: "\e095"; -} -.icon-minus:before { - content: "\e615"; -} -.icon-close:before { - content: "\e082"; -} -.icon-event:before { - content: "\e619"; -} -.icon-exclamation:before { - content: "\e617"; -} -.icon-organization:before { - content: "\e616"; -} -.icon-trophy:before { - content: "\e006"; -} -.icon-screen-smartphone:before { - content: "\e010"; -} -.icon-screen-desktop:before { - content: "\e011"; -} -.icon-plane:before { - content: "\e012"; -} -.icon-notebook:before { - content: "\e013"; -} -.icon-mustache:before { - content: "\e014"; -} -.icon-mouse:before { - content: "\e015"; -} -.icon-magnet:before { - content: "\e016"; -} -.icon-energy:before { - content: "\e020"; -} -.icon-disc:before { - content: "\e022"; -} -.icon-cursor:before { - content: "\e06e"; -} -.icon-cursor-move:before { - content: "\e023"; -} -.icon-crop:before { - content: "\e024"; -} -.icon-chemistry:before { - content: "\e026"; -} -.icon-speedometer:before { - content: "\e007"; -} -.icon-shield:before { - content: "\e00e"; -} -.icon-screen-tablet:before { - content: "\e00f"; -} -.icon-magic-wand:before { - content: "\e017"; -} -.icon-hourglass:before { - content: "\e018"; -} -.icon-graduation:before { - content: "\e019"; -} -.icon-ghost:before { - content: "\e01a"; -} -.icon-game-controller:before { - content: "\e01b"; -} -.icon-fire:before { - content: "\e01c"; -} -.icon-eyeglass:before { - content: "\e01d"; -} -.icon-envelope-open:before { - content: "\e01e"; -} -.icon-envelope-letter:before { - content: "\e01f"; -} -.icon-bell:before { - content: "\e027"; -} -.icon-badge:before { - content: "\e028"; -} -.icon-anchor:before { - content: "\e029"; -} -.icon-wallet:before { - content: "\e02a"; -} -.icon-vector:before { - content: "\e02b"; -} -.icon-speech:before { - content: "\e02c"; -} -.icon-puzzle:before { - content: "\e02d"; -} -.icon-printer:before { - content: "\e02e"; -} -.icon-present:before { - content: "\e02f"; -} -.icon-playlist:before { - content: "\e030"; -} -.icon-pin:before { - content: "\e031"; -} -.icon-picture:before { - content: "\e032"; -} -.icon-handbag:before { - content: "\e035"; -} -.icon-globe-alt:before { - content: "\e036"; -} -.icon-globe:before { - content: "\e037"; -} -.icon-folder-alt:before { - content: "\e039"; -} -.icon-folder:before { - content: "\e089"; -} -.icon-film:before { - content: "\e03a"; -} -.icon-feed:before { - content: "\e03b"; -} -.icon-drop:before { - content: "\e03e"; -} -.icon-drawer:before { - content: "\e03f"; -} -.icon-docs:before { - content: "\e040"; -} -.icon-doc:before { - content: "\e085"; -} -.icon-diamond:before { - content: "\e043"; -} -.icon-cup:before { - content: "\e044"; -} -.icon-calculator:before { - content: "\e049"; -} -.icon-bubbles:before { - content: "\e04a"; -} -.icon-briefcase:before { - content: "\e04b"; -} -.icon-book-open:before { - content: "\e04c"; -} -.icon-basket-loaded:before { - content: "\e04d"; -} -.icon-basket:before { - content: "\e04e"; -} -.icon-bag:before { - content: "\e04f"; -} -.icon-action-undo:before { - content: "\e050"; -} -.icon-action-redo:before { - content: "\e051"; -} -.icon-wrench:before { - content: "\e052"; -} -.icon-umbrella:before { - content: "\e053"; -} -.icon-trash:before { - content: "\e054"; -} -.icon-tag:before { - content: "\e055"; -} -.icon-support:before { - content: "\e056"; -} -.icon-frame:before { - content: "\e038"; -} -.icon-size-fullscreen:before { - content: "\e057"; -} -.icon-size-actual:before { - content: "\e058"; -} -.icon-shuffle:before { - content: "\e059"; -} -.icon-share-alt:before { - content: "\e05a"; -} -.icon-share:before { - content: "\e05b"; -} -.icon-rocket:before { - content: "\e05c"; -} -.icon-question:before { - content: "\e05d"; -} -.icon-pie-chart:before { - content: "\e05e"; -} -.icon-pencil:before { - content: "\e05f"; -} -.icon-note:before { - content: "\e060"; -} -.icon-loop:before { - content: "\e064"; -} -.icon-home:before { - content: "\e069"; -} -.icon-grid:before { - content: "\e06a"; -} -.icon-graph:before { - content: "\e06b"; -} -.icon-microphone:before { - content: "\e063"; -} -.icon-music-tone-alt:before { - content: "\e061"; -} -.icon-music-tone:before { - content: "\e062"; -} -.icon-earphones-alt:before { - content: "\e03c"; -} -.icon-earphones:before { - content: "\e03d"; -} -.icon-equalizer:before { - content: "\e06c"; -} -.icon-like:before { - content: "\e068"; -} -.icon-dislike:before { - content: "\e06d"; -} -.icon-control-start:before { - content: "\e06f"; -} -.icon-control-rewind:before { - content: "\e070"; -} -.icon-control-play:before { - content: "\e071"; -} -.icon-control-pause:before { - content: "\e072"; -} -.icon-control-forward:before { - content: "\e073"; -} -.icon-control-end:before { - content: "\e074"; -} -.icon-volume-1:before { - content: "\e09f"; -} -.icon-volume-2:before { - content: "\e0a0"; -} -.icon-volume-off:before { - content: "\e0a1"; -} -.icon-calendar:before { - content: "\e075"; -} -.icon-bulb:before { - content: "\e076"; -} -.icon-chart:before { - content: "\e077"; -} -.icon-ban:before { - content: "\e07c"; -} -.icon-bubble:before { - content: "\e07d"; -} -.icon-camrecorder:before { - content: "\e07e"; -} -.icon-camera:before { - content: "\e07f"; -} -.icon-cloud-download:before { - content: "\e083"; -} -.icon-cloud-upload:before { - content: "\e084"; -} -.icon-envelope:before { - content: "\e086"; -} -.icon-eye:before { - content: "\e087"; -} -.icon-flag:before { - content: "\e088"; -} -.icon-heart:before { - content: "\e08a"; -} -.icon-info:before { - content: "\e08b"; -} -.icon-key:before { - content: "\e08c"; -} -.icon-link:before { - content: "\e08d"; -} -.icon-lock:before { - content: "\e08e"; -} -.icon-lock-open:before { - content: "\e08f"; -} -.icon-magnifier:before { - content: "\e090"; -} -.icon-magnifier-add:before { - content: "\e091"; -} -.icon-magnifier-remove:before { - content: "\e092"; -} -.icon-paper-clip:before { - content: "\e093"; -} -.icon-paper-plane:before { - content: "\e094"; -} -.icon-power:before { - content: "\e097"; -} -.icon-refresh:before { - content: "\e098"; -} -.icon-reload:before { - content: "\e099"; -} -.icon-settings:before { - content: "\e09a"; -} -.icon-star:before { - content: "\e09b"; -} -.icon-symbol-female:before { - content: "\e09c"; -} -.icon-symbol-male:before { - content: "\e09d"; -} -.icon-target:before { - content: "\e09e"; -} -.icon-credit-card:before { - content: "\e025"; -} -.icon-paypal:before { - content: "\e608"; -} -.icon-social-tumblr:before { - content: "\e00a"; -} -.icon-social-twitter:before { - content: "\e009"; -} -.icon-social-facebook:before { - content: "\e00b"; -} -.icon-social-instagram:before { - content: "\e609"; -} -.icon-social-linkedin:before { - content: "\e60a"; -} -.icon-social-pinterest:before { - content: "\e60b"; -} -.icon-social-github:before { - content: "\e60c"; -} -.icon-social-google:before { - content: "\e60d"; -} -.icon-social-reddit:before { - content: "\e60e"; -} -.icon-social-skype:before { - content: "\e60f"; -} -.icon-social-dribbble:before { - content: "\e00d"; -} -.icon-social-behance:before { - content: "\e610"; -} -.icon-social-foursqare:before { - content: "\e611"; -} -.icon-social-soundcloud:before { - content: "\e612"; -} -.icon-social-spotify:before { - content: "\e613"; -} -.icon-social-stumbleupon:before { - content: "\e614"; -} -.icon-social-youtube:before { - content: "\e008"; -} -.icon-social-dropbox:before { - content: "\e00c"; -} -.icon-social-vkontakte:before { - content: "\e618"; -} -.icon-social-steam:before { - content: "\e620"; -} diff --git a/public/assets/out/icon-line/fonts/Simple-Line-Icons.eot b/public/assets/out/icon-line/fonts/Simple-Line-Icons.eot deleted file mode 100644 index f0ca6e8c..00000000 Binary files a/public/assets/out/icon-line/fonts/Simple-Line-Icons.eot and /dev/null differ diff --git a/public/assets/out/icon-line/fonts/Simple-Line-Icons.svg b/public/assets/out/icon-line/fonts/Simple-Line-Icons.svg deleted file mode 100644 index 4988524e..00000000 --- a/public/assets/out/icon-line/fonts/Simple-Line-Icons.svg +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-line/fonts/Simple-Line-Icons.ttf b/public/assets/out/icon-line/fonts/Simple-Line-Icons.ttf deleted file mode 100644 index 6ecb6868..00000000 Binary files a/public/assets/out/icon-line/fonts/Simple-Line-Icons.ttf and /dev/null differ diff --git a/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff b/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff deleted file mode 100644 index b17d6949..00000000 Binary files a/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff and /dev/null differ diff --git a/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff2 b/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff2 deleted file mode 100644 index c49fccf5..00000000 Binary files a/public/assets/out/icon-line/fonts/Simple-Line-Icons.woff2 and /dev/null differ diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.eot b/public/assets/out/icon-material/MaterialIcons-Regular.eot deleted file mode 100644 index 70508eba..00000000 Binary files a/public/assets/out/icon-material/MaterialIcons-Regular.eot and /dev/null differ diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.ijmap b/public/assets/out/icon-material/MaterialIcons-Regular.ijmap deleted file mode 100644 index d9f1d259..00000000 --- a/public/assets/out/icon-material/MaterialIcons-Regular.ijmap +++ /dev/null @@ -1 +0,0 @@ -{"icons":{"e84d":{"name":"3d Rotation"},"eb3b":{"name":"Ac Unit"},"e190":{"name":"Access Alarm"},"e191":{"name":"Access Alarms"},"e192":{"name":"Access Time"},"e84e":{"name":"Accessibility"},"e914":{"name":"Accessible"},"e84f":{"name":"Account Balance"},"e850":{"name":"Account Balance Wallet"},"e851":{"name":"Account Box"},"e853":{"name":"Account Circle"},"e60e":{"name":"Adb"},"e145":{"name":"Add"},"e439":{"name":"Add A Photo"},"e193":{"name":"Add Alarm"},"e003":{"name":"Add Alert"},"e146":{"name":"Add Box"},"e147":{"name":"Add Circle"},"e148":{"name":"Add Circle Outline"},"e567":{"name":"Add Location"},"e854":{"name":"Add Shopping Cart"},"e39d":{"name":"Add To Photos"},"e05c":{"name":"Add To Queue"},"e39e":{"name":"Adjust"},"e630":{"name":"Airline Seat Flat"},"e631":{"name":"Airline Seat Flat Angled"},"e632":{"name":"Airline Seat Individual Suite"},"e633":{"name":"Airline Seat Legroom Extra"},"e634":{"name":"Airline Seat Legroom Normal"},"e635":{"name":"Airline Seat Legroom Reduced"},"e636":{"name":"Airline Seat Recline Extra"},"e637":{"name":"Airline Seat Recline Normal"},"e195":{"name":"Airplanemode Active"},"e194":{"name":"Airplanemode Inactive"},"e055":{"name":"Airplay"},"eb3c":{"name":"Airport Shuttle"},"e855":{"name":"Alarm"},"e856":{"name":"Alarm Add"},"e857":{"name":"Alarm Off"},"e858":{"name":"Alarm On"},"e019":{"name":"Album"},"eb3d":{"name":"All Inclusive"},"e90b":{"name":"All Out"},"e859":{"name":"Android"},"e85a":{"name":"Announcement"},"e5c3":{"name":"Apps"},"e149":{"name":"Archive"},"e5c4":{"name":"Arrow Back"},"e5db":{"name":"Arrow Downward"},"e5c5":{"name":"Arrow Drop Down"},"e5c6":{"name":"Arrow Drop Down Circle"},"e5c7":{"name":"Arrow Drop Up"},"e5c8":{"name":"Arrow Forward"},"e5d8":{"name":"Arrow Upward"},"e060":{"name":"Art Track"},"e85b":{"name":"Aspect Ratio"},"e85c":{"name":"Assessment"},"e85d":{"name":"Assignment"},"e85e":{"name":"Assignment Ind"},"e85f":{"name":"Assignment Late"},"e860":{"name":"Assignment Return"},"e861":{"name":"Assignment Returned"},"e862":{"name":"Assignment Turned In"},"e39f":{"name":"Assistant"},"e3a0":{"name":"Assistant Photo"},"e226":{"name":"Attach File"},"e227":{"name":"Attach Money"},"e2bc":{"name":"Attachment"},"e3a1":{"name":"Audiotrack"},"e863":{"name":"Autorenew"},"e01b":{"name":"Av Timer"},"e14a":{"name":"Backspace"},"e864":{"name":"Backup"},"e19c":{"name":"Battery Alert"},"e1a3":{"name":"Battery Charging Full"},"e1a4":{"name":"Battery Full"},"e1a5":{"name":"Battery Std"},"e1a6":{"name":"Battery Unknown"},"eb3e":{"name":"Beach Access"},"e52d":{"name":"Beenhere"},"e14b":{"name":"Block"},"e1a7":{"name":"Bluetooth"},"e60f":{"name":"Bluetooth Audio"},"e1a8":{"name":"Bluetooth Connected"},"e1a9":{"name":"Bluetooth Disabled"},"e1aa":{"name":"Bluetooth Searching"},"e3a2":{"name":"Blur Circular"},"e3a3":{"name":"Blur Linear"},"e3a4":{"name":"Blur Off"},"e3a5":{"name":"Blur On"},"e865":{"name":"Book"},"e866":{"name":"Bookmark"},"e867":{"name":"Bookmark Border"},"e228":{"name":"Border All"},"e229":{"name":"Border Bottom"},"e22a":{"name":"Border Clear"},"e22b":{"name":"Border Color"},"e22c":{"name":"Border Horizontal"},"e22d":{"name":"Border Inner"},"e22e":{"name":"Border Left"},"e22f":{"name":"Border Outer"},"e230":{"name":"Border Right"},"e231":{"name":"Border Style"},"e232":{"name":"Border Top"},"e233":{"name":"Border Vertical"},"e06b":{"name":"Branding Watermark"},"e3a6":{"name":"Brightness 1"},"e3a7":{"name":"Brightness 2"},"e3a8":{"name":"Brightness 3"},"e3a9":{"name":"Brightness 4"},"e3aa":{"name":"Brightness 5"},"e3ab":{"name":"Brightness 6"},"e3ac":{"name":"Brightness 7"},"e1ab":{"name":"Brightness Auto"},"e1ac":{"name":"Brightness High"},"e1ad":{"name":"Brightness Low"},"e1ae":{"name":"Brightness Medium"},"e3ad":{"name":"Broken Image"},"e3ae":{"name":"Brush"},"e6dd":{"name":"Bubble Chart"},"e868":{"name":"Bug Report"},"e869":{"name":"Build"},"e43c":{"name":"Burst Mode"},"e0af":{"name":"Business"},"eb3f":{"name":"Business Center"},"e86a":{"name":"Cached"},"e7e9":{"name":"Cake"},"e0b0":{"name":"Call"},"e0b1":{"name":"Call End"},"e0b2":{"name":"Call Made"},"e0b3":{"name":"Call Merge"},"e0b4":{"name":"Call Missed"},"e0e4":{"name":"Call Missed Outgoing"},"e0b5":{"name":"Call Received"},"e0b6":{"name":"Call Split"},"e06c":{"name":"Call To Action"},"e3af":{"name":"Camera"},"e3b0":{"name":"Camera Alt"},"e8fc":{"name":"Camera Enhance"},"e3b1":{"name":"Camera Front"},"e3b2":{"name":"Camera Rear"},"e3b3":{"name":"Camera Roll"},"e5c9":{"name":"Cancel"},"e8f6":{"name":"Card Giftcard"},"e8f7":{"name":"Card Membership"},"e8f8":{"name":"Card Travel"},"eb40":{"name":"Casino"},"e307":{"name":"Cast"},"e308":{"name":"Cast Connected"},"e3b4":{"name":"Center Focus Strong"},"e3b5":{"name":"Center Focus Weak"},"e86b":{"name":"Change History"},"e0b7":{"name":"Chat"},"e0ca":{"name":"Chat Bubble"},"e0cb":{"name":"Chat Bubble Outline"},"e5ca":{"name":"Check"},"e834":{"name":"Check Box"},"e835":{"name":"Check Box Outline Blank"},"e86c":{"name":"Check Circle"},"e5cb":{"name":"Chevron Left"},"e5cc":{"name":"Chevron Right"},"eb41":{"name":"Child Care"},"eb42":{"name":"Child Friendly"},"e86d":{"name":"Chrome Reader Mode"},"e86e":{"name":"Class"},"e14c":{"name":"Clear"},"e0b8":{"name":"Clear All"},"e5cd":{"name":"Close"},"e01c":{"name":"Closed Caption"},"e2bd":{"name":"Cloud"},"e2be":{"name":"Cloud Circle"},"e2bf":{"name":"Cloud Done"},"e2c0":{"name":"Cloud Download"},"e2c1":{"name":"Cloud Off"},"e2c2":{"name":"Cloud Queue"},"e2c3":{"name":"Cloud Upload"},"e86f":{"name":"Code"},"e3b6":{"name":"Collections"},"e431":{"name":"Collections Bookmark"},"e3b7":{"name":"Color Lens"},"e3b8":{"name":"Colorize"},"e0b9":{"name":"Comment"},"e3b9":{"name":"Compare"},"e915":{"name":"Compare Arrows"},"e30a":{"name":"Computer"},"e638":{"name":"Confirmation Number"},"e0d0":{"name":"Contact Mail"},"e0cf":{"name":"Contact Phone"},"e0ba":{"name":"Contacts"},"e14d":{"name":"Content Copy"},"e14e":{"name":"Content Cut"},"e14f":{"name":"Content Paste"},"e3ba":{"name":"Control Point"},"e3bb":{"name":"Control Point Duplicate"},"e90c":{"name":"Copyright"},"e150":{"name":"Create"},"e2cc":{"name":"Create New Folder"},"e870":{"name":"Credit Card"},"e3be":{"name":"Crop"},"e3bc":{"name":"Crop 16 9"},"e3bd":{"name":"Crop 3 2"},"e3bf":{"name":"Crop 5 4"},"e3c0":{"name":"Crop 7 5"},"e3c1":{"name":"Crop Din"},"e3c2":{"name":"Crop Free"},"e3c3":{"name":"Crop Landscape"},"e3c4":{"name":"Crop Original"},"e3c5":{"name":"Crop Portrait"},"e437":{"name":"Crop Rotate"},"e3c6":{"name":"Crop Square"},"e871":{"name":"Dashboard"},"e1af":{"name":"Data Usage"},"e916":{"name":"Date Range"},"e3c7":{"name":"Dehaze"},"e872":{"name":"Delete"},"e92b":{"name":"Delete Forever"},"e16c":{"name":"Delete Sweep"},"e873":{"name":"Description"},"e30b":{"name":"Desktop Mac"},"e30c":{"name":"Desktop Windows"},"e3c8":{"name":"Details"},"e30d":{"name":"Developer Board"},"e1b0":{"name":"Developer Mode"},"e335":{"name":"Device Hub"},"e1b1":{"name":"Devices"},"e337":{"name":"Devices Other"},"e0bb":{"name":"Dialer Sip"},"e0bc":{"name":"Dialpad"},"e52e":{"name":"Directions"},"e52f":{"name":"Directions Bike"},"e532":{"name":"Directions Boat"},"e530":{"name":"Directions Bus"},"e531":{"name":"Directions Car"},"e534":{"name":"Directions Railway"},"e566":{"name":"Directions Run"},"e533":{"name":"Directions Subway"},"e535":{"name":"Directions Transit"},"e536":{"name":"Directions Walk"},"e610":{"name":"Disc Full"},"e875":{"name":"Dns"},"e612":{"name":"Do Not Disturb"},"e611":{"name":"Do Not Disturb Alt"},"e643":{"name":"Do Not Disturb Off"},"e644":{"name":"Do Not Disturb On"},"e30e":{"name":"Dock"},"e7ee":{"name":"Domain"},"e876":{"name":"Done"},"e877":{"name":"Done All"},"e917":{"name":"Donut Large"},"e918":{"name":"Donut Small"},"e151":{"name":"Drafts"},"e25d":{"name":"Drag Handle"},"e613":{"name":"Drive Eta"},"e1b2":{"name":"Dvr"},"e3c9":{"name":"Edit"},"e568":{"name":"Edit Location"},"e8fb":{"name":"Eject"},"e0be":{"name":"Email"},"e63f":{"name":"Enhanced Encryption"},"e01d":{"name":"Equalizer"},"e000":{"name":"Error"},"e001":{"name":"Error Outline"},"e926":{"name":"Euro Symbol"},"e56d":{"name":"Ev Station"},"e878":{"name":"Event"},"e614":{"name":"Event Available"},"e615":{"name":"Event Busy"},"e616":{"name":"Event Note"},"e903":{"name":"Event Seat"},"e879":{"name":"Exit To App"},"e5ce":{"name":"Expand Less"},"e5cf":{"name":"Expand More"},"e01e":{"name":"Explicit"},"e87a":{"name":"Explore"},"e3ca":{"name":"Exposure"},"e3cb":{"name":"Exposure Neg 1"},"e3cc":{"name":"Exposure Neg 2"},"e3cd":{"name":"Exposure Plus 1"},"e3ce":{"name":"Exposure Plus 2"},"e3cf":{"name":"Exposure Zero"},"e87b":{"name":"Extension"},"e87c":{"name":"Face"},"e01f":{"name":"Fast Forward"},"e020":{"name":"Fast Rewind"},"e87d":{"name":"Favorite"},"e87e":{"name":"Favorite Border"},"e06d":{"name":"Featured Play List"},"e06e":{"name":"Featured Video"},"e87f":{"name":"Feedback"},"e05d":{"name":"Fiber Dvr"},"e061":{"name":"Fiber Manual Record"},"e05e":{"name":"Fiber New"},"e06a":{"name":"Fiber Pin"},"e062":{"name":"Fiber Smart Record"},"e2c4":{"name":"File Download"},"e2c6":{"name":"File Upload"},"e3d3":{"name":"Filter"},"e3d0":{"name":"Filter 1"},"e3d1":{"name":"Filter 2"},"e3d2":{"name":"Filter 3"},"e3d4":{"name":"Filter 4"},"e3d5":{"name":"Filter 5"},"e3d6":{"name":"Filter 6"},"e3d7":{"name":"Filter 7"},"e3d8":{"name":"Filter 8"},"e3d9":{"name":"Filter 9"},"e3da":{"name":"Filter 9 Plus"},"e3db":{"name":"Filter B And W"},"e3dc":{"name":"Filter Center Focus"},"e3dd":{"name":"Filter Drama"},"e3de":{"name":"Filter Frames"},"e3df":{"name":"Filter Hdr"},"e152":{"name":"Filter List"},"e3e0":{"name":"Filter None"},"e3e2":{"name":"Filter Tilt Shift"},"e3e3":{"name":"Filter Vintage"},"e880":{"name":"Find In Page"},"e881":{"name":"Find Replace"},"e90d":{"name":"Fingerprint"},"e5dc":{"name":"First Page"},"eb43":{"name":"Fitness Center"},"e153":{"name":"Flag"},"e3e4":{"name":"Flare"},"e3e5":{"name":"Flash Auto"},"e3e6":{"name":"Flash Off"},"e3e7":{"name":"Flash On"},"e539":{"name":"Flight"},"e904":{"name":"Flight Land"},"e905":{"name":"Flight Takeoff"},"e3e8":{"name":"Flip"},"e882":{"name":"Flip To Back"},"e883":{"name":"Flip To Front"},"e2c7":{"name":"Folder"},"e2c8":{"name":"Folder Open"},"e2c9":{"name":"Folder Shared"},"e617":{"name":"Folder Special"},"e167":{"name":"Font Download"},"e234":{"name":"Format Align Center"},"e235":{"name":"Format Align Justify"},"e236":{"name":"Format Align Left"},"e237":{"name":"Format Align Right"},"e238":{"name":"Format Bold"},"e239":{"name":"Format Clear"},"e23a":{"name":"Format Color Fill"},"e23b":{"name":"Format Color Reset"},"e23c":{"name":"Format Color Text"},"e23d":{"name":"Format Indent Decrease"},"e23e":{"name":"Format Indent Increase"},"e23f":{"name":"Format Italic"},"e240":{"name":"Format Line Spacing"},"e241":{"name":"Format List Bulleted"},"e242":{"name":"Format List Numbered"},"e243":{"name":"Format Paint"},"e244":{"name":"Format Quote"},"e25e":{"name":"Format Shapes"},"e245":{"name":"Format Size"},"e246":{"name":"Format Strikethrough"},"e247":{"name":"Format Textdirection L To R"},"e248":{"name":"Format Textdirection R To L"},"e249":{"name":"Format Underlined"},"e0bf":{"name":"Forum"},"e154":{"name":"Forward"},"e056":{"name":"Forward 10"},"e057":{"name":"Forward 30"},"e058":{"name":"Forward 5"},"eb44":{"name":"Free Breakfast"},"e5d0":{"name":"Fullscreen"},"e5d1":{"name":"Fullscreen Exit"},"e24a":{"name":"Functions"},"e927":{"name":"G Translate"},"e30f":{"name":"Gamepad"},"e021":{"name":"Games"},"e90e":{"name":"Gavel"},"e155":{"name":"Gesture"},"e884":{"name":"Get App"},"e908":{"name":"Gif"},"eb45":{"name":"Golf Course"},"e1b3":{"name":"Gps Fixed"},"e1b4":{"name":"Gps Not Fixed"},"e1b5":{"name":"Gps Off"},"e885":{"name":"Grade"},"e3e9":{"name":"Gradient"},"e3ea":{"name":"Grain"},"e1b8":{"name":"Graphic Eq"},"e3eb":{"name":"Grid Off"},"e3ec":{"name":"Grid On"},"e7ef":{"name":"Group"},"e7f0":{"name":"Group Add"},"e886":{"name":"Group Work"},"e052":{"name":"Hd"},"e3ed":{"name":"Hdr Off"},"e3ee":{"name":"Hdr On"},"e3f1":{"name":"Hdr Strong"},"e3f2":{"name":"Hdr Weak"},"e310":{"name":"Headset"},"e311":{"name":"Headset Mic"},"e3f3":{"name":"Healing"},"e023":{"name":"Hearing"},"e887":{"name":"Help"},"e8fd":{"name":"Help Outline"},"e024":{"name":"High Quality"},"e25f":{"name":"Highlight"},"e888":{"name":"Highlight Off"},"e889":{"name":"History"},"e88a":{"name":"Home"},"eb46":{"name":"Hot Tub"},"e53a":{"name":"Hotel"},"e88b":{"name":"Hourglass Empty"},"e88c":{"name":"Hourglass Full"},"e902":{"name":"Http"},"e88d":{"name":"Https"},"e3f4":{"name":"Image"},"e3f5":{"name":"Image Aspect Ratio"},"e0e0":{"name":"Import Contacts"},"e0c3":{"name":"Import Export"},"e912":{"name":"Important Devices"},"e156":{"name":"Inbox"},"e909":{"name":"Indeterminate Check Box"},"e88e":{"name":"Info"},"e88f":{"name":"Info Outline"},"e890":{"name":"Input"},"e24b":{"name":"Insert Chart"},"e24c":{"name":"Insert Comment"},"e24d":{"name":"Insert Drive File"},"e24e":{"name":"Insert Emoticon"},"e24f":{"name":"Insert Invitation"},"e250":{"name":"Insert Link"},"e251":{"name":"Insert Photo"},"e891":{"name":"Invert Colors"},"e0c4":{"name":"Invert Colors Off"},"e3f6":{"name":"Iso"},"e312":{"name":"Keyboard"},"e313":{"name":"Keyboard Arrow Down"},"e314":{"name":"Keyboard Arrow Left"},"e315":{"name":"Keyboard Arrow Right"},"e316":{"name":"Keyboard Arrow Up"},"e317":{"name":"Keyboard Backspace"},"e318":{"name":"Keyboard Capslock"},"e31a":{"name":"Keyboard Hide"},"e31b":{"name":"Keyboard Return"},"e31c":{"name":"Keyboard Tab"},"e31d":{"name":"Keyboard Voice"},"eb47":{"name":"Kitchen"},"e892":{"name":"Label"},"e893":{"name":"Label Outline"},"e3f7":{"name":"Landscape"},"e894":{"name":"Language"},"e31e":{"name":"Laptop"},"e31f":{"name":"Laptop Chromebook"},"e320":{"name":"Laptop Mac"},"e321":{"name":"Laptop Windows"},"e5dd":{"name":"Last Page"},"e895":{"name":"Launch"},"e53b":{"name":"Layers"},"e53c":{"name":"Layers Clear"},"e3f8":{"name":"Leak Add"},"e3f9":{"name":"Leak Remove"},"e3fa":{"name":"Lens"},"e02e":{"name":"Library Add"},"e02f":{"name":"Library Books"},"e030":{"name":"Library Music"},"e90f":{"name":"Lightbulb Outline"},"e919":{"name":"Line Style"},"e91a":{"name":"Line Weight"},"e260":{"name":"Linear Scale"},"e157":{"name":"Link"},"e438":{"name":"Linked Camera"},"e896":{"name":"List"},"e0c6":{"name":"Live Help"},"e639":{"name":"Live Tv"},"e53f":{"name":"Local Activity"},"e53d":{"name":"Local Airport"},"e53e":{"name":"Local Atm"},"e540":{"name":"Local Bar"},"e541":{"name":"Local Cafe"},"e542":{"name":"Local Car Wash"},"e543":{"name":"Local Convenience Store"},"e556":{"name":"Local Dining"},"e544":{"name":"Local Drink"},"e545":{"name":"Local Florist"},"e546":{"name":"Local Gas Station"},"e547":{"name":"Local Grocery Store"},"e548":{"name":"Local Hospital"},"e549":{"name":"Local Hotel"},"e54a":{"name":"Local Laundry Service"},"e54b":{"name":"Local Library"},"e54c":{"name":"Local Mall"},"e54d":{"name":"Local Movies"},"e54e":{"name":"Local Offer"},"e54f":{"name":"Local Parking"},"e550":{"name":"Local Pharmacy"},"e551":{"name":"Local Phone"},"e552":{"name":"Local Pizza"},"e553":{"name":"Local Play"},"e554":{"name":"Local Post Office"},"e555":{"name":"Local Printshop"},"e557":{"name":"Local See"},"e558":{"name":"Local Shipping"},"e559":{"name":"Local Taxi"},"e7f1":{"name":"Location City"},"e1b6":{"name":"Location Disabled"},"e0c7":{"name":"Location Off"},"e0c8":{"name":"Location On"},"e1b7":{"name":"Location Searching"},"e897":{"name":"Lock"},"e898":{"name":"Lock Open"},"e899":{"name":"Lock Outline"},"e3fc":{"name":"Looks"},"e3fb":{"name":"Looks 3"},"e3fd":{"name":"Looks 4"},"e3fe":{"name":"Looks 5"},"e3ff":{"name":"Looks 6"},"e400":{"name":"Looks One"},"e401":{"name":"Looks Two"},"e028":{"name":"Loop"},"e402":{"name":"Loupe"},"e16d":{"name":"Low Priority"},"e89a":{"name":"Loyalty"},"e158":{"name":"Mail"},"e0e1":{"name":"Mail Outline"},"e55b":{"name":"Map"},"e159":{"name":"Markunread"},"e89b":{"name":"Markunread Mailbox"},"e322":{"name":"Memory"},"e5d2":{"name":"Menu"},"e252":{"name":"Merge Type"},"e0c9":{"name":"Message"},"e029":{"name":"Mic"},"e02a":{"name":"Mic None"},"e02b":{"name":"Mic Off"},"e618":{"name":"Mms"},"e253":{"name":"Mode Comment"},"e254":{"name":"Mode Edit"},"e263":{"name":"Monetization On"},"e25c":{"name":"Money Off"},"e403":{"name":"Monochrome Photos"},"e7f2":{"name":"Mood"},"e7f3":{"name":"Mood Bad"},"e619":{"name":"More"},"e5d3":{"name":"More Horiz"},"e5d4":{"name":"More Vert"},"e91b":{"name":"Motorcycle"},"e323":{"name":"Mouse"},"e168":{"name":"Move To Inbox"},"e02c":{"name":"Movie"},"e404":{"name":"Movie Creation"},"e43a":{"name":"Movie Filter"},"e6df":{"name":"Multiline Chart"},"e405":{"name":"Music Note"},"e063":{"name":"Music Video"},"e55c":{"name":"My Location"},"e406":{"name":"Nature"},"e407":{"name":"Nature People"},"e408":{"name":"Navigate Before"},"e409":{"name":"Navigate Next"},"e55d":{"name":"Navigation"},"e569":{"name":"Near Me"},"e1b9":{"name":"Network Cell"},"e640":{"name":"Network Check"},"e61a":{"name":"Network Locked"},"e1ba":{"name":"Network Wifi"},"e031":{"name":"New Releases"},"e16a":{"name":"Next Week"},"e1bb":{"name":"Nfc"},"e641":{"name":"No Encryption"},"e0cc":{"name":"No Sim"},"e033":{"name":"Not Interested"},"e06f":{"name":"Note"},"e89c":{"name":"Note Add"},"e7f4":{"name":"Notifications"},"e7f7":{"name":"Notifications Active"},"e7f5":{"name":"Notifications None"},"e7f6":{"name":"Notifications Off"},"e7f8":{"name":"Notifications Paused"},"e90a":{"name":"Offline Pin"},"e63a":{"name":"Ondemand Video"},"e91c":{"name":"Opacity"},"e89d":{"name":"Open In Browser"},"e89e":{"name":"Open In New"},"e89f":{"name":"Open With"},"e7f9":{"name":"Pages"},"e8a0":{"name":"Pageview"},"e40a":{"name":"Palette"},"e925":{"name":"Pan Tool"},"e40b":{"name":"Panorama"},"e40c":{"name":"Panorama Fish Eye"},"e40d":{"name":"Panorama Horizontal"},"e40e":{"name":"Panorama Vertical"},"e40f":{"name":"Panorama Wide Angle"},"e7fa":{"name":"Party Mode"},"e034":{"name":"Pause"},"e035":{"name":"Pause Circle Filled"},"e036":{"name":"Pause Circle Outline"},"e8a1":{"name":"Payment"},"e7fb":{"name":"People"},"e7fc":{"name":"People Outline"},"e8a2":{"name":"Perm Camera Mic"},"e8a3":{"name":"Perm Contact Calendar"},"e8a4":{"name":"Perm Data Setting"},"e8a5":{"name":"Perm Device Information"},"e8a6":{"name":"Perm Identity"},"e8a7":{"name":"Perm Media"},"e8a8":{"name":"Perm Phone Msg"},"e8a9":{"name":"Perm Scan Wifi"},"e7fd":{"name":"Person"},"e7fe":{"name":"Person Add"},"e7ff":{"name":"Person Outline"},"e55a":{"name":"Person Pin"},"e56a":{"name":"Person Pin Circle"},"e63b":{"name":"Personal Video"},"e91d":{"name":"Pets"},"e0cd":{"name":"Phone"},"e324":{"name":"Phone Android"},"e61b":{"name":"Phone Bluetooth Speaker"},"e61c":{"name":"Phone Forwarded"},"e61d":{"name":"Phone In Talk"},"e325":{"name":"Phone Iphone"},"e61e":{"name":"Phone Locked"},"e61f":{"name":"Phone Missed"},"e620":{"name":"Phone Paused"},"e326":{"name":"Phonelink"},"e0db":{"name":"Phonelink Erase"},"e0dc":{"name":"Phonelink Lock"},"e327":{"name":"Phonelink Off"},"e0dd":{"name":"Phonelink Ring"},"e0de":{"name":"Phonelink Setup"},"e410":{"name":"Photo"},"e411":{"name":"Photo Album"},"e412":{"name":"Photo Camera"},"e43b":{"name":"Photo Filter"},"e413":{"name":"Photo Library"},"e432":{"name":"Photo Size Select Actual"},"e433":{"name":"Photo Size Select Large"},"e434":{"name":"Photo Size Select Small"},"e415":{"name":"Picture As Pdf"},"e8aa":{"name":"Picture In Picture"},"e911":{"name":"Picture In Picture Alt"},"e6c4":{"name":"Pie Chart"},"e6c5":{"name":"Pie Chart Outlined"},"e55e":{"name":"Pin Drop"},"e55f":{"name":"Place"},"e037":{"name":"Play Arrow"},"e038":{"name":"Play Circle Filled"},"e039":{"name":"Play Circle Outline"},"e906":{"name":"Play For Work"},"e03b":{"name":"Playlist Add"},"e065":{"name":"Playlist Add Check"},"e05f":{"name":"Playlist Play"},"e800":{"name":"Plus One"},"e801":{"name":"Poll"},"e8ab":{"name":"Polymer"},"eb48":{"name":"Pool"},"e0ce":{"name":"Portable Wifi Off"},"e416":{"name":"Portrait"},"e63c":{"name":"Power"},"e336":{"name":"Power Input"},"e8ac":{"name":"Power Settings New"},"e91e":{"name":"Pregnant Woman"},"e0df":{"name":"Present To All"},"e8ad":{"name":"Print"},"e645":{"name":"Priority High"},"e80b":{"name":"Public"},"e255":{"name":"Publish"},"e8ae":{"name":"Query Builder"},"e8af":{"name":"Question Answer"},"e03c":{"name":"Queue"},"e03d":{"name":"Queue Music"},"e066":{"name":"Queue Play Next"},"e03e":{"name":"Radio"},"e837":{"name":"Radio Button Checked"},"e836":{"name":"Radio Button Unchecked"},"e560":{"name":"Rate Review"},"e8b0":{"name":"Receipt"},"e03f":{"name":"Recent Actors"},"e91f":{"name":"Record Voice Over"},"e8b1":{"name":"Redeem"},"e15a":{"name":"Redo"},"e5d5":{"name":"Refresh"},"e15b":{"name":"Remove"},"e15c":{"name":"Remove Circle"},"e15d":{"name":"Remove Circle Outline"},"e067":{"name":"Remove From Queue"},"e417":{"name":"Remove Red Eye"},"e928":{"name":"Remove Shopping Cart"},"e8fe":{"name":"Reorder"},"e040":{"name":"Repeat"},"e041":{"name":"Repeat One"},"e042":{"name":"Replay"},"e059":{"name":"Replay 10"},"e05a":{"name":"Replay 30"},"e05b":{"name":"Replay 5"},"e15e":{"name":"Reply"},"e15f":{"name":"Reply All"},"e160":{"name":"Report"},"e8b2":{"name":"Report Problem"},"e56c":{"name":"Restaurant"},"e561":{"name":"Restaurant Menu"},"e8b3":{"name":"Restore"},"e929":{"name":"Restore Page"},"e0d1":{"name":"Ring Volume"},"e8b4":{"name":"Room"},"eb49":{"name":"Room Service"},"e418":{"name":"Rotate 90 Degrees Ccw"},"e419":{"name":"Rotate Left"},"e41a":{"name":"Rotate Right"},"e920":{"name":"Rounded Corner"},"e328":{"name":"Router"},"e921":{"name":"Rowing"},"e0e5":{"name":"Rss Feed"},"e642":{"name":"Rv Hookup"},"e562":{"name":"Satellite"},"e161":{"name":"Save"},"e329":{"name":"Scanner"},"e8b5":{"name":"Schedule"},"e80c":{"name":"School"},"e1be":{"name":"Screen Lock Landscape"},"e1bf":{"name":"Screen Lock Portrait"},"e1c0":{"name":"Screen Lock Rotation"},"e1c1":{"name":"Screen Rotation"},"e0e2":{"name":"Screen Share"},"e623":{"name":"Sd Card"},"e1c2":{"name":"Sd Storage"},"e8b6":{"name":"Search"},"e32a":{"name":"Security"},"e162":{"name":"Select All"},"e163":{"name":"Send"},"e811":{"name":"Sentiment Dissatisfied"},"e812":{"name":"Sentiment Neutral"},"e813":{"name":"Sentiment Satisfied"},"e814":{"name":"Sentiment Very Dissatisfied"},"e815":{"name":"Sentiment Very Satisfied"},"e8b8":{"name":"Settings"},"e8b9":{"name":"Settings Applications"},"e8ba":{"name":"Settings Backup Restore"},"e8bb":{"name":"Settings Bluetooth"},"e8bd":{"name":"Settings Brightness"},"e8bc":{"name":"Settings Cell"},"e8be":{"name":"Settings Ethernet"},"e8bf":{"name":"Settings Input Antenna"},"e8c0":{"name":"Settings Input Component"},"e8c1":{"name":"Settings Input Composite"},"e8c2":{"name":"Settings Input Hdmi"},"e8c3":{"name":"Settings Input Svideo"},"e8c4":{"name":"Settings Overscan"},"e8c5":{"name":"Settings Phone"},"e8c6":{"name":"Settings Power"},"e8c7":{"name":"Settings Remote"},"e1c3":{"name":"Settings System Daydream"},"e8c8":{"name":"Settings Voice"},"e80d":{"name":"Share"},"e8c9":{"name":"Shop"},"e8ca":{"name":"Shop Two"},"e8cb":{"name":"Shopping Basket"},"e8cc":{"name":"Shopping Cart"},"e261":{"name":"Short Text"},"e6e1":{"name":"Show Chart"},"e043":{"name":"Shuffle"},"e1c8":{"name":"Signal Cellular 4 Bar"},"e1cd":{"name":"Signal Cellular Connected No Internet 4 Bar"},"e1ce":{"name":"Signal Cellular No Sim"},"e1cf":{"name":"Signal Cellular Null"},"e1d0":{"name":"Signal Cellular Off"},"e1d8":{"name":"Signal Wifi 4 Bar"},"e1d9":{"name":"Signal Wifi 4 Bar Lock"},"e1da":{"name":"Signal Wifi Off"},"e32b":{"name":"Sim Card"},"e624":{"name":"Sim Card Alert"},"e044":{"name":"Skip Next"},"e045":{"name":"Skip Previous"},"e41b":{"name":"Slideshow"},"e068":{"name":"Slow Motion Video"},"e32c":{"name":"Smartphone"},"eb4a":{"name":"Smoke Free"},"eb4b":{"name":"Smoking Rooms"},"e625":{"name":"Sms"},"e626":{"name":"Sms Failed"},"e046":{"name":"Snooze"},"e164":{"name":"Sort"},"e053":{"name":"Sort By Alpha"},"eb4c":{"name":"Spa"},"e256":{"name":"Space Bar"},"e32d":{"name":"Speaker"},"e32e":{"name":"Speaker Group"},"e8cd":{"name":"Speaker Notes"},"e92a":{"name":"Speaker Notes Off"},"e0d2":{"name":"Speaker Phone"},"e8ce":{"name":"Spellcheck"},"e838":{"name":"Star"},"e83a":{"name":"Star Border"},"e839":{"name":"Star Half"},"e8d0":{"name":"Stars"},"e0d3":{"name":"Stay Current Landscape"},"e0d4":{"name":"Stay Current Portrait"},"e0d5":{"name":"Stay Primary Landscape"},"e0d6":{"name":"Stay Primary Portrait"},"e047":{"name":"Stop"},"e0e3":{"name":"Stop Screen Share"},"e1db":{"name":"Storage"},"e8d1":{"name":"Store"},"e563":{"name":"Store Mall Directory"},"e41c":{"name":"Straighten"},"e56e":{"name":"Streetview"},"e257":{"name":"Strikethrough S"},"e41d":{"name":"Style"},"e5d9":{"name":"Subdirectory Arrow Left"},"e5da":{"name":"Subdirectory Arrow Right"},"e8d2":{"name":"Subject"},"e064":{"name":"Subscriptions"},"e048":{"name":"Subtitles"},"e56f":{"name":"Subway"},"e8d3":{"name":"Supervisor Account"},"e049":{"name":"Surround Sound"},"e0d7":{"name":"Swap Calls"},"e8d4":{"name":"Swap Horiz"},"e8d5":{"name":"Swap Vert"},"e8d6":{"name":"Swap Vertical Circle"},"e41e":{"name":"Switch Camera"},"e41f":{"name":"Switch Video"},"e627":{"name":"Sync"},"e628":{"name":"Sync Disabled"},"e629":{"name":"Sync Problem"},"e62a":{"name":"System Update"},"e8d7":{"name":"System Update Alt"},"e8d8":{"name":"Tab"},"e8d9":{"name":"Tab Unselected"},"e32f":{"name":"Tablet"},"e330":{"name":"Tablet Android"},"e331":{"name":"Tablet Mac"},"e420":{"name":"Tag Faces"},"e62b":{"name":"Tap And Play"},"e564":{"name":"Terrain"},"e262":{"name":"Text Fields"},"e165":{"name":"Text Format"},"e0d8":{"name":"Textsms"},"e421":{"name":"Texture"},"e8da":{"name":"Theaters"},"e8db":{"name":"Thumb Down"},"e8dc":{"name":"Thumb Up"},"e8dd":{"name":"Thumbs Up Down"},"e62c":{"name":"Time To Leave"},"e422":{"name":"Timelapse"},"e922":{"name":"Timeline"},"e425":{"name":"Timer"},"e423":{"name":"Timer 10"},"e424":{"name":"Timer 3"},"e426":{"name":"Timer Off"},"e264":{"name":"Title"},"e8de":{"name":"Toc"},"e8df":{"name":"Today"},"e8e0":{"name":"Toll"},"e427":{"name":"Tonality"},"e913":{"name":"Touch App"},"e332":{"name":"Toys"},"e8e1":{"name":"Track Changes"},"e565":{"name":"Traffic"},"e570":{"name":"Train"},"e571":{"name":"Tram"},"e572":{"name":"Transfer Within A Station"},"e428":{"name":"Transform"},"e8e2":{"name":"Translate"},"e8e3":{"name":"Trending Down"},"e8e4":{"name":"Trending Flat"},"e8e5":{"name":"Trending Up"},"e429":{"name":"Tune"},"e8e6":{"name":"Turned In"},"e8e7":{"name":"Turned In Not"},"e333":{"name":"Tv"},"e169":{"name":"Unarchive"},"e166":{"name":"Undo"},"e5d6":{"name":"Unfold Less"},"e5d7":{"name":"Unfold More"},"e923":{"name":"Update"},"e1e0":{"name":"Usb"},"e8e8":{"name":"Verified User"},"e258":{"name":"Vertical Align Bottom"},"e259":{"name":"Vertical Align Center"},"e25a":{"name":"Vertical Align Top"},"e62d":{"name":"Vibration"},"e070":{"name":"Video Call"},"e071":{"name":"Video Label"},"e04a":{"name":"Video Library"},"e04b":{"name":"Videocam"},"e04c":{"name":"Videocam Off"},"e338":{"name":"Videogame Asset"},"e8e9":{"name":"View Agenda"},"e8ea":{"name":"View Array"},"e8eb":{"name":"View Carousel"},"e8ec":{"name":"View Column"},"e42a":{"name":"View Comfy"},"e42b":{"name":"View Compact"},"e8ed":{"name":"View Day"},"e8ee":{"name":"View Headline"},"e8ef":{"name":"View List"},"e8f0":{"name":"View Module"},"e8f1":{"name":"View Quilt"},"e8f2":{"name":"View Stream"},"e8f3":{"name":"View Week"},"e435":{"name":"Vignette"},"e8f4":{"name":"Visibility"},"e8f5":{"name":"Visibility Off"},"e62e":{"name":"Voice Chat"},"e0d9":{"name":"Voicemail"},"e04d":{"name":"Volume Down"},"e04e":{"name":"Volume Mute"},"e04f":{"name":"Volume Off"},"e050":{"name":"Volume Up"},"e0da":{"name":"Vpn Key"},"e62f":{"name":"Vpn Lock"},"e1bc":{"name":"Wallpaper"},"e002":{"name":"Warning"},"e334":{"name":"Watch"},"e924":{"name":"Watch Later"},"e42c":{"name":"Wb Auto"},"e42d":{"name":"Wb Cloudy"},"e42e":{"name":"Wb Incandescent"},"e436":{"name":"Wb Iridescent"},"e430":{"name":"Wb Sunny"},"e63d":{"name":"Wc"},"e051":{"name":"Web"},"e069":{"name":"Web Asset"},"e16b":{"name":"Weekend"},"e80e":{"name":"Whatshot"},"e1bd":{"name":"Widgets"},"e63e":{"name":"Wifi"},"e1e1":{"name":"Wifi Lock"},"e1e2":{"name":"Wifi Tethering"},"e8f9":{"name":"Work"},"e25b":{"name":"Wrap Text"},"e8fa":{"name":"Youtube Searched For"},"e8ff":{"name":"Zoom In"},"e900":{"name":"Zoom Out"},"e56b":{"name":"Zoom Out Map"}}} \ No newline at end of file diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.svg b/public/assets/out/icon-material/MaterialIcons-Regular.svg deleted file mode 100644 index a449327e..00000000 --- a/public/assets/out/icon-material/MaterialIcons-Regular.svg +++ /dev/null @@ -1,2373 +0,0 @@ - - - - - -Created by FontForge 20151118 at Mon Feb 8 11:58:02 2016 - By shyndman -Copyright 2015 Google, Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.ttf b/public/assets/out/icon-material/MaterialIcons-Regular.ttf deleted file mode 100644 index 7015564a..00000000 Binary files a/public/assets/out/icon-material/MaterialIcons-Regular.ttf and /dev/null differ diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.woff b/public/assets/out/icon-material/MaterialIcons-Regular.woff deleted file mode 100644 index b648a3ee..00000000 Binary files a/public/assets/out/icon-material/MaterialIcons-Regular.woff and /dev/null differ diff --git a/public/assets/out/icon-material/MaterialIcons-Regular.woff2 b/public/assets/out/icon-material/MaterialIcons-Regular.woff2 deleted file mode 100644 index 9fa21125..00000000 Binary files a/public/assets/out/icon-material/MaterialIcons-Regular.woff2 and /dev/null differ diff --git a/public/assets/out/icon-material/README.md b/public/assets/out/icon-material/README.md deleted file mode 100644 index ce4141ec..00000000 --- a/public/assets/out/icon-material/README.md +++ /dev/null @@ -1,9 +0,0 @@ -The recommended way to use the Material Icons font is by linking to the web font hosted on Google Fonts: - -```html - -``` - -Read more in our full usage guide: -http://google.github.io/material-design-icons/#icon-font-for-the-web diff --git a/public/assets/out/icon-material/codepoints b/public/assets/out/icon-material/codepoints deleted file mode 100644 index 3c8b0750..00000000 --- a/public/assets/out/icon-material/codepoints +++ /dev/null @@ -1,932 +0,0 @@ -3d_rotation e84d -ac_unit eb3b -access_alarm e190 -access_alarms e191 -access_time e192 -accessibility e84e -accessible e914 -account_balance e84f -account_balance_wallet e850 -account_box e851 -account_circle e853 -adb e60e -add e145 -add_a_photo e439 -add_alarm e193 -add_alert e003 -add_box e146 -add_circle e147 -add_circle_outline e148 -add_location e567 -add_shopping_cart e854 -add_to_photos e39d -add_to_queue e05c -adjust e39e -airline_seat_flat e630 -airline_seat_flat_angled e631 -airline_seat_individual_suite e632 -airline_seat_legroom_extra e633 -airline_seat_legroom_normal e634 -airline_seat_legroom_reduced e635 -airline_seat_recline_extra e636 -airline_seat_recline_normal e637 -airplanemode_active e195 -airplanemode_inactive e194 -airplay e055 -airport_shuttle eb3c -alarm e855 -alarm_add e856 -alarm_off e857 -alarm_on e858 -album e019 -all_inclusive eb3d -all_out e90b -android e859 -announcement e85a -apps e5c3 -archive e149 -arrow_back e5c4 -arrow_downward e5db -arrow_drop_down e5c5 -arrow_drop_down_circle e5c6 -arrow_drop_up e5c7 -arrow_forward e5c8 -arrow_upward e5d8 -art_track e060 -aspect_ratio e85b -assessment e85c -assignment e85d -assignment_ind e85e -assignment_late e85f -assignment_return e860 -assignment_returned e861 -assignment_turned_in e862 -assistant e39f -assistant_photo e3a0 -attach_file e226 -attach_money e227 -attachment e2bc -audiotrack e3a1 -autorenew e863 -av_timer e01b -backspace e14a -backup e864 -battery_alert e19c -battery_charging_full e1a3 -battery_full e1a4 -battery_std e1a5 -battery_unknown e1a6 -beach_access eb3e -beenhere e52d -block e14b -bluetooth e1a7 -bluetooth_audio e60f -bluetooth_connected e1a8 -bluetooth_disabled e1a9 -bluetooth_searching e1aa -blur_circular e3a2 -blur_linear e3a3 -blur_off e3a4 -blur_on e3a5 -book e865 -bookmark e866 -bookmark_border e867 -border_all e228 -border_bottom e229 -border_clear e22a -border_color e22b -border_horizontal e22c -border_inner e22d -border_left e22e -border_outer e22f -border_right e230 -border_style e231 -border_top e232 -border_vertical e233 -branding_watermark e06b -brightness_1 e3a6 -brightness_2 e3a7 -brightness_3 e3a8 -brightness_4 e3a9 -brightness_5 e3aa -brightness_6 e3ab -brightness_7 e3ac -brightness_auto e1ab -brightness_high e1ac -brightness_low e1ad -brightness_medium e1ae -broken_image e3ad -brush e3ae -bubble_chart e6dd -bug_report e868 -build e869 -burst_mode e43c -business e0af -business_center eb3f -cached e86a -cake e7e9 -call e0b0 -call_end e0b1 -call_made e0b2 -call_merge e0b3 -call_missed e0b4 -call_missed_outgoing e0e4 -call_received e0b5 -call_split e0b6 -call_to_action e06c -camera e3af -camera_alt e3b0 -camera_enhance e8fc -camera_front e3b1 -camera_rear e3b2 -camera_roll e3b3 -cancel e5c9 -card_giftcard e8f6 -card_membership e8f7 -card_travel e8f8 -casino eb40 -cast e307 -cast_connected e308 -center_focus_strong e3b4 -center_focus_weak e3b5 -change_history e86b -chat e0b7 -chat_bubble e0ca -chat_bubble_outline e0cb -check e5ca -check_box e834 -check_box_outline_blank e835 -check_circle e86c -chevron_left e5cb -chevron_right e5cc -child_care eb41 -child_friendly eb42 -chrome_reader_mode e86d -class e86e -clear e14c -clear_all e0b8 -close e5cd -closed_caption e01c -cloud e2bd -cloud_circle e2be -cloud_done e2bf -cloud_download e2c0 -cloud_off e2c1 -cloud_queue e2c2 -cloud_upload e2c3 -code e86f -collections e3b6 -collections_bookmark e431 -color_lens e3b7 -colorize e3b8 -comment e0b9 -compare e3b9 -compare_arrows e915 -computer e30a -confirmation_number e638 -contact_mail e0d0 -contact_phone e0cf -contacts e0ba -content_copy e14d -content_cut e14e -content_paste e14f -control_point e3ba -control_point_duplicate e3bb -copyright e90c -create e150 -create_new_folder e2cc -credit_card e870 -crop e3be -crop_16_9 e3bc -crop_3_2 e3bd -crop_5_4 e3bf -crop_7_5 e3c0 -crop_din e3c1 -crop_free e3c2 -crop_landscape e3c3 -crop_original e3c4 -crop_portrait e3c5 -crop_rotate e437 -crop_square e3c6 -dashboard e871 -data_usage e1af -date_range e916 -dehaze e3c7 -delete e872 -delete_forever e92b -delete_sweep e16c -description e873 -desktop_mac e30b -desktop_windows e30c -details e3c8 -developer_board e30d -developer_mode e1b0 -device_hub e335 -devices e1b1 -devices_other e337 -dialer_sip e0bb -dialpad e0bc -directions e52e -directions_bike e52f -directions_boat e532 -directions_bus e530 -directions_car e531 -directions_railway e534 -directions_run e566 -directions_subway e533 -directions_transit e535 -directions_walk e536 -disc_full e610 -dns e875 -do_not_disturb e612 -do_not_disturb_alt e611 -do_not_disturb_off e643 -do_not_disturb_on e644 -dock e30e -domain e7ee -done e876 -done_all e877 -donut_large e917 -donut_small e918 -drafts e151 -drag_handle e25d -drive_eta e613 -dvr e1b2 -edit e3c9 -edit_location e568 -eject e8fb -email e0be -enhanced_encryption e63f -equalizer e01d -error e000 -error_outline e001 -euro_symbol e926 -ev_station e56d -event e878 -event_available e614 -event_busy e615 -event_note e616 -event_seat e903 -exit_to_app e879 -expand_less e5ce -expand_more e5cf -explicit e01e -explore e87a -exposure e3ca -exposure_neg_1 e3cb -exposure_neg_2 e3cc -exposure_plus_1 e3cd -exposure_plus_2 e3ce -exposure_zero e3cf -extension e87b -face e87c -fast_forward e01f -fast_rewind e020 -favorite e87d -favorite_border e87e -featured_play_list e06d -featured_video e06e -feedback e87f -fiber_dvr e05d -fiber_manual_record e061 -fiber_new e05e -fiber_pin e06a -fiber_smart_record e062 -file_download e2c4 -file_upload e2c6 -filter e3d3 -filter_1 e3d0 -filter_2 e3d1 -filter_3 e3d2 -filter_4 e3d4 -filter_5 e3d5 -filter_6 e3d6 -filter_7 e3d7 -filter_8 e3d8 -filter_9 e3d9 -filter_9_plus e3da -filter_b_and_w e3db -filter_center_focus e3dc -filter_drama e3dd -filter_frames e3de -filter_hdr e3df -filter_list e152 -filter_none e3e0 -filter_tilt_shift e3e2 -filter_vintage e3e3 -find_in_page e880 -find_replace e881 -fingerprint e90d -first_page e5dc -fitness_center eb43 -flag e153 -flare e3e4 -flash_auto e3e5 -flash_off e3e6 -flash_on e3e7 -flight e539 -flight_land e904 -flight_takeoff e905 -flip e3e8 -flip_to_back e882 -flip_to_front e883 -folder e2c7 -folder_open e2c8 -folder_shared e2c9 -folder_special e617 -font_download e167 -format_align_center e234 -format_align_justify e235 -format_align_left e236 -format_align_right e237 -format_bold e238 -format_clear e239 -format_color_fill e23a -format_color_reset e23b -format_color_text e23c -format_indent_decrease e23d -format_indent_increase e23e -format_italic e23f -format_line_spacing e240 -format_list_bulleted e241 -format_list_numbered e242 -format_paint e243 -format_quote e244 -format_shapes e25e -format_size e245 -format_strikethrough e246 -format_textdirection_l_to_r e247 -format_textdirection_r_to_l e248 -format_underlined e249 -forum e0bf -forward e154 -forward_10 e056 -forward_30 e057 -forward_5 e058 -free_breakfast eb44 -fullscreen e5d0 -fullscreen_exit e5d1 -functions e24a -g_translate e927 -gamepad e30f -games e021 -gavel e90e -gesture e155 -get_app e884 -gif e908 -golf_course eb45 -gps_fixed e1b3 -gps_not_fixed e1b4 -gps_off e1b5 -grade e885 -gradient e3e9 -grain e3ea -graphic_eq e1b8 -grid_off e3eb -grid_on e3ec -group e7ef -group_add e7f0 -group_work e886 -hd e052 -hdr_off e3ed -hdr_on e3ee -hdr_strong e3f1 -hdr_weak e3f2 -headset e310 -headset_mic e311 -healing e3f3 -hearing e023 -help e887 -help_outline e8fd -high_quality e024 -highlight e25f -highlight_off e888 -history e889 -home e88a -hot_tub eb46 -hotel e53a -hourglass_empty e88b -hourglass_full e88c -http e902 -https e88d -image e3f4 -image_aspect_ratio e3f5 -import_contacts e0e0 -import_export e0c3 -important_devices e912 -inbox e156 -indeterminate_check_box e909 -info e88e -info_outline e88f -input e890 -insert_chart e24b -insert_comment e24c -insert_drive_file e24d -insert_emoticon e24e -insert_invitation e24f -insert_link e250 -insert_photo e251 -invert_colors e891 -invert_colors_off e0c4 -iso e3f6 -keyboard e312 -keyboard_arrow_down e313 -keyboard_arrow_left e314 -keyboard_arrow_right e315 -keyboard_arrow_up e316 -keyboard_backspace e317 -keyboard_capslock e318 -keyboard_hide e31a -keyboard_return e31b -keyboard_tab e31c -keyboard_voice e31d -kitchen eb47 -label e892 -label_outline e893 -landscape e3f7 -language e894 -laptop e31e -laptop_chromebook e31f -laptop_mac e320 -laptop_windows e321 -last_page e5dd -launch e895 -layers e53b -layers_clear e53c -leak_add e3f8 -leak_remove e3f9 -lens e3fa -library_add e02e -library_books e02f -library_music e030 -lightbulb_outline e90f -line_style e919 -line_weight e91a -linear_scale e260 -link e157 -linked_camera e438 -list e896 -live_help e0c6 -live_tv e639 -local_activity e53f -local_airport e53d -local_atm e53e -local_bar e540 -local_cafe e541 -local_car_wash e542 -local_convenience_store e543 -local_dining e556 -local_drink e544 -local_florist e545 -local_gas_station e546 -local_grocery_store e547 -local_hospital e548 -local_hotel e549 -local_laundry_service e54a -local_library e54b -local_mall e54c -local_movies e54d -local_offer e54e -local_parking e54f -local_pharmacy e550 -local_phone e551 -local_pizza e552 -local_play e553 -local_post_office e554 -local_printshop e555 -local_see e557 -local_shipping e558 -local_taxi e559 -location_city e7f1 -location_disabled e1b6 -location_off e0c7 -location_on e0c8 -location_searching e1b7 -lock e897 -lock_open e898 -lock_outline e899 -looks e3fc -looks_3 e3fb -looks_4 e3fd -looks_5 e3fe -looks_6 e3ff -looks_one e400 -looks_two e401 -loop e028 -loupe e402 -low_priority e16d -loyalty e89a -mail e158 -mail_outline e0e1 -map e55b -markunread e159 -markunread_mailbox e89b -memory e322 -menu e5d2 -merge_type e252 -message e0c9 -mic e029 -mic_none e02a -mic_off e02b -mms e618 -mode_comment e253 -mode_edit e254 -monetization_on e263 -money_off e25c -monochrome_photos e403 -mood e7f2 -mood_bad e7f3 -more e619 -more_horiz e5d3 -more_vert e5d4 -motorcycle e91b -mouse e323 -move_to_inbox e168 -movie e02c -movie_creation e404 -movie_filter e43a -multiline_chart e6df -music_note e405 -music_video e063 -my_location e55c -nature e406 -nature_people e407 -navigate_before e408 -navigate_next e409 -navigation e55d -near_me e569 -network_cell e1b9 -network_check e640 -network_locked e61a -network_wifi e1ba -new_releases e031 -next_week e16a -nfc e1bb -no_encryption e641 -no_sim e0cc -not_interested e033 -note e06f -note_add e89c -notifications e7f4 -notifications_active e7f7 -notifications_none e7f5 -notifications_off e7f6 -notifications_paused e7f8 -offline_pin e90a -ondemand_video e63a -opacity e91c -open_in_browser e89d -open_in_new e89e -open_with e89f -pages e7f9 -pageview e8a0 -palette e40a -pan_tool e925 -panorama e40b -panorama_fish_eye e40c -panorama_horizontal e40d -panorama_vertical e40e -panorama_wide_angle e40f -party_mode e7fa -pause e034 -pause_circle_filled e035 -pause_circle_outline e036 -payment e8a1 -people e7fb -people_outline e7fc -perm_camera_mic e8a2 -perm_contact_calendar e8a3 -perm_data_setting e8a4 -perm_device_information e8a5 -perm_identity e8a6 -perm_media e8a7 -perm_phone_msg e8a8 -perm_scan_wifi e8a9 -person e7fd -person_add e7fe -person_outline e7ff -person_pin e55a -person_pin_circle e56a -personal_video e63b -pets e91d -phone e0cd -phone_android e324 -phone_bluetooth_speaker e61b -phone_forwarded e61c -phone_in_talk e61d -phone_iphone e325 -phone_locked e61e -phone_missed e61f -phone_paused e620 -phonelink e326 -phonelink_erase e0db -phonelink_lock e0dc -phonelink_off e327 -phonelink_ring e0dd -phonelink_setup e0de -photo e410 -photo_album e411 -photo_camera e412 -photo_filter e43b -photo_library e413 -photo_size_select_actual e432 -photo_size_select_large e433 -photo_size_select_small e434 -picture_as_pdf e415 -picture_in_picture e8aa -picture_in_picture_alt e911 -pie_chart e6c4 -pie_chart_outlined e6c5 -pin_drop e55e -place e55f -play_arrow e037 -play_circle_filled e038 -play_circle_outline e039 -play_for_work e906 -playlist_add e03b -playlist_add_check e065 -playlist_play e05f -plus_one e800 -poll e801 -polymer e8ab -pool eb48 -portable_wifi_off e0ce -portrait e416 -power e63c -power_input e336 -power_settings_new e8ac -pregnant_woman e91e -present_to_all e0df -print e8ad -priority_high e645 -public e80b -publish e255 -query_builder e8ae -question_answer e8af -queue e03c -queue_music e03d -queue_play_next e066 -radio e03e -radio_button_checked e837 -radio_button_unchecked e836 -rate_review e560 -receipt e8b0 -recent_actors e03f -record_voice_over e91f -redeem e8b1 -redo e15a -refresh e5d5 -remove e15b -remove_circle e15c -remove_circle_outline e15d -remove_from_queue e067 -remove_red_eye e417 -remove_shopping_cart e928 -reorder e8fe -repeat e040 -repeat_one e041 -replay e042 -replay_10 e059 -replay_30 e05a -replay_5 e05b -reply e15e -reply_all e15f -report e160 -report_problem e8b2 -restaurant e56c -restaurant_menu e561 -restore e8b3 -restore_page e929 -ring_volume e0d1 -room e8b4 -room_service eb49 -rotate_90_degrees_ccw e418 -rotate_left e419 -rotate_right e41a -rounded_corner e920 -router e328 -rowing e921 -rss_feed e0e5 -rv_hookup e642 -satellite e562 -save e161 -scanner e329 -schedule e8b5 -school e80c -screen_lock_landscape e1be -screen_lock_portrait e1bf -screen_lock_rotation e1c0 -screen_rotation e1c1 -screen_share e0e2 -sd_card e623 -sd_storage e1c2 -search e8b6 -security e32a -select_all e162 -send e163 -sentiment_dissatisfied e811 -sentiment_neutral e812 -sentiment_satisfied e813 -sentiment_very_dissatisfied e814 -sentiment_very_satisfied e815 -settings e8b8 -settings_applications e8b9 -settings_backup_restore e8ba -settings_bluetooth e8bb -settings_brightness e8bd -settings_cell e8bc -settings_ethernet e8be -settings_input_antenna e8bf -settings_input_component e8c0 -settings_input_composite e8c1 -settings_input_hdmi e8c2 -settings_input_svideo e8c3 -settings_overscan e8c4 -settings_phone e8c5 -settings_power e8c6 -settings_remote e8c7 -settings_system_daydream e1c3 -settings_voice e8c8 -share e80d -shop e8c9 -shop_two e8ca -shopping_basket e8cb -shopping_cart e8cc -short_text e261 -show_chart e6e1 -shuffle e043 -signal_cellular_4_bar e1c8 -signal_cellular_connected_no_internet_4_bar e1cd -signal_cellular_no_sim e1ce -signal_cellular_null e1cf -signal_cellular_off e1d0 -signal_wifi_4_bar e1d8 -signal_wifi_4_bar_lock e1d9 -signal_wifi_off e1da -sim_card e32b -sim_card_alert e624 -skip_next e044 -skip_previous e045 -slideshow e41b -slow_motion_video e068 -smartphone e32c -smoke_free eb4a -smoking_rooms eb4b -sms e625 -sms_failed e626 -snooze e046 -sort e164 -sort_by_alpha e053 -spa eb4c -space_bar e256 -speaker e32d -speaker_group e32e -speaker_notes e8cd -speaker_notes_off e92a -speaker_phone e0d2 -spellcheck e8ce -star e838 -star_border e83a -star_half e839 -stars e8d0 -stay_current_landscape e0d3 -stay_current_portrait e0d4 -stay_primary_landscape e0d5 -stay_primary_portrait e0d6 -stop e047 -stop_screen_share e0e3 -storage e1db -store e8d1 -store_mall_directory e563 -straighten e41c -streetview e56e -strikethrough_s e257 -style e41d -subdirectory_arrow_left e5d9 -subdirectory_arrow_right e5da -subject e8d2 -subscriptions e064 -subtitles e048 -subway e56f -supervisor_account e8d3 -surround_sound e049 -swap_calls e0d7 -swap_horiz e8d4 -swap_vert e8d5 -swap_vertical_circle e8d6 -switch_camera e41e -switch_video e41f -sync e627 -sync_disabled e628 -sync_problem e629 -system_update e62a -system_update_alt e8d7 -tab e8d8 -tab_unselected e8d9 -tablet e32f -tablet_android e330 -tablet_mac e331 -tag_faces e420 -tap_and_play e62b -terrain e564 -text_fields e262 -text_format e165 -textsms e0d8 -texture e421 -theaters e8da -thumb_down e8db -thumb_up e8dc -thumbs_up_down e8dd -time_to_leave e62c -timelapse e422 -timeline e922 -timer e425 -timer_10 e423 -timer_3 e424 -timer_off e426 -title e264 -toc e8de -today e8df -toll e8e0 -tonality e427 -touch_app e913 -toys e332 -track_changes e8e1 -traffic e565 -train e570 -tram e571 -transfer_within_a_station e572 -transform e428 -translate e8e2 -trending_down e8e3 -trending_flat e8e4 -trending_up e8e5 -tune e429 -turned_in e8e6 -turned_in_not e8e7 -tv e333 -unarchive e169 -undo e166 -unfold_less e5d6 -unfold_more e5d7 -update e923 -usb e1e0 -verified_user e8e8 -vertical_align_bottom e258 -vertical_align_center e259 -vertical_align_top e25a -vibration e62d -video_call e070 -video_label e071 -video_library e04a -videocam e04b -videocam_off e04c -videogame_asset e338 -view_agenda e8e9 -view_array e8ea -view_carousel e8eb -view_column e8ec -view_comfy e42a -view_compact e42b -view_day e8ed -view_headline e8ee -view_list e8ef -view_module e8f0 -view_quilt e8f1 -view_stream e8f2 -view_week e8f3 -vignette e435 -visibility e8f4 -visibility_off e8f5 -voice_chat e62e -voicemail e0d9 -volume_down e04d -volume_mute e04e -volume_off e04f -volume_up e050 -vpn_key e0da -vpn_lock e62f -wallpaper e1bc -warning e002 -watch e334 -watch_later e924 -wb_auto e42c -wb_cloudy e42d -wb_incandescent e42e -wb_iridescent e436 -wb_sunny e430 -wc e63d -web e051 -web_asset e069 -weekend e16b -whatshot e80e -widgets e1bd -wifi e63e -wifi_lock e1e1 -wifi_tethering e1e2 -work e8f9 -wrap_text e25b -youtube_searched_for e8fa -zoom_in e8ff -zoom_out e900 -zoom_out_map e56b diff --git a/public/assets/out/icon-material/material-icons.css b/public/assets/out/icon-material/material-icons.css deleted file mode 100644 index 2270c09d..00000000 --- a/public/assets/out/icon-material/material-icons.css +++ /dev/null @@ -1,36 +0,0 @@ -@font-face { - font-family: 'Material Icons'; - font-style: normal; - font-weight: 400; - src: url(MaterialIcons-Regular.eot); /* For IE6-8 */ - src: local('Material Icons'), - local('MaterialIcons-Regular'), - url(MaterialIcons-Regular.woff2) format('woff2'), - url(MaterialIcons-Regular.woff) format('woff'), - url(MaterialIcons-Regular.ttf) format('truetype'); -} - -.material-icons { - font-family: 'Material Icons'; - font-weight: normal; - font-style: normal; - font-size: 24px; /* Preferred icon size */ - display: inline-block; - line-height: 1; - text-transform: none; - letter-spacing: normal; - word-wrap: normal; - white-space: nowrap; - direction: ltr; - - /* Support for all WebKit browsers. */ - -webkit-font-smoothing: antialiased; - /* Support for Safari and Chrome. */ - text-rendering: optimizeLegibility; - - /* Support for Firefox. */ - -moz-osx-font-smoothing: grayscale; - - /* Support for IE. */ - font-feature-settings: 'liga'; -} diff --git a/public/assets/out/image-select/.bower.json b/public/assets/out/image-select/.bower.json deleted file mode 100644 index 5ae9759c..00000000 --- a/public/assets/out/image-select/.bower.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Image Select", - "homepage": "https://github.com/websemantics/Image-Select", - "authors": [ - "Web Semantics, Inc. " - ], - "license": "MIT", - "ignore": [ - "**/.*" - ], - "dependencies": { - "semantic": "*", - "chosen": "*" - }, - "devDependencies": { - "codemirror": "*" - }, - "_release": "492ca0fcf0", - "_resolution": { - "type": "branch", - "branch": "master", - "commit": "492ca0fcf062da32f3d0f71e9e8048a1e6341cfe" - }, - "_source": "https://github.com/websemantics/Image-Select.git", - "_target": "*", - "_originalSource": "image-select", - "_direct": true -} \ No newline at end of file diff --git a/public/assets/out/image-select/CHANGELOG b/public/assets/out/image-select/CHANGELOG deleted file mode 100644 index dc073957..00000000 --- a/public/assets/out/image-select/CHANGELOG +++ /dev/null @@ -1,39 +0,0 @@ -0.1.8 - date: 2016-09-07 - changes: - - Support for `optgroup` tag - -0.1.7 - date: 2016-05-09 - changes: - - New logo and web design - - Use of `github.com/websemantics/bragit` for Github buttons - - Separating the new flat styles from Chosen CSS - -0.1.6 - date: 2016-04-29 - changes: - - New logo and web design - - Adding Travis support - - Bug fixes - -0.1.5 - date: 2016-02-08 - changes: - - Flexible templates (insert images before / after text regardless of rtl) - - Various code fixes - -0.1.4 - date: 2015-08-18 - changes: - - Use [Bower](http://bower.io/) for dependancies. - - Merged main project and `gh-pages` into one codebase. - - Upgrade to latest [Chosen](http://github.com/harvesthq/chosen) library. - - Support for Left to Right, LTR (i.e. Arabic). - - Code refactoring to improve quality and ease of contribution. - - Fixed all known issues - -0.1.3 - date: 2015-03-29 - changes: - - Fixed few bugs diff --git a/public/assets/out/image-select/LICENSE b/public/assets/out/image-select/LICENSE deleted file mode 100644 index 92ae8924..00000000 --- a/public/assets/out/image-select/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Web Semantics, Inc and AlterSpark Corp. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/public/assets/out/image-select/README.md b/public/assets/out/image-select/README.md deleted file mode 100644 index 54cd0903..00000000 --- a/public/assets/out/image-select/README.md +++ /dev/null @@ -1,109 +0,0 @@ -``` - ___ ____ _ _ - |_ _|_ __ ___ __ _ __ _ ___ / ___| ___| | ___ ___| |_ - | || '_ ` _ \ / _` |/ _` |/ _ \ \___ \ / _ \ |/ _ \/ __| __| - | || | | | | | (_| | (_| | __/ ___) | __/ | __/ (__| |_ - |___|_| |_| |_|\__,_|\__, |\___| |____/ \___|_|\___|\___|\__| - |___/ v1.8 -``` - -[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/websemantics/Image-Select/master/LICENSE) [![GitHub forks](https://img.shields.io/github/forks/websemantics/Image-Select.svg)](https://github.com/websemantics/Image-Select/network) [![GitHub stars](https://img.shields.io/github/stars/websemantics/Image-Select.svg)](https://github.com/websemantics/Image-Select/stargazers) -[![Percentage of issues still open](http://isitmaintained.com/badge/open/websemantics/Image-Select.svg)](http://isitmaintained.com/project/websemantics/Image-Select "Percentage of issues still open") - -> We designed this plugin extension as a humanized UI element for social networking sites that need to facilitate relations between people. Research shows that people are extremely sensitive to photos of others, so we needed to revamp the traditional UI elements to make them more intuitive and human. - - -## New Style -> Fresh flat styles and new logo & web design for better user experience - -Image Select - -#### Try [Live](http://websemantics.github.io/Image-Select/) or [Examples](http://websemantics.github.io/Image-Select/example.html) - - -## Use Scenarios - -You can use these plugin extensions for modelling multiple (one-to-many) or single (one-to-one) relations between people. - -We couldn't find any scripts that had this full functionality, so we developed it ourselves on top of Chosen. Hope you find it helpful, and get back if you have any feedback/improvements. - - -## Installation - -- Clone locally, - -```bash -git clone https://github.com/websemantics/Image-Select -``` - -- Install dependencies, - -```bash -bower i -``` - -- Browse to `index.html` or `example.html` - - -### Bower Package - -Install in your project, - -``` -bower install image-select --save -``` - -To get information about available packages - -```bash -bower info image-select -``` - -## Usage - -You only need to add a `data-img-src` attribute to your `
      - - - - - - - - - - - - - - - - diff --git a/public/assets/out/image-select/src/Flat.css b/public/assets/out/image-select/src/Flat.css deleted file mode 100644 index e778caec..00000000 --- a/public/assets/out/image-select/src/Flat.css +++ /dev/null @@ -1,111 +0,0 @@ -/** - * Additional styles correct images location and change to flat style - * - * @author Web Semantics, Inc. Dev Team - * @copyright 2011-2015 Web Semantics, Inc. - * @link http://websemantics.ca - * @license https://opensource.org/licenses/MIT - */ - -.chosen-container-multi .chosen-choices, -.chosen-container-single .chosen-single { - position: relative; - display: block; - overflow: hidden; - padding: 7px 0 0 8px; - min-height: 42px; - border: 2px solid #acb4b9; - border-radius: 5px; - background: none; - width:100%; - box-shadow: none; - margin-bottom: 0px!important; -} - -.chosen-container-multi .chosen-choices{ - padding: 5px 8px; -} - -.chosen-container { - width:100%!important; - margin-bottom: 10px; -} - -.chosen-container-active .chosen-single { - border: 2px solid #acb4b9; - box-shadow: none; -} - -.chosen-container-single .chosen-search input[type="text"] { - border: 1px solid #acb4b9; -} - -.chosen-container-active.chosen-container-multi.chosen-with-drop .chosen-choices, -.chosen-container-active.chosen-with-drop .chosen-single { - border: 2px solid #acb4b9; - border-bottom-color: white; - background-image: none; - box-shadow: none; -} - -.chosen-container-multi .chosen-choices li.search-choice { - border: 2px solid #acb4b9; - background: none; - } - -.chosen-container-multi .chosen-drop { - margin-top: -4px; -} - -.chosen-container-single .chosen-drop { - margin-top: -2px; -} - -.chosen-container .chosen-drop { - border: 2px solid #acb4b9; - border-top: 0; - box-shadow: none; -} - -.chosen-container .chosen-results li.highlighted { - background-color: #3875d7; - background-image: none; - background-color: #acb4b9; - color: #fff; -} - -.chosen-container-single .chosen-single div { - padding: 7px 3px 0px 0px; - width: 16px; -} - -.chosen-container-single .chosen-single abbr { - background: url('chosen/chosen-sprite.png') -42px 1px no-repeat; -} - -.chosen-container-single .chosen-single div b { - background: url('chosen/chosen-sprite.png') no-repeat 0px 2px; -} -.chosen-container-single .chosen-search input[type="text"] { - background: white url('chosen/chosen-sprite.png') no-repeat 100% -20px; - background: url('chosen/chosen-sprite.png') no-repeat 100% -20px; -} -.chosen-container-multi .chosen-choices li.search-choice .search-choice-close { - background: url('chosen/chosen-sprite.png') -42px 1px no-repeat; -} -.chosen-rtl .chosen-search input[type="text"] { - background: white url('chosen/chosen-sprite.png') no-repeat -30px -20px; - background: url('chosen/chosen-sprite.png') no-repeat -30px -20px; -} - -@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) { - .chosen-rtl .chosen-search input[type="text"], - .chosen-container-single .chosen-single abbr, - .chosen-container-single .chosen-single div b, - .chosen-container-single .chosen-search input[type="text"], - .chosen-container-multi .chosen-choices .search-choice .search-choice-close, - .chosen-container .chosen-results-scroll-down span, - .chosen-container .chosen-results-scroll-up span { - background-image: url('chosen/chosen-sprite@2x.png') !important; - } -} diff --git a/public/assets/out/image-select/src/ImageSelect.css b/public/assets/out/image-select/src/ImageSelect.css deleted file mode 100644 index 180a16cb..00000000 --- a/public/assets/out/image-select/src/ImageSelect.css +++ /dev/null @@ -1,53 +0,0 @@ -/** - * Image Select Styles - * - * @author Web Semantics, Inc. Dev Team - * @copyright 2011-2015 Web Semantics, Inc. - * @link http://websemantics.ca - * @license https://opensource.org/licenses/MIT - */ - -/* Tag image */ -.chose-image { - width:55px; - max-height:55px; - padding: 2px 5px 3px 0px; - vertical-align:middle; -} - -.chose-image.rtl { - padding: 2px 0px 3px 5px; -} - -/* Image for Single mode */ -.chose-image-small { - width:18px; - max-height:18px; - vertical-align: middle; - margin: -3px 0 0 0; - padding: 0 3px 0 0; -} - -.chose-image-small.rtl { - padding: 0 0 0 3px; -} - -/* Images appended to the li(s) */ -.chose-image-list { - width:18px; - max-height:18px; - vertical-align: middle; - margin: -3px 0 0 0; - padding: 0 3px 0 0; -} - -.chose-image-list.rtl { - padding: 0 0 0 3px; -} - -/* Grey-out image for Multi mode */ -.chosen-container-multi .result-selected img { - opacity: 0.3; -} - -/*Test comment*/ diff --git a/public/assets/out/image-select/src/ImageSelect.jquery.js b/public/assets/out/image-select/src/ImageSelect.jquery.js deleted file mode 100644 index 51d32f66..00000000 --- a/public/assets/out/image-select/src/ImageSelect.jquery.js +++ /dev/null @@ -1,187 +0,0 @@ -/** - * Image Select (Version 1.8) - * - * Image Select is an extention to the Chosen, a Select Box Enhancer for - * jQuery and Prototype, full source at https://github.com/harvesthq/chosen - * - * This plugin extension was designed as a humanized UI element for social networking - * sites that need to faciliate relations between people. Research shows that people - * are extremely sensitvie to photos of others, so we needed to revamp the traditional - * UI elements to make them more intuitive and human. - * - * Hope you find it helpful, and get back if you have any feedback/improvements. - * - * @author Adnan M.Sagar, PhD - * @copyright 2002-2015 Web Semantics, Inc. (http://websemantics.ca) & AlterSpark Corp. (http://www.alterspark.com) - * @license http://www.opensource.org/licenses/mit-license.php MIT - * @link http://websemantics.ca - * @package websemantics/image-select - */ - -(function($) { - -// Image template, this can be overridden from the constructor (options.template), -// must contains {src} placeholder. Ther eare two class names -// 'chose-image' or 'chose-image-small', modifiy in CSS -var fn_template = '' - -function prependTemplate(element, option, template, rtl, multiple, cls){ - // summery: - // This will fill-in the provided template with image source and css class - // then add it to the element. - // - // element: Dom - // This is the span node - // object: Object, - // The select option to get image url - // template: String - // Html content - // rtl: Boolean, - // Right to Left - // multiple: Boolean - // Used to select the approperiate css class, default to 'true' - // cls*: String (optional) - // Css styles class - - var src = $(option).data('img-src') - - if(src != undefined && src > ''){ - - element = $(element) - - text = $(option).text() - multiple = (multiple != undefined) ? multiple : true - cls = cls || (multiple ? 'chose-image' : 'chose-image-small') - cls = rtl ? cls + ' rtl' : cls - template = template.replace('{url}',src) - .replace('{class_name}',cls) - .replace('{text}',text) - - // Empty the element - element.empty() - - // Insert after if ltr or multiple select, otherwise, insert before - if(rtl && multiple){ - element.append(template) - } - else { - element.prepend(template) - } - } -} - -function getSelectedOptions(chosen){ - // summery: - // Return a list of selected items/options with the selected 'option' elements - // and chosen 'span' elements. - // - // chosen: Chosen - // The Chosen object - - var items = [] - var options = $(chosen.form_field).find('option:selected') || [] - var spans = (chosen.is_multiple) ? $(chosen.container).find('.chosen-choices span'): - $(chosen.container).find('.chosen-single span') - - for(var i = 0; i < options.length; i++) - for(var j = 0; j < spans.length; j++) - if($(spans[j]).text() == $(options[i]).text()) - items.push({span:spans[j],option:options[i]}) - - return items -} - -// Store the original 'chosen' method -var fn_chosen = $.fn.chosen - -$.fn.extend({ - // summery: - // Extend the original 'chosen' method to support images - chosen: function(params) { - - params = params || {} - - // Original behavior - use function.apply to preserve context - var ret = fn_chosen.apply(this, arguments) - - // Process all select elements to attach event handlers - // (change, hiding_dropdown and showing_dropdown) - - this.each(function() { - - var $this = $(this), chosen = $this.data('chosen') - - $this.on("chosen:hiding_dropdown", function(e, chosen){ - // summery - // Triggers when hidding dropdown, explain why:TODO. - // - // evt: Event - // The event object - // _chosen: Object {chosen:Chosen} - // Contains the current instance of Chosen class - - var options = getSelectedOptions(chosen.chosen) - var rtl = chosen.chosen.is_rtl - var multiple = chosen.chosen.is_multiple - var html_template = params.html_template || - (rtl && multiple ? '{text}' + fn_template : fn_template + '{text}') - - for(var i = 0; i < options.length; i++){ - prependTemplate(options[i].span, options[i].option, html_template, rtl, multiple) - } - }) - - $this.on("chosen:showing_dropdown", function showing_dropdown(evt, chosen){ - // summery - // This function is triggered when the chosen instance dropdown list - // becomes visible. http://forwebonly.com/jquery-chosen-custom-events-and-how-to-use-them/ - // - // evt: Event - // The event object - // chosen: Object {chosen:Chosen} - // Contains the current instance of Chosen class - - var chosen = chosen.chosen - var options = chosen.form_field.options || [] - var rtl = chosen.is_rtl - var html_template = params.html_template || - rtl ? '{text}'+fn_template : fn_template+'{text}' - - var lis = $(chosen.container).find('.chosen-drop ul li:not(:has(img))') - - for(var i = 0; i < lis.length; i++){ - var li = lis[i] - var option = $(options[i]) - var idx = $(li).attr('data-option-array-index') - - /* correct option index */ - - if (idx){ - option = options[chosen.results_data[idx].options_index] - prependTemplate(li, option, html_template, rtl, true, 'chose-image-list') - } - - } - }) - - $this.on("chosen:ready", function change(e, chosen){ - // summery: - // Trigger hide dropdown when ready. - // This never triggers. TODO: remove. - $this.trigger('chosen:hiding_dropdown',chosen) - }) - - $this.on('chosen:filter', function(evt, chosen){ - // summery - // Support search, pending: https://github.com/harvesthq/chosen/pull/2373 - $this.trigger('chosen:showing_dropdown',{chosen:chosen.chosen}) - }) - - // Finally, trigger hiding_dropdown on all select elements - $this.trigger('chosen:hiding_dropdown',{chosen:chosen}) - }) - } -}) - - -})(jQuery) diff --git a/public/assets/out/jquery-ui/.bower.json b/public/assets/out/jquery-ui/.bower.json deleted file mode 100644 index d74dd89d..00000000 --- a/public/assets/out/jquery-ui/.bower.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "jquery-ui", - "version": "1.12.1", - "main": [ - "jquery-ui.js" - ], - "ignore": [], - "license": "MIT", - "dependencies": { - "jquery": ">=1.6" - }, - "homepage": "https://github.com/components/jqueryui", - "_release": "1.12.1", - "_resolution": { - "type": "version", - "tag": "1.12.1", - "commit": "44ecf3794cc56b65954cc19737234a3119d036cc" - }, - "_source": "https://github.com/components/jqueryui.git", - "_target": "^1.12.1", - "_originalSource": "jquery-ui", - "_direct": true -} \ No newline at end of file diff --git a/public/assets/out/jquery-ui/README.md b/public/assets/out/jquery-ui/README.md deleted file mode 100644 index 749a76ec..00000000 --- a/public/assets/out/jquery-ui/README.md +++ /dev/null @@ -1,12 +0,0 @@ -jQuery UI -========= - -Shim [repository](https://github.com/components/jqueryui) for the [jQuery UI](https://jqueryui.com). - -Package Managers ----------------- - -* [Bower](http://bower.io/): `jquery-ui` -* [Component](https://github.com/component/component): `components/jquery-ui` -* [Composer](http://packagist.org/packages/components/jquery): `components/jqueryui` -* [npm](https://www.npmjs.com/): `components-jqueryui` \ No newline at end of file diff --git a/public/assets/out/jquery-ui/bower.json b/public/assets/out/jquery-ui/bower.json deleted file mode 100644 index 965aba7b..00000000 --- a/public/assets/out/jquery-ui/bower.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "jquery-ui", - "version": "1.12.1", - "main": [ - "jquery-ui.js" - ], - "ignore": [ - ], - "license": "MIT", - "dependencies": { - "jquery": ">=1.6" - } -} diff --git a/public/assets/out/jquery-ui/component.json b/public/assets/out/jquery-ui/component.json deleted file mode 100644 index 25188ae7..00000000 --- a/public/assets/out/jquery-ui/component.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "jquery-ui", - "repo": "components/jqueryui", - "version": "1.12.1", - "license": "MIT", - "scripts": [ - "jquery-ui.js" - ], - "main": "jquery-ui.js", - "dependencies": { - "components/jquery": "*" - } -} diff --git a/public/assets/out/jquery-ui/composer.json b/public/assets/out/jquery-ui/composer.json deleted file mode 100644 index cea9ab65..00000000 --- a/public/assets/out/jquery-ui/composer.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "components/jqueryui", - "type": "component", - "description": "jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice.", - "license": "MIT", - "require": { - "components/jquery": ">=1.6" - }, - "authors": [ - { - "name": "jQuery UI Team", - "homepage": "http://jqueryui.com/about" - }, - { - "name": "Scott Gonzalez", - "email": "scott.gonzalez@gmail.com", - "homepage": "http://scottgonzalez.com" - }, - { - "name": "Joern Zaefferer", - "email": "joern.zaefferer@gmail.com", - "homepage": "http://bassistance.de" - }, - { - "name": "Kris Borchers", - "email": "kris.borchers@gmail.com", - "homepage": "http://krisborchers.com" - }, - { - "name": "Corey Frang", - "email": "gnarf37@gmail.com", - "homepage": "http://gnarf.net" - }, - { - "name": "Mike Sherov", - "email": "mike.sherov@gmail.com", - "homepage": "http://mike.sherov.com" - }, - { - "name": "TJ VanToll", - "email": "tj.vantoll@gmail.com", - "homepage": "http://tjvantoll.com" - }, - { - "name": "Felix Nagel", - "email": "info@felixnagel.com", - "homepage": "http://www.felixnagel.com" - } - ], - "extra": { - "component": { - "name": "jquery-ui", - "scripts": [ - "jquery-ui.js" - ], - "files": [ - "ui/**", - "themes/**", - "jquery-ui.min.js" - ], - "shim": { - "deps": [ - "jquery" - ], - "exports": "jQuery" - } - } - } -} diff --git a/public/assets/out/jquery-ui/jquery-ui.core.min.js b/public/assets/out/jquery-ui/jquery-ui.core.min.js deleted file mode 100644 index e78a4bff..00000000 --- a/public/assets/out/jquery-ui/jquery-ui.core.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){"function"==typeof define&&define.amd?define(["jquery","./version"],e):e(jQuery)}(function(e){var t=0,n=Array.prototype.slice;return e.cleanData=function(t){return function(n){var i,a,s;for(s=0;null!=(a=n[s]);s++)try{(i=e._data(a,"events"))&&i.remove&&e(a).triggerHandler("remove")}catch(e){}t(n)}}(e.cleanData),e.widget=function(t,n,i){var a,s,r,o={},l=t.split(".")[0],u=l+"-"+(t=t.split(".")[1]);return i||(i=n,n=e.Widget),e.isArray(i)&&(i=e.extend.apply(null,[{}].concat(i))),e.expr[":"][u.toLowerCase()]=function(t){return!!e.data(t,u)},e[l]=e[l]||{},a=e[l][t],s=e[l][t]=function(e,t){if(!this._createWidget)return new s(e,t);arguments.length&&this._createWidget(e,t)},e.extend(s,a,{version:i.version,_proto:e.extend({},i),_childConstructors:[]}),r=new n,r.options=e.widget.extend({},r.options),e.each(i,function(t,i){e.isFunction(i)?o[t]=function(){function e(){return n.prototype[t].apply(this,arguments)}function a(e){return n.prototype[t].apply(this,e)}return function(){var t,n=this._super,s=this._superApply;return this._super=e,this._superApply=a,t=i.apply(this,arguments),this._super=n,this._superApply=s,t}}():o[t]=i}),s.prototype=e.widget.extend(r,{widgetEventPrefix:a?r.widgetEventPrefix||t:t},o,{constructor:s,namespace:l,widgetName:t,widgetFullName:u}),a?(e.each(a._childConstructors,function(t,n){var i=n.prototype;e.widget(i.namespace+"."+i.widgetName,s,n._proto)}),delete a._childConstructors):n._childConstructors.push(s),e.widget.bridge(t,s),s},e.widget.extend=function(t){for(var i,a,s=n.call(arguments,1),r=0,o=s.length;r",options:{classes:{},disabled:!1,create:null},_createWidget:function(n,i){i=e(i||this.defaultElement||this)[0],this.element=e(i),this.uuid=t++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=e(),this.hoverable=e(),this.focusable=e(),this.classesElementLookup={},i!==this&&(e.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(e){e.target===i&&this.destroy()}}),this.document=e(i.style?i.ownerDocument:i.document||i),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this.options=e.widget.extend({},this.options,this._getCreateOptions(),n),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){var t=this;this._destroy(),e.each(this.classesElementLookup,function(e,n){t._removeClass(n,e)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:e.noop,widget:function(){return this.element},option:function(t,n){var i,a,s,r=t;if(0===arguments.length)return e.widget.extend({},this.options);if("string"==typeof t)if(r={},i=t.split("."),t=i.shift(),i.length){for(a=r[t]=e.widget.extend({},this.options[t]),s=0;s
      "),s=i.children()[0];return e("body").append(i),t=s.offsetWidth,i.css("overflow","scroll"),n=s.offsetWidth,t===n&&(n=i[0].clientWidth),i.remove(),a=t-n},getScrollInfo:function(t){var n=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),a="scroll"===n||"auto"===n&&t.width0?"right":"center",vertical:o<0?"top":i>0?"bottom":"middle"};ps(r(i),r(o))?g.important="horizontal":g.important="vertical",a.using.call(this,e,g)}),l.offset(e.extend(C,{using:o}))})},e.ui.position={fit:{left:function(e,t){var n,i=t.within,a=i.isWindow?i.scrollLeft:i.offset.left,r=i.width,o=e.left-t.collisionPosition.marginLeft,l=a-o,u=o+t.collisionWidth-r-a;t.collisionWidth>r?l>0&&u<=0?(n=e.left+l+t.collisionWidth-r-a,e.left+=l-n):e.left=u>0&&l<=0?a:l>u?a+r-t.collisionWidth:a:l>0?e.left+=l:u>0?e.left-=u:e.left=s(e.left-o,e.left)},top:function(e,t){var n,i=t.within,a=i.isWindow?i.scrollTop:i.offset.top,r=t.within.height,o=e.top-t.collisionPosition.marginTop,l=a-o,u=o+t.collisionHeight-r-a;t.collisionHeight>r?l>0&&u<=0?(n=e.top+l+t.collisionHeight-r-a,e.top+=l-n):e.top=u>0&&l<=0?a:l>u?a+r-t.collisionHeight:a:l>0?e.top+=l:u>0?e.top-=u:e.top=s(e.top-o,e.top)}},flip:{left:function(e,t){var n,i,a=t.within,s=a.offset.left+a.scrollLeft,o=a.width,l=a.isWindow?a.scrollLeft:a.offset.left,u=e.left-t.collisionPosition.marginLeft,c=u-l,g=u+t.collisionWidth-o-l,d="left"===t.my[0]?-t.elemWidth:"right"===t.my[0]?t.elemWidth:0,p="left"===t.at[0]?t.targetWidth:"right"===t.at[0]?-t.targetWidth:0,f=-2*t.offset[0];c<0?((n=e.left+d+p+f+t.collisionWidth-o-s)<0||n0&&((i=e.left-t.collisionPosition.marginLeft+d+p+f-l)>0||r(i)0&&((n=e.top-t.collisionPosition.marginTop+d+p+f-l)>0||r(n)>label: Widget -//>>group: Core -//>>description: Provides a factory for creating stateful widgets with a common API. -//>>docs: http://api.jqueryui.com/jQuery.widget/ -//>>demos: http://jqueryui.com/widget/ - - - -var widgetUuid = 0; -var widgetSlice = Array.prototype.slice; - -$.cleanData = ( function( orig ) { - return function( elems ) { - var events, elem, i; - for ( i = 0; ( elem = elems[ i ] ) != null; i++ ) { - try { - - // Only trigger remove when necessary to save time - events = $._data( elem, "events" ); - if ( events && events.remove ) { - $( elem ).triggerHandler( "remove" ); - } - - // Http://bugs.jquery.com/ticket/8235 - } catch ( e ) {} - } - orig( elems ); - }; -} )( $.cleanData ); - -$.widget = function( name, base, prototype ) { - var existingConstructor, constructor, basePrototype; - - // ProxiedPrototype allows the provided prototype to remain unmodified - // so that it can be used as a mixin for multiple widgets (#8876) - var proxiedPrototype = {}; - - var namespace = name.split( "." )[ 0 ]; - name = name.split( "." )[ 1 ]; - var fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - if ( $.isArray( prototype ) ) { - prototype = $.extend.apply( null, [ {} ].concat( prototype ) ); - } - - // Create selector for plugin - $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { - return !!$.data( elem, fullName ); - }; - - $[ namespace ] = $[ namespace ] || {}; - existingConstructor = $[ namespace ][ name ]; - constructor = $[ namespace ][ name ] = function( options, element ) { - - // Allow instantiation without "new" keyword - if ( !this._createWidget ) { - return new constructor( options, element ); - } - - // Allow instantiation without initializing for simple inheritance - // must use "new" keyword (the code above always passes args) - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - - // Extend with the existing constructor to carry over any static properties - $.extend( constructor, existingConstructor, { - version: prototype.version, - - // Copy the object used to create the prototype in case we need to - // redefine the widget later - _proto: $.extend( {}, prototype ), - - // Track widgets that inherit from this widget in case this widget is - // redefined after a widget inherits from it - _childConstructors: [] - } ); - - basePrototype = new base(); - - // We need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from - basePrototype.options = $.widget.extend( {}, basePrototype.options ); - $.each( prototype, function( prop, value ) { - if ( !$.isFunction( value ) ) { - proxiedPrototype[ prop ] = value; - return; - } - proxiedPrototype[ prop ] = ( function() { - function _super() { - return base.prototype[ prop ].apply( this, arguments ); - } - - function _superApply( args ) { - return base.prototype[ prop ].apply( this, args ); - } - - return function() { - var __super = this._super; - var __superApply = this._superApply; - var returnValue; - - this._super = _super; - this._superApply = _superApply; - - returnValue = value.apply( this, arguments ); - - this._super = __super; - this._superApply = __superApply; - - return returnValue; - }; - } )(); - } ); - constructor.prototype = $.widget.extend( basePrototype, { - - // TODO: remove support for widgetEventPrefix - // always use the name + a colon as the prefix, e.g., draggable:start - // don't prefix for widgets that aren't DOM-based - widgetEventPrefix: existingConstructor ? ( basePrototype.widgetEventPrefix || name ) : name - }, proxiedPrototype, { - constructor: constructor, - namespace: namespace, - widgetName: name, - widgetFullName: fullName - } ); - - // If this widget is being redefined then we need to find all widgets that - // are inheriting from it and redefine all of them so that they inherit from - // the new version of this widget. We're essentially trying to replace one - // level in the prototype chain. - if ( existingConstructor ) { - $.each( existingConstructor._childConstructors, function( i, child ) { - var childPrototype = child.prototype; - - // Redefine the child widget using the same prototype that was - // originally used, but inherit from the new version of the base - $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, - child._proto ); - } ); - - // Remove the list of existing child constructors from the old constructor - // so the old child constructors can be garbage collected - delete existingConstructor._childConstructors; - } else { - base._childConstructors.push( constructor ); - } - - $.widget.bridge( name, constructor ); - - return constructor; -}; - -$.widget.extend = function( target ) { - var input = widgetSlice.call( arguments, 1 ); - var inputIndex = 0; - var inputLength = input.length; - var key; - var value; - - for ( ; inputIndex < inputLength; inputIndex++ ) { - for ( key in input[ inputIndex ] ) { - value = input[ inputIndex ][ key ]; - if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { - - // Clone objects - if ( $.isPlainObject( value ) ) { - target[ key ] = $.isPlainObject( target[ key ] ) ? - $.widget.extend( {}, target[ key ], value ) : - - // Don't extend strings, arrays, etc. with objects - $.widget.extend( {}, value ); - - // Copy everything else by reference - } else { - target[ key ] = value; - } - } - } - } - return target; -}; - -$.widget.bridge = function( name, object ) { - var fullName = object.prototype.widgetFullName || name; - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string"; - var args = widgetSlice.call( arguments, 1 ); - var returnValue = this; - - if ( isMethodCall ) { - - // If this is an empty collection, we need to have the instance method - // return undefined instead of the jQuery instance - if ( !this.length && options === "instance" ) { - returnValue = undefined; - } else { - this.each( function() { - var methodValue; - var instance = $.data( this, fullName ); - - if ( options === "instance" ) { - returnValue = instance; - return false; - } - - if ( !instance ) { - return $.error( "cannot call methods on " + name + - " prior to initialization; " + - "attempted to call method '" + options + "'" ); - } - - if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + - " widget instance" ); - } - - methodValue = instance[ options ].apply( instance, args ); - - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue && methodValue.jquery ? - returnValue.pushStack( methodValue.get() ) : - methodValue; - return false; - } - } ); - } - } else { - - // Allow multiple hashes to be passed on init - if ( args.length ) { - options = $.widget.extend.apply( null, [ options ].concat( args ) ); - } - - this.each( function() { - var instance = $.data( this, fullName ); - if ( instance ) { - instance.option( options || {} ); - if ( instance._init ) { - instance._init(); - } - } else { - $.data( this, fullName, new object( options, this ) ); - } - } ); - } - - return returnValue; - }; -}; - -$.Widget = function( /* options, element */ ) {}; -$.Widget._childConstructors = []; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - defaultElement: "
      ", - - options: { - classes: {}, - disabled: false, - - // Callbacks - create: null - }, - - _createWidget: function( options, element ) { - element = $( element || this.defaultElement || this )[ 0 ]; - this.element = $( element ); - this.uuid = widgetUuid++; - this.eventNamespace = "." + this.widgetName + this.uuid; - - this.bindings = $(); - this.hoverable = $(); - this.focusable = $(); - this.classesElementLookup = {}; - - if ( element !== this ) { - $.data( element, this.widgetFullName, this ); - this._on( true, this.element, { - remove: function( event ) { - if ( event.target === element ) { - this.destroy(); - } - } - } ); - this.document = $( element.style ? - - // Element within the document - element.ownerDocument : - - // Element is window or document - element.document || element ); - this.window = $( this.document[ 0 ].defaultView || this.document[ 0 ].parentWindow ); - } - - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); - - this._create(); - - if ( this.options.disabled ) { - this._setOptionDisabled( this.options.disabled ); - } - - this._trigger( "create", null, this._getCreateEventData() ); - this._init(); - }, - - _getCreateOptions: function() { - return {}; - }, - - _getCreateEventData: $.noop, - - _create: $.noop, - - _init: $.noop, - - destroy: function() { - var that = this; - - this._destroy(); - $.each( this.classesElementLookup, function( key, value ) { - that._removeClass( value, key ); - } ); - - // We can probably remove the unbind calls in 2.0 - // all event bindings should go through this._on() - this.element - .off( this.eventNamespace ) - .removeData( this.widgetFullName ); - this.widget() - .off( this.eventNamespace ) - .removeAttr( "aria-disabled" ); - - // Clean up events and states - this.bindings.off( this.eventNamespace ); - }, - - _destroy: $.noop, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key; - var parts; - var curOption; - var i; - - if ( arguments.length === 0 ) { - - // Don't return a reference to the internal hash - return $.widget.extend( {}, this.options ); - } - - if ( typeof key === "string" ) { - - // Handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } - options = {}; - parts = key.split( "." ); - key = parts.shift(); - if ( parts.length ) { - curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); - for ( i = 0; i < parts.length - 1; i++ ) { - curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; - curOption = curOption[ parts[ i ] ]; - } - key = parts.pop(); - if ( arguments.length === 1 ) { - return curOption[ key ] === undefined ? null : curOption[ key ]; - } - curOption[ key ] = value; - } else { - if ( arguments.length === 1 ) { - return this.options[ key ] === undefined ? null : this.options[ key ]; - } - options[ key ] = value; - } - } - - this._setOptions( options ); - - return this; - }, - - _setOptions: function( options ) { - var key; - - for ( key in options ) { - this._setOption( key, options[ key ] ); - } - - return this; - }, - - _setOption: function( key, value ) { - if ( key === "classes" ) { - this._setOptionClasses( value ); - } - - this.options[ key ] = value; - - if ( key === "disabled" ) { - this._setOptionDisabled( value ); - } - - return this; - }, - - _setOptionClasses: function( value ) { - var classKey, elements, currentElements; - - for ( classKey in value ) { - currentElements = this.classesElementLookup[ classKey ]; - if ( value[ classKey ] === this.options.classes[ classKey ] || - !currentElements || - !currentElements.length ) { - continue; - } - - // We are doing this to create a new jQuery object because the _removeClass() call - // on the next line is going to destroy the reference to the current elements being - // tracked. We need to save a copy of this collection so that we can add the new classes - // below. - elements = $( currentElements.get() ); - this._removeClass( currentElements, classKey ); - - // We don't use _addClass() here, because that uses this.options.classes - // for generating the string of classes. We want to use the value passed in from - // _setOption(), this is the new value of the classes option which was passed to - // _setOption(). We pass this value directly to _classes(). - elements.addClass( this._classes( { - element: elements, - keys: classKey, - classes: value, - add: true - } ) ); - } - }, - - _setOptionDisabled: function( value ) { - this._toggleClass( this.widget(), this.widgetFullName + "-disabled", null, !!value ); - - // If the widget is becoming disabled, then nothing is interactive - if ( value ) { - this._removeClass( this.hoverable, null, "ui-state-hover" ); - this._removeClass( this.focusable, null, "ui-state-focus" ); - } - }, - - enable: function() { - return this._setOptions( { disabled: false } ); - }, - - disable: function() { - return this._setOptions( { disabled: true } ); - }, - - _classes: function( options ) { - var full = []; - var that = this; - - options = $.extend( { - element: this.element, - classes: this.options.classes || {} - }, options ); - - function processClassString( classes, checkOption ) { - var current, i; - for ( i = 0; i < classes.length; i++ ) { - current = that.classesElementLookup[ classes[ i ] ] || $(); - if ( options.add ) { - current = $( $.unique( current.get().concat( options.element.get() ) ) ); - } else { - current = $( current.not( options.element ).get() ); - } - that.classesElementLookup[ classes[ i ] ] = current; - full.push( classes[ i ] ); - if ( checkOption && options.classes[ classes[ i ] ] ) { - full.push( options.classes[ classes[ i ] ] ); - } - } - } - - this._on( options.element, { - "remove": "_untrackClassesElement" - } ); - - if ( options.keys ) { - processClassString( options.keys.match( /\S+/g ) || [], true ); - } - if ( options.extra ) { - processClassString( options.extra.match( /\S+/g ) || [] ); - } - - return full.join( " " ); - }, - - _untrackClassesElement: function( event ) { - var that = this; - $.each( that.classesElementLookup, function( key, value ) { - if ( $.inArray( event.target, value ) !== -1 ) { - that.classesElementLookup[ key ] = $( value.not( event.target ).get() ); - } - } ); - }, - - _removeClass: function( element, keys, extra ) { - return this._toggleClass( element, keys, extra, false ); - }, - - _addClass: function( element, keys, extra ) { - return this._toggleClass( element, keys, extra, true ); - }, - - _toggleClass: function( element, keys, extra, add ) { - add = ( typeof add === "boolean" ) ? add : extra; - var shift = ( typeof element === "string" || element === null ), - options = { - extra: shift ? keys : extra, - keys: shift ? element : keys, - element: shift ? this.element : element, - add: add - }; - options.element.toggleClass( this._classes( options ), add ); - return this; - }, - - _on: function( suppressDisabledCheck, element, handlers ) { - var delegateElement; - var instance = this; - - // No suppressDisabledCheck flag, shuffle arguments - if ( typeof suppressDisabledCheck !== "boolean" ) { - handlers = element; - element = suppressDisabledCheck; - suppressDisabledCheck = false; - } - - // No element argument, shuffle and use this.element - if ( !handlers ) { - handlers = element; - element = this.element; - delegateElement = this.widget(); - } else { - element = delegateElement = $( element ); - this.bindings = this.bindings.add( element ); - } - - $.each( handlers, function( event, handler ) { - function handlerProxy() { - - // Allow widgets to customize the disabled handling - // - disabled as an array instead of boolean - // - disabled class as method for disabling individual parts - if ( !suppressDisabledCheck && - ( instance.options.disabled === true || - $( this ).hasClass( "ui-state-disabled" ) ) ) { - return; - } - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - - // Copy the guid so direct unbinding works - if ( typeof handler !== "string" ) { - handlerProxy.guid = handler.guid = - handler.guid || handlerProxy.guid || $.guid++; - } - - var match = event.match( /^([\w:-]*)\s*(.*)$/ ); - var eventName = match[ 1 ] + instance.eventNamespace; - var selector = match[ 2 ]; - - if ( selector ) { - delegateElement.on( eventName, selector, handlerProxy ); - } else { - element.on( eventName, handlerProxy ); - } - } ); - }, - - _off: function( element, eventName ) { - eventName = ( eventName || "" ).split( " " ).join( this.eventNamespace + " " ) + - this.eventNamespace; - element.off( eventName ).off( eventName ); - - // Clear the stack to avoid memory leaks (#10056) - this.bindings = $( this.bindings.not( element ).get() ); - this.focusable = $( this.focusable.not( element ).get() ); - this.hoverable = $( this.hoverable.not( element ).get() ); - }, - - _delay: function( handler, delay ) { - function handlerProxy() { - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - var instance = this; - return setTimeout( handlerProxy, delay || 0 ); - }, - - _hoverable: function( element ) { - this.hoverable = this.hoverable.add( element ); - this._on( element, { - mouseenter: function( event ) { - this._addClass( $( event.currentTarget ), null, "ui-state-hover" ); - }, - mouseleave: function( event ) { - this._removeClass( $( event.currentTarget ), null, "ui-state-hover" ); - } - } ); - }, - - _focusable: function( element ) { - this.focusable = this.focusable.add( element ); - this._on( element, { - focusin: function( event ) { - this._addClass( $( event.currentTarget ), null, "ui-state-focus" ); - }, - focusout: function( event ) { - this._removeClass( $( event.currentTarget ), null, "ui-state-focus" ); - } - } ); - }, - - _trigger: function( type, event, data ) { - var prop, orig; - var callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - - // The original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // Copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - return !( $.isFunction( callback ) && - callback.apply( this.element[ 0 ], [ event ].concat( data ) ) === false || - event.isDefaultPrevented() ); - } -}; - -$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { - $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { - if ( typeof options === "string" ) { - options = { effect: options }; - } - - var hasOptions; - var effectName = !options ? - method : - options === true || typeof options === "number" ? - defaultEffect : - options.effect || defaultEffect; - - options = options || {}; - if ( typeof options === "number" ) { - options = { duration: options }; - } - - hasOptions = !$.isEmptyObject( options ); - options.complete = callback; - - if ( options.delay ) { - element.delay( options.delay ); - } - - if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { - element[ method ]( options ); - } else if ( effectName !== method && element[ effectName ] ) { - element[ effectName ]( options.duration, options.easing, callback ); - } else { - element.queue( function( next ) { - $( this )[ method ](); - if ( callback ) { - callback.call( element[ 0 ] ); - } - next(); - } ); - } - }; -} ); - -var widget = $.widget; - - -/*! - * jQuery UI Position 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * http://api.jqueryui.com/position/ - */ - -//>>label: Position -//>>group: Core -//>>description: Positions elements relative to other elements. -//>>docs: http://api.jqueryui.com/position/ -//>>demos: http://jqueryui.com/position/ - - -( function() { -var cachedScrollbarWidth, - max = Math.max, - abs = Math.abs, - rhorizontal = /left|center|right/, - rvertical = /top|center|bottom/, - roffset = /[\+\-]\d+(\.[\d]+)?%?/, - rposition = /^\w+/, - rpercent = /%$/, - _position = $.fn.position; - -function getOffsets( offsets, width, height ) { - return [ - parseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ), - parseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 ) - ]; -} - -function parseCss( element, property ) { - return parseInt( $.css( element, property ), 10 ) || 0; -} - -function getDimensions( elem ) { - var raw = elem[ 0 ]; - if ( raw.nodeType === 9 ) { - return { - width: elem.width(), - height: elem.height(), - offset: { top: 0, left: 0 } - }; - } - if ( $.isWindow( raw ) ) { - return { - width: elem.width(), - height: elem.height(), - offset: { top: elem.scrollTop(), left: elem.scrollLeft() } - }; - } - if ( raw.preventDefault ) { - return { - width: 0, - height: 0, - offset: { top: raw.pageY, left: raw.pageX } - }; - } - return { - width: elem.outerWidth(), - height: elem.outerHeight(), - offset: elem.offset() - }; -} - -$.position = { - scrollbarWidth: function() { - if ( cachedScrollbarWidth !== undefined ) { - return cachedScrollbarWidth; - } - var w1, w2, - div = $( "
      " + - "
      " ), - innerDiv = div.children()[ 0 ]; - - $( "body" ).append( div ); - w1 = innerDiv.offsetWidth; - div.css( "overflow", "scroll" ); - - w2 = innerDiv.offsetWidth; - - if ( w1 === w2 ) { - w2 = div[ 0 ].clientWidth; - } - - div.remove(); - - return ( cachedScrollbarWidth = w1 - w2 ); - }, - getScrollInfo: function( within ) { - var overflowX = within.isWindow || within.isDocument ? "" : - within.element.css( "overflow-x" ), - overflowY = within.isWindow || within.isDocument ? "" : - within.element.css( "overflow-y" ), - hasOverflowX = overflowX === "scroll" || - ( overflowX === "auto" && within.width < within.element[ 0 ].scrollWidth ), - hasOverflowY = overflowY === "scroll" || - ( overflowY === "auto" && within.height < within.element[ 0 ].scrollHeight ); - return { - width: hasOverflowY ? $.position.scrollbarWidth() : 0, - height: hasOverflowX ? $.position.scrollbarWidth() : 0 - }; - }, - getWithinInfo: function( element ) { - var withinElement = $( element || window ), - isWindow = $.isWindow( withinElement[ 0 ] ), - isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9, - hasOffset = !isWindow && !isDocument; - return { - element: withinElement, - isWindow: isWindow, - isDocument: isDocument, - offset: hasOffset ? $( element ).offset() : { left: 0, top: 0 }, - scrollLeft: withinElement.scrollLeft(), - scrollTop: withinElement.scrollTop(), - width: withinElement.outerWidth(), - height: withinElement.outerHeight() - }; - } -}; - -$.fn.position = function( options ) { - if ( !options || !options.of ) { - return _position.apply( this, arguments ); - } - - // Make a copy, we don't want to modify arguments - options = $.extend( {}, options ); - - var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions, - target = $( options.of ), - within = $.position.getWithinInfo( options.within ), - scrollInfo = $.position.getScrollInfo( within ), - collision = ( options.collision || "flip" ).split( " " ), - offsets = {}; - - dimensions = getDimensions( target ); - if ( target[ 0 ].preventDefault ) { - - // Force left top to allow flipping - options.at = "left top"; - } - targetWidth = dimensions.width; - targetHeight = dimensions.height; - targetOffset = dimensions.offset; - - // Clone to reuse original targetOffset later - basePosition = $.extend( {}, targetOffset ); - - // Force my and at to have valid horizontal and vertical positions - // if a value is missing or invalid, it will be converted to center - $.each( [ "my", "at" ], function() { - var pos = ( options[ this ] || "" ).split( " " ), - horizontalOffset, - verticalOffset; - - if ( pos.length === 1 ) { - pos = rhorizontal.test( pos[ 0 ] ) ? - pos.concat( [ "center" ] ) : - rvertical.test( pos[ 0 ] ) ? - [ "center" ].concat( pos ) : - [ "center", "center" ]; - } - pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center"; - pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center"; - - // Calculate offsets - horizontalOffset = roffset.exec( pos[ 0 ] ); - verticalOffset = roffset.exec( pos[ 1 ] ); - offsets[ this ] = [ - horizontalOffset ? horizontalOffset[ 0 ] : 0, - verticalOffset ? verticalOffset[ 0 ] : 0 - ]; - - // Reduce to just the positions without the offsets - options[ this ] = [ - rposition.exec( pos[ 0 ] )[ 0 ], - rposition.exec( pos[ 1 ] )[ 0 ] - ]; - } ); - - // Normalize collision option - if ( collision.length === 1 ) { - collision[ 1 ] = collision[ 0 ]; - } - - if ( options.at[ 0 ] === "right" ) { - basePosition.left += targetWidth; - } else if ( options.at[ 0 ] === "center" ) { - basePosition.left += targetWidth / 2; - } - - if ( options.at[ 1 ] === "bottom" ) { - basePosition.top += targetHeight; - } else if ( options.at[ 1 ] === "center" ) { - basePosition.top += targetHeight / 2; - } - - atOffset = getOffsets( offsets.at, targetWidth, targetHeight ); - basePosition.left += atOffset[ 0 ]; - basePosition.top += atOffset[ 1 ]; - - return this.each( function() { - var collisionPosition, using, - elem = $( this ), - elemWidth = elem.outerWidth(), - elemHeight = elem.outerHeight(), - marginLeft = parseCss( this, "marginLeft" ), - marginTop = parseCss( this, "marginTop" ), - collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) + - scrollInfo.width, - collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) + - scrollInfo.height, - position = $.extend( {}, basePosition ), - myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() ); - - if ( options.my[ 0 ] === "right" ) { - position.left -= elemWidth; - } else if ( options.my[ 0 ] === "center" ) { - position.left -= elemWidth / 2; - } - - if ( options.my[ 1 ] === "bottom" ) { - position.top -= elemHeight; - } else if ( options.my[ 1 ] === "center" ) { - position.top -= elemHeight / 2; - } - - position.left += myOffset[ 0 ]; - position.top += myOffset[ 1 ]; - - collisionPosition = { - marginLeft: marginLeft, - marginTop: marginTop - }; - - $.each( [ "left", "top" ], function( i, dir ) { - if ( $.ui.position[ collision[ i ] ] ) { - $.ui.position[ collision[ i ] ][ dir ]( position, { - targetWidth: targetWidth, - targetHeight: targetHeight, - elemWidth: elemWidth, - elemHeight: elemHeight, - collisionPosition: collisionPosition, - collisionWidth: collisionWidth, - collisionHeight: collisionHeight, - offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ], - my: options.my, - at: options.at, - within: within, - elem: elem - } ); - } - } ); - - if ( options.using ) { - - // Adds feedback as second argument to using callback, if present - using = function( props ) { - var left = targetOffset.left - position.left, - right = left + targetWidth - elemWidth, - top = targetOffset.top - position.top, - bottom = top + targetHeight - elemHeight, - feedback = { - target: { - element: target, - left: targetOffset.left, - top: targetOffset.top, - width: targetWidth, - height: targetHeight - }, - element: { - element: elem, - left: position.left, - top: position.top, - width: elemWidth, - height: elemHeight - }, - horizontal: right < 0 ? "left" : left > 0 ? "right" : "center", - vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle" - }; - if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) { - feedback.horizontal = "center"; - } - if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) { - feedback.vertical = "middle"; - } - if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) { - feedback.important = "horizontal"; - } else { - feedback.important = "vertical"; - } - options.using.call( this, props, feedback ); - }; - } - - elem.offset( $.extend( position, { using: using } ) ); - } ); -}; - -$.ui.position = { - fit: { - left: function( position, data ) { - var within = data.within, - withinOffset = within.isWindow ? within.scrollLeft : within.offset.left, - outerWidth = within.width, - collisionPosLeft = position.left - data.collisionPosition.marginLeft, - overLeft = withinOffset - collisionPosLeft, - overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset, - newOverRight; - - // Element is wider than within - if ( data.collisionWidth > outerWidth ) { - - // Element is initially over the left side of within - if ( overLeft > 0 && overRight <= 0 ) { - newOverRight = position.left + overLeft + data.collisionWidth - outerWidth - - withinOffset; - position.left += overLeft - newOverRight; - - // Element is initially over right side of within - } else if ( overRight > 0 && overLeft <= 0 ) { - position.left = withinOffset; - - // Element is initially over both left and right sides of within - } else { - if ( overLeft > overRight ) { - position.left = withinOffset + outerWidth - data.collisionWidth; - } else { - position.left = withinOffset; - } - } - - // Too far left -> align with left edge - } else if ( overLeft > 0 ) { - position.left += overLeft; - - // Too far right -> align with right edge - } else if ( overRight > 0 ) { - position.left -= overRight; - - // Adjust based on position and margin - } else { - position.left = max( position.left - collisionPosLeft, position.left ); - } - }, - top: function( position, data ) { - var within = data.within, - withinOffset = within.isWindow ? within.scrollTop : within.offset.top, - outerHeight = data.within.height, - collisionPosTop = position.top - data.collisionPosition.marginTop, - overTop = withinOffset - collisionPosTop, - overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset, - newOverBottom; - - // Element is taller than within - if ( data.collisionHeight > outerHeight ) { - - // Element is initially over the top of within - if ( overTop > 0 && overBottom <= 0 ) { - newOverBottom = position.top + overTop + data.collisionHeight - outerHeight - - withinOffset; - position.top += overTop - newOverBottom; - - // Element is initially over bottom of within - } else if ( overBottom > 0 && overTop <= 0 ) { - position.top = withinOffset; - - // Element is initially over both top and bottom of within - } else { - if ( overTop > overBottom ) { - position.top = withinOffset + outerHeight - data.collisionHeight; - } else { - position.top = withinOffset; - } - } - - // Too far up -> align with top - } else if ( overTop > 0 ) { - position.top += overTop; - - // Too far down -> align with bottom edge - } else if ( overBottom > 0 ) { - position.top -= overBottom; - - // Adjust based on position and margin - } else { - position.top = max( position.top - collisionPosTop, position.top ); - } - } - }, - flip: { - left: function( position, data ) { - var within = data.within, - withinOffset = within.offset.left + within.scrollLeft, - outerWidth = within.width, - offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left, - collisionPosLeft = position.left - data.collisionPosition.marginLeft, - overLeft = collisionPosLeft - offsetLeft, - overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft, - myOffset = data.my[ 0 ] === "left" ? - -data.elemWidth : - data.my[ 0 ] === "right" ? - data.elemWidth : - 0, - atOffset = data.at[ 0 ] === "left" ? - data.targetWidth : - data.at[ 0 ] === "right" ? - -data.targetWidth : - 0, - offset = -2 * data.offset[ 0 ], - newOverRight, - newOverLeft; - - if ( overLeft < 0 ) { - newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth - - outerWidth - withinOffset; - if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) { - position.left += myOffset + atOffset + offset; - } - } else if ( overRight > 0 ) { - newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset + - atOffset + offset - offsetLeft; - if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) { - position.left += myOffset + atOffset + offset; - } - } - }, - top: function( position, data ) { - var within = data.within, - withinOffset = within.offset.top + within.scrollTop, - outerHeight = within.height, - offsetTop = within.isWindow ? within.scrollTop : within.offset.top, - collisionPosTop = position.top - data.collisionPosition.marginTop, - overTop = collisionPosTop - offsetTop, - overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop, - top = data.my[ 1 ] === "top", - myOffset = top ? - -data.elemHeight : - data.my[ 1 ] === "bottom" ? - data.elemHeight : - 0, - atOffset = data.at[ 1 ] === "top" ? - data.targetHeight : - data.at[ 1 ] === "bottom" ? - -data.targetHeight : - 0, - offset = -2 * data.offset[ 1 ], - newOverTop, - newOverBottom; - if ( overTop < 0 ) { - newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - - outerHeight - withinOffset; - if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) { - position.top += myOffset + atOffset + offset; - } - } else if ( overBottom > 0 ) { - newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + - offset - offsetTop; - if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) { - position.top += myOffset + atOffset + offset; - } - } - } - }, - flipfit: { - left: function() { - $.ui.position.flip.left.apply( this, arguments ); - $.ui.position.fit.left.apply( this, arguments ); - }, - top: function() { - $.ui.position.flip.top.apply( this, arguments ); - $.ui.position.fit.top.apply( this, arguments ); - } - } -}; - -} )(); - -var position = $.ui.position; - - -/*! - * jQuery UI :data 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: :data Selector -//>>group: Core -//>>description: Selects elements which have data stored under the specified key. -//>>docs: http://api.jqueryui.com/data-selector/ - - -var data = $.extend( $.expr[ ":" ], { - data: $.expr.createPseudo ? - $.expr.createPseudo( function( dataName ) { - return function( elem ) { - return !!$.data( elem, dataName ); - }; - } ) : - - // Support: jQuery <1.8 - function( elem, i, match ) { - return !!$.data( elem, match[ 3 ] ); - } -} ); - -/*! - * jQuery UI Disable Selection 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: disableSelection -//>>group: Core -//>>description: Disable selection of text content within the set of matched elements. -//>>docs: http://api.jqueryui.com/disableSelection/ - -// This file is deprecated - - -var disableSelection = $.fn.extend( { - disableSelection: ( function() { - var eventType = "onselectstart" in document.createElement( "div" ) ? - "selectstart" : - "mousedown"; - - return function() { - return this.on( eventType + ".ui-disableSelection", function( event ) { - event.preventDefault(); - } ); - }; - } )(), - - enableSelection: function() { - return this.off( ".ui-disableSelection" ); - } -} ); - - -/*! - * jQuery UI Effects 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Effects Core -//>>group: Effects -// jscs:disable maximumLineLength -//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects. -// jscs:enable maximumLineLength -//>>docs: http://api.jqueryui.com/category/effects-core/ -//>>demos: http://jqueryui.com/effect/ - - - -var dataSpace = "ui-effects-", - dataSpaceStyle = "ui-effects-style", - dataSpaceAnimated = "ui-effects-animated", - - // Create a local jQuery because jQuery Color relies on it and the - // global may not exist with AMD and a custom build (#10199) - jQuery = $; - -$.effects = { - effect: {} -}; - -/*! - * jQuery Color Animations v2.1.2 - * https://github.com/jquery/jquery-color - * - * Copyright 2014 jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * Date: Wed Jan 16 08:47:09 2013 -0600 - */ -( function( jQuery, undefined ) { - - var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor " + - "borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor", - - // Plusequals test for += 100 -= 100 - rplusequals = /^([\-+])=\s*(\d+\.?\d*)/, - - // A set of RE's that can match strings and generate color tuples. - stringParsers = [ { - re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/, - parse: function( execResult ) { - return [ - execResult[ 1 ], - execResult[ 2 ], - execResult[ 3 ], - execResult[ 4 ] - ]; - } - }, { - re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/, - parse: function( execResult ) { - return [ - execResult[ 1 ] * 2.55, - execResult[ 2 ] * 2.55, - execResult[ 3 ] * 2.55, - execResult[ 4 ] - ]; - } - }, { - - // This regex ignores A-F because it's compared against an already lowercased string - re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/, - parse: function( execResult ) { - return [ - parseInt( execResult[ 1 ], 16 ), - parseInt( execResult[ 2 ], 16 ), - parseInt( execResult[ 3 ], 16 ) - ]; - } - }, { - - // This regex ignores A-F because it's compared against an already lowercased string - re: /#([a-f0-9])([a-f0-9])([a-f0-9])/, - parse: function( execResult ) { - return [ - parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ), - parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ), - parseInt( execResult[ 3 ] + execResult[ 3 ], 16 ) - ]; - } - }, { - re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/, - space: "hsla", - parse: function( execResult ) { - return [ - execResult[ 1 ], - execResult[ 2 ] / 100, - execResult[ 3 ] / 100, - execResult[ 4 ] - ]; - } - } ], - - // JQuery.Color( ) - color = jQuery.Color = function( color, green, blue, alpha ) { - return new jQuery.Color.fn.parse( color, green, blue, alpha ); - }, - spaces = { - rgba: { - props: { - red: { - idx: 0, - type: "byte" - }, - green: { - idx: 1, - type: "byte" - }, - blue: { - idx: 2, - type: "byte" - } - } - }, - - hsla: { - props: { - hue: { - idx: 0, - type: "degrees" - }, - saturation: { - idx: 1, - type: "percent" - }, - lightness: { - idx: 2, - type: "percent" - } - } - } - }, - propTypes = { - "byte": { - floor: true, - max: 255 - }, - "percent": { - max: 1 - }, - "degrees": { - mod: 360, - floor: true - } - }, - support = color.support = {}, - - // Element for support tests - supportElem = jQuery( "

      " )[ 0 ], - - // Colors = jQuery.Color.names - colors, - - // Local aliases of functions called often - each = jQuery.each; - -// Determine rgba support immediately -supportElem.style.cssText = "background-color:rgba(1,1,1,.5)"; -support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1; - -// Define cache name and alpha properties -// for rgba and hsla spaces -each( spaces, function( spaceName, space ) { - space.cache = "_" + spaceName; - space.props.alpha = { - idx: 3, - type: "percent", - def: 1 - }; -} ); - -function clamp( value, prop, allowEmpty ) { - var type = propTypes[ prop.type ] || {}; - - if ( value == null ) { - return ( allowEmpty || !prop.def ) ? null : prop.def; - } - - // ~~ is an short way of doing floor for positive numbers - value = type.floor ? ~~value : parseFloat( value ); - - // IE will pass in empty strings as value for alpha, - // which will hit this case - if ( isNaN( value ) ) { - return prop.def; - } - - if ( type.mod ) { - - // We add mod before modding to make sure that negatives values - // get converted properly: -10 -> 350 - return ( value + type.mod ) % type.mod; - } - - // For now all property types without mod have min and max - return 0 > value ? 0 : type.max < value ? type.max : value; -} - -function stringParse( string ) { - var inst = color(), - rgba = inst._rgba = []; - - string = string.toLowerCase(); - - each( stringParsers, function( i, parser ) { - var parsed, - match = parser.re.exec( string ), - values = match && parser.parse( match ), - spaceName = parser.space || "rgba"; - - if ( values ) { - parsed = inst[ spaceName ]( values ); - - // If this was an rgba parse the assignment might happen twice - // oh well.... - inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ]; - rgba = inst._rgba = parsed._rgba; - - // Exit each( stringParsers ) here because we matched - return false; - } - } ); - - // Found a stringParser that handled it - if ( rgba.length ) { - - // If this came from a parsed string, force "transparent" when alpha is 0 - // chrome, (and maybe others) return "transparent" as rgba(0,0,0,0) - if ( rgba.join() === "0,0,0,0" ) { - jQuery.extend( rgba, colors.transparent ); - } - return inst; - } - - // Named colors - return colors[ string ]; -} - -color.fn = jQuery.extend( color.prototype, { - parse: function( red, green, blue, alpha ) { - if ( red === undefined ) { - this._rgba = [ null, null, null, null ]; - return this; - } - if ( red.jquery || red.nodeType ) { - red = jQuery( red ).css( green ); - green = undefined; - } - - var inst = this, - type = jQuery.type( red ), - rgba = this._rgba = []; - - // More than 1 argument specified - assume ( red, green, blue, alpha ) - if ( green !== undefined ) { - red = [ red, green, blue, alpha ]; - type = "array"; - } - - if ( type === "string" ) { - return this.parse( stringParse( red ) || colors._default ); - } - - if ( type === "array" ) { - each( spaces.rgba.props, function( key, prop ) { - rgba[ prop.idx ] = clamp( red[ prop.idx ], prop ); - } ); - return this; - } - - if ( type === "object" ) { - if ( red instanceof color ) { - each( spaces, function( spaceName, space ) { - if ( red[ space.cache ] ) { - inst[ space.cache ] = red[ space.cache ].slice(); - } - } ); - } else { - each( spaces, function( spaceName, space ) { - var cache = space.cache; - each( space.props, function( key, prop ) { - - // If the cache doesn't exist, and we know how to convert - if ( !inst[ cache ] && space.to ) { - - // If the value was null, we don't need to copy it - // if the key was alpha, we don't need to copy it either - if ( key === "alpha" || red[ key ] == null ) { - return; - } - inst[ cache ] = space.to( inst._rgba ); - } - - // This is the only case where we allow nulls for ALL properties. - // call clamp with alwaysAllowEmpty - inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true ); - } ); - - // Everything defined but alpha? - if ( inst[ cache ] && - jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) { - - // Use the default of 1 - inst[ cache ][ 3 ] = 1; - if ( space.from ) { - inst._rgba = space.from( inst[ cache ] ); - } - } - } ); - } - return this; - } - }, - is: function( compare ) { - var is = color( compare ), - same = true, - inst = this; - - each( spaces, function( _, space ) { - var localCache, - isCache = is[ space.cache ]; - if ( isCache ) { - localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || []; - each( space.props, function( _, prop ) { - if ( isCache[ prop.idx ] != null ) { - same = ( isCache[ prop.idx ] === localCache[ prop.idx ] ); - return same; - } - } ); - } - return same; - } ); - return same; - }, - _space: function() { - var used = [], - inst = this; - each( spaces, function( spaceName, space ) { - if ( inst[ space.cache ] ) { - used.push( spaceName ); - } - } ); - return used.pop(); - }, - transition: function( other, distance ) { - var end = color( other ), - spaceName = end._space(), - space = spaces[ spaceName ], - startColor = this.alpha() === 0 ? color( "transparent" ) : this, - start = startColor[ space.cache ] || space.to( startColor._rgba ), - result = start.slice(); - - end = end[ space.cache ]; - each( space.props, function( key, prop ) { - var index = prop.idx, - startValue = start[ index ], - endValue = end[ index ], - type = propTypes[ prop.type ] || {}; - - // If null, don't override start value - if ( endValue === null ) { - return; - } - - // If null - use end - if ( startValue === null ) { - result[ index ] = endValue; - } else { - if ( type.mod ) { - if ( endValue - startValue > type.mod / 2 ) { - startValue += type.mod; - } else if ( startValue - endValue > type.mod / 2 ) { - startValue -= type.mod; - } - } - result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop ); - } - } ); - return this[ spaceName ]( result ); - }, - blend: function( opaque ) { - - // If we are already opaque - return ourself - if ( this._rgba[ 3 ] === 1 ) { - return this; - } - - var rgb = this._rgba.slice(), - a = rgb.pop(), - blend = color( opaque )._rgba; - - return color( jQuery.map( rgb, function( v, i ) { - return ( 1 - a ) * blend[ i ] + a * v; - } ) ); - }, - toRgbaString: function() { - var prefix = "rgba(", - rgba = jQuery.map( this._rgba, function( v, i ) { - return v == null ? ( i > 2 ? 1 : 0 ) : v; - } ); - - if ( rgba[ 3 ] === 1 ) { - rgba.pop(); - prefix = "rgb("; - } - - return prefix + rgba.join() + ")"; - }, - toHslaString: function() { - var prefix = "hsla(", - hsla = jQuery.map( this.hsla(), function( v, i ) { - if ( v == null ) { - v = i > 2 ? 1 : 0; - } - - // Catch 1 and 2 - if ( i && i < 3 ) { - v = Math.round( v * 100 ) + "%"; - } - return v; - } ); - - if ( hsla[ 3 ] === 1 ) { - hsla.pop(); - prefix = "hsl("; - } - return prefix + hsla.join() + ")"; - }, - toHexString: function( includeAlpha ) { - var rgba = this._rgba.slice(), - alpha = rgba.pop(); - - if ( includeAlpha ) { - rgba.push( ~~( alpha * 255 ) ); - } - - return "#" + jQuery.map( rgba, function( v ) { - - // Default to 0 when nulls exist - v = ( v || 0 ).toString( 16 ); - return v.length === 1 ? "0" + v : v; - } ).join( "" ); - }, - toString: function() { - return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString(); - } -} ); -color.fn.parse.prototype = color.fn; - -// Hsla conversions adapted from: -// https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021 - -function hue2rgb( p, q, h ) { - h = ( h + 1 ) % 1; - if ( h * 6 < 1 ) { - return p + ( q - p ) * h * 6; - } - if ( h * 2 < 1 ) { - return q; - } - if ( h * 3 < 2 ) { - return p + ( q - p ) * ( ( 2 / 3 ) - h ) * 6; - } - return p; -} - -spaces.hsla.to = function( rgba ) { - if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) { - return [ null, null, null, rgba[ 3 ] ]; - } - var r = rgba[ 0 ] / 255, - g = rgba[ 1 ] / 255, - b = rgba[ 2 ] / 255, - a = rgba[ 3 ], - max = Math.max( r, g, b ), - min = Math.min( r, g, b ), - diff = max - min, - add = max + min, - l = add * 0.5, - h, s; - - if ( min === max ) { - h = 0; - } else if ( r === max ) { - h = ( 60 * ( g - b ) / diff ) + 360; - } else if ( g === max ) { - h = ( 60 * ( b - r ) / diff ) + 120; - } else { - h = ( 60 * ( r - g ) / diff ) + 240; - } - - // Chroma (diff) == 0 means greyscale which, by definition, saturation = 0% - // otherwise, saturation is based on the ratio of chroma (diff) to lightness (add) - if ( diff === 0 ) { - s = 0; - } else if ( l <= 0.5 ) { - s = diff / add; - } else { - s = diff / ( 2 - add ); - } - return [ Math.round( h ) % 360, s, l, a == null ? 1 : a ]; -}; - -spaces.hsla.from = function( hsla ) { - if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) { - return [ null, null, null, hsla[ 3 ] ]; - } - var h = hsla[ 0 ] / 360, - s = hsla[ 1 ], - l = hsla[ 2 ], - a = hsla[ 3 ], - q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s, - p = 2 * l - q; - - return [ - Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ), - Math.round( hue2rgb( p, q, h ) * 255 ), - Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ), - a - ]; -}; - -each( spaces, function( spaceName, space ) { - var props = space.props, - cache = space.cache, - to = space.to, - from = space.from; - - // Makes rgba() and hsla() - color.fn[ spaceName ] = function( value ) { - - // Generate a cache for this space if it doesn't exist - if ( to && !this[ cache ] ) { - this[ cache ] = to( this._rgba ); - } - if ( value === undefined ) { - return this[ cache ].slice(); - } - - var ret, - type = jQuery.type( value ), - arr = ( type === "array" || type === "object" ) ? value : arguments, - local = this[ cache ].slice(); - - each( props, function( key, prop ) { - var val = arr[ type === "object" ? key : prop.idx ]; - if ( val == null ) { - val = local[ prop.idx ]; - } - local[ prop.idx ] = clamp( val, prop ); - } ); - - if ( from ) { - ret = color( from( local ) ); - ret[ cache ] = local; - return ret; - } else { - return color( local ); - } - }; - - // Makes red() green() blue() alpha() hue() saturation() lightness() - each( props, function( key, prop ) { - - // Alpha is included in more than one space - if ( color.fn[ key ] ) { - return; - } - color.fn[ key ] = function( value ) { - var vtype = jQuery.type( value ), - fn = ( key === "alpha" ? ( this._hsla ? "hsla" : "rgba" ) : spaceName ), - local = this[ fn ](), - cur = local[ prop.idx ], - match; - - if ( vtype === "undefined" ) { - return cur; - } - - if ( vtype === "function" ) { - value = value.call( this, cur ); - vtype = jQuery.type( value ); - } - if ( value == null && prop.empty ) { - return this; - } - if ( vtype === "string" ) { - match = rplusequals.exec( value ); - if ( match ) { - value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 ); - } - } - local[ prop.idx ] = value; - return this[ fn ]( local ); - }; - } ); -} ); - -// Add cssHook and .fx.step function for each named hook. -// accept a space separated string of properties -color.hook = function( hook ) { - var hooks = hook.split( " " ); - each( hooks, function( i, hook ) { - jQuery.cssHooks[ hook ] = { - set: function( elem, value ) { - var parsed, curElem, - backgroundColor = ""; - - if ( value !== "transparent" && ( jQuery.type( value ) !== "string" || - ( parsed = stringParse( value ) ) ) ) { - value = color( parsed || value ); - if ( !support.rgba && value._rgba[ 3 ] !== 1 ) { - curElem = hook === "backgroundColor" ? elem.parentNode : elem; - while ( - ( backgroundColor === "" || backgroundColor === "transparent" ) && - curElem && curElem.style - ) { - try { - backgroundColor = jQuery.css( curElem, "backgroundColor" ); - curElem = curElem.parentNode; - } catch ( e ) { - } - } - - value = value.blend( backgroundColor && backgroundColor !== "transparent" ? - backgroundColor : - "_default" ); - } - - value = value.toRgbaString(); - } - try { - elem.style[ hook ] = value; - } catch ( e ) { - - // Wrapped to prevent IE from throwing errors on "invalid" values like - // 'auto' or 'inherit' - } - } - }; - jQuery.fx.step[ hook ] = function( fx ) { - if ( !fx.colorInit ) { - fx.start = color( fx.elem, hook ); - fx.end = color( fx.end ); - fx.colorInit = true; - } - jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) ); - }; - } ); - -}; - -color.hook( stepHooks ); - -jQuery.cssHooks.borderColor = { - expand: function( value ) { - var expanded = {}; - - each( [ "Top", "Right", "Bottom", "Left" ], function( i, part ) { - expanded[ "border" + part + "Color" ] = value; - } ); - return expanded; - } -}; - -// Basic color names only. -// Usage of any of the other color names requires adding yourself or including -// jquery.color.svg-names.js. -colors = jQuery.Color.names = { - - // 4.1. Basic color keywords - aqua: "#00ffff", - black: "#000000", - blue: "#0000ff", - fuchsia: "#ff00ff", - gray: "#808080", - green: "#008000", - lime: "#00ff00", - maroon: "#800000", - navy: "#000080", - olive: "#808000", - purple: "#800080", - red: "#ff0000", - silver: "#c0c0c0", - teal: "#008080", - white: "#ffffff", - yellow: "#ffff00", - - // 4.2.3. "transparent" color keyword - transparent: [ null, null, null, 0 ], - - _default: "#ffffff" -}; - -} )( jQuery ); - -/******************************************************************************/ -/****************************** CLASS ANIMATIONS ******************************/ -/******************************************************************************/ -( function() { - -var classAnimationActions = [ "add", "remove", "toggle" ], - shorthandStyles = { - border: 1, - borderBottom: 1, - borderColor: 1, - borderLeft: 1, - borderRight: 1, - borderTop: 1, - borderWidth: 1, - margin: 1, - padding: 1 - }; - -$.each( - [ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], - function( _, prop ) { - $.fx.step[ prop ] = function( fx ) { - if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) { - jQuery.style( fx.elem, prop, fx.end ); - fx.setAttr = true; - } - }; - } -); - -function getElementStyles( elem ) { - var key, len, - style = elem.ownerDocument.defaultView ? - elem.ownerDocument.defaultView.getComputedStyle( elem, null ) : - elem.currentStyle, - styles = {}; - - if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) { - len = style.length; - while ( len-- ) { - key = style[ len ]; - if ( typeof style[ key ] === "string" ) { - styles[ $.camelCase( key ) ] = style[ key ]; - } - } - - // Support: Opera, IE <9 - } else { - for ( key in style ) { - if ( typeof style[ key ] === "string" ) { - styles[ key ] = style[ key ]; - } - } - } - - return styles; -} - -function styleDifference( oldStyle, newStyle ) { - var diff = {}, - name, value; - - for ( name in newStyle ) { - value = newStyle[ name ]; - if ( oldStyle[ name ] !== value ) { - if ( !shorthandStyles[ name ] ) { - if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) { - diff[ name ] = value; - } - } - } - } - - return diff; -} - -// Support: jQuery <1.8 -if ( !$.fn.addBack ) { - $.fn.addBack = function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - }; -} - -$.effects.animateClass = function( value, duration, easing, callback ) { - var o = $.speed( duration, easing, callback ); - - return this.queue( function() { - var animated = $( this ), - baseClass = animated.attr( "class" ) || "", - applyClassChange, - allAnimations = o.children ? animated.find( "*" ).addBack() : animated; - - // Map the animated objects to store the original styles. - allAnimations = allAnimations.map( function() { - var el = $( this ); - return { - el: el, - start: getElementStyles( this ) - }; - } ); - - // Apply class change - applyClassChange = function() { - $.each( classAnimationActions, function( i, action ) { - if ( value[ action ] ) { - animated[ action + "Class" ]( value[ action ] ); - } - } ); - }; - applyClassChange(); - - // Map all animated objects again - calculate new styles and diff - allAnimations = allAnimations.map( function() { - this.end = getElementStyles( this.el[ 0 ] ); - this.diff = styleDifference( this.start, this.end ); - return this; - } ); - - // Apply original class - animated.attr( "class", baseClass ); - - // Map all animated objects again - this time collecting a promise - allAnimations = allAnimations.map( function() { - var styleInfo = this, - dfd = $.Deferred(), - opts = $.extend( {}, o, { - queue: false, - complete: function() { - dfd.resolve( styleInfo ); - } - } ); - - this.el.animate( this.diff, opts ); - return dfd.promise(); - } ); - - // Once all animations have completed: - $.when.apply( $, allAnimations.get() ).done( function() { - - // Set the final class - applyClassChange(); - - // For each animated element, - // clear all css properties that were animated - $.each( arguments, function() { - var el = this.el; - $.each( this.diff, function( key ) { - el.css( key, "" ); - } ); - } ); - - // This is guarnteed to be there if you use jQuery.speed() - // it also handles dequeuing the next anim... - o.complete.call( animated[ 0 ] ); - } ); - } ); -}; - -$.fn.extend( { - addClass: ( function( orig ) { - return function( classNames, speed, easing, callback ) { - return speed ? - $.effects.animateClass.call( this, - { add: classNames }, speed, easing, callback ) : - orig.apply( this, arguments ); - }; - } )( $.fn.addClass ), - - removeClass: ( function( orig ) { - return function( classNames, speed, easing, callback ) { - return arguments.length > 1 ? - $.effects.animateClass.call( this, - { remove: classNames }, speed, easing, callback ) : - orig.apply( this, arguments ); - }; - } )( $.fn.removeClass ), - - toggleClass: ( function( orig ) { - return function( classNames, force, speed, easing, callback ) { - if ( typeof force === "boolean" || force === undefined ) { - if ( !speed ) { - - // Without speed parameter - return orig.apply( this, arguments ); - } else { - return $.effects.animateClass.call( this, - ( force ? { add: classNames } : { remove: classNames } ), - speed, easing, callback ); - } - } else { - - // Without force parameter - return $.effects.animateClass.call( this, - { toggle: classNames }, force, speed, easing ); - } - }; - } )( $.fn.toggleClass ), - - switchClass: function( remove, add, speed, easing, callback ) { - return $.effects.animateClass.call( this, { - add: add, - remove: remove - }, speed, easing, callback ); - } -} ); - -} )(); - -/******************************************************************************/ -/*********************************** EFFECTS **********************************/ -/******************************************************************************/ - -( function() { - -if ( $.expr && $.expr.filters && $.expr.filters.animated ) { - $.expr.filters.animated = ( function( orig ) { - return function( elem ) { - return !!$( elem ).data( dataSpaceAnimated ) || orig( elem ); - }; - } )( $.expr.filters.animated ); -} - -if ( $.uiBackCompat !== false ) { - $.extend( $.effects, { - - // Saves a set of properties in a data storage - save: function( element, set ) { - var i = 0, length = set.length; - for ( ; i < length; i++ ) { - if ( set[ i ] !== null ) { - element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] ); - } - } - }, - - // Restores a set of previously saved properties from a data storage - restore: function( element, set ) { - var val, i = 0, length = set.length; - for ( ; i < length; i++ ) { - if ( set[ i ] !== null ) { - val = element.data( dataSpace + set[ i ] ); - element.css( set[ i ], val ); - } - } - }, - - setMode: function( el, mode ) { - if ( mode === "toggle" ) { - mode = el.is( ":hidden" ) ? "show" : "hide"; - } - return mode; - }, - - // Wraps the element around a wrapper that copies position properties - createWrapper: function( element ) { - - // If the element is already wrapped, return it - if ( element.parent().is( ".ui-effects-wrapper" ) ) { - return element.parent(); - } - - // Wrap the element - var props = { - width: element.outerWidth( true ), - height: element.outerHeight( true ), - "float": element.css( "float" ) - }, - wrapper = $( "

      " ) - .addClass( "ui-effects-wrapper" ) - .css( { - fontSize: "100%", - background: "transparent", - border: "none", - margin: 0, - padding: 0 - } ), - - // Store the size in case width/height are defined in % - Fixes #5245 - size = { - width: element.width(), - height: element.height() - }, - active = document.activeElement; - - // Support: Firefox - // Firefox incorrectly exposes anonymous content - // https://bugzilla.mozilla.org/show_bug.cgi?id=561664 - try { - active.id; - } catch ( e ) { - active = document.body; - } - - element.wrap( wrapper ); - - // Fixes #7595 - Elements lose focus when wrapped. - if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) { - $( active ).trigger( "focus" ); - } - - // Hotfix for jQuery 1.4 since some change in wrap() seems to actually - // lose the reference to the wrapped element - wrapper = element.parent(); - - // Transfer positioning properties to the wrapper - if ( element.css( "position" ) === "static" ) { - wrapper.css( { position: "relative" } ); - element.css( { position: "relative" } ); - } else { - $.extend( props, { - position: element.css( "position" ), - zIndex: element.css( "z-index" ) - } ); - $.each( [ "top", "left", "bottom", "right" ], function( i, pos ) { - props[ pos ] = element.css( pos ); - if ( isNaN( parseInt( props[ pos ], 10 ) ) ) { - props[ pos ] = "auto"; - } - } ); - element.css( { - position: "relative", - top: 0, - left: 0, - right: "auto", - bottom: "auto" - } ); - } - element.css( size ); - - return wrapper.css( props ).show(); - }, - - removeWrapper: function( element ) { - var active = document.activeElement; - - if ( element.parent().is( ".ui-effects-wrapper" ) ) { - element.parent().replaceWith( element ); - - // Fixes #7595 - Elements lose focus when wrapped. - if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) { - $( active ).trigger( "focus" ); - } - } - - return element; - } - } ); -} - -$.extend( $.effects, { - version: "1.12.1", - - define: function( name, mode, effect ) { - if ( !effect ) { - effect = mode; - mode = "effect"; - } - - $.effects.effect[ name ] = effect; - $.effects.effect[ name ].mode = mode; - - return effect; - }, - - scaledDimensions: function( element, percent, direction ) { - if ( percent === 0 ) { - return { - height: 0, - width: 0, - outerHeight: 0, - outerWidth: 0 - }; - } - - var x = direction !== "horizontal" ? ( ( percent || 100 ) / 100 ) : 1, - y = direction !== "vertical" ? ( ( percent || 100 ) / 100 ) : 1; - - return { - height: element.height() * y, - width: element.width() * x, - outerHeight: element.outerHeight() * y, - outerWidth: element.outerWidth() * x - }; - - }, - - clipToBox: function( animation ) { - return { - width: animation.clip.right - animation.clip.left, - height: animation.clip.bottom - animation.clip.top, - left: animation.clip.left, - top: animation.clip.top - }; - }, - - // Injects recently queued functions to be first in line (after "inprogress") - unshift: function( element, queueLength, count ) { - var queue = element.queue(); - - if ( queueLength > 1 ) { - queue.splice.apply( queue, - [ 1, 0 ].concat( queue.splice( queueLength, count ) ) ); - } - element.dequeue(); - }, - - saveStyle: function( element ) { - element.data( dataSpaceStyle, element[ 0 ].style.cssText ); - }, - - restoreStyle: function( element ) { - element[ 0 ].style.cssText = element.data( dataSpaceStyle ) || ""; - element.removeData( dataSpaceStyle ); - }, - - mode: function( element, mode ) { - var hidden = element.is( ":hidden" ); - - if ( mode === "toggle" ) { - mode = hidden ? "show" : "hide"; - } - if ( hidden ? mode === "hide" : mode === "show" ) { - mode = "none"; - } - return mode; - }, - - // Translates a [top,left] array into a baseline value - getBaseline: function( origin, original ) { - var y, x; - - switch ( origin[ 0 ] ) { - case "top": - y = 0; - break; - case "middle": - y = 0.5; - break; - case "bottom": - y = 1; - break; - default: - y = origin[ 0 ] / original.height; - } - - switch ( origin[ 1 ] ) { - case "left": - x = 0; - break; - case "center": - x = 0.5; - break; - case "right": - x = 1; - break; - default: - x = origin[ 1 ] / original.width; - } - - return { - x: x, - y: y - }; - }, - - // Creates a placeholder element so that the original element can be made absolute - createPlaceholder: function( element ) { - var placeholder, - cssPosition = element.css( "position" ), - position = element.position(); - - // Lock in margins first to account for form elements, which - // will change margin if you explicitly set height - // see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380 - // Support: Safari - element.css( { - marginTop: element.css( "marginTop" ), - marginBottom: element.css( "marginBottom" ), - marginLeft: element.css( "marginLeft" ), - marginRight: element.css( "marginRight" ) - } ) - .outerWidth( element.outerWidth() ) - .outerHeight( element.outerHeight() ); - - if ( /^(static|relative)/.test( cssPosition ) ) { - cssPosition = "absolute"; - - placeholder = $( "<" + element[ 0 ].nodeName + ">" ).insertAfter( element ).css( { - - // Convert inline to inline block to account for inline elements - // that turn to inline block based on content (like img) - display: /^(inline|ruby)/.test( element.css( "display" ) ) ? - "inline-block" : - "block", - visibility: "hidden", - - // Margins need to be set to account for margin collapse - marginTop: element.css( "marginTop" ), - marginBottom: element.css( "marginBottom" ), - marginLeft: element.css( "marginLeft" ), - marginRight: element.css( "marginRight" ), - "float": element.css( "float" ) - } ) - .outerWidth( element.outerWidth() ) - .outerHeight( element.outerHeight() ) - .addClass( "ui-effects-placeholder" ); - - element.data( dataSpace + "placeholder", placeholder ); - } - - element.css( { - position: cssPosition, - left: position.left, - top: position.top - } ); - - return placeholder; - }, - - removePlaceholder: function( element ) { - var dataKey = dataSpace + "placeholder", - placeholder = element.data( dataKey ); - - if ( placeholder ) { - placeholder.remove(); - element.removeData( dataKey ); - } - }, - - // Removes a placeholder if it exists and restores - // properties that were modified during placeholder creation - cleanUp: function( element ) { - $.effects.restoreStyle( element ); - $.effects.removePlaceholder( element ); - }, - - setTransition: function( element, list, factor, value ) { - value = value || {}; - $.each( list, function( i, x ) { - var unit = element.cssUnit( x ); - if ( unit[ 0 ] > 0 ) { - value[ x ] = unit[ 0 ] * factor + unit[ 1 ]; - } - } ); - return value; - } -} ); - -// Return an effect options object for the given parameters: -function _normalizeArguments( effect, options, speed, callback ) { - - // Allow passing all options as the first parameter - if ( $.isPlainObject( effect ) ) { - options = effect; - effect = effect.effect; - } - - // Convert to an object - effect = { effect: effect }; - - // Catch (effect, null, ...) - if ( options == null ) { - options = {}; - } - - // Catch (effect, callback) - if ( $.isFunction( options ) ) { - callback = options; - speed = null; - options = {}; - } - - // Catch (effect, speed, ?) - if ( typeof options === "number" || $.fx.speeds[ options ] ) { - callback = speed; - speed = options; - options = {}; - } - - // Catch (effect, options, callback) - if ( $.isFunction( speed ) ) { - callback = speed; - speed = null; - } - - // Add options to effect - if ( options ) { - $.extend( effect, options ); - } - - speed = speed || options.duration; - effect.duration = $.fx.off ? 0 : - typeof speed === "number" ? speed : - speed in $.fx.speeds ? $.fx.speeds[ speed ] : - $.fx.speeds._default; - - effect.complete = callback || options.complete; - - return effect; -} - -function standardAnimationOption( option ) { - - // Valid standard speeds (nothing, number, named speed) - if ( !option || typeof option === "number" || $.fx.speeds[ option ] ) { - return true; - } - - // Invalid strings - treat as "normal" speed - if ( typeof option === "string" && !$.effects.effect[ option ] ) { - return true; - } - - // Complete callback - if ( $.isFunction( option ) ) { - return true; - } - - // Options hash (but not naming an effect) - if ( typeof option === "object" && !option.effect ) { - return true; - } - - // Didn't match any standard API - return false; -} - -$.fn.extend( { - effect: function( /* effect, options, speed, callback */ ) { - var args = _normalizeArguments.apply( this, arguments ), - effectMethod = $.effects.effect[ args.effect ], - defaultMode = effectMethod.mode, - queue = args.queue, - queueName = queue || "fx", - complete = args.complete, - mode = args.mode, - modes = [], - prefilter = function( next ) { - var el = $( this ), - normalizedMode = $.effects.mode( el, mode ) || defaultMode; - - // Sentinel for duck-punching the :animated psuedo-selector - el.data( dataSpaceAnimated, true ); - - // Save effect mode for later use, - // we can't just call $.effects.mode again later, - // as the .show() below destroys the initial state - modes.push( normalizedMode ); - - // See $.uiBackCompat inside of run() for removal of defaultMode in 1.13 - if ( defaultMode && ( normalizedMode === "show" || - ( normalizedMode === defaultMode && normalizedMode === "hide" ) ) ) { - el.show(); - } - - if ( !defaultMode || normalizedMode !== "none" ) { - $.effects.saveStyle( el ); - } - - if ( $.isFunction( next ) ) { - next(); - } - }; - - if ( $.fx.off || !effectMethod ) { - - // Delegate to the original method (e.g., .show()) if possible - if ( mode ) { - return this[ mode ]( args.duration, complete ); - } else { - return this.each( function() { - if ( complete ) { - complete.call( this ); - } - } ); - } - } - - function run( next ) { - var elem = $( this ); - - function cleanup() { - elem.removeData( dataSpaceAnimated ); - - $.effects.cleanUp( elem ); - - if ( args.mode === "hide" ) { - elem.hide(); - } - - done(); - } - - function done() { - if ( $.isFunction( complete ) ) { - complete.call( elem[ 0 ] ); - } - - if ( $.isFunction( next ) ) { - next(); - } - } - - // Override mode option on a per element basis, - // as toggle can be either show or hide depending on element state - args.mode = modes.shift(); - - if ( $.uiBackCompat !== false && !defaultMode ) { - if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) { - - // Call the core method to track "olddisplay" properly - elem[ mode ](); - done(); - } else { - effectMethod.call( elem[ 0 ], args, done ); - } - } else { - if ( args.mode === "none" ) { - - // Call the core method to track "olddisplay" properly - elem[ mode ](); - done(); - } else { - effectMethod.call( elem[ 0 ], args, cleanup ); - } - } - } - - // Run prefilter on all elements first to ensure that - // any showing or hiding happens before placeholder creation, - // which ensures that any layout changes are correctly captured. - return queue === false ? - this.each( prefilter ).each( run ) : - this.queue( queueName, prefilter ).queue( queueName, run ); - }, - - show: ( function( orig ) { - return function( option ) { - if ( standardAnimationOption( option ) ) { - return orig.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "show"; - return this.effect.call( this, args ); - } - }; - } )( $.fn.show ), - - hide: ( function( orig ) { - return function( option ) { - if ( standardAnimationOption( option ) ) { - return orig.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "hide"; - return this.effect.call( this, args ); - } - }; - } )( $.fn.hide ), - - toggle: ( function( orig ) { - return function( option ) { - if ( standardAnimationOption( option ) || typeof option === "boolean" ) { - return orig.apply( this, arguments ); - } else { - var args = _normalizeArguments.apply( this, arguments ); - args.mode = "toggle"; - return this.effect.call( this, args ); - } - }; - } )( $.fn.toggle ), - - cssUnit: function( key ) { - var style = this.css( key ), - val = []; - - $.each( [ "em", "px", "%", "pt" ], function( i, unit ) { - if ( style.indexOf( unit ) > 0 ) { - val = [ parseFloat( style ), unit ]; - } - } ); - return val; - }, - - cssClip: function( clipObj ) { - if ( clipObj ) { - return this.css( "clip", "rect(" + clipObj.top + "px " + clipObj.right + "px " + - clipObj.bottom + "px " + clipObj.left + "px)" ); - } - return parseClip( this.css( "clip" ), this ); - }, - - transfer: function( options, done ) { - var element = $( this ), - target = $( options.to ), - targetFixed = target.css( "position" ) === "fixed", - body = $( "body" ), - fixTop = targetFixed ? body.scrollTop() : 0, - fixLeft = targetFixed ? body.scrollLeft() : 0, - endPosition = target.offset(), - animation = { - top: endPosition.top - fixTop, - left: endPosition.left - fixLeft, - height: target.innerHeight(), - width: target.innerWidth() - }, - startPosition = element.offset(), - transfer = $( "
      " ) - .appendTo( "body" ) - .addClass( options.className ) - .css( { - top: startPosition.top - fixTop, - left: startPosition.left - fixLeft, - height: element.innerHeight(), - width: element.innerWidth(), - position: targetFixed ? "fixed" : "absolute" - } ) - .animate( animation, options.duration, options.easing, function() { - transfer.remove(); - if ( $.isFunction( done ) ) { - done(); - } - } ); - } -} ); - -function parseClip( str, element ) { - var outerWidth = element.outerWidth(), - outerHeight = element.outerHeight(), - clipRegex = /^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/, - values = clipRegex.exec( str ) || [ "", 0, outerWidth, outerHeight, 0 ]; - - return { - top: parseFloat( values[ 1 ] ) || 0, - right: values[ 2 ] === "auto" ? outerWidth : parseFloat( values[ 2 ] ), - bottom: values[ 3 ] === "auto" ? outerHeight : parseFloat( values[ 3 ] ), - left: parseFloat( values[ 4 ] ) || 0 - }; -} - -$.fx.step.clip = function( fx ) { - if ( !fx.clipInit ) { - fx.start = $( fx.elem ).cssClip(); - if ( typeof fx.end === "string" ) { - fx.end = parseClip( fx.end, fx.elem ); - } - fx.clipInit = true; - } - - $( fx.elem ).cssClip( { - top: fx.pos * ( fx.end.top - fx.start.top ) + fx.start.top, - right: fx.pos * ( fx.end.right - fx.start.right ) + fx.start.right, - bottom: fx.pos * ( fx.end.bottom - fx.start.bottom ) + fx.start.bottom, - left: fx.pos * ( fx.end.left - fx.start.left ) + fx.start.left - } ); -}; - -} )(); - -/******************************************************************************/ -/*********************************** EASING ***********************************/ -/******************************************************************************/ - -( function() { - -// Based on easing equations from Robert Penner (http://www.robertpenner.com/easing) - -var baseEasings = {}; - -$.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) { - baseEasings[ name ] = function( p ) { - return Math.pow( p, i + 2 ); - }; -} ); - -$.extend( baseEasings, { - Sine: function( p ) { - return 1 - Math.cos( p * Math.PI / 2 ); - }, - Circ: function( p ) { - return 1 - Math.sqrt( 1 - p * p ); - }, - Elastic: function( p ) { - return p === 0 || p === 1 ? p : - -Math.pow( 2, 8 * ( p - 1 ) ) * Math.sin( ( ( p - 1 ) * 80 - 7.5 ) * Math.PI / 15 ); - }, - Back: function( p ) { - return p * p * ( 3 * p - 2 ); - }, - Bounce: function( p ) { - var pow2, - bounce = 4; - - while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {} - return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 ); - } -} ); - -$.each( baseEasings, function( name, easeIn ) { - $.easing[ "easeIn" + name ] = easeIn; - $.easing[ "easeOut" + name ] = function( p ) { - return 1 - easeIn( 1 - p ); - }; - $.easing[ "easeInOut" + name ] = function( p ) { - return p < 0.5 ? - easeIn( p * 2 ) / 2 : - 1 - easeIn( p * -2 + 2 ) / 2; - }; -} ); - -} )(); - -var effect = $.effects; - - -/*! - * jQuery UI Effects Blind 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Blind Effect -//>>group: Effects -//>>description: Blinds the element. -//>>docs: http://api.jqueryui.com/blind-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, done ) { - var map = { - up: [ "bottom", "top" ], - vertical: [ "bottom", "top" ], - down: [ "top", "bottom" ], - left: [ "right", "left" ], - horizontal: [ "right", "left" ], - right: [ "left", "right" ] - }, - element = $( this ), - direction = options.direction || "up", - start = element.cssClip(), - animate = { clip: $.extend( {}, start ) }, - placeholder = $.effects.createPlaceholder( element ); - - animate.clip[ map[ direction ][ 0 ] ] = animate.clip[ map[ direction ][ 1 ] ]; - - if ( options.mode === "show" ) { - element.cssClip( animate.clip ); - if ( placeholder ) { - placeholder.css( $.effects.clipToBox( animate ) ); - } - - animate.clip = start; - } - - if ( placeholder ) { - placeholder.animate( $.effects.clipToBox( animate ), options.duration, options.easing ); - } - - element.animate( animate, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); -} ); - - -/*! - * jQuery UI Effects Bounce 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Bounce Effect -//>>group: Effects -//>>description: Bounces an element horizontally or vertically n times. -//>>docs: http://api.jqueryui.com/bounce-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectBounce = $.effects.define( "bounce", function( options, done ) { - var upAnim, downAnim, refValue, - element = $( this ), - - // Defaults: - mode = options.mode, - hide = mode === "hide", - show = mode === "show", - direction = options.direction || "up", - distance = options.distance, - times = options.times || 5, - - // Number of internal animations - anims = times * 2 + ( show || hide ? 1 : 0 ), - speed = options.duration / anims, - easing = options.easing, - - // Utility: - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - motion = ( direction === "up" || direction === "left" ), - i = 0, - - queuelen = element.queue().length; - - $.effects.createPlaceholder( element ); - - refValue = element.css( ref ); - - // Default distance for the BIGGEST bounce is the outer Distance / 3 - if ( !distance ) { - distance = element[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3; - } - - if ( show ) { - downAnim = { opacity: 1 }; - downAnim[ ref ] = refValue; - - // If we are showing, force opacity 0 and set the initial position - // then do the "first" animation - element - .css( "opacity", 0 ) - .css( ref, motion ? -distance * 2 : distance * 2 ) - .animate( downAnim, speed, easing ); - } - - // Start at the smallest distance if we are hiding - if ( hide ) { - distance = distance / Math.pow( 2, times - 1 ); - } - - downAnim = {}; - downAnim[ ref ] = refValue; - - // Bounces up/down/left/right then back to 0 -- times * 2 animations happen here - for ( ; i < times; i++ ) { - upAnim = {}; - upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance; - - element - .animate( upAnim, speed, easing ) - .animate( downAnim, speed, easing ); - - distance = hide ? distance * 2 : distance / 2; - } - - // Last Bounce when Hiding - if ( hide ) { - upAnim = { opacity: 0 }; - upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance; - - element.animate( upAnim, speed, easing ); - } - - element.queue( done ); - - $.effects.unshift( element, queuelen, anims + 1 ); -} ); - - -/*! - * jQuery UI Effects Clip 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Clip Effect -//>>group: Effects -//>>description: Clips the element on and off like an old TV. -//>>docs: http://api.jqueryui.com/clip-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectClip = $.effects.define( "clip", "hide", function( options, done ) { - var start, - animate = {}, - element = $( this ), - direction = options.direction || "vertical", - both = direction === "both", - horizontal = both || direction === "horizontal", - vertical = both || direction === "vertical"; - - start = element.cssClip(); - animate.clip = { - top: vertical ? ( start.bottom - start.top ) / 2 : start.top, - right: horizontal ? ( start.right - start.left ) / 2 : start.right, - bottom: vertical ? ( start.bottom - start.top ) / 2 : start.bottom, - left: horizontal ? ( start.right - start.left ) / 2 : start.left - }; - - $.effects.createPlaceholder( element ); - - if ( options.mode === "show" ) { - element.cssClip( animate.clip ); - animate.clip = start; - } - - element.animate( animate, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); - -} ); - - -/*! - * jQuery UI Effects Drop 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Drop Effect -//>>group: Effects -//>>description: Moves an element in one direction and hides it at the same time. -//>>docs: http://api.jqueryui.com/drop-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, done ) { - - var distance, - element = $( this ), - mode = options.mode, - show = mode === "show", - direction = options.direction || "left", - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - motion = ( direction === "up" || direction === "left" ) ? "-=" : "+=", - oppositeMotion = ( motion === "+=" ) ? "-=" : "+=", - animation = { - opacity: 0 - }; - - $.effects.createPlaceholder( element ); - - distance = options.distance || - element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2; - - animation[ ref ] = motion + distance; - - if ( show ) { - element.css( animation ); - - animation[ ref ] = oppositeMotion + distance; - animation.opacity = 1; - } - - // Animate - element.animate( animation, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); -} ); - - -/*! - * jQuery UI Effects Explode 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Explode Effect -//>>group: Effects -// jscs:disable maximumLineLength -//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness. -// jscs:enable maximumLineLength -//>>docs: http://api.jqueryui.com/explode-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectExplode = $.effects.define( "explode", "hide", function( options, done ) { - - var i, j, left, top, mx, my, - rows = options.pieces ? Math.round( Math.sqrt( options.pieces ) ) : 3, - cells = rows, - element = $( this ), - mode = options.mode, - show = mode === "show", - - // Show and then visibility:hidden the element before calculating offset - offset = element.show().css( "visibility", "hidden" ).offset(), - - // Width and height of a piece - width = Math.ceil( element.outerWidth() / cells ), - height = Math.ceil( element.outerHeight() / rows ), - pieces = []; - - // Children animate complete: - function childComplete() { - pieces.push( this ); - if ( pieces.length === rows * cells ) { - animComplete(); - } - } - - // Clone the element for each row and cell. - for ( i = 0; i < rows; i++ ) { // ===> - top = offset.top + i * height; - my = i - ( rows - 1 ) / 2; - - for ( j = 0; j < cells; j++ ) { // ||| - left = offset.left + j * width; - mx = j - ( cells - 1 ) / 2; - - // Create a clone of the now hidden main element that will be absolute positioned - // within a wrapper div off the -left and -top equal to size of our pieces - element - .clone() - .appendTo( "body" ) - .wrap( "
      " ) - .css( { - position: "absolute", - visibility: "visible", - left: -j * width, - top: -i * height - } ) - - // Select the wrapper - make it overflow: hidden and absolute positioned based on - // where the original was located +left and +top equal to the size of pieces - .parent() - .addClass( "ui-effects-explode" ) - .css( { - position: "absolute", - overflow: "hidden", - width: width, - height: height, - left: left + ( show ? mx * width : 0 ), - top: top + ( show ? my * height : 0 ), - opacity: show ? 0 : 1 - } ) - .animate( { - left: left + ( show ? 0 : mx * width ), - top: top + ( show ? 0 : my * height ), - opacity: show ? 1 : 0 - }, options.duration || 500, options.easing, childComplete ); - } - } - - function animComplete() { - element.css( { - visibility: "visible" - } ); - $( pieces ).remove(); - done(); - } -} ); - - -/*! - * jQuery UI Effects Fade 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Fade Effect -//>>group: Effects -//>>description: Fades the element. -//>>docs: http://api.jqueryui.com/fade-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, done ) { - var show = options.mode === "show"; - - $( this ) - .css( "opacity", show ? 0 : 1 ) - .animate( { - opacity: show ? 1 : 0 - }, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); -} ); - - -/*! - * jQuery UI Effects Fold 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Fold Effect -//>>group: Effects -//>>description: Folds an element first horizontally and then vertically. -//>>docs: http://api.jqueryui.com/fold-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectFold = $.effects.define( "fold", "hide", function( options, done ) { - - // Create element - var element = $( this ), - mode = options.mode, - show = mode === "show", - hide = mode === "hide", - size = options.size || 15, - percent = /([0-9]+)%/.exec( size ), - horizFirst = !!options.horizFirst, - ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ], - duration = options.duration / 2, - - placeholder = $.effects.createPlaceholder( element ), - - start = element.cssClip(), - animation1 = { clip: $.extend( {}, start ) }, - animation2 = { clip: $.extend( {}, start ) }, - - distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ], - - queuelen = element.queue().length; - - if ( percent ) { - size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ]; - } - animation1.clip[ ref[ 0 ] ] = size; - animation2.clip[ ref[ 0 ] ] = size; - animation2.clip[ ref[ 1 ] ] = 0; - - if ( show ) { - element.cssClip( animation2.clip ); - if ( placeholder ) { - placeholder.css( $.effects.clipToBox( animation2 ) ); - } - - animation2.clip = start; - } - - // Animate - element - .queue( function( next ) { - if ( placeholder ) { - placeholder - .animate( $.effects.clipToBox( animation1 ), duration, options.easing ) - .animate( $.effects.clipToBox( animation2 ), duration, options.easing ); - } - - next(); - } ) - .animate( animation1, duration, options.easing ) - .animate( animation2, duration, options.easing ) - .queue( done ); - - $.effects.unshift( element, queuelen, 4 ); -} ); - - -/*! - * jQuery UI Effects Highlight 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Highlight Effect -//>>group: Effects -//>>description: Highlights the background of an element in a defined color for a custom duration. -//>>docs: http://api.jqueryui.com/highlight-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectHighlight = $.effects.define( "highlight", "show", function( options, done ) { - var element = $( this ), - animation = { - backgroundColor: element.css( "backgroundColor" ) - }; - - if ( options.mode === "hide" ) { - animation.opacity = 0; - } - - $.effects.saveStyle( element ); - - element - .css( { - backgroundImage: "none", - backgroundColor: options.color || "#ffff99" - } ) - .animate( animation, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); -} ); - - -/*! - * jQuery UI Effects Size 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Size Effect -//>>group: Effects -//>>description: Resize an element to a specified width and height. -//>>docs: http://api.jqueryui.com/size-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectSize = $.effects.define( "size", function( options, done ) { - - // Create element - var baseline, factor, temp, - element = $( this ), - - // Copy for children - cProps = [ "fontSize" ], - vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ], - hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ], - - // Set options - mode = options.mode, - restore = mode !== "effect", - scale = options.scale || "both", - origin = options.origin || [ "middle", "center" ], - position = element.css( "position" ), - pos = element.position(), - original = $.effects.scaledDimensions( element ), - from = options.from || original, - to = options.to || $.effects.scaledDimensions( element, 0 ); - - $.effects.createPlaceholder( element ); - - if ( mode === "show" ) { - temp = from; - from = to; - to = temp; - } - - // Set scaling factor - factor = { - from: { - y: from.height / original.height, - x: from.width / original.width - }, - to: { - y: to.height / original.height, - x: to.width / original.width - } - }; - - // Scale the css box - if ( scale === "box" || scale === "both" ) { - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - from = $.effects.setTransition( element, vProps, factor.from.y, from ); - to = $.effects.setTransition( element, vProps, factor.to.y, to ); - } - - // Horizontal props scaling - if ( factor.from.x !== factor.to.x ) { - from = $.effects.setTransition( element, hProps, factor.from.x, from ); - to = $.effects.setTransition( element, hProps, factor.to.x, to ); - } - } - - // Scale the content - if ( scale === "content" || scale === "both" ) { - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - from = $.effects.setTransition( element, cProps, factor.from.y, from ); - to = $.effects.setTransition( element, cProps, factor.to.y, to ); - } - } - - // Adjust the position properties based on the provided origin points - if ( origin ) { - baseline = $.effects.getBaseline( origin, original ); - from.top = ( original.outerHeight - from.outerHeight ) * baseline.y + pos.top; - from.left = ( original.outerWidth - from.outerWidth ) * baseline.x + pos.left; - to.top = ( original.outerHeight - to.outerHeight ) * baseline.y + pos.top; - to.left = ( original.outerWidth - to.outerWidth ) * baseline.x + pos.left; - } - element.css( from ); - - // Animate the children if desired - if ( scale === "content" || scale === "both" ) { - - vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps ); - hProps = hProps.concat( [ "marginLeft", "marginRight" ] ); - - // Only animate children with width attributes specified - // TODO: is this right? should we include anything with css width specified as well - element.find( "*[width]" ).each( function() { - var child = $( this ), - childOriginal = $.effects.scaledDimensions( child ), - childFrom = { - height: childOriginal.height * factor.from.y, - width: childOriginal.width * factor.from.x, - outerHeight: childOriginal.outerHeight * factor.from.y, - outerWidth: childOriginal.outerWidth * factor.from.x - }, - childTo = { - height: childOriginal.height * factor.to.y, - width: childOriginal.width * factor.to.x, - outerHeight: childOriginal.height * factor.to.y, - outerWidth: childOriginal.width * factor.to.x - }; - - // Vertical props scaling - if ( factor.from.y !== factor.to.y ) { - childFrom = $.effects.setTransition( child, vProps, factor.from.y, childFrom ); - childTo = $.effects.setTransition( child, vProps, factor.to.y, childTo ); - } - - // Horizontal props scaling - if ( factor.from.x !== factor.to.x ) { - childFrom = $.effects.setTransition( child, hProps, factor.from.x, childFrom ); - childTo = $.effects.setTransition( child, hProps, factor.to.x, childTo ); - } - - if ( restore ) { - $.effects.saveStyle( child ); - } - - // Animate children - child.css( childFrom ); - child.animate( childTo, options.duration, options.easing, function() { - - // Restore children - if ( restore ) { - $.effects.restoreStyle( child ); - } - } ); - } ); - } - - // Animate - element.animate( to, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: function() { - - var offset = element.offset(); - - if ( to.opacity === 0 ) { - element.css( "opacity", from.opacity ); - } - - if ( !restore ) { - element - .css( "position", position === "static" ? "relative" : position ) - .offset( offset ); - - // Need to save style here so that automatic style restoration - // doesn't restore to the original styles from before the animation. - $.effects.saveStyle( element ); - } - - done(); - } - } ); - -} ); - - -/*! - * jQuery UI Effects Scale 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Scale Effect -//>>group: Effects -//>>description: Grows or shrinks an element and its content. -//>>docs: http://api.jqueryui.com/scale-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectScale = $.effects.define( "scale", function( options, done ) { - - // Create element - var el = $( this ), - mode = options.mode, - percent = parseInt( options.percent, 10 ) || - ( parseInt( options.percent, 10 ) === 0 ? 0 : ( mode !== "effect" ? 0 : 100 ) ), - - newOptions = $.extend( true, { - from: $.effects.scaledDimensions( el ), - to: $.effects.scaledDimensions( el, percent, options.direction || "both" ), - origin: options.origin || [ "middle", "center" ] - }, options ); - - // Fade option to support puff - if ( options.fade ) { - newOptions.from.opacity = 1; - newOptions.to.opacity = 0; - } - - $.effects.effect.size.call( this, newOptions, done ); -} ); - - -/*! - * jQuery UI Effects Puff 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Puff Effect -//>>group: Effects -//>>description: Creates a puff effect by scaling the element up and hiding it at the same time. -//>>docs: http://api.jqueryui.com/puff-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, done ) { - var newOptions = $.extend( true, {}, options, { - fade: true, - percent: parseInt( options.percent, 10 ) || 150 - } ); - - $.effects.effect.scale.call( this, newOptions, done ); -} ); - - -/*! - * jQuery UI Effects Pulsate 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Pulsate Effect -//>>group: Effects -//>>description: Pulsates an element n times by changing the opacity to zero and back. -//>>docs: http://api.jqueryui.com/pulsate-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( options, done ) { - var element = $( this ), - mode = options.mode, - show = mode === "show", - hide = mode === "hide", - showhide = show || hide, - - // Showing or hiding leaves off the "last" animation - anims = ( ( options.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ), - duration = options.duration / anims, - animateTo = 0, - i = 1, - queuelen = element.queue().length; - - if ( show || !element.is( ":visible" ) ) { - element.css( "opacity", 0 ).show(); - animateTo = 1; - } - - // Anims - 1 opacity "toggles" - for ( ; i < anims; i++ ) { - element.animate( { opacity: animateTo }, duration, options.easing ); - animateTo = 1 - animateTo; - } - - element.animate( { opacity: animateTo }, duration, options.easing ); - - element.queue( done ); - - $.effects.unshift( element, queuelen, anims + 1 ); -} ); - - -/*! - * jQuery UI Effects Shake 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Shake Effect -//>>group: Effects -//>>description: Shakes an element horizontally or vertically n times. -//>>docs: http://api.jqueryui.com/shake-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectShake = $.effects.define( "shake", function( options, done ) { - - var i = 1, - element = $( this ), - direction = options.direction || "left", - distance = options.distance || 20, - times = options.times || 3, - anims = times * 2 + 1, - speed = Math.round( options.duration / anims ), - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - positiveMotion = ( direction === "up" || direction === "left" ), - animation = {}, - animation1 = {}, - animation2 = {}, - - queuelen = element.queue().length; - - $.effects.createPlaceholder( element ); - - // Animation - animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance; - animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2; - animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2; - - // Animate - element.animate( animation, speed, options.easing ); - - // Shakes - for ( ; i < times; i++ ) { - element - .animate( animation1, speed, options.easing ) - .animate( animation2, speed, options.easing ); - } - - element - .animate( animation1, speed, options.easing ) - .animate( animation, speed / 2, options.easing ) - .queue( done ); - - $.effects.unshift( element, queuelen, anims + 1 ); -} ); - - -/*! - * jQuery UI Effects Slide 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Slide Effect -//>>group: Effects -//>>description: Slides an element in and out of the viewport. -//>>docs: http://api.jqueryui.com/slide-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effectsEffectSlide = $.effects.define( "slide", "show", function( options, done ) { - var startClip, startRef, - element = $( this ), - map = { - up: [ "bottom", "top" ], - down: [ "top", "bottom" ], - left: [ "right", "left" ], - right: [ "left", "right" ] - }, - mode = options.mode, - direction = options.direction || "left", - ref = ( direction === "up" || direction === "down" ) ? "top" : "left", - positiveMotion = ( direction === "up" || direction === "left" ), - distance = options.distance || - element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ), - animation = {}; - - $.effects.createPlaceholder( element ); - - startClip = element.cssClip(); - startRef = element.position()[ ref ]; - - // Define hide animation - animation[ ref ] = ( positiveMotion ? -1 : 1 ) * distance + startRef; - animation.clip = element.cssClip(); - animation.clip[ map[ direction ][ 1 ] ] = animation.clip[ map[ direction ][ 0 ] ]; - - // Reverse the animation if we're showing - if ( mode === "show" ) { - element.cssClip( animation.clip ); - element.css( ref, animation[ ref ] ); - animation.clip = startClip; - animation[ ref ] = startRef; - } - - // Actually animate - element.animate( animation, { - queue: false, - duration: options.duration, - easing: options.easing, - complete: done - } ); -} ); - - -/*! - * jQuery UI Effects Transfer 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Transfer Effect -//>>group: Effects -//>>description: Displays a transfer effect from one element to another. -//>>docs: http://api.jqueryui.com/transfer-effect/ -//>>demos: http://jqueryui.com/effect/ - - - -var effect; -if ( $.uiBackCompat !== false ) { - effect = $.effects.define( "transfer", function( options, done ) { - $( this ).transfer( options, done ); - } ); -} -var effectsEffectTransfer = effect; - - -/*! - * jQuery UI Focusable 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: :focusable Selector -//>>group: Core -//>>description: Selects elements which can be focused. -//>>docs: http://api.jqueryui.com/focusable-selector/ - - - -// Selectors -$.ui.focusable = function( element, hasTabindex ) { - var map, mapName, img, focusableIfVisible, fieldset, - nodeName = element.nodeName.toLowerCase(); - - if ( "area" === nodeName ) { - map = element.parentNode; - mapName = map.name; - if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) { - return false; - } - img = $( "img[usemap='#" + mapName + "']" ); - return img.length > 0 && img.is( ":visible" ); - } - - if ( /^(input|select|textarea|button|object)$/.test( nodeName ) ) { - focusableIfVisible = !element.disabled; - - if ( focusableIfVisible ) { - - // Form controls within a disabled fieldset are disabled. - // However, controls within the fieldset's legend do not get disabled. - // Since controls generally aren't placed inside legends, we skip - // this portion of the check. - fieldset = $( element ).closest( "fieldset" )[ 0 ]; - if ( fieldset ) { - focusableIfVisible = !fieldset.disabled; - } - } - } else if ( "a" === nodeName ) { - focusableIfVisible = element.href || hasTabindex; - } else { - focusableIfVisible = hasTabindex; - } - - return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) ); -}; - -// Support: IE 8 only -// IE 8 doesn't resolve inherit to visible/hidden for computed values -function visible( element ) { - var visibility = element.css( "visibility" ); - while ( visibility === "inherit" ) { - element = element.parent(); - visibility = element.css( "visibility" ); - } - return visibility !== "hidden"; -} - -$.extend( $.expr[ ":" ], { - focusable: function( element ) { - return $.ui.focusable( element, $.attr( element, "tabindex" ) != null ); - } -} ); - -var focusable = $.ui.focusable; - - - - -// Support: IE8 Only -// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop -// with a string, so we need to find the proper form. -var form = $.fn.form = function() { - return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form ); -}; - - -/*! - * jQuery UI Form Reset Mixin 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Form Reset Mixin -//>>group: Core -//>>description: Refresh input widgets when their form is reset -//>>docs: http://api.jqueryui.com/form-reset-mixin/ - - - -var formResetMixin = $.ui.formResetMixin = { - _formResetHandler: function() { - var form = $( this ); - - // Wait for the form reset to actually happen before refreshing - setTimeout( function() { - var instances = form.data( "ui-form-reset-instances" ); - $.each( instances, function() { - this.refresh(); - } ); - } ); - }, - - _bindFormResetHandler: function() { - this.form = this.element.form(); - if ( !this.form.length ) { - return; - } - - var instances = this.form.data( "ui-form-reset-instances" ) || []; - if ( !instances.length ) { - - // We don't use _on() here because we use a single event handler per form - this.form.on( "reset.ui-form-reset", this._formResetHandler ); - } - instances.push( this ); - this.form.data( "ui-form-reset-instances", instances ); - }, - - _unbindFormResetHandler: function() { - if ( !this.form.length ) { - return; - } - - var instances = this.form.data( "ui-form-reset-instances" ); - instances.splice( $.inArray( this, instances ), 1 ); - if ( instances.length ) { - this.form.data( "ui-form-reset-instances", instances ); - } else { - this.form - .removeData( "ui-form-reset-instances" ) - .off( "reset.ui-form-reset" ); - } - } -}; - - -/*! - * jQuery UI Support for jQuery core 1.7.x 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - */ - -//>>label: jQuery 1.7 Support -//>>group: Core -//>>description: Support version 1.7.x of jQuery core - - - -// Support: jQuery 1.7 only -// Not a great way to check versions, but since we only support 1.7+ and only -// need to detect <1.8, this is a simple check that should suffice. Checking -// for "1.7." would be a bit safer, but the version string is 1.7, not 1.7.0 -// and we'll never reach 1.70.0 (if we do, we certainly won't be supporting -// 1.7 anymore). See #11197 for why we're not using feature detection. -if ( $.fn.jquery.substring( 0, 3 ) === "1.7" ) { - - // Setters for .innerWidth(), .innerHeight(), .outerWidth(), .outerHeight() - // Unlike jQuery Core 1.8+, these only support numeric values to set the - // dimensions in pixels - $.each( [ "Width", "Height" ], function( i, name ) { - var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ], - type = name.toLowerCase(), - orig = { - innerWidth: $.fn.innerWidth, - innerHeight: $.fn.innerHeight, - outerWidth: $.fn.outerWidth, - outerHeight: $.fn.outerHeight - }; - - function reduce( elem, size, border, margin ) { - $.each( side, function() { - size -= parseFloat( $.css( elem, "padding" + this ) ) || 0; - if ( border ) { - size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0; - } - if ( margin ) { - size -= parseFloat( $.css( elem, "margin" + this ) ) || 0; - } - } ); - return size; - } - - $.fn[ "inner" + name ] = function( size ) { - if ( size === undefined ) { - return orig[ "inner" + name ].call( this ); - } - - return this.each( function() { - $( this ).css( type, reduce( this, size ) + "px" ); - } ); - }; - - $.fn[ "outer" + name ] = function( size, margin ) { - if ( typeof size !== "number" ) { - return orig[ "outer" + name ].call( this, size ); - } - - return this.each( function() { - $( this ).css( type, reduce( this, size, true, margin ) + "px" ); - } ); - }; - } ); - - $.fn.addBack = function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - }; -} - -; -/*! - * jQuery UI Keycode 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Keycode -//>>group: Core -//>>description: Provide keycodes as keynames -//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/ - - -var keycode = $.ui.keyCode = { - BACKSPACE: 8, - COMMA: 188, - DELETE: 46, - DOWN: 40, - END: 35, - ENTER: 13, - ESCAPE: 27, - HOME: 36, - LEFT: 37, - PAGE_DOWN: 34, - PAGE_UP: 33, - PERIOD: 190, - RIGHT: 39, - SPACE: 32, - TAB: 9, - UP: 38 -}; - - - - -// Internal use only -var escapeSelector = $.ui.escapeSelector = ( function() { - var selectorEscape = /([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g; - return function( selector ) { - return selector.replace( selectorEscape, "\\$1" ); - }; -} )(); - - -/*! - * jQuery UI Labels 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: labels -//>>group: Core -//>>description: Find all the labels associated with a given input -//>>docs: http://api.jqueryui.com/labels/ - - - -var labels = $.fn.labels = function() { - var ancestor, selector, id, labels, ancestors; - - // Check control.labels first - if ( this[ 0 ].labels && this[ 0 ].labels.length ) { - return this.pushStack( this[ 0 ].labels ); - } - - // Support: IE <= 11, FF <= 37, Android <= 2.3 only - // Above browsers do not support control.labels. Everything below is to support them - // as well as document fragments. control.labels does not work on document fragments - labels = this.eq( 0 ).parents( "label" ); - - // Look for the label based on the id - id = this.attr( "id" ); - if ( id ) { - - // We don't search against the document in case the element - // is disconnected from the DOM - ancestor = this.eq( 0 ).parents().last(); - - // Get a full set of top level ancestors - ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() ); - - // Create a selector for the label based on the id - selector = "label[for='" + $.ui.escapeSelector( id ) + "']"; - - labels = labels.add( ancestors.find( selector ).addBack( selector ) ); - - } - - // Return whatever we have found for labels - return this.pushStack( labels ); -}; - - -/*! - * jQuery UI Scroll Parent 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: scrollParent -//>>group: Core -//>>description: Get the closest ancestor element that is scrollable. -//>>docs: http://api.jqueryui.com/scrollParent/ - - - -var scrollParent = $.fn.scrollParent = function( includeHidden ) { - var position = this.css( "position" ), - excludeStaticParent = position === "absolute", - overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/, - scrollParent = this.parents().filter( function() { - var parent = $( this ); - if ( excludeStaticParent && parent.css( "position" ) === "static" ) { - return false; - } - return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + - parent.css( "overflow-x" ) ); - } ).eq( 0 ); - - return position === "fixed" || !scrollParent.length ? - $( this[ 0 ].ownerDocument || document ) : - scrollParent; -}; - - -/*! - * jQuery UI Tabbable 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: :tabbable Selector -//>>group: Core -//>>description: Selects elements which can be tabbed to. -//>>docs: http://api.jqueryui.com/tabbable-selector/ - - - -var tabbable = $.extend( $.expr[ ":" ], { - tabbable: function( element ) { - var tabIndex = $.attr( element, "tabindex" ), - hasTabindex = tabIndex != null; - return ( !hasTabindex || tabIndex >= 0 ) && $.ui.focusable( element, hasTabindex ); - } -} ); - - -/*! - * jQuery UI Unique ID 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: uniqueId -//>>group: Core -//>>description: Functions to generate and remove uniqueId's -//>>docs: http://api.jqueryui.com/uniqueId/ - - - -var uniqueId = $.fn.extend( { - uniqueId: ( function() { - var uuid = 0; - - return function() { - return this.each( function() { - if ( !this.id ) { - this.id = "ui-id-" + ( ++uuid ); - } - } ); - }; - } )(), - - removeUniqueId: function() { - return this.each( function() { - if ( /^ui-id-\d+$/.test( this.id ) ) { - $( this ).removeAttr( "id" ); - } - } ); - } -} ); - - -/*! - * jQuery UI Accordion 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - */ - -//>>label: Accordion -//>>group: Widgets -// jscs:disable maximumLineLength -//>>description: Displays collapsible content panels for presenting information in a limited amount of space. -// jscs:enable maximumLineLength -//>>docs: http://api.jqueryui.com/accordion/ -//>>demos: http://jqueryui.com/accordion/ -//>>css.structure: ../../themes/base/core.css -//>>css.structure: ../../themes/base/accordion.css -//>>css.theme: ../../themes/base/theme.css - - - -var widgetsAccordion = $.widget( "ui.accordion", { - version: "1.12.1", - options: { - active: 0, - animate: {}, - classes: { - "ui-accordion-header": "ui-corner-top", - "ui-accordion-header-collapsed": "ui-corner-all", - "ui-accordion-content": "ui-corner-bottom" - }, - collapsible: false, - event: "click", - header: "> li > :first-child, > :not(li):even", - heightStyle: "auto", - icons: { - activeHeader: "ui-icon-triangle-1-s", - header: "ui-icon-triangle-1-e" - }, - - // Callbacks - activate: null, - beforeActivate: null - }, - - hideProps: { - borderTopWidth: "hide", - borderBottomWidth: "hide", - paddingTop: "hide", - paddingBottom: "hide", - height: "hide" - }, - - showProps: { - borderTopWidth: "show", - borderBottomWidth: "show", - paddingTop: "show", - paddingBottom: "show", - height: "show" - }, - - _create: function() { - var options = this.options; - - this.prevShow = this.prevHide = $(); - this._addClass( "ui-accordion", "ui-widget ui-helper-reset" ); - this.element.attr( "role", "tablist" ); - - // Don't allow collapsible: false and active: false / null - if ( !options.collapsible && ( options.active === false || options.active == null ) ) { - options.active = 0; - } - - this._processPanels(); - - // handle negative values - if ( options.active < 0 ) { - options.active += this.headers.length; - } - this._refresh(); - }, - - _getCreateEventData: function() { - return { - header: this.active, - panel: !this.active.length ? $() : this.active.next() - }; - }, - - _createIcons: function() { - var icon, children, - icons = this.options.icons; - - if ( icons ) { - icon = $( "" ); - this._addClass( icon, "ui-accordion-header-icon", "ui-icon " + icons.header ); - icon.prependTo( this.headers ); - children = this.active.children( ".ui-accordion-header-icon" ); - this._removeClass( children, icons.header ) - ._addClass( children, null, icons.activeHeader ) - ._addClass( this.headers, "ui-accordion-icons" ); - } - }, - - _destroyIcons: function() { - this._removeClass( this.headers, "ui-accordion-icons" ); - this.headers.children( ".ui-accordion-header-icon" ).remove(); - }, - - _destroy: function() { - var contents; - - // Clean up main element - this.element.removeAttr( "role" ); - - // Clean up headers - this.headers - .removeAttr( "role aria-expanded aria-selected aria-controls tabIndex" ) - .removeUniqueId(); - - this._destroyIcons(); - - // Clean up content panels - contents = this.headers.next() - .css( "display", "" ) - .removeAttr( "role aria-hidden aria-labelledby" ) - .removeUniqueId(); - - if ( this.options.heightStyle !== "content" ) { - contents.css( "height", "" ); - } - }, - - _setOption: function( key, value ) { - if ( key === "active" ) { - - // _activate() will handle invalid values and update this.options - this._activate( value ); - return; - } - - if ( key === "event" ) { - if ( this.options.event ) { - this._off( this.headers, this.options.event ); - } - this._setupEvents( value ); - } - - this._super( key, value ); - - // Setting collapsible: false while collapsed; open first panel - if ( key === "collapsible" && !value && this.options.active === false ) { - this._activate( 0 ); - } - - if ( key === "icons" ) { - this._destroyIcons(); - if ( value ) { - this._createIcons(); - } - } - }, - - _setOptionDisabled: function( value ) { - this._super( value ); - - this.element.attr( "aria-disabled", value ); - - // Support: IE8 Only - // #5332 / #6059 - opacity doesn't cascade to positioned elements in IE - // so we need to add the disabled class to the headers and panels - this._toggleClass( null, "ui-state-disabled", !!value ); - this._toggleClass( this.headers.add( this.headers.next() ), null, "ui-state-disabled", - !!value ); - }, - - _keydown: function( event ) { - if ( event.altKey || event.ctrlKey ) { - return; - } - - var keyCode = $.ui.keyCode, - length = this.headers.length, - currentIndex = this.headers.index( event.target ), - toFocus = false; - - switch ( event.keyCode ) { - case keyCode.RIGHT: - case keyCode.DOWN: - toFocus = this.headers[ ( currentIndex + 1 ) % length ]; - break; - case keyCode.LEFT: - case keyCode.UP: - toFocus = this.headers[ ( currentIndex - 1 + length ) % length ]; - break; - case keyCode.SPACE: - case keyCode.ENTER: - this._eventHandler( event ); - break; - case keyCode.HOME: - toFocus = this.headers[ 0 ]; - break; - case keyCode.END: - toFocus = this.headers[ length - 1 ]; - break; - } - - if ( toFocus ) { - $( event.target ).attr( "tabIndex", -1 ); - $( toFocus ).attr( "tabIndex", 0 ); - $( toFocus ).trigger( "focus" ); - event.preventDefault(); - } - }, - - _panelKeyDown: function( event ) { - if ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) { - $( event.currentTarget ).prev().trigger( "focus" ); - } - }, - - refresh: function() { - var options = this.options; - this._processPanels(); - - // Was collapsed or no panel - if ( ( options.active === false && options.collapsible === true ) || - !this.headers.length ) { - options.active = false; - this.active = $(); - - // active false only when collapsible is true - } else if ( options.active === false ) { - this._activate( 0 ); - - // was active, but active panel is gone - } else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) { - - // all remaining panel are disabled - if ( this.headers.length === this.headers.find( ".ui-state-disabled" ).length ) { - options.active = false; - this.active = $(); - - // activate previous panel - } else { - this._activate( Math.max( 0, options.active - 1 ) ); - } - - // was active, active panel still exists - } else { - - // make sure active index is correct - options.active = this.headers.index( this.active ); - } - - this._destroyIcons(); - - this._refresh(); - }, - - _processPanels: function() { - var prevHeaders = this.headers, - prevPanels = this.panels; - - this.headers = this.element.find( this.options.header ); - this._addClass( this.headers, "ui-accordion-header ui-accordion-header-collapsed", - "ui-state-default" ); - - this.panels = this.headers.next().filter( ":not(.ui-accordion-content-active)" ).hide(); - this._addClass( this.panels, "ui-accordion-content", "ui-helper-reset ui-widget-content" ); - - // Avoid memory leaks (#10056) - if ( prevPanels ) { - this._off( prevHeaders.not( this.headers ) ); - this._off( prevPanels.not( this.panels ) ); - } - }, - - _refresh: function() { - var maxHeight, - options = this.options, - heightStyle = options.heightStyle, - parent = this.element.parent(); - - this.active = this._findActive( options.active ); - this._addClass( this.active, "ui-accordion-header-active", "ui-state-active" ) - ._removeClass( this.active, "ui-accordion-header-collapsed" ); - this._addClass( this.active.next(), "ui-accordion-content-active" ); - this.active.next().show(); - - this.headers - .attr( "role", "tab" ) - .each( function() { - var header = $( this ), - headerId = header.uniqueId().attr( "id" ), - panel = header.next(), - panelId = panel.uniqueId().attr( "id" ); - header.attr( "aria-controls", panelId ); - panel.attr( "aria-labelledby", headerId ); - } ) - .next() - .attr( "role", "tabpanel" ); - - this.headers - .not( this.active ) - .attr( { - "aria-selected": "false", - "aria-expanded": "false", - tabIndex: -1 - } ) - .next() - .attr( { - "aria-hidden": "true" - } ) - .hide(); - - // Make sure at least one header is in the tab order - if ( !this.active.length ) { - this.headers.eq( 0 ).attr( "tabIndex", 0 ); - } else { - this.active.attr( { - "aria-selected": "true", - "aria-expanded": "true", - tabIndex: 0 - } ) - .next() - .attr( { - "aria-hidden": "false" - } ); - } - - this._createIcons(); - - this._setupEvents( options.event ); - - if ( heightStyle === "fill" ) { - maxHeight = parent.height(); - this.element.siblings( ":visible" ).each( function() { - var elem = $( this ), - position = elem.css( "position" ); - - if ( position === "absolute" || position === "fixed" ) { - return; - } - maxHeight -= elem.outerHeight( true ); - } ); - - this.headers.each( function() { - maxHeight -= $( this ).outerHeight( true ); - } ); - - this.headers.next() - .each( function() { - $( this ).height( Math.max( 0, maxHeight - - $( this ).innerHeight() + $( this ).height() ) ); - } ) - .css( "overflow", "auto" ); - } else if ( heightStyle === "auto" ) { - maxHeight = 0; - this.headers.next() - .each( function() { - var isVisible = $( this ).is( ":visible" ); - if ( !isVisible ) { - $( this ).show(); - } - maxHeight = Math.max( maxHeight, $( this ).css( "height", "" ).height() ); - if ( !isVisible ) { - $( this ).hide(); - } - } ) - .height( maxHeight ); - } - }, - - _activate: function( index ) { - var active = this._findActive( index )[ 0 ]; - - // Trying to activate the already active panel - if ( active === this.active[ 0 ] ) { - return; - } - - // Trying to collapse, simulate a click on the currently active header - active = active || this.active[ 0 ]; - - this._eventHandler( { - target: active, - currentTarget: active, - preventDefault: $.noop - } ); - }, - - _findActive: function( selector ) { - return typeof selector === "number" ? this.headers.eq( selector ) : $(); - }, - - _setupEvents: function( event ) { - var events = { - keydown: "_keydown" - }; - if ( event ) { - $.each( event.split( " " ), function( index, eventName ) { - events[ eventName ] = "_eventHandler"; - } ); - } - - this._off( this.headers.add( this.headers.next() ) ); - this._on( this.headers, events ); - this._on( this.headers.next(), { keydown: "_panelKeyDown" } ); - this._hoverable( this.headers ); - this._focusable( this.headers ); - }, - - _eventHandler: function( event ) { - var activeChildren, clickedChildren, - options = this.options, - active = this.active, - clicked = $( event.currentTarget ), - clickedIsActive = clicked[ 0 ] === active[ 0 ], - collapsing = clickedIsActive && options.collapsible, - toShow = collapsing ? $() : clicked.next(), - toHide = active.next(), - eventData = { - oldHeader: active, - oldPanel: toHide, - newHeader: collapsing ? $() : clicked, - newPanel: toShow - }; - - event.preventDefault(); - - if ( - - // click on active header, but not collapsible - ( clickedIsActive && !options.collapsible ) || - - // allow canceling activation - ( this._trigger( "beforeActivate", event, eventData ) === false ) ) { - return; - } - - options.active = collapsing ? false : this.headers.index( clicked ); - - // When the call to ._toggle() comes after the class changes - // it causes a very odd bug in IE 8 (see #6720) - this.active = clickedIsActive ? $() : clicked; - this._toggle( eventData ); - - // Switch classes - // corner classes on the previously active header stay after the animation - this._removeClass( active, "ui-accordion-header-active", "ui-state-active" ); - if ( options.icons ) { - activeChildren = active.children( ".ui-accordion-header-icon" ); - this._removeClass( activeChildren, null, options.icons.activeHeader ) - ._addClass( activeChildren, null, options.icons.header ); - } - - if ( !clickedIsActive ) { - this._removeClass( clicked, "ui-accordion-header-collapsed" ) - ._addClass( clicked, "ui-accordion-header-active", "ui-state-active" ); - if ( options.icons ) { - clickedChildren = clicked.children( ".ui-accordion-header-icon" ); - this._removeClass( clickedChildren, null, options.icons.header ) - ._addClass( clickedChildren, null, options.icons.activeHeader ); - } - - this._addClass( clicked.next(), "ui-accordion-content-active" ); - } - }, - - _toggle: function( data ) { - var toShow = data.newPanel, - toHide = this.prevShow.length ? this.prevShow : data.oldPanel; - - // Handle activating a panel during the animation for another activation - this.prevShow.add( this.prevHide ).stop( true, true ); - this.prevShow = toShow; - this.prevHide = toHide; - - if ( this.options.animate ) { - this._animate( toShow, toHide, data ); - } else { - toHide.hide(); - toShow.show(); - this._toggleComplete( data ); - } - - toHide.attr( { - "aria-hidden": "true" - } ); - toHide.prev().attr( { - "aria-selected": "false", - "aria-expanded": "false" - } ); - - // if we're switching panels, remove the old header from the tab order - // if we're opening from collapsed state, remove the previous header from the tab order - // if we're collapsing, then keep the collapsing header in the tab order - if ( toShow.length && toHide.length ) { - toHide.prev().attr( { - "tabIndex": -1, - "aria-expanded": "false" - } ); - } else if ( toShow.length ) { - this.headers.filter( function() { - return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0; - } ) - .attr( "tabIndex", -1 ); - } - - toShow - .attr( "aria-hidden", "false" ) - .prev() - .attr( { - "aria-selected": "true", - "aria-expanded": "true", - tabIndex: 0 - } ); - }, - - _animate: function( toShow, toHide, data ) { - var total, easing, duration, - that = this, - adjust = 0, - boxSizing = toShow.css( "box-sizing" ), - down = toShow.length && - ( !toHide.length || ( toShow.index() < toHide.index() ) ), - animate = this.options.animate || {}, - options = down && animate.down || animate, - complete = function() { - that._toggleComplete( data ); - }; - - if ( typeof options === "number" ) { - duration = options; - } - if ( typeof options === "string" ) { - easing = options; - } - - // fall back from options to animation in case of partial down settings - easing = easing || options.easing || animate.easing; - duration = duration || options.duration || animate.duration; - - if ( !toHide.length ) { - return toShow.animate( this.showProps, duration, easing, complete ); - } - if ( !toShow.length ) { - return toHide.animate( this.hideProps, duration, easing, complete ); - } - - total = toShow.show().outerHeight(); - toHide.animate( this.hideProps, { - duration: duration, - easing: easing, - step: function( now, fx ) { - fx.now = Math.round( now ); - } - } ); - toShow - .hide() - .animate( this.showProps, { - duration: duration, - easing: easing, - complete: complete, - step: function( now, fx ) { - fx.now = Math.round( now ); - if ( fx.prop !== "height" ) { - if ( boxSizing === "content-box" ) { - adjust += fx.now; - } - } else if ( that.options.heightStyle !== "content" ) { - fx.now = Math.round( total - toHide.outerHeight() - adjust ); - adjust = 0; - } - } - } ); - }, - - _toggleComplete: function( data ) { - var toHide = data.oldPanel, - prev = toHide.prev(); - - this._removeClass( toHide, "ui-accordion-content-active" ); - this._removeClass( prev, "ui-accordion-header-active" ) - ._addClass( prev, "ui-accordion-header-collapsed" ); - - // Work around for rendering bug in IE (#5421) - if ( toHide.length ) { - toHide.parent()[ 0 ].className = toHide.parent()[ 0 ].className; - } - this._trigger( "activate", null, data ); - } -} ); - - - -var safeActiveElement = $.ui.safeActiveElement = function( document ) { - var activeElement; - - // Support: IE 9 only - // IE9 throws an "Unspecified error" accessing document.activeElement from an ' ); + html.attr( 'height', height ); + html.attr( 'width', width ); + if (video.type === 'youtube') { + html.attr( 'src', '//www.youtube.com/embed/' + video.id + '?autoplay=1&rel=0&v=' + video.id ); + } else if (video.type === 'vimeo') { + html.attr( 'src', '//player.vimeo.com/video/' + video.id + '?autoplay=1' ); + } else if (video.type === 'vzaar') { + html.attr( 'src', '//view.vzaar.com/' + video.id + '/player?autoplay=true' ); + } + + iframe = $(html).wrap( '
      ' ).insertAfter(item.find('.owl-video')); + + this._playing = item.addClass('owl-video-playing'); + }; + + /** + * Checks whether an video is currently in full screen mode or not. + * @todo Bad style because looks like a readonly method but changes members. + * @protected + * @returns {Boolean} + */ + Video.prototype.isInFullScreen = function() { + var element = document.fullscreenElement || document.mozFullScreenElement || + document.webkitFullscreenElement; + + return element && $(element).parent().hasClass('owl-video-frame'); + }; + + /** + * Destroys the plugin. + */ + Video.prototype.destroy = function() { + var handler, property; + + this._core.$element.off('click.owl.video'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Video = Video; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Animate Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the animate plugin. + * @class The Navigation Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Animate = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Animate.Defaults, this.core.options); + this.swapping = true; + this.previous = undefined; + this.next = undefined; + + this.handlers = { + 'change.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.previous = this.core.current(); + this.next = e.property.value; + } + }, this), + 'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this.swapping = e.type == 'translated'; + } + }, this), + 'translate.owl.carousel': $.proxy(function(e) { + if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) { + this.swap(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Animate.Defaults = { + animateOut: false, + animateIn: false + }; + + /** + * Toggles the animation classes whenever an translations starts. + * @protected + * @returns {Boolean|undefined} + */ + Animate.prototype.swap = function() { + + if (this.core.settings.items !== 1) { + return; + } + + if (!$.support.animation || !$.support.transition) { + return; + } + + this.core.speed(0); + + var left, + clear = $.proxy(this.clear, this), + previous = this.core.$stage.children().eq(this.previous), + next = this.core.$stage.children().eq(this.next), + incoming = this.core.settings.animateIn, + outgoing = this.core.settings.animateOut; + + if (this.core.current() === this.previous) { + return; + } + + if (outgoing) { + left = this.core.coordinates(this.previous) - this.core.coordinates(this.next); + previous.one($.support.animation.end, clear) + .css( { 'left': left + 'px' } ) + .addClass('animated owl-animated-out') + .addClass(outgoing); + } + + if (incoming) { + next.one($.support.animation.end, clear) + .addClass('animated owl-animated-in') + .addClass(incoming); + } + }; + + Animate.prototype.clear = function(e) { + $(e.target).css( { 'left': '' } ) + .removeClass('animated owl-animated-out owl-animated-in') + .removeClass(this.core.settings.animateIn) + .removeClass(this.core.settings.animateOut); + this.core.onTransitionEnd(); + }; + + /** + * Destroys the plugin. + * @public + */ + Animate.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this.core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Animate = Animate; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Autoplay Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author Artus Kolanowski + * @author David Deutsch + * @author Tom De Caluwé + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the autoplay plugin. + * @class The Autoplay Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Autoplay = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * The autoplay timeout id. + * @type {Number} + */ + this._call = null; + + /** + * Depending on the state of the plugin, this variable contains either + * the start time of the timer or the current timer value if it's + * paused. Since we start in a paused state we initialize the timer + * value. + * @type {Number} + */ + this._time = 0; + + /** + * Stores the timeout currently used. + * @type {Number} + */ + this._timeout = 0; + + /** + * Indicates whenever the autoplay is paused. + * @type {Boolean} + */ + this._paused = true; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'settings') { + if (this._core.settings.autoplay) { + this.play(); + } else { + this.stop(); + } + } else if (e.namespace && e.property.name === 'position' && this._paused) { + // Reset the timer. This code is triggered when the position + // of the carousel was changed through user interaction. + this._time = 0; + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoplay) { + this.play(); + } + }, this), + 'play.owl.autoplay': $.proxy(function(e, t, s) { + if (e.namespace) { + this.play(t, s); + } + }, this), + 'stop.owl.autoplay': $.proxy(function(e) { + if (e.namespace) { + this.stop(); + } + }, this), + 'mouseover.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'mouseleave.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.play(); + } + }, this), + 'touchstart.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'touchend.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause) { + this.play(); + } + }, this) + }; + + // register event handlers + this._core.$element.on(this._handlers); + + // set default options + this._core.options = $.extend({}, Autoplay.Defaults, this._core.options); + }; + + /** + * Default options. + * @public + */ + Autoplay.Defaults = { + autoplay: false, + autoplayTimeout: 5000, + autoplayHoverPause: false, + autoplaySpeed: false + }; + + /** + * Transition to the next slide and set a timeout for the next transition. + * @private + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype._next = function(speed) { + this._call = window.setTimeout( + $.proxy(this._next, this, speed), + this._timeout * (Math.round(this.read() / this._timeout) + 1) - this.read() + ); + + if (this._core.is('interacting') || document.hidden) { + return; + } + this._core.next(speed || this._core.settings.autoplaySpeed); + } + + /** + * Reads the current timer value when the timer is playing. + * @public + */ + Autoplay.prototype.read = function() { + return new Date().getTime() - this._time; + }; + + /** + * Starts the autoplay. + * @public + * @param {Number} [timeout] - The interval before the next animation starts. + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype.play = function(timeout, speed) { + var elapsed; + + if (!this._core.is('rotating')) { + this._core.enter('rotating'); + } + + timeout = timeout || this._core.settings.autoplayTimeout; + + // Calculate the elapsed time since the last transition. If the carousel + // wasn't playing this calculation will yield zero. + elapsed = Math.min(this._time % (this._timeout || timeout), timeout); + + if (this._paused) { + // Start the clock. + this._time = this.read(); + this._paused = false; + } else { + // Clear the active timeout to allow replacement. + window.clearTimeout(this._call); + } + + // Adjust the origin of the timer to match the new timeout value. + this._time += this.read() % timeout - elapsed; + + this._timeout = timeout; + this._call = window.setTimeout($.proxy(this._next, this, speed), timeout - elapsed); + }; + + /** + * Stops the autoplay. + * @public + */ + Autoplay.prototype.stop = function() { + if (this._core.is('rotating')) { + // Reset the clock. + this._time = 0; + this._paused = true; + + window.clearTimeout(this._call); + this._core.leave('rotating'); + } + }; + + /** + * Pauses the autoplay. + * @public + */ + Autoplay.prototype.pause = function() { + if (this._core.is('rotating') && !this._paused) { + // Pause the clock. + this._time = this.read(); + this._paused = true; + + window.clearTimeout(this._call); + } + }; + + /** + * Destroys the plugin. + */ + Autoplay.prototype.destroy = function() { + var handler, property; + + this.stop(); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Navigation Plugin + * @version 2.3.4 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the navigation plugin. + * @class The Navigation Plugin + * @param {Owl} carousel - The Owl Carousel. + */ + var Navigation = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Indicates whether the plugin is initialized or not. + * @protected + * @type {Boolean} + */ + this._initialized = false; + + /** + * The current paging indexes. + * @protected + * @type {Array} + */ + this._pages = []; + + /** + * All DOM elements of the user interface. + * @protected + * @type {Object} + */ + this._controls = {}; + + /** + * Markup for an indicator. + * @protected + * @type {Array.} + */ + this._templates = []; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * Overridden methods of the carousel. + * @protected + * @type {Object} + */ + this._overrides = { + next: this._core.next, + prev: this._core.prev, + to: this._core.to + }; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'prepared.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.push('
      ' + + $(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '
      '); + } + }, this), + 'added.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 0, this._templates.pop()); + } + }, this), + 'remove.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 1); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.draw(); + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && !this._initialized) { + this._core.trigger('initialize', null, 'navigation'); + this.initialize(); + this.update(); + this.draw(); + this._initialized = true; + this._core.trigger('initialized', null, 'navigation'); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._initialized) { + this._core.trigger('refresh', null, 'navigation'); + this.update(); + this.draw(); + this._core.trigger('refreshed', null, 'navigation'); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Navigation.Defaults, this._core.options); + + // register event handlers + this.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + * @todo Rename `slideBy` to `navBy` + */ + Navigation.Defaults = { + nav: false, + navText: [ + '', + '' + ], + navSpeed: false, + navElement: 'button type="button" role="presentation"', + navContainer: false, + navContainerClass: 'owl-nav', + navClass: [ + 'owl-prev', + 'owl-next' + ], + slideBy: 1, + dotClass: 'owl-dot', + dotsClass: 'owl-dots', + dots: true, + dotsEach: false, + dotsData: false, + dotsSpeed: false, + dotsContainer: false + }; + + /** + * Initializes the layout of the plugin and extends the carousel. + * @protected + */ + Navigation.prototype.initialize = function() { + var override, + settings = this._core.settings; + + // create DOM structure for relative navigation + this._controls.$relative = (settings.navContainer ? $(settings.navContainer) + : $('
      ').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled'); + + this._controls.$previous = $('<' + settings.navElement + '>') + .addClass(settings.navClass[0]) + .html(settings.navText[0]) + .prependTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.prev(settings.navSpeed); + }, this)); + this._controls.$next = $('<' + settings.navElement + '>') + .addClass(settings.navClass[1]) + .html(settings.navText[1]) + .appendTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.next(settings.navSpeed); + }, this)); + + // create DOM structure for absolute navigation + if (!settings.dotsData) { + this._templates = [ $('