diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php
index a56edac..ac74dcb 100644
--- a/app/Http/Controllers/AuthController.php
+++ b/app/Http/Controllers/AuthController.php
@@ -22,7 +22,7 @@ class AuthController extends Controller
$this->hasher = $hasher;
}
/**
- * API Send verification code
+ * API Send verification code
*
* @param Request $request
* @return \Illuminate\Http\JsonResponse
@@ -34,7 +34,7 @@ class AuthController extends Controller
];
$validator = Validator::make($credentials, $rules);
- // create user if not exist
+ // create user if not exist
$user = User::firstOrNew([
'phone' => $request->phone
]);
@@ -61,7 +61,7 @@ class AuthController extends Controller
return response()->json(['success'=> true, 'message'=> 'A verification code has been send to your mobile number.' ]);
}
-
+
/**
* API Verify User
*
@@ -72,7 +72,7 @@ class AuthController extends Controller
{
$credentials = $request->only('phone', 'token');
- // check if user already verified
+ // check if user already verified
$check_user = User::where('phone', $request->phone)->first();
if(!is_null($check_user)){
if($check_user->is_verified == 1){
@@ -89,7 +89,7 @@ class AuthController extends Controller
]);
}
- // check and verify valid token
+ // check and verify valid token
$check_token = $check_user->phoneVerification()->where('token', $request->token)->first();
if(!is_null($check_token)){
$check_user->is_verified = 1;
@@ -101,10 +101,10 @@ class AuthController extends Controller
}
// all good so return the token
return response()->json(['success' => true, 'data'=> [ 'token' => $userToken ]]);
- }
+ }
return response()->json(['success'=> false, 'error'=> "Verification code is invalid."]);
}
-
+
/**
* API Register
*
@@ -114,28 +114,34 @@ class AuthController extends Controller
public function updateUser(Request $request)
{
$credentials = $request->only('role', 'name', 'password', 'password_confirmation');
-
+
$rules = [
'name' => 'required|max:255',
'role' => 'required',
'password' => 'required|confirmed|min:6'
];
-
+
$validator = Validator::make($credentials, $rules);
if($validator->fails()) {
return response()->json(['success'=> false, 'error'=> $validator->messages()]);
}
+<<<<<<< HEAD
+=======
+
+
+
+>>>>>>> d8a439fa425cb71cda9f9fe4f2864e4394138198
$name = $request->name;
$password = $request->password;
$role = $request->role;
-
- // find role
+
+ // find role
$role = Role::where('name','=',$role)->first();
$user = Auth::user();
- // attach role to user
+ // attach role to user
$user->attachRole($role);
$user->update(['name' => $name, 'password' => Hash::make($password)]);
return response()->json(['success'=> true, 'message'=> 'Profile updated.']);
@@ -151,7 +157,7 @@ class AuthController extends Controller
public function login(Request $request)
{
$credentials = $request->only('phone', 'password');
-
+
$rules = [
'phone' => 'required|digits:11',
'password' => 'required',
@@ -160,9 +166,9 @@ class AuthController extends Controller
if($validator->fails()) {
return response()->json(['success'=> false, 'error'=> $validator->messages()]);
}
-
+
$credentials['is_verified'] = 1;
-
+
try {
// attempt to verify the credentials and create a token for the user
if (! $token = JWTAuth::attempt($credentials)) {
@@ -185,7 +191,7 @@ class AuthController extends Controller
*/
public function logout(Request $request) {
$this->validate($request, ['token' => 'required']);
-
+
try {
JWTAuth::invalidate($request->input('token'));
return response()->json(['success' => true, 'message'=> "You have successfully logged out."]);
@@ -203,7 +209,7 @@ class AuthController extends Controller
*/
public function recover(Request $request)
{
-
+
$credentials = $request->only('phone');
$rules = [
@@ -220,7 +226,7 @@ class AuthController extends Controller
if ($user){
$token = str_random(64);
DB::table(config('auth.passwords.users.table'))->insert([
- 'phone' => $user->phone,
+ 'phone' => $user->phone,
'token' => $token
]);
return response()->json([
@@ -229,7 +235,7 @@ class AuthController extends Controller
}
/*
- todo
+ todo
send SMS
*/
@@ -247,7 +253,7 @@ class AuthController extends Controller
*/
public function reset(Request $request)
{
-
+
$credentials = $request->only('token', 'password', 'password_confirmation');
$rules = [
diff --git a/public/.vs/IZYIM-mobile-client/v15/.suo b/public/.vs/IZYIM-mobile-client/v15/.suo
new file mode 100644
index 0000000..47d5216
Binary files /dev/null and b/public/.vs/IZYIM-mobile-client/v15/.suo differ
diff --git a/public/.vs/IZYIM/v15/.suo b/public/.vs/IZYIM/v15/.suo
new file mode 100644
index 0000000..edd49e4
Binary files /dev/null and b/public/.vs/IZYIM/v15/.suo differ
diff --git a/public/.vs/VSWorkspaceState.json b/public/.vs/VSWorkspaceState.json
new file mode 100644
index 0000000..0bef578
--- /dev/null
+++ b/public/.vs/VSWorkspaceState.json
@@ -0,0 +1,7 @@
+{
+ "ExpandedNodes": [
+ ""
+ ],
+ "SelectedNode": "\\arrangements-delivery_arrangements2.html",
+ "PreviewInSolutionExplorer": false
+}
\ No newline at end of file
diff --git a/public/.vs/config/applicationhost.config b/public/.vs/config/applicationhost.config
new file mode 100644
index 0000000..5441f24
--- /dev/null
+++ b/public/.vs/config/applicationhost.config
@@ -0,0 +1,1022 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/.vs/slnx.sqlite b/public/.vs/slnx.sqlite
new file mode 100644
index 0000000..e2fb3cb
Binary files /dev/null and b/public/.vs/slnx.sqlite differ
diff --git a/public/README.md b/public/README.md
new file mode 100644
index 0000000..37d5f2e
--- /dev/null
+++ b/public/README.md
@@ -0,0 +1 @@
+PhoneGap
diff --git a/public/arrangements-delivery_arrangements1.1.html b/public/arrangements-delivery_arrangements1.1.html
new file mode 100644
index 0000000..e634f74
--- /dev/null
+++ b/public/arrangements-delivery_arrangements1.1.html
@@ -0,0 +1,395 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT1-DETAILS
+
+
+
+
+
+
+
+
+
+
+
+
+ Delivery Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-delivery_arrangements1.2.html b/public/arrangements-delivery_arrangements1.2.html
new file mode 100644
index 0000000..260609e
--- /dev/null
+++ b/public/arrangements-delivery_arrangements1.2.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+ AzureUI - DELIVERY ARRANGEMENTS1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delivery Arrangement Status
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-delivery_arrangements1.html b/public/arrangements-delivery_arrangements1.html
new file mode 100644
index 0000000..f29f88b
--- /dev/null
+++ b/public/arrangements-delivery_arrangements1.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+ AzureUI - DELIVERY ARRANGEMENTS1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delivery Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-delivery_arrangements2.html b/public/arrangements-delivery_arrangements2.html
new file mode 100644
index 0000000..1413d7a
--- /dev/null
+++ b/public/arrangements-delivery_arrangements2.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+ AzureUI - DELIVERY ARRANGEMENTS1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delivery Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-delivery_arrangements_review1.html b/public/arrangements-delivery_arrangements_review1.html
new file mode 100644
index 0000000..2674b8b
--- /dev/null
+++ b/public/arrangements-delivery_arrangements_review1.html
@@ -0,0 +1,106 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT1-DETAILS
+
+
+
+
+
+
+
+
+
+
+
+
+ Delivery Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-delivery_arrangements_review2.html b/public/arrangements-delivery_arrangements_review2.html
new file mode 100644
index 0000000..384407a
--- /dev/null
+++ b/public/arrangements-delivery_arrangements_review2.html
@@ -0,0 +1,446 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT2-ARRANGEMENT DETAILS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements1.1.html b/public/arrangements-shipment_arrangements1.1.html
new file mode 100644
index 0000000..cf2a9a5
--- /dev/null
+++ b/public/arrangements-shipment_arrangements1.1.html
@@ -0,0 +1,376 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT1-
+
+
+
+
+
+
+
+
+
+
+
+
+ Shipment Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements1.html b/public/arrangements-shipment_arrangements1.html
new file mode 100644
index 0000000..aab67ab
--- /dev/null
+++ b/public/arrangements-shipment_arrangements1.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+ AzureUI - SHIPMENT ARRANGEMENTS1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Shipment Arrangement Status
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements2.html b/public/arrangements-shipment_arrangements2.html
new file mode 100644
index 0000000..0734942
--- /dev/null
+++ b/public/arrangements-shipment_arrangements2.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+ AzureUI - SHIPMENT ARRANGEMENTS1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Shipment Arrangement Status
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements_review-custom.html b/public/arrangements-shipment_arrangements_review-custom.html
new file mode 100644
index 0000000..fd1a264
--- /dev/null
+++ b/public/arrangements-shipment_arrangements_review-custom.html
@@ -0,0 +1,106 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE-CUSTOMEXAM
+
+
+
+
+
+
+
+
+
+
+
+
+ Customs Examination
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements_review1.1.html b/public/arrangements-shipment_arrangements_review1.1.html
new file mode 100644
index 0000000..3156966
--- /dev/null
+++ b/public/arrangements-shipment_arrangements_review1.1.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT1-
+
+
+
+
+
+
+
+
+
+
+
+
+ Shipment Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-shipment_arrangements_review1.html b/public/arrangements-shipment_arrangements_review1.html
new file mode 100644
index 0000000..6e7e2a7
--- /dev/null
+++ b/public/arrangements-shipment_arrangements_review1.html
@@ -0,0 +1,349 @@
+
+
+
+
+
+ AzureUI - VIEW SHIPMENT ARRANGEMENT2-DETAILS
+
+
+
+
+
+
+
+
+
+
+
+
+ Shipment Arrangement
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.1.2.html b/public/arrangements-warehouse_receive_note1.1.2.html
new file mode 100644
index 0000000..7c142a8
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.1.2.html
@@ -0,0 +1,239 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.1.html b/public/arrangements-warehouse_receive_note1.1.html
new file mode 100644
index 0000000..dd55ddb
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.1.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.2.html b/public/arrangements-warehouse_receive_note1.2.html
new file mode 100644
index 0000000..d22cb3c
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.2.html
@@ -0,0 +1,138 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.3.html b/public/arrangements-warehouse_receive_note1.3.html
new file mode 100644
index 0000000..ff5e2c3
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.3.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.4.html b/public/arrangements-warehouse_receive_note1.4.html
new file mode 100644
index 0000000..ef92a59
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.4.html
@@ -0,0 +1,139 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note1.html b/public/arrangements-warehouse_receive_note1.html
new file mode 100644
index 0000000..77f60ac
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note1.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note11.1.html b/public/arrangements-warehouse_receive_note11.1.html
new file mode 100644
index 0000000..e3b5f5e
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note11.1.html
@@ -0,0 +1,141 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note11.2.html b/public/arrangements-warehouse_receive_note11.2.html
new file mode 100644
index 0000000..3dce55b
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note11.2.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note11.html b/public/arrangements-warehouse_receive_note11.html
new file mode 100644
index 0000000..a79c999
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note11.html
@@ -0,0 +1,145 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note2.html b/public/arrangements-warehouse_receive_note2.html
new file mode 100644
index 0000000..7f9daab
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note2.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE ADDED
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note_review1.html b/public/arrangements-warehouse_receive_note_review1.html
new file mode 100644
index 0000000..d1ce9fd
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note_review1.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note_review3.1.html b/public/arrangements-warehouse_receive_note_review3.1.html
new file mode 100644
index 0000000..71b8f44
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note_review3.1.html
@@ -0,0 +1,236 @@
+
+
+
+
+
+ AzureUI - WAREHOUSE RECEIVE NOTE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/arrangements-warehouse_receive_note_review4.html b/public/arrangements-warehouse_receive_note_review4.html
new file mode 100644
index 0000000..a0f6328
--- /dev/null
+++ b/public/arrangements-warehouse_receive_note_review4.html
@@ -0,0 +1,131 @@
+
+
+
+
+
+ AzureUI - VIEW RECEIVE NOTE1
+
+
+
+
+
+
+
+
+
+
+
+
+ Warehouse Receive Note
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/avatar.png b/public/avatar.png
new file mode 100644
index 0000000..75a1560
Binary files /dev/null and b/public/avatar.png differ
diff --git a/public/contact-invite.html b/public/contact-invite.html
new file mode 100644
index 0000000..04e1141
--- /dev/null
+++ b/public/contact-invite.html
@@ -0,0 +1,91 @@
+
+
+
+
+
+ AzureUI - SEARCH CONTACT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/create-shipping-order-S1.html b/public/create-shipping-order-S1.html
new file mode 100644
index 0000000..4fd978c
--- /dev/null
+++ b/public/create-shipping-order-S1.html
@@ -0,0 +1,267 @@
+
+
+
+
+
+ AzureUI - CREATE SHIPPING ORDER STEP 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create Shipping Order
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/create-shipping-order-S2.html b/public/create-shipping-order-S2.html
new file mode 100644
index 0000000..b0e77df
--- /dev/null
+++ b/public/create-shipping-order-S2.html
@@ -0,0 +1,336 @@
+
+
+
+
+
+ AzureUI - CREATE SHIPPING ORDER STEP 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create Shipping Order
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/css/font-awesome.min.css b/public/css/font-awesome.min.css
new file mode 100644
index 0000000..540440c
--- /dev/null
+++ b/public/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/public/css/global.style.css b/public/css/global.style.css
new file mode 100644
index 0000000..776e769
--- /dev/null
+++ b/public/css/global.style.css
@@ -0,0 +1,3041 @@
+/*==================================================================
+[AzureUI = Fedrick Darel]
+Primary Use : For Mobile
+Cordova Plug: Work For Phonegap and Ionic
+Purpose Use : To Share The Experience, You Can't Bring The Knowledge With You, When You're Dead
+Contact : fedrickdarel@gmail.com
+
+References and Credit:
+ 1.Font-Awesome (Resource)
+ 2.Webkit (Guide)
+ 3.w3school (Tutorial)
+ 4.GitHub (Loader Guide)
+ 5.GitHub (by eltonmesquita) https://github.com/daneden/animate.css
+ 6.Turboslider (by Baianat) http://www.baianat.com
+
+Content:
+ Read Me :-
+ Stable = Perfect Without Bug
+ Update = Need To Improvise And Can Be Changed Without Effect Others CSS (!Not Guranteed Yet, Only Test 50% Roughly)
+ Fixed = Still Need Fix To Use
+ Unstable = Not Ready For Use
+
+ 0.Default [Stable]
+ 1.Index [Stable/Update]
+ 2.Body [Stable/Update]
+ 3.Wrapper(Main Content) [Stable/Update/Fixed]
+ 4.Navigation [Stable/Update/Fixed]
+ 5.Inline Wrapper [Stable/Update]
+ 6.Header [Fixed/Update]
+ 7.Main [Stable/Update]
+ 8.Container [Fixed/Update]
+ 9.Form Element [Unstable/Fixed/Update]
+ 10.Accordion [Fixed/Update]
+ 11.Wizard [Stable]
+ 12.Tab Control [Stable]
+ 13.Popup [Fixed/Update]
+ 14.List [Fixed/Update]
+ 15.Search [Stable/Fixed/Update]
+ 16.Divider [Stable/Fixed/Update]
+ 17.Profile Image [Stable/Update]
+ 18.Gallery and Album [Unstable/Update]
+ 19.Contact [Stable/Update]
+ 20.Page Loader [Unstable/Fixed]
+ 21.Mobile Support Interface Fixer [Stable]
+ 22.Background Color Helpers [Stable]
+ 23.Text Helpers [Fixed/Update]
+ 24.Text Animation [Unstable/Update]
+ 25.Contact Search [Stable/Fixed/Update]
+
+==================================================================*/
+
+/*-------------------------------------------------------------------
+[0. Reset and Set Defaults]
+*------------------------------------------------------------------*/
+a {
+ color: #667F97;
+ text-decoration: none;
+ font-weight: 700;
+ outline: none;
+}
+.a-meter-title {
+ color: #000;
+ text-decoration: none;
+ font-size: 17px;
+ font-weight: 700;
+ outline: none;
+}
+.a-meter-sub-title {
+ color: #667F97;
+ text-decoration: none;
+ font-size: 17px;
+ font-weight: 700;
+ outline: none;
+}
+.a-meter-text-data {
+ color: #000;
+ text-decoration: none;
+ font-size: 15px;
+ font-weight: 700;
+ outline: none;
+}
+body *{
+ box-sizing: border-box;
+}
+input,button, select, textarea, label{
+ font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
+ font-size: 14px;
+ color: #667F97;
+ line-height: 1.4;
+ font-weight: 600;
+}
+::-webkit-input-placeholder { /* Chrome/Opera/Safari */
+ color: #667F97;
+}
+::-moz-placeholder { /* Firefox 19+ */
+ color: #667F97;
+}
+:-ms-input-placeholder { /* IE 10+ */
+ color: #667F97;
+}
+:-moz-placeholder { /* Firefox 18- */
+ color: #667F97;
+}
+/*end of part 0----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[1. Index]
+-------------------------------------------------------------------*/
+.in {
+ width: 50%;
+ height: 50px;
+ float: left;
+ outline: none;
+ border: none;
+ font-size: 20px;
+ cursor: pointer;
+ background-color: #3a52b0;
+ color: white;
+ font-family: Nunito;
+}
+
+.up {
+ width: 50%;
+ height: 50px;
+ float: left;
+ outline: none;
+ border: none;
+ font-size: 20px;
+ cursor: pointer;
+ background-color: #db3939;
+ color: white;
+ font-family: Nunito;
+}
+
+/*-------------------------------------------------------------------
+[2. Body]
+*------------------------------------------------------------------*/
+body{
+ margin: 0;
+ padding: 0;
+ background-color: #FFF;
+ font-family: Nunito;
+ font-size: 14px;
+ color: #FFF;
+ line-height: 1.4;
+ font-weight: 400;
+ box-sizing: border-box;
+ -webkit-font-smoothing: antialiased;
+}
+/*end of part 2----------------------------------------------------*/
+
+
+/*-------------------------------------------------------------------
+[3. Wrapper]
+*------------------------------------------------------------------*/
+.wrapper{
+ position: fixed;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ background-position: center center;
+ background-size: cover;
+ background-repeat: no-repeat;
+
+}
+.wrapper.with-bg-image{
+ background-image: url('../img/background-image.jpg');
+}
+/*end of part 3----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[4. Navigation]
+*------------------------------------------------------------------*/
+.nav-menu{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+nav.menu.opened{
+ right: 0; /* Right */
+}
+nav.menu {
+ position: absolute;
+ right: -70%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 70%;
+ background-color: #069;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+
+nav.menu .nav-header{
+ height: 150px;
+ background-color: #FFF;
+ text-align: center;
+ padding-top: 35px;
+}
+
+nav .nav-container{
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 150px;
+ overflow: auto;
+ background-color: #FFF;
+}
+
+nav.menu ul{
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+nav.menu ul li{
+ display: block;
+ width: 100%;
+}
+nav.menu ul.main-menu > li.active{
+ background-color: #DDD;
+}
+
+nav.menu ul.main-menu > li.active > ul{
+ display: block;
+}
+
+nav.menu ul.main-menu > li ul li.active{
+ background-color: rgba(0,0,0,0.2);
+}
+
+nav.menu ul.main-menu>li>a{
+ display: block;
+ padding: 15px 20px;
+ border-bottom: solid 1px rgba(0,0,0,0.1);
+ font-weight: 600;
+}
+nav.menu ul.main-menu>li>a>i{
+ display: inline-block;
+ width: 24px;
+}
+nav.menu ul.main-menu>li>a>span{
+ display: inline-block;
+ float: right;
+ opacity: 0.5;
+}
+nav.menu ul.main-menu>li ul{
+ display: none;
+}
+nav.menu ul.main-menu>li li a{
+ display: block;
+ padding: 15px 20px 8px 48px;
+ border-bottom: solid 1px rgba(0,0,0,0.1);
+ font-weight: 400;
+}
+/*[Company Nav]*/
+.AznavC-menuC{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+AznavC.menuC.opened{
+ right: 0; /* Right */
+}
+AznavC.menuC {
+ position: absolute;
+ right: -100%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+AznavC.menuC .AznavC-header{
+ position: absolute;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+}
+AznavC .AznavC-container {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+ background-color: #FFF;
+}
+AznavC.menuC .AznavC-header .page-title {
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/*[Branch Nav]*/
+.AznavB-menuB{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+AznavB.menuB.opened{
+ right: 0; /* Right */
+}
+AznavB.menuB {
+ position: absolute;
+ right: -100%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+AznavB.menuB .AznavB-header{
+ position: absolute;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+}
+AznavB .AznavB-container {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+ background-color: #FFF;
+}
+AznavB.menuB .AznavB-header .page-title {
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/*[Delivery Nav]*/
+.AznavD-menuD{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+AznavD.menuD.opened{
+ right: 0; /* Right */
+}
+AznavD.menuD {
+ position: absolute;
+ right: -100%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+AznavD.menuD .AznavD-header{
+ position: absolute;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+}
+AznavD .AznavD-container {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+ background-color: #FFF;
+}
+AznavD.menuD .AznavD-header .page-title {
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/*[Delivery Nav]*/
+.AznavS-menuS{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+AznavS.menuS.opened{
+ right: 0; /* Right */
+}
+AznavS.menuS {
+ position: absolute;
+ right: -100%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+AznavS.menuS .AznavS-header{
+ position: absolute;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+}
+AznavS .AznavS-container {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+ background-color: #FFF;
+}
+AznavS.menuS .AznavS-header .page-title {
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/*[Personal Nav]*/
+.AznavP-menuP{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 999;
+ background-color: rgba(0,0,0,0.3);
+ display: none;
+}
+AznavP.menuP.opened{
+ right: 0; /* Right */
+}
+AznavP.menuP {
+ position: absolute;
+ right: -100%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+AznavP.menuP .AznavP-header{
+ position: absolute;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+}
+AznavP .AznavP-container {
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+ background-color: #FFF;
+}
+AznavP.menuP .AznavP-header .page-title {
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+/*end of part 4----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[5. Inline Wrapper]
+*------------------------------------------------------------------*/
+.wrapper-inline{
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ top: 0;
+ background-color: #FFF;
+ overflow: auto;
+}
+.wrapper.with-bg-image .wrapper-inline{
+ background-color: rgba(255,255,255,0.9);
+}
+/*end of part 5----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[6. Header]
+*------------------------------------------------------------------*/
+header{
+ position: fixed;
+ z-index: 998;
+ top: 0;
+ left: 0;
+ right: 0;
+ background-color: #FFF;
+ height: 50px;
+ padding: 10px;
+
+}
+
+header.no-background{
+ background-color: transparent;
+ border-bottom: none;
+ color: #FFF;
+ -webkit-transition: background-color .3s ease-in-out;
+ -moz-transition: background-color .3s ease-in-out;
+ -o-transition: background-color .3s ease-in-out;
+ transition: background-color .3s ease-in-out;
+}
+header.no-background a{
+ color: #FFF;
+}
+header.no-background .navi-menu-button em{
+ background: #FFF;
+}
+
+header.set-bg{
+ background-color: #FFF;
+ border-bottom:solid 1px #EEE;
+ color: #667F97;
+ -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
+}
+header.set-bg a{
+ color: #667F97;
+}
+header.set-bg .navi-menu-button em{
+ background: #667F97;
+}
+
+header .go-back-link{
+ width: 30px;
+ height: 30px;
+ display: inline-block;
+ line-height: 30px;
+ text-align: center;
+ float: left;
+ margin-left: -10px;
+ color: #CCC;
+}
+
+header .go-back-link-indexB{
+ width: 30px;
+ height: 30px;
+ display: inline-block;
+ line-height: 30px;
+ text-align: center;
+ float: left;
+ margin-left: -10px;
+ color: #CCC;
+}
+
+.subheader{
+ font-size: 16px;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+}
+
+header .page-title{
+ font-size: 16px;
+ position: absolute;
+ left: 50px;
+ right: 50px;
+ top: 10px;
+ margin: 0;
+ padding: 0;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ letter-spacing: 2px;
+ overflow: hidden;
+ text-overflow:ellipsis;
+ -o-text-overflow: ellipsis;
+ -ms-text-overflow: ellipsis;
+ white-space: nowrap;
+}
+header.with-search-icon .page-title{
+ left: 80px;
+ right: 50px;
+}
+.navi-menu-button{
+ width: 30px;
+ height: 30px;
+ float: right;
+ position: relative;
+ cursor: pointer;
+}
+.navi-menu-button em{
+ width: 24px;
+ height: 2px;
+ background-color: #CCC;
+ display: block;
+ position: absolute;
+ border-radius: 30px;
+ right: 0;
+
+ -webkit-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -moz-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -o-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
+}
+.navi-menu-button em:nth-child(1){
+ top: 5px;
+ width: 20px;
+}
+.navi-menu-button em:nth-child(2){
+ top: 13px;
+}
+.navi-menu-button em:nth-child(3){
+ top: 20px;
+ width: 20px;
+}
+
+.navi-menu-button.focused em:nth-child(1){
+ -ms-transform: rotate(-45deg);
+ -webkit-transform: rotate(-45deg);
+ transform: rotate(-45deg);
+ top: 14px;
+}
+.navi-menu-button.focused em:nth-child(2){
+ width: 0;
+}
+.navi-menu-button.focused em:nth-child(3){
+ -ms-transform: rotate(45deg);
+ -webkit-transform: rotate(45deg);
+ transform: rotate(45deg);
+ top: 14px;
+}
+/*end of part 6----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[7. Main]
+*------------------------------------------------------------------*/
+main{
+ margin-top: 60px;
+}
+main.no-margin{
+ margin-top: 0;
+}
+main.fix-top-menu{
+ margin-top: 50px;
+}
+main.no-margin .container{
+ padding: 0;
+}
+main.no-header .TurboWrapper{
+ top: 0;
+}
+/*end of part 7----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[8. Container]
+*------------------------------------------------------------------*/
+section.container{
+ padding: 0 10px;
+}
+
+.meter-container{
+ position: relative;
+ width: 100%;
+ padding: 10px;
+}
+/*end of part 8----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[9. Form Elements]
+*------------------------------------------------------------------*/
+.form-row{
+ display: block;
+ width: 100%;
+ padding: 5px 0;
+ position: relative;
+ color: #000;
+}
+.form-row-rate{
+ display: block;
+ width: 100%;
+ padding: 5px 0;
+ position: relative;
+ color: #000;
+}
+.form-row.no-padding{
+ padding: 0;
+}
+.form-row-group{
+ border-radius: 3px;
+ background-color: #FFF;
+ border:solid 1px #f2f2f2;
+ -webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
+}
+.form-row-group .form-row{
+ padding: 0 10px;
+}
+.form-row-group.with-icons .form-row i{
+ position: absolute;
+ line-height: 20px;
+ width: 24px;
+}
+.form-row-group.with-icons .form-row .form-element{
+ padding-left: 24px;
+}
+.form-row-group.with-icons-no-padding .form-element{
+ padding-left: 0px;
+}
+.form-element{
+ display: block;
+ width: 100%;
+ border:none;
+ border-bottom: solid 1px #EEE;
+ height: 40px;
+ outline: none;
+ line-height: 40px;
+ background-color: #FFF;
+}
+.form-element-code {
+ display: block;
+ width: 50%;
+ border: none;
+ height: 40px;
+ outline: none;
+ line-height: 40px;
+ background-color: #FFF;
+ text-align: center;
+ margin-left: 25%;
+}
+.form-element-code-input {
+ display: block;
+ width: 40%;
+ border: none;
+ border-bottom: solid 1px #000;
+ height: 40px;
+ outline: none;
+ line-height: 40px;
+ background-color: #FFF;
+ text-align: center;
+ margin-left: 30%;
+}
+.form-element-title {
+ display: block;
+ width: 100%;
+ border: none;
+ height: 10px;
+ outline: none;
+ background-color: #FFF;
+}
+
+select.form-element{
+ -webkit-appearance: none;
+ background-color: white;
+ background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDQwMS45OTggNDAxLjk5OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAxLjk5OCA0MDEuOTk4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTczLjA5MiwxNjQuNDUyaDI1NS44MTNjNC45NDksMCw5LjIzMy0xLjgwNywxMi44NDgtNS40MjRjMy42MTMtMy42MTYsNS40MjctNy44OTgsNS40MjctMTIuODQ3ICAgIGMwLTQuOTQ5LTEuODEzLTkuMjI5LTUuNDI3LTEyLjg1TDIxMy44NDYsNS40MjRDMjEwLjIzMiwxLjgxMiwyMDUuOTUxLDAsMjAwLjk5OSwwcy05LjIzMywxLjgxMi0xMi44NSw1LjQyNEw2MC4yNDIsMTMzLjMzMSAgICBjLTMuNjE3LDMuNjE3LTUuNDI0LDcuOTAxLTUuNDI0LDEyLjg1YzAsNC45NDgsMS44MDcsOS4yMzEsNS40MjQsMTIuODQ3QzYzLjg2MywxNjIuNjQ1LDY4LjE0NCwxNjQuNDUyLDczLjA5MiwxNjQuNDUyeiIgZmlsbD0iIzkxOTE5MSIvPgoJCTxwYXRoIGQ9Ik0zMjguOTA1LDIzNy41NDlINzMuMDkyYy00Ljk1MiwwLTkuMjMzLDEuODA4LTEyLjg1LDUuNDIxYy0zLjYxNywzLjYxNy01LjQyNCw3Ljg5OC01LjQyNCwxMi44NDcgICAgYzAsNC45NDksMS44MDcsOS4yMzMsNS40MjQsMTIuODQ4TDE4OC4xNDksMzk2LjU3YzMuNjIxLDMuNjE3LDcuOTAyLDUuNDI4LDEyLjg1LDUuNDI4czkuMjMzLTEuODExLDEyLjg0Ny01LjQyOGwxMjcuOTA3LTEyNy45MDYgICAgYzMuNjEzLTMuNjE0LDUuNDI3LTcuODk4LDUuNDI3LTEyLjg0OGMwLTQuOTQ4LTEuODEzLTkuMjI5LTUuNDI3LTEyLjg0N0MzMzguMTM5LDIzOS4zNTMsMzMzLjg1NCwyMzcuNTQ5LDMyOC45MDUsMjM3LjU0OXoiIGZpbGw9IiM5MTkxOTEiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
+ background-position : right center;
+ background-repeat: no-repeat;
+ padding-right: 1.5em;
+ border-color:transparent;
+ border-bottom: solid 1px #EEE;
+}
+
+.error{
+ color: #cc0c35;
+}
+.error .form-element{
+ border-color: #cc0c35 !important;
+ color: #cc0c35;
+}
+textarea.form-element{
+ resize: none;
+ line-height: 1.4;
+ padding: 10px 0;
+ min-height: 80px;
+}
+select.form-element{
+ padding: 0;
+ margin-left: 0;
+ display: block;
+}
+.form-element:focus{
+ border-color: #2DD67B;
+}
+
+.button{
+ padding: 10px 20px;
+ background-color: #FFF;
+ border:none;
+ border-radius: 3px;
+ text-align: center;
+ font-weight: 600;
+ outline: none;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ cursor: pointer;
+}
+.button.circle{
+ border-radius: 40px;
+}
+.button.block{
+ display: block;
+ width: 100%;
+}
+.button:hover, .button:active, .button:focus{
+ background-color: #f9f9f9;
+}
+.button.darkblue{
+ background-color: #2C6EBC;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+.button.blue{
+ background-color: #60B2FE;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+.button.yellow{
+ background-color: #FFA837;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+.button.red{
+ background-color: #FF6378;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+.button.green{
+ background-color: #2DD67B;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+.button.grey{
+ background-color: #ced3d0;
+ color: #FFF;
+ border-color:transparent;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+.sweet-check{
+ height: 30px;
+ width: 60px;
+ cursor: pointer;
+ border-radius: 30px;
+ border:solid 1px #eee;
+ display: inline-block;
+ position: relative;
+ float: right;
+ background-color: #FFF;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -webkit-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -moz-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -o-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
+}
+.sweet-check input{
+ opacity: 0;
+ position: absolute;
+}
+
+.sweet-check .outline{
+ width: 27px;
+ height: 27px;
+ border-radius: 50%;
+ display: block;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
+ background-color: #FFF;
+ position: absolute;
+ left: 0;
+ -webkit-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -moz-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ -o-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
+ transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
+}
+.sweet-check.checked{
+ background-color: #60B2FE;
+ border-color: #60B2FE;
+}
+.sweet-check.checked .outline{
+ left: 30px;
+}
+/*end of part 9----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[10. Accordion]
+*------------------------------------------------------------------*/
+.expandable-item{
+ background-color: #fff;
+ color: #000;
+ border-radius: 3px;
+ margin-bottom: 1px;
+}
+.expandable-header{
+ background-color: #FFF;
+ padding: 15px;
+ position: relative;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.46);
+ border-radius: 3px;
+ cursor: pointer;
+}
+.expandable-header .list-icon{
+ font-size: 18px;
+ display: inline-block;
+ width: 24px;
+}
+.expandable-header .list-title{
+ font-size: 16px;
+ line-height: 18px;
+ margin: 0;
+ padding: 0;
+ display: inline-block;
+}
+.expandable-header .list-item-extra{
+ position: absolute;
+ right: 40px;
+ top: 17px;
+ font-size: 12px;
+}
+.expandable-header .list-arrow{
+ position: absolute;
+ right: 15px;
+ top: 15px;
+ font-size: 20px;
+}
+.expandable-content{
+ border:solid 1px transparent;
+ border-top: none;
+ border-bottom-right-radius: 3px;
+ border-bottom-left-radius: 3px;
+ overflow: hidden;
+ max-height: 0;
+ -webkit-transition: max-height .2s linear;
+ -moz-transition: max-height .2s linear;
+ -o-transition: max-height .2s linear;
+ transition: max-height .2s linear;
+}
+.expandable-content .padding-content{
+ padding: 15px;
+}
+.expandable-item.active .expandable-content{
+ border-color:#EEE;
+ max-height: 200px;
+}
+.expandable-item.active .list-arrow:before{
+ content: "\f106";
+}
+/*end of part 10----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[11. Wizard]
+*------------------------------------------------------------------*/
+.wizard{
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+}
+.wizard .wizard-item{
+ position: relative;
+}
+.wizard .wizard-content{
+ position: absolute;
+ left: 20px;
+ top: 20px;
+ right: 20px;
+ bottom: 60px;
+ overflow: hidden;
+ text-align: center;
+}
+
+.wizard-page .TurboWrapper{
+ position: absolute;
+ top: 50px;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+.wizard-page .slider-navigation{
+ position: absolute;
+ z-index: 99;
+ bottom: 10px;
+ left: 20px;
+ right: 20px;
+}
+.wizard-skip-link{
+ position: absolute;
+ z-index: 99;
+ bottom: 10px;
+ right: 20px;
+ height: 33px;
+ line-height: 33px;
+ font-weight: 400;
+ cursor: pointer;
+ font-size: 14px;
+}
+.wizard-skip-link:hover{
+ color: #069;
+}
+.dotClass{
+ background-color: #DDD;
+ margin: 5px 3px;
+ width: 6px;
+ height: 6px;
+}
+/*end of part 11----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[12. Tab Control]
+*------------------------------------------------------------------*/
+.tab-item .fix-width .menu-item{
+ display: block;
+ float: left;
+ text-align: center;
+}
+.tab-item .tab-content .content-item{
+ display: none;
+}
+.tab-item .tab-content .active{
+ display: block;
+}
+.tab-item .tab-menu{
+ background-color: #FFF;
+ overflow: hidden;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ z-index: 99;
+}
+.tab-item .menu-item{
+ line-height: 40px;
+}
+.tab-item .menu-item.active{
+ border-bottom: solid 2px #069;
+ color: #069;
+}
+.tab-item .tab-content{
+ padding: 10px;
+}
+.tab-item.fixed-bottom .tab-menu{
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ -webkit-box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
+}
+.tab-item.fixed-bottom .menu-item.active{
+ border-bottom:none;
+ border-top: solid 2px #069;
+ background-color: rgba(0,0,0,0.05);
+}
+.tab-item.fixed-bottom .tab-menu.only-icons .menu-item{
+ font-size: 18px;
+}
+.tab-item.fixed-bottom .tab-content{
+ padding-bottom: 50px;
+}
+/*end of part 12----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[13. Popup]
+*------------------------------------------------------------------*/
+.popup-overlay{
+ position: fixed;
+ z-index: 999;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ background-color: rgba(0,0,0,0.4);
+ overflow: auto;
+ padding: 20px;
+ display: none;
+ cursor: pointer;
+}
+.popup-overlay.no-overlay{
+ background-color: transparent;
+}
+.popup-overlay .popup-container{
+ overflow: hidden;
+ background-color: #FFF;
+ border-radius: 5px;
+ -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
+}
+.popup-overlay .popup-header{
+ border-bottom: solid 1px #000;
+ background-color: #f4f4f4;
+ padding: 10px;
+ position: relative;
+}
+.popup-overlay .popup-title{
+ margin: 0;
+ padding: 0;
+ padding-right: 40px;
+ color: #000;
+}
+.popup-overlay .popup-close{
+ display: block;
+ width: 24px;
+ height: 24px;
+ position: absolute;
+ right: 10px;
+ top: 10px;
+ text-align: center;
+ line-height: 24px;
+ cursor: pointer;
+ color: #000;
+}
+.popup-overlay .popup-content{
+ padding: 10px;
+ min-height: 50px;
+}
+.popup-overlay .popup-footer{
+ border-top:solid 1px #EEE;
+ padding: 10px;
+ text-align: right;
+}
+/*end of part 13----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[14. Lists]
+*------------------------------------------------------------------*/
+/*==================================================================
+[List Box Full Width Version]
+===================================================================*/
+.list-box{
+ width: 100%;
+ position: absolute;
+ margin-left: -10px;
+}
+.list-box .list-item{
+ padding: 15px;
+ background-color: #f8f8f8;
+ display: block;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ overflow: hidden;
+ margin-top: -10px;
+ margin-bottom: 10px;
+}
+.list-box .list-item .sweet-check{
+ float: right;
+}
+.list-box a.list-item:hover, .list-box a.list-item:focus{
+ background-color: #DEE7F0 !important;
+}
+.list-box a.list-item:hover i, .list-box a.list-item:focus i{
+ color: #667F97 !important;
+}
+.list-box .list-item i{
+ font-size: 20px;
+ display: inline-block;
+ line-height: 28px;
+ color: #C5CFD9;
+ float:left;
+ width: 26px;
+}
+
+.list-box .list-item .list-item-title{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ float: left;
+ font-size: 16px;
+}
+.list-box .list-item .list-item-title-contact{
+ font-weight: 700;
+ display: inline-block;
+ font-size: 16px;
+}
+.list-box .list-item .list-item-title-role{
+ font-weight: 700;
+ display: inline-block;
+ float: right;
+ font-size: 16px;
+}
+.list-box .list-item .seperate{
+ display: block;
+ float: left;
+ width: 1px;
+ height: 30px;
+ background-color: #cecece;
+ margin-right: 10px;
+}
+
+.list-box .list-item .seperate-contact{
+ display: block;
+ float: left;
+ width: 1px;
+ height: 40px;
+ background-color: #cecece;
+ margin-right: 10px;
+}
+/*==================================================================
+[List Box Container Version]
+===================================================================*/
+
+
+.list-box-emp .list-item{
+ padding: 15px;
+ background-color: #f8f8f8;
+ display: block;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ overflow: hidden;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.list-box-emp .list-item .sweet-check{
+ float: right;
+}
+.list-box-emp a.list-item:hover, .list-box-emp a.list-item:focus{
+ background-color: #DEE7F0 !important;
+}
+.list-box-emp a.list-item:hover i, .list-box-emp a.list-item:focus i{
+ color: #667F97 !important;
+}
+.list-box-emp .list-item i{
+ font-size: 20px;
+ display: inline-block;
+ line-height: 28px;
+ color: #C5CFD9;
+ float:left;
+ width: 26px;
+}
+
+.list-box-emp .list-item .list-item-title{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ float: left;
+ font-size: 16px;
+ color: #069;
+}
+.list-box-emp .list-item .list-item-title-edit{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ float: right;
+ font-size: 12px;
+ color: rgb(0, 153, 20);
+}
+.list-box-emp .list-item .list-item-title-edit1{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ position: relative;
+ left: 0px;
+ font-size: 13px;
+ color: #069;
+}
+.list-box-emp .list-item .list-item-title-edit2{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ position: relative;
+ left: 10px;
+ font-size: 13px;
+ color: #069;
+}
+.list-box-emp .list-item .list-item-title-edit3{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ position: relative;
+ left: 20px;
+ font-size: 13px;
+ color: #069;
+}
+.list-box-emp .list-item .list-item-title-edit4{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ position: relative;
+ left: 35px;
+ font-size: 13px;
+ color: rgb(0, 153, 20);
+}
+.list-box-emp .list-item .seperate{
+ display: block;
+ float: left;
+ width: 1px;
+ height: 30px;
+ background-color: #cecece;
+ margin-right: 10px;
+}
+
+/*==================================================================
+[List Box Non Container and Tab Version]
+===================================================================*/
+
+.list-box-non {
+ width: 100%;
+
+ margin-left: 0;
+}
+.list-box-non .list-item{
+ padding: 15px;
+ background-color: #f8f8f8;
+ display: block;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ overflow: hidden;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+.list-box-non .list-item .sweet-check{
+ float: right;
+}
+.list-box-non a.list-item:hover, .list-box-non a.list-item:focus{
+ background-color: #DEE7F0 !important;
+}
+.list-box-non a.list-item:hover i, .list-box-non a.list-item:focus i{
+ color: #667F97 !important;
+}
+.list-box-non .list-item i{
+ font-size: 20px;
+ display: inline-block;
+ line-height: 28px;
+ color: #C5CFD9;
+ float:left;
+ width: 26px;
+}
+
+.list-box-non .list-item .list-item-title{
+ font-weight: 700;
+ display: inline-block;
+ line-height: 28px;
+ float: left;
+ font-size: 16px;
+ color: #069;
+}
+.list-box-non .list-item .seperate{
+ display: block;
+ float: left;
+ width: 1px;
+ height: 30px;
+ background-color: #cecece;
+ margin-right: 10px;
+}
+/*end of part 14----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[15. Search]
+*------------------------------------------------------------------*/
+.search-button{
+ width: 30px;
+ height: 30px;
+ text-align: center;
+ line-height: 30px;
+ cursor: pointer;
+ font-size: 16px;
+ display: inline-block;
+ float: left;
+}
+.search-form{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 800;
+ background-color: rgba(255,255,255,0.9);
+ overflow: auto;
+ display: none;
+}
+.search-form .search-input{
+ margin: 70px 20px 40px 20px;
+ position: relative;
+}
+.search-form .form-element{
+ border:solid 1px #EEE;
+ padding: 0 10px;
+ border-radius: 3px;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ border-bottom-width: 2px;
+}
+.search-form .form-element:focus{
+ border-bottom-color: #2DD67B;
+
+}
+.search-form .search-input-btn{
+ position: absolute;
+ width: 37px;
+ height: 37px;
+ right: 1px;
+ top: 1px;
+ background-color: #FFF;
+ border:none;
+ line-height: 37px;
+ text-align: center;
+}
+.search-form .search-input-btn:hover, .search-form .search-input-btn:focus{
+ color: #2DD67B;
+}
+.search-form .recent-search, .search-form .popular-search {
+ padding: 0 20px;
+ margin-bottom: 20px;
+}
+.search-form .search-tag{
+ display: inline-block;
+ padding: 4px 12px;
+ background-color: #FFF;
+ border:solid 1px #DDD;
+ font-weight: 400;
+ border-radius: 15px;
+ margin:0 5px 5px 0;
+}
+.search-form .search-tag:hover, .search-form .search-tag:focus{
+ border-color: #2DD67B;
+ color: #2DD67B;
+}
+.search-form .search-group-title{
+ margin: 0;
+ padding: 0;
+ margin-bottom: 6px;
+}
+.search-form .close-search-form{
+ position: absolute;
+ right: 20px;
+ top: 20px;
+ display: block;
+ width: 30px;
+ height: 30px;
+ text-align: center;
+ line-height: 30px;
+ border:solid 1px #667F97;
+ border-radius: 3px;
+ cursor: pointer;
+}
+.search-form .close-search-form:focus, .search-form .close-search-form:hover{
+ background-color: #667F97;
+ color: #FFF;
+}
+.search-result-header{
+ background-color: #FFF;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+.search-result-header.fix-searchbar{
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ padding: 0 10px;
+ z-index: 100;
+}
+.search-result-header.fix-searchbar + .search-result-container{
+ padding-top: 30px;
+}
+.search-result-header .form-element{
+ padding: 0 30px;
+}
+.search-result-header.fix-searchbar .search-result-btn{
+ left: 0;
+}
+.search-result-header .search-result-btn{
+ position: absolute;
+ right: 0;
+ top: 0;
+ height: 38px;
+ width: 38px;
+ border:none;
+ background-color: #FFF;
+ overflow: hidden;
+ outline: none;
+ cursor: pointer;
+}
+.search-result-header .search-result-btn:focus, .search-result-header .search-result-btn:hover{
+ color: #2DD67B;
+}
+/*end of part 15----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[16. Divider]
+*------------------------------------------------------------------*/
+.form-divider{
+ display: block;
+ width: 100%;
+ clear: both;
+ height: 10px;
+ margin: 10px 0;
+}
+.form-divider-2 {
+ display: block;
+ width: 100%;
+ clear: both;
+ height: 2px;
+ margin: 10px 0;
+}
+.form-divider-3 {
+ display: block;
+ width: 100%;
+ clear: both;
+ height: 35px;
+ margin: 10px 0;
+}
+.form-fixed{
+ height: 60px;
+}
+.form-fixed-large{
+ height: 120px;
+}
+.form-mini-divider{
+ display: block;
+ width: 100%;
+ clear: both;
+ height: 1px;
+ margin: 5px 0;
+}
+.form-label-divider{
+ display: block;
+ width: 100%;
+ clear: both;
+ height: 1px;
+ background-color: #CCC;
+ text-align: center;
+ opacity: 0.5;
+}
+.form-label-divider span{
+ position: relative;
+ top: -8px;
+ font-weight: 700;
+ display: inline-block;
+ background-color: #FFF;
+ padding: 0 10px;
+}
+/*end of part 16----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[17. Profile Page]
+*------------------------------------------------------------------*/
+.profile-image{
+ height: 120px;
+}
+.profile-image-img {
+ width: 90px;
+ height: 90px;
+ padding: 5px;
+ border-radius: 50%;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+ float: left;
+}
+.profile-image-com {
+ width: 90px;
+ height: 90px;
+ padding: 5px;
+ border-radius: 50%;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+.profile-image-item {
+ width: 220px;
+ height: 120px;
+ padding: 5px;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+.profile-image-selection{
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+.profile-image-xAxis{
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+.profile-image-staff {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+ margin-top: -45px;
+}
+.profile-image-divider {
+ width: 90px;
+ height: 90px;
+ display: inline-block;
+ position: relative;
+}
+.profile-image .avatar-img{
+ border-radius: 50%;
+}
+.profile-image-img .update-btn{
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+.profile-image-com .update-btn {
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+.profile-image-item .update-btn {
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+.profile-image-img .more-profile {
+ position: absolute;
+ right: -35px;
+ bottom: 0;
+ width: 25px;
+ height: 25px;
+}
+/*========================================================*/
+.profile-image-selection .company-profile{
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+ float:left;
+}
+.profile-image-xAxis .delivery-profile{
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+.profile-image-xAxis .branch-profile{
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+.profile-image-staff .staff-profile{
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+/*========================================================*/
+.profile-image .fix-name{
+ position: absolute;
+ width: 100%;
+ top: -10px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+.profile-image .fix-mobile {
+ position: absolute;
+ width: 100%;
+ top: 20px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+.profile-image .fix-role {
+ position: absolute;
+ width: 100%;
+ top: 20px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+.profile-image .fix-width{
+ width: 100%;
+}
+
+
+
+.profile-menu {
+ height: 75px;
+}
+
+.profile-menu-img {
+ width: 90px;
+ height: 90px;
+ padding: 5px;
+ border-radius: 50%;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+ float: left;
+}
+
+.profile-menu-com {
+ width: 90px;
+ height: 90px;
+ padding: 5px;
+ border-radius: 50%;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+
+.profile-menu-item {
+ width: 220px;
+ height: 120px;
+ padding: 5px;
+ background-color: #DDD;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+
+.profile-menu-company {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+
+.profile-menu-branch {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+
+.profile-menu-xAxisP {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+
+.profile-menu-xAxisM {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+}
+
+.profile-menu-personal {
+ width: 120px;
+ height: 120px;
+ display: inline-block;
+ position: relative;
+ margin-top: -45px;
+}
+
+.profile-menu-divider {
+ width: 90px;
+ height: 90px;
+ display: inline-block;
+ position: relative;
+}
+
+.profile-menu .avatar-img {
+ border-radius: 50%;
+}
+
+.profile-menu-img .update-btn {
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+
+.profile-menu-com .update-btn {
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+
+.profile-menu-item .update-btn {
+ position: absolute;
+ display: block;
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
+ background-color: #DDD;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ line-height: 32px;
+}
+
+.profile-menu-img .more-profile {
+ position: absolute;
+ right: -35px;
+ bottom: 0;
+ width: 25px;
+ height: 25px;
+}
+/*========================================================*/
+.profile-menu-company .company-profile {
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+ float: left;
+}
+
+.profile-menu-branch .branch-profile {
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+ float: left;
+}
+
+.profile-menu-xAxis .delivery-profile {
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+
+.profile-menu-xAxis .branch-profile {
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+
+.profile-menu-personal .personal-profile {
+ bottom: 0;
+ width: 90px;
+ height: 90px;
+}
+/*========================================================*/
+.profile-menu .fix-name {
+ position: absolute;
+ width: 100%;
+ top: -10px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+
+.profile-menu .fix-mobile {
+ position: absolute;
+ width: 100%;
+ top: 20px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+
+.profile-menu .fix-role {
+ position: absolute;
+ width: 100%;
+ top: 20px;
+ color: #667F97;
+ font-size: 18px;
+ text-align: left;
+ padding-left: 100px;
+}
+
+.profile-menu .fix-width {
+ width: 100%;
+}
+/*end of part 17----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[18. Gallery and Album]
+*------------------------------------------------------------------*/
+.album-item{
+ background-color: #FFF;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ border-radius: 3px;
+ margin-bottom: 10px;
+ display: block;
+}
+.album-item:focus, .album-item:hover{
+ color: #069;
+}
+.album-item:focus .album-image:before, .album-item:hover .album-image:before{
+ content: '';
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ background-color: rgba(0,0,0,0.4);
+ z-index: 9;
+}
+.album-item .album-image{
+ height: 140px;
+ width: 100%;
+ overflow: hidden;
+ border-top-right-radius: 3px;
+ border-top-left-radius: 3px;
+ position: relative;
+}
+.album-item .album-image img{
+ position: absolute;
+ top: -9999px;
+ right: -9999px;
+ bottom: -9999px;
+ left: -9999px;
+ margin: auto;
+ min-width: 100%;
+ min-height: 100%;
+}
+
+.album-item .album-info{
+ padding: 10px;
+ position: relative;
+}
+.album-item .album-title{
+ margin: 0;
+ padding: 0;
+}
+.album-item .image-count{
+ font-size: 12px;
+ opacity: 0.6;
+ float: right;
+ position: absolute;
+ right: 10px;
+ top: 10px;
+}
+.album-item.half-box .album-image{
+ height: 100px;
+}
+.album-item.half-box{
+ width: 49%;
+}
+.album-item.half-box:nth-child(odd){
+ float: left;
+}
+
+.album-item.half-box:nth-child(even){
+ float: right;
+}
+.album-item.half-box .image-count{
+ position: relative;
+ display: block;
+ float: none;
+ top: inherit;
+ right: inherit;
+}
+.gallery-item{
+ display: block;
+ position: relative;
+ overflow: hidden;
+ height: 140px;
+ border-radius: 3px;
+ cursor: pointer;
+}
+.gallery-item.half-box{
+ width: 50%;
+ float: left;
+ margin-bottom: 0;
+}
+.gallery-item img{
+ position: absolute;
+ top: -9999px;
+ right: -9999px;
+ bottom: -9999px;
+ left: -9999px;
+ margin: auto;
+ min-width: 100%;
+ min-height: 100%;
+}
+.gallery-item .image-name{
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 10px;
+ z-index: 9;
+ color: #FFF;
+ background: rgba(135,135,135,0);
+ background: -moz-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
+ background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(135,135,135,0)), color-stop(100%, rgba(51,51,51,1)));
+ background: -webkit-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
+ background: -o-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
+ background: linear-gradient(to bottom, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#878787', endColorstr='#333333', GradientType=0 );
+}
+.gallery-item .image-name b{
+ position: absolute;
+ display: block;
+ bottom: 10px;
+ left: 10px;
+}
+.gallery-item .image-name i{
+ position: absolute;
+ font-size: 18px;
+ right: 10px;
+ bottom: 10px;
+}
+.gallery-item:hover .image-name, .gallery-item:focus .image-name{
+ top: 0;
+ background: rgba(0,0,0,0.4);
+}
+/*end of part 18----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[19. Contact]
+*------------------------------------------------------------------*/
+.map_container{
+ position: relative;
+ left: 0;
+ right: 0;
+ top: -10px;
+ width: 100%;
+ height: 300px;
+}
+.contact-info{
+ background-color: #FFF;
+ margin: 0 10px 10px;
+ padding: 10px;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+}
+.contact-info .address-name{
+ margin: 6px 0;
+ padding: 0;
+}
+.contact-info .contact-stars{
+ opacity: 0.6;
+}
+.contact-info .address{
+ padding: 0;
+ margin: 0;
+}
+.contact-short-info{
+ background-color: #FFF;
+ padding: 10px;
+ margin: 10px;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+}
+.contact-short-info .title{
+ margin: 0;
+}
+.contact-address{
+ background-color: #FFF;
+ margin: 10px;
+ padding: 10px;
+ -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+ box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
+}
+.contact-address .contact-item{
+ margin-bottom: 6px;
+}
+.contact-address .contact-item i{
+ display: inline-block;
+ width: 20px;
+}
+/*end of part 19----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[20. Page Loader]
+*------------------------------------------------------------------*/
+.sweet-loader{
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ z-index: 1000000;
+ background-color: rgba(255,255,255,0.9);
+ display: none;
+ opacity: 0;
+ -webkit-transition: opacity .3s ease-in-out;
+ -moz-transition: opacity .3s ease-in-out;
+ -o-transition: opacity .3s ease-in-out;
+ transition: opacity .3s ease-in-out;
+
+}
+.sweet-loader.show{
+ display: block;
+ opacity: 1;
+}
+
+.sweet-loader.show .box {
+ width: 70px;
+ height: 24px;
+ text-align: center;
+ position: absolute;
+ top: 50%;
+ margin-top:-12px;
+ left: 50%;
+ margin-left: -35px;
+}
+
+.sweet-loader.show .box > div {
+ width: 18px;
+ height: 18px;
+ background-color: #60B2FE;
+
+ border-radius: 100%;
+ display: inline-block;
+ -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
+ animation: sk-bouncedelay 1.4s infinite ease-in-out both;
+}
+
+.sweet-loader.show .box .circle1 {
+ -webkit-animation-delay: -0.32s;
+ animation-delay: -0.32s;
+}
+
+.sweet-loader.show .box .circle2 {
+ -webkit-animation-delay: -0.16s;
+ animation-delay: -0.16s;
+}
+
+@-webkit-keyframes sk-bouncedelay {
+ 0%, 80%, 100% { -webkit-transform: scale(0) }
+ 40% { -webkit-transform: scale(1.0) }
+}
+
+@keyframes sk-bouncedelay {
+ 0%, 80%, 100% {
+ -webkit-transform: scale(0);
+ transform: scale(0);
+ } 40% {
+ -webkit-transform: scale(1.0);
+ transform: scale(1.0);
+ }
+}
+/*end of part 20----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[21. Responsive Media Queries]
+*------------------------------------------------------------------*/
+@media screen and (min-width: 480px) {
+ body {
+ font-size: 16px;
+ }
+ header{
+ padding: 10px 20px;
+ }
+ section.container{
+ padding: 0 20px;
+ }
+ nav.menu{
+ width: 300px;
+ }
+ .form-label-divider span{
+ top: -10px;
+ }
+ .post-detail{
+ padding: 20px;
+ }
+ .search-result-header{
+ margin: -10px -20px 20px -20px;
+ }
+ .search-result-header .form-element{
+ padding: 0 20px;
+ }
+ .search-result-header .search-result-btn{
+ right: 10px;
+ }
+ h1 .button{
+ font-size: 16px;
+ }
+}
+/*end of part 21----------------------------------------------------*/
+
+
+
+/*------------------------------------------------------------------
+[22. Background Color Helpers]
+
+Orange / .orange #C4510A
+Red / .red #F34954
+Purple / .purple #7A5AAD
+Turquoise/ .turquoise #30BFBB
+Green / .green #27AE61
+Blue / .blue #2A80BB
+Yellow / .yellow #CCA000
+White / .white #FFFFFF
+-------------------------------------------------------------------*/
+.orange{
+ background-color: #C4510A;
+}
+.red{
+ background-color: #F34954;
+}
+.purple{
+ background-color: #7A5AAD;
+}
+.turquoise{
+ background-color: #30BFBB;
+}
+.green{
+ background-color: #27AE61;
+}
+.blue{
+ background-color: #2A80BB;
+}
+.yellow{
+ background-color: #CCA000;
+}
+.white{
+ background-color: #FFFFFF;
+ color: #667F97;
+}
+/*end of part 22----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[23. Text Helpers]
+*------------------------------------------------------------------*/
+.txt-center{
+ text-align: center;
+}
+.txt-left{
+ text-align: left;
+}
+.txt-right{
+ text-align: right;
+}
+.txt-orange{
+ color: #C4510A;
+}
+.txt-red{
+ color: #F34954;
+}
+.txt-purple{
+ color: #7A5AAD;
+}
+.txt-turquoise{
+ color: #30BFBB;
+}
+.txt-green{
+ color: #27AE61;
+}
+.txt-blue{
+ color: #2A80BB;
+}
+.txt-yellow{
+ color: #CCA000;
+}
+.txt-default{
+ color: #667F97;
+}
+.txt-white{
+ color: #FFFFFF;
+}
+.txt-bold{
+ font-weight: bold;
+ font-weight: 700;
+}
+.txt-extra-bold{
+ font-weight: bold;
+ font-weight: 900;
+}
+.txt-normal{
+ font-weight: normal;
+ font-weight: 400;
+}
+.txt-light{
+ font-weight: lighter;
+ font-weight: 300;
+}
+/*end of part 23----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[24. Text Animations]
+*------------------------------------------------------------------*/
+.animated-text{
+ text-align: center;
+ position: relative;
+}
+.animated-text h1{
+ margin: 0;
+ padding: 0;
+ position: relative;
+}
+.animated-text .text1{
+ font-size: 24px;
+ display: block;
+}
+.animated-text .text2{
+ font-size: 14px;
+}
+.animated-text .text3{
+ display: block;
+ font-size: 14px;
+}
+.animated-text .text4{
+ display: block;
+ font-size: 36px;
+}
+.animated-text .text5{
+ display: block;
+ font-size: 36px;
+}
+.animated-text .text6{
+ display: block;
+ font-size: 36px;
+}
+.animated-text .text7{
+ font-size: 14px;
+ display: block;
+ margin-top: 20px;
+}
+/*end of part 24----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[25. Search Contact]
+*------------------------------------------------------------------*/
+.cont-menu {
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 6%;
+ bottom: 0;
+ z-index: 0;
+ width: 100%;
+ height: 100%;
+}
+cont.menu.opened {
+ right: 0; /* Right */
+}
+
+cont.menu {
+ position: absolute;
+ right: 0%; /* Right */
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ background-color: #FFF;
+ -webkit-transition: right 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
+ -webkit-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -moz-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ -o-transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
+ transition: right 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
+}
+
+cont .cont-container{
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ top: 0;
+ overflow: auto;
+}
+
+cont.menu ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+cont.menu ul li{
+ display: block;
+ width: 100%;
+}
+cont.menu ul.main-menu > li.active{
+ background-color: rgba(0,0,0,0.2);
+}
+
+cont.menu ul.main-menu > li.active > ul{
+ display: block;
+}
+
+cont.menu ul.main-menu > li ul li.active{
+ background-color: rgba(0,0,0,0.2);
+}
+
+cont.menu ul.main-menu>li>a{
+ display: block;
+ padding: 15px 20px;
+ border-bottom: solid 1px rgba(0,0,0,0.1);
+ font-weight: 600;
+}
+cont.menu ul.main-menu>li>a>i{
+ display: inline-block;
+ width: 24px;
+}
+cont.menu ul.main-menu>li>a>span{
+ display: inline-block;
+ float: right;
+ opacity: 0.5;
+}
+cont.menu ul.main-menu>li ul{
+ display: none;
+}
+cont.menu ul.main-menu>li li a{
+ display: block;
+ color: #fff;
+ padding: 15px 20px 8px 48px;
+ border-bottom: solid 1px rgba(0,0,0,0.1);
+ font-weight: 400;
+}
+/*end of part 25----------------------------------------------------*/
+
+
+/*-------------------------------------------------------------------
+[26. Azure Footer]
+*------------------------------------------------------------------*/
+.azfooter {
+ width: 100%;
+ position: fixed;
+ bottom: 0;
+}
+
+.azfooter .azfmain-button {
+ width: 55%;
+ margin-left: 20%;
+}
+
+.azfooter .azfmain-txt {
+ width: 100%;
+ margin-left: -3%;
+}
+
+.azfooter-code {
+ width: 100%;
+ position: fixed;
+}
+
+.azfooter-code .azfmain-button {
+ width: 50%;
+ margin-left: 22%;
+}
+
+.aztitle {
+ color: #2DD67B;
+ text-decoration: none;
+ font-weight: 700;
+ font-size: 20px;
+ outline: none;
+}
+/*end of part 26----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[27. Tab]
+-------------------------------------------------------------------*/
+
+/* Style the tab */
+.tab {
+ overflow: hidden;
+ border: 1px solid #ccc;
+ background-color: #f1f1f1;
+}
+
+/* Style the buttons inside the tab */
+.tab button {
+ background-color: inherit;
+ float: left;
+ border: none;
+ outline: none;
+ cursor: pointer;
+ padding: 14px 16px;
+ transition: 0.3s;
+ font-size: 17px;
+ width: 50%;
+}
+
+/* Change background color of buttons on hover */
+.tab button:hover {
+ background-color: #ddd;
+}
+
+/* Create an active/current tablink class */
+.tab button.active {
+ background-color: #ccc;
+}
+
+/* Style the tab content */
+.tabcontent {
+ display: none;
+ padding: 6px 12px;
+ -webkit-animation: fadeEffect 1s;
+ animation: fadeEffect 1s;
+ color: black;
+}
+
+/* Fade in tabs */
+@-webkit-keyframes fadeEffect {
+ from {opacity: 0;}
+ to {opacity: 1;}
+}
+
+@keyframes fadeEffect {
+ from {opacity: 0;}
+ to {opacity: 1;}
+}
+/*end of part 27----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[28.Collapsible]
+-------------------------------------------------------------------*/
+
+.collapsible {
+ background-color: #f8f8f8;
+ color: #069;
+ cursor: pointer;
+ padding: 18px;
+ width: 100%;
+ border: none;
+ text-align: left;
+ outline: none;
+ font-size: 15px;
+}
+
+.active-col, .collapsible:hover {
+ background-color: #f2f2f2;
+}
+
+.content {
+ padding:18px;
+ display: none;
+ overflow: hidden;
+ background-color: #fff;
+ color: #000;
+}
+/*end of part 28----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[29. split form
+-------------------------------------------------------------------*/
+
+.form-first-name, .form-last-name {
+ width: 46%;
+ border: none;
+}
+
+.form-last-name {
+ float: right;
+ width: 40%;
+}
+
+.form-first-name {
+ float: left;
+
+}
+input[type=text]:disabled {
+ background: #ffffff;
+}
+
+.labelright, labelleft{
+ width:46%;
+}
+.labelright{
+ text-align:right;
+ float:right;
+ width:48%;
+}
+
+.labelleft{
+ text-align:left;
+ float:left;
+}
+
+/*end of part 29----------------------------------------------------*/
+
+/*-------------------------------------------------------------------
+[30. pagination
+-------------------------------------------------------------------*/
+.pagination {
+ display: inline-block;
+}
+
+.pagination a {
+ color: black;
+ float: left;
+ padding: 8px 16px;
+ text-decoration: none;
+ transition: background-color .3s;
+ border: 1px solid #ddd;
+ margin: 0 4px;
+ font-size: 10px;
+}
+
+.pagination a.active {
+ background-color: #4CAF50;
+ color: white;
+ border: 1px solid #4CAF50;
+}
+
+.pagination a:hover:not(.active) {background-color: #ddd;}
+
+/*end of part 30----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[31. order meter tracking bar
+-------------------------------------------------------------------*/
+.meter-tracker {
+ height: 100px;
+}
+.meter-tracker-bar {
+ width: 96%;
+ height: 4px;
+ background-color: #a9a9a9;
+ display: inline-block;
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
+ position: relative;
+}
+.meter-tracker-bar .update-txt-first{
+ position: absolute;
+ width: 25%;
+ height: 32px;
+ bottom: -100%;
+ text-align: center;
+ line-height: 10px;
+ right: 75%;
+}
+.meter-tracker-bar .update-txt-second{
+ position: absolute;
+ width: 25%;
+ height: 32px;
+ bottom: -100%;
+ text-align: center;
+ line-height: 10px;
+ right: 50%;
+}
+.meter-tracker-bar .update-txt-third{
+ position: absolute;
+ width: 25%;
+ height: 32px;
+ bottom: -100%;
+ text-align: center;
+ line-height: 10px;
+ right: 25%;
+}
+.meter-tracker-bar .update-txt-fourth{
+ position: absolute;
+ width: 25%;
+ height: 32px;
+ bottom: -100%;
+ text-align: center;
+ line-height: 10px;
+ right: 0%;
+}
+.meter-tracker-bar .update-txt-fixwall{
+ position: absolute;
+ width: 5%;
+ height: 32px;
+ bottom: -100%;
+ text-align: center;
+ line-height: 10px;
+ right: -5%;
+}
+.meter-tracker-bar .update-btn-first{
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ bottom: 0%;
+ background-color: #069;
+ border-radius: 100%;
+ text-align: center;
+ line-height: 10px;
+ z-index: 1;
+}
+.meter-tracker-bar .update-btn-second{
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ bottom: 0%;
+ background-color: #069;
+ border-radius: 100%;
+ text-align: center;
+ line-height: 10px;
+ z-index: 1;
+}
+.meter-tracker-bar .update-btn-third{
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ bottom: 0%;
+ background-color: #069;
+ border-radius: 100%;
+ text-align: center;
+ line-height: 10px;
+ z-index: 1;
+}
+.meter-tracker-bar .update-btn-fourth{
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ bottom: 0%;
+ background-color: #069;
+ border-radius: 100%;
+ text-align: center;
+ line-height: 10px;
+ z-index: 1;
+}
+.meter-tracker-bar .update-btn-completed{
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ bottom: -100%;
+ background-color: #069;
+ border-radius: 100%;
+ text-align: center;
+ line-height: 10px;
+ right: 0%;
+ z-index: 1;
+}
+/*end of part 31----------------------------------------------------*/
+
+
+
+/*-------------------------------------------------------------------
+[32. order meter tracking bar
+-------------------------------------------------------------------*/
+.AzPagination-Container{
+ width: 100%;
+ padding: 10px;
+}
+
+/*end of part 31----------------------------------------------------*/
+
+
+
+/*Other Styles and helpers------------------------------------------*/
+.block {
+ display: block;
+}
+
+.hide {
+ display: none !important;
+}
+
+.animated {
+ display: block !important;
+ opacity: 1;
+}
+
+.zero-opacity {
+ opacity: 0;
+}
+
+h1 .button {
+ font-size: 14px;
+}
+
+.label-span {
+ color: #000;
+}
+
+@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
+
+fieldset, label { margin: 0; padding: 0; }
+body{ margin: 20px; }
+h1 { font-size: 1.5em; margin: 10px; }
+
+/****** Style Star Rating Widget *****/
+
+.rating {
+ border: none;
+ float: left;
+}
+
+.rating > input { display: none; }
+.rating > label:before {
+ margin: 5px;
+ font-size: 1.25em;
+ font-family: FontAwesome;
+ display: inline-block;
+ content: "\f005";
+}
+
+.rating > .half:before {
+ content: "\f089";
+ position: absolute;
+}
+
+.rating > label {
+ color: #ddd;
+}
+
+/***** CSS Magic to Highlight Stars on Hover *****/
+
+.rating > input:checked ~ label, /* show gold star when clicked */
+.rating:not(:checked) > label:hover, /* hover current star */
+.rating:not(:checked) > label:hover ~ label { color: #FFD700; } /* hover previous stars in list */
+
+.rating > input:checked + label:hover, /* hover current star when changing rating */
+.rating > input:checked ~ label:hover,
+.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
+.rating > input:checked ~ label:hover ~ label { color: #FFED85; }
\ No newline at end of file
diff --git a/public/css/index.css b/public/css/index.css
new file mode 100644
index 0000000..5f9345c
--- /dev/null
+++ b/public/css/index.css
@@ -0,0 +1,97 @@
+* {
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
+}
+
+body {
+ -webkit-touch-callout: none;
+ -webkit-text-size-adjust: none;
+ -webkit-user-select: none;
+ background-color:#E4E4E4;
+ background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
+ background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
+ background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
+ background-image:-webkit-gradient(
+ linear,
+ left top,
+ left bottom,
+ color-stop(0, #A7A7A7),
+ color-stop(0.51, #E4E4E4)
+ );
+ background-attachment:fixed;
+ font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
+ font-size:12px;
+ height:100%;
+ margin:0px;
+ padding:0px;
+ text-transform:uppercase;
+ width:100%;
+
+ background-color:#32383d;
+ font-family: 'RobotoRegular', 'Droid Sans', 'Segoe UI', Segoe, 'San Francisco', 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
+ font-size:12px;
+}
+
+.app {
+ background: url(../images/cordova.png) no-repeat center top;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ height: 50px;
+ width: 225px;
+ text-align: center;
+ padding: 180px 0px 0px 0px;
+ margin: -115px 0px 0px -112px;
+}
+
+@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
+ .app {
+ background-position:left center;
+ padding:75px 0px 75px 170px;
+ margin:-90px 0px 0px -198px;
+ }
+}
+
+h1 {
+ font-size:24px;
+ font-weight:normal;
+ margin:0px;
+ overflow:visible;
+ padding:0px;
+ text-align:center;
+}
+
+.event {
+ border-radius:4px;
+ -webkit-border-radius:4px;
+ color:#FFFFFF;
+ font-size:12px;
+ margin:0px 30px;
+ padding:2px 0px;
+}
+
+.event.listening {
+ background-color:#333333;
+ display:block;
+}
+
+.event.received {
+ background-color:#4B946A;
+ display:none;
+}
+
+@keyframes fade {
+ from { opacity: 1.0; }
+ 50% { opacity: 0.4; }
+ to { opacity: 1.0; }
+}
+
+@-webkit-keyframes fade {
+ from { opacity: 1.0; }
+ 50% { opacity: 0.4; }
+ to { opacity: 1.0; }
+}
+
+.blink {
+ animation:fade 3000ms infinite;
+ -webkit-animation:fade 3000ms infinite;
+}
diff --git a/public/element-MTracker.html b/public/element-MTracker.html
new file mode 100644
index 0000000..10369c5
--- /dev/null
+++ b/public/element-MTracker.html
@@ -0,0 +1,379 @@
+
+
+
+
+
+ AzureUI - METER PROGRESS TRACKERS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Meter Progress Trackerss
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/element-wizard.html b/public/element-wizard.html
new file mode 100644
index 0000000..e26f7dc
--- /dev/null
+++ b/public/element-wizard.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+ AzureUI - WIZARD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
This is AzureUI
+
+
Azure is define as skyblue color one of my favourite color and already became my personal nickname.
+
+
+
+
Click me!
+
+
+
+
+
+
+
+
+
+

+
+
+
+
This is Azure
+
+
Azure is define as skyblue color one of my favourite color and already became my personal nickname.
+
+
+
+
Click me!
+
+
+
+
+
+
+
+
+

+
+
+
+
This is Azure
+
+
Azure is define as skyblue color one of my favourite color and already became my personal nickname.
+
+
+
+
Click me!
+
+
+
+
+
+
+
+
+

+
+
+
+
This is Azure
+
+
Azure is define as skyblue color one of my favourite color and already became my personal nickname.
+
+
+
+
+ SKIP
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/example-element.html b/public/example-element.html
new file mode 100644
index 0000000..fa3f0ab
--- /dev/null
+++ b/public/example-element.html
@@ -0,0 +1,233 @@
+
+
+
+
+
+ AzureUI - DELIVERY PROFILE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/fonts/FontAwesome.otf b/public/fonts/FontAwesome.otf
new file mode 100644
index 0000000..401ec0f
Binary files /dev/null and b/public/fonts/FontAwesome.otf differ
diff --git a/public/fonts/fontawesome-webfont.eot b/public/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/public/fonts/fontawesome-webfont.eot differ
diff --git a/public/fonts/fontawesome-webfont.svg b/public/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/public/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+
+
+
diff --git a/public/fonts/fontawesome-webfont.ttf b/public/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/public/fonts/fontawesome-webfont.ttf differ
diff --git a/public/fonts/fontawesome-webfont.woff b/public/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/public/fonts/fontawesome-webfont.woff differ
diff --git a/public/fonts/fontawesome-webfont.woff2 b/public/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/public/fonts/fontawesome-webfont.woff2 differ
diff --git a/public/forgot-password.html b/public/forgot-password.html
new file mode 100644
index 0000000..a256d72
--- /dev/null
+++ b/public/forgot-password.html
@@ -0,0 +1,53 @@
+
+
+
+ AzureUI - SIGNIN
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/home.html b/public/home.html
new file mode 100644
index 0000000..c13d4ba
--- /dev/null
+++ b/public/home.html
@@ -0,0 +1,1233 @@
+
+
+
+
+
+ AzureUI - HOMEPAGE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/images/14716092_703584339794469_3153603074671561050_n.jpg b/public/images/14716092_703584339794469_3153603074671561050_n.jpg
new file mode 100644
index 0000000..39a3b57
Binary files /dev/null and b/public/images/14716092_703584339794469_3153603074671561050_n.jpg differ
diff --git a/public/images/Azure-Branch-Icon.png b/public/images/Azure-Branch-Icon.png
new file mode 100644
index 0000000..55bd17e
Binary files /dev/null and b/public/images/Azure-Branch-Icon.png differ
diff --git a/public/images/Azure-Company-Icon.png b/public/images/Azure-Company-Icon.png
new file mode 100644
index 0000000..d6d539c
Binary files /dev/null and b/public/images/Azure-Company-Icon.png differ
diff --git a/public/images/Azure-DeliveryIcon.png b/public/images/Azure-DeliveryIcon.png
new file mode 100644
index 0000000..fc50ac1
Binary files /dev/null and b/public/images/Azure-DeliveryIcon.png differ
diff --git a/public/images/Azure-Personal-Icon.png b/public/images/Azure-Personal-Icon.png
new file mode 100644
index 0000000..f5b6c3d
Binary files /dev/null and b/public/images/Azure-Personal-Icon.png differ
diff --git a/public/images/Azure-Staff-Icon.png b/public/images/Azure-Staff-Icon.png
new file mode 100644
index 0000000..f86e779
Binary files /dev/null and b/public/images/Azure-Staff-Icon.png differ
diff --git a/public/images/CIEF.png b/public/images/CIEF.png
new file mode 100644
index 0000000..07ce04c
Binary files /dev/null and b/public/images/CIEF.png differ
diff --git a/public/images/Screenshot (9).png b/public/images/Screenshot (9).png
new file mode 100644
index 0000000..63177aa
Binary files /dev/null and b/public/images/Screenshot (9).png differ
diff --git a/public/images/cordova.png b/public/images/cordova.png
new file mode 100644
index 0000000..9519e7d
Binary files /dev/null and b/public/images/cordova.png differ
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..7368ba3
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,87 @@
+
+
+
+ AzureUI - SIGNIN
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/js/global.script.js b/public/js/global.script.js
new file mode 100644
index 0000000..df6ef3f
--- /dev/null
+++ b/public/js/global.script.js
@@ -0,0 +1,453 @@
+"use strict";
+
+/* =========================================
+[Navigation Side Menu System] Start Here
+==========================================*/
+$(document).ready(function(){
+ /* If User Click Navigation Button, Call Navigation Menu to Open*/
+ $('.navi-menu-button').on('click', function(e){
+ navMenuOpen();
+ });
+
+ /* If User Click Outside of Navigation Menu, Call Navigation Menu to Close*/
+ $('.nav-menu').on('click', function(e){
+ if ($(e.target).hasClass('nav-menu')){
+ navMenuClose();
+ }
+ });
+
+ /* [Company nav Open] */
+ $('.profile-menu-company').on('click', function (e) {
+ AznavCMenuOpen();
+ });
+
+ /* [Branch nav Open] */
+ $('.profile-menu-branch').on('click', function (e) {
+ AznavBMenuOpen();
+ });
+
+ /* [Delivery nav Open] */
+ $('.profile-menu-xAxisP').on('click', function (e) {
+ AznavDMenuOpen();
+ });
+
+ /* [Staff nav Open] */
+ $('.profile-menu-xAxisM').on('click', function (e) {
+ AznavSMenuOpen();
+ });
+
+ /* [Personal nav Open] */
+ $('.profile-menu-personal').on('click', function (e) {
+ AznavPMenuOpen();
+ });
+
+ $('.go-back-linkC').on('click', function (e) {
+ AznavCMenuClose();
+ });
+
+ $('.go-back-linkB').on('click', function (e) {
+ AznavBMenuClose();
+ });
+
+ $('.go-back-linkD').on('click', function (e) {
+ AznavDMenuClose();
+ });
+
+ $('.go-back-linkS').on('click', function (e) {
+ AznavSMenuClose();
+ });
+
+ $('.go-back-linkP').on('click', function (e) {
+ AznavPMenuClose();
+ });
+
+ /* Dropdown List System for Unorderd List Function*/
+ $('nav.menu ul.main-menu>li>a').on('click', function(e){
+ var that = $(this);
+ if (that.parent().find('ul:first').length)
+ {
+ e.preventDefault();
+ if (!that.parent().hasClass('active'))
+ {
+ /* If User Click Dropdown List Change Up Arrow to Down Arrow*/
+ $('nav.menu ul.main-menu ul').slideUp('fast',function(){
+ $('nav.menu ul.main-menu > li').removeClass('active');
+ });
+
+ $('nav.menu ul li a span').removeClass('fa-angle-up').addClass('fa-angle-down');
+
+ /* If User Click Other Dropdown List Change Down Arrow to Up Arrow*/
+ that.parent().find('ul:first').slideDown('fast',function(){
+ that.parent().addClass('active');
+ });
+
+ that.find('span').removeClass('fa-angle-down').addClass('fa-angle-up');
+ }
+ else
+ {
+ /* If User Click None Change Up Arrow to Down Arrow*/
+ that.parent().find('ul:first').slideUp('fast',function(){
+ $(this).parent().removeClass('active');
+ });
+ that.find('span').removeClass('fa-angle-up').addClass('fa-angle-down');
+ }
+ }
+ else
+ {
+ $('nav.menu ul.main-menu ul').slideUp('fast');
+ $('nav.menu ul.main-menu > li').removeClass('active');
+ that.parent().addClass('active');
+ }
+ });
+
+
+ $('.tab-item .fix-width .menu-item').css({'width': 100/$('.tab-item .fix-width .menu-item').length+'%'});
+
+ if ($('.wizard').length)
+ {
+ wizardFixHeight();
+ $(window).resize();
+ }
+
+
+
+ if ($('.animated-text').length)
+ animateText();
+
+});
+/* =========================================
+[Navigation Side Menu System] End Here
+==========================================*/
+
+$(".wrapper-inline").on("scroll", function(e) {
+ if (this.scrollTop > 150) {
+ $('header.no-background').addClass("set-bg");
+ } else {
+ $('header.no-background').removeClass("set-bg");
+ }
+
+});
+
+/* =========================================
+[Open Navigation Menu Function] Don't touch
+==========================================*/
+//[Main Nav]
+var navMenuOpen = function () {
+ $('.navi-menu-button').addClass('focused');
+
+ $('div.nav-menu').fadeIn(50, function (e) {
+ $('nav.menu').addClass('opened');
+ });
+};
+//[Company Nav]
+var AznavCMenuOpen = function () {
+ $('.profile-menu-company').addClass('focused');
+
+ $('div.AznavC-menuC').fadeIn(50, function (e) {
+ $('AznavC.menuC').addClass('opened');
+ });
+};
+//[Branch Nav]
+var AznavBMenuOpen = function () {
+ $('.profile-menu-branch').addClass('focused');
+
+ $('div.AznavB-menuB').fadeIn(50, function (e) {
+ $('AznavB.menuB').addClass('opened');
+ });
+};
+//[Delivery Nav]
+var AznavDMenuOpen = function () {
+ $('.profile-menu-xAxisP').addClass('focused');
+
+ $('div.AznavD-menuD').fadeIn(50, function (e) {
+ $('AznavD.menuD').addClass('opened');
+ });
+};
+//[Staff Nav]
+var AznavSMenuOpen = function () {
+ $('.profile-menu-xAxisM').addClass('focused');
+
+ $('div.AznavS-menuS').fadeIn(50, function (e) {
+ $('AznavS.menuS').addClass('opened');
+ });
+};
+//[Personal Nav]
+var AznavPMenuOpen = function () {
+ $('.profile-menu-personal').addClass('focused');
+
+ $('div.AznavP-menuP').fadeIn(50, function (e) {
+ $('AznavP.menuP').addClass('opened');
+ });
+};
+
+/* =========================================
+[Close Navigation Menu Function] Don't touch
+==========================================*/
+//[Main Nav]
+var navMenuClose = function () {
+ $('.navi-menu-button').removeClass('focused');
+
+ $('nav.menu').removeClass('opened');
+ $('div.nav-menu').fadeOut(200);
+};
+//[Company Nav]
+var AznavCMenuClose = function () {
+ $('.go-back-linkC').removeClass('focused');
+
+ $('AznavC.menuC').removeClass('opened');
+ $('div.AznavC-menuC').fadeOut(200);
+};
+//[Branch Nav]
+var AznavBMenuClose = function () {
+ $('.go-back-linkB').removeClass('focused');
+
+ $('AznavB.menuB').removeClass('opened');
+ $('div.AznavB-menuB').fadeOut(200);
+};
+//[Delivery Nav]
+var AznavDMenuClose = function () {
+ $('.go-back-linkD').removeClass('focused');
+
+ $('AznavD.menuD').removeClass('opened');
+ $('div.AznavD-menuD').fadeOut(200);
+};
+//[Staff Nav]
+var AznavSMenuClose = function () {
+ $('.go-back-linkS').removeClass('focused');
+
+ $('AznavS.menuS').removeClass('opened');
+ $('div.AznavS-menuS').fadeOut(200);
+};
+//[Personal Nav]
+var AznavPMenuClose = function () {
+ $('.go-back-linkP').removeClass('focused');
+
+ $('AznavP.menuP').removeClass('opened');
+ $('div.AznavP-menuP').fadeOut(200);
+};
+
+/* =========================================
+[Navigation Button Animate] Don't touch
+==========================================*/
+var animateText = function () {
+ $('.vertical-center').css({ 'margin-top': $(window).height() / 2 - $('.vertical-center').height() / 2 });
+ $('.animated-text').removeClass('zero-opacity');
+ $('[data-transation]').each(function (e, i) {
+ var that = $(this);
+ that.addClass('hide');
+
+ var transation = that.attr('data-transation');
+ if (transation == '')
+ transation = 'fadeInDown';
+
+ var startTime = parseInt(that.attr('data-start-time'));
+ if (isNaN(startTime))
+ startTime = 0;
+
+ setTimeout(function () {
+ that.addClass('animated ' + transation);
+ }, startTime);
+ });
+};
+
+
+/* =========================================
+[Check Box]
+==========================================*/
+$('.sweet-check :checkbox:checked').each(function(e,i){
+ $(this).parent().addClass('checked');
+});
+
+
+$(document).on('click', '.sweet-check', function(){
+ if ($(this).hasClass('checked'))
+ {
+ $(this).removeClass('checked');
+ $(this).find('input').prop('checked', false);
+ }
+ else
+ {
+ $(this).addClass('checked');
+ $(this).find('input').prop('checked', true);
+ }
+
+ //console.log($(this).find('input').prop('checked'));
+});
+
+$(document).on('click','[data-loader]', function(){
+ $('.sweet-loader').show().addClass('show');
+});
+
+
+/* =========================================
+[Accordion]
+==========================================*/
+$(document).on('click', '.expandable-item .expandable-header', function(){
+ if ($(this).parent().hasClass('accordion'))
+ {
+ if ($(this).parent().hasClass('active'))
+ {
+ $(this).parent().removeClass('active');
+ $(this).parent().find('.expandable-content').attr('style','');
+ }
+ else
+ {
+ var accordionGroup = $(this).parent().attr('data-group');
+ $('[data-group="'+accordionGroup+'"]').removeClass('active');
+ $('[data-group="'+accordionGroup+'"]').find('.expandable-content').attr('style','');
+ $(this).parent().find('.expandable-content').css({'max-height':$(this).parent().find('.expandable-content')[0].scrollHeight});
+ $(this).parent().addClass('active');
+ }
+ }
+ else
+ {
+ if ($(this).parent().hasClass('active'))
+ $(this).parent().find('.expandable-content').attr('style','');
+ else
+ $(this).parent().find('.expandable-content').css({'max-height':$(this).parent().find('.expandable-content')[0].scrollHeight});
+
+ $(this).parent().toggleClass('active');
+ }
+});
+
+
+/* =========================================
+[Tab Control]
+==========================================*/
+$(document).on('click', '.tab-item .menu-item', function(e){
+ e.preventDefault();
+ var tabContentId = $(this).attr('data-content');
+
+ $(this).parents('.tab-item').find('.menu-item').removeClass('active');
+ $(this).addClass('active');
+
+ $(this).parents('.tab-item').find('.content-item').removeClass('active');
+ $('#' + tabContentId).addClass('active');
+ window.location.hash = tabContentId;
+});
+
+/* =========================================
+[Popup Action]
+==========================================*/
+$(document).on('click', '[data-dismiss="true"]', function(){
+ $(this).parents('.popup-overlay').fadeOut('fast');
+});
+
+$(document).on('click', '[data-popup]', function(){
+ var modalId = $(this).attr('data-popup');
+ $('#'+modalId).fadeIn('fast');
+});
+
+$(document).on('click', '.popup-overlay', function(e){
+ if ($(e.target).hasClass('popup-overlay'))
+ {
+ $(this).fadeOut('fast');
+ }
+});
+
+
+/* =========================================
+[Search Popup Action]
+==========================================*/
+var openSearchPopup = function () {
+ $('.search-form').fadeIn('fast');
+ $('.search-form input').focus();
+};
+
+var closeSearchPopup = function () {
+ $('.search-form').fadeOut('fast');
+};
+
+$(document).on('click', '[data-search="open"]', function(){
+ openSeautBranchp();archPopup();
+});
+
+$(document).on('click', '[data-search="close"]', function(){
+ closeSearchPopup();
+});
+
+/* =========================================
+[Personal Profile Upload] Start Here
+==========================================*/
+$("#PersonalProfile").click(function (e) {
+ $("#PersonalUpload").click();
+});
+
+function fasterPreviewPersonal(uploader) {
+ if (uploader.files && uploader.files[0]) {
+ $('#PersonalProfile').attr('src',
+ window.URL.createObjectURL(uploader.files[0]));
+ }
+}
+
+$("#PersonalUpload").change(function () {
+ fasterPreviewPersonal(this);
+});
+
+/* =========================================
+[Company Profile Upload] Start Here
+==========================================*/
+$("#CompanyProfile").click(function (c) {
+ $("#CompanyUpload").click();
+});
+
+function fasterPreviewCompany(uploader) {
+ if (uploader.files && uploader.files[0]) {
+ $('#CompanyProfile').attr('src',
+ window.URL.createObjectURL(uploader.files[0]));
+ }
+}
+
+$("#CompanyUpload").change(function (c) {
+ fasterPreviewCompany(this);
+});
+
+/* =========================================
+[dropdownView] Start Here
+==========================================*/
+
+$(document).ready(function(){
+ $('#typeDelivery').on('change', function() {
+ if ( this.value == '0')
+ {
+ $("#services-a").show();
+ }
+ else
+ {
+ $("#services-a").hide();
+ }
+ if ( this.value == '1')
+ {
+ $("#services-b").show();
+ }
+ else
+ {
+ $("#services-b").hide();
+ }
+ if ( this.value == '2')
+ {
+ $("#services-c").show();
+ }
+ else
+ {
+ $("#services-c").hide();
+ }
+ if ( this.value == '3')
+ {
+ $("#services-d").show();
+ }
+ else
+ {
+ $("#services-d").hide();
+ }
+ });
+});
+
+/* =========================================
+[Wizard] Start Here
+==========================================*/
+var wizardFixHeight = function(){
+ $(window).on('resize', function(e){
+ $('.wizard .wizard-item').height($(window).height()-50);
+ });
+}
\ No newline at end of file
diff --git a/public/js/jquery-3.2.1.min.js b/public/js/jquery-3.2.1.min.js
new file mode 100644
index 0000000..644d35e
--- /dev/null
+++ b/public/js/jquery-3.2.1.min.js
@@ -0,0 +1,4 @@
+/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S),
+a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,""],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/
+
+
+
+