├── about.html ├── assets ├── css │ ├── custom.css │ ├── main.css │ ├── plugins │ │ ├── jquery-ui.css │ │ ├── magnific-popup.css │ │ ├── perfect-scrollbar.css │ │ ├── select2.min.css │ │ └── slick.css │ └── vendors │ │ ├── bootstrap.min.css │ │ ├── normalize.css │ │ └── uicons-regular-straight.css ├── fonts │ └── uicons │ │ ├── uicons-regular-straight.eot │ │ ├── uicons-regular-straight.woff │ │ └── uicons-regular-straight.woff2 ├── imgs │ ├── banner │ │ ├── banner-1.png │ │ ├── banner-11.jpg │ │ ├── banner-2.png │ │ ├── banner-3.png │ │ ├── banner-4.png │ │ ├── brand-1.png │ │ ├── brand-2.png │ │ ├── brand-3.png │ │ ├── brand-4.png │ │ ├── brand-5.png │ │ ├── brand-6.png │ │ ├── menu-banner-2.jpg │ │ ├── menu-banner-3.jpg │ │ ├── menu-banner-4.jpg │ │ ├── menu-banner-5.jpg │ │ ├── menu-banner-6.jpg │ │ └── menu-banner.jpg │ ├── blog │ │ ├── blog-1.jpg │ │ ├── blog-2.jpg │ │ ├── blog-3.jpg │ │ ├── blog-4.jpg │ │ ├── blog-5.jpg │ │ ├── blog-6.jpg │ │ ├── blog-8.jpg │ │ └── blog-9.jpg │ ├── login.png │ ├── logo │ │ └── logo.png │ ├── page │ │ ├── about-1.png │ │ ├── avatar-1.jpg │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── avatar-4.jpg │ │ ├── avatar-5.jpg │ │ ├── avatar-6.jpg │ │ ├── avatar-7.jpg │ │ └── avatar-8.jpg │ ├── shop │ │ ├── category-thumb-1.jpg │ │ ├── category-thumb-2.jpg │ │ ├── category-thumb-3.jpg │ │ ├── category-thumb-4.jpg │ │ ├── category-thumb-5.jpg │ │ ├── category-thumb-6.jpg │ │ ├── category-thumb-7.jpg │ │ ├── category-thumb-8.jpg │ │ ├── product-1-1.jpg │ │ ├── product-1-2.jpg │ │ ├── product-10-1.jpg │ │ ├── product-10-2.jpg │ │ ├── product-11-1.jpg │ │ ├── product-11-2.jpg │ │ ├── product-12-1.jpg │ │ ├── product-12-2.jpg │ │ ├── product-13-1.jpg │ │ ├── product-13-2.jpg │ │ ├── product-14-1.jpg │ │ ├── product-14-2.jpg │ │ ├── product-15-1.jpg │ │ ├── product-15-2.jpg │ │ ├── product-16-1.jpg │ │ ├── product-16-2.jpg │ │ ├── product-16-3.jpg │ │ ├── product-16-4.jpg │ │ ├── product-16-5.jpg │ │ ├── product-16-6.jpg │ │ ├── product-16-7.jpg │ │ ├── product-2-1.jpg │ │ ├── product-2-2.jpg │ │ ├── product-3-1.jpg │ │ ├── product-3-2.jpg │ │ ├── product-4-1.jpg │ │ ├── product-4-2.jpg │ │ ├── product-5-1.jpg │ │ ├── product-5-2.jpg │ │ ├── product-6-1.jpg │ │ ├── product-6-2.jpg │ │ ├── product-7-1.jpg │ │ ├── product-7-2.jpg │ │ ├── product-8-1.jpg │ │ ├── product-8-2.jpg │ │ ├── product-9-1.jpg │ │ ├── product-9-2.jpg │ │ ├── thumbnail-2.jpg │ │ ├── thumbnail-3.jpg │ │ ├── thumbnail-4.jpg │ │ ├── thumbnail-5.jpg │ │ ├── thumbnail-6.jpg │ │ ├── thumbnail-7.jpg │ │ ├── thumbnail-8.jpg │ │ └── thumbnail-9.jpg │ ├── slider │ │ ├── slider-1.png │ │ └── slider-2.png │ └── theme │ │ ├── app-store.jpg │ │ ├── btn-brush-bg-1.png │ │ ├── btn-brush-bg-2.png │ │ ├── btn-brush-bg-3.png │ │ ├── favicon.ico │ │ ├── flag-dt.png │ │ ├── flag-fr.png │ │ ├── flag-ru.png │ │ ├── google-play.jpg │ │ ├── icons │ │ ├── feature-1.png │ │ ├── feature-2.png │ │ ├── feature-3.png │ │ ├── feature-4.png │ │ ├── feature-5.png │ │ ├── feature-6.png │ │ ├── icon-cart.svg │ │ ├── icon-email.svg │ │ ├── icon-facebook.svg │ │ ├── icon-heart.svg │ │ ├── icon-instagram.svg │ │ ├── icon-pinterest.svg │ │ ├── icon-twitter.svg │ │ ├── icon-youtube.svg │ │ └── search.png │ │ ├── payment-method.png │ │ ├── rating-stars.png │ │ └── topbar-bg.jpg └── js │ ├── main.js │ ├── plugins │ ├── counterup.js │ ├── images-loaded.js │ ├── isotope.js │ ├── jquery-ui.js │ ├── jquery.countdown.min.js │ ├── jquery.elevatezoom.js │ ├── jquery.syotimer.min.js │ ├── jquery.theia.sticky.js │ ├── jquery.vticker-min.js │ ├── magnific-popup.js │ ├── perfect-scrollbar.js │ ├── scrollup.js │ ├── select2.min.js │ ├── slick.js │ ├── waypoints.js │ └── wow.js │ ├── shop.js │ └── vendor │ ├── bootstrap.bundle.min.js │ ├── jquery-3.6.0.min.js │ ├── jquery-migrate-3.3.0.min.js │ └── modernizr-3.6.0.min.js ├── blog-details.html ├── blog.html ├── cart.html ├── checkout.html ├── contact.html ├── index.html ├── login.html ├── my-account.html ├── privacy-policy.html ├── product-details.html ├── register.html ├── shop.html └── terms-conditions.html /assets/css/custom.css: -------------------------------------------------------------------------------- 1 | @media (max-width:420px) 2 | { 3 | .product-grid-4 .col-12{ 4 | width:50% !important; 5 | } 6 | } -------------------------------------------------------------------------------- /assets/css/plugins/magnific-popup.css: -------------------------------------------------------------------------------- 1 | /*! Magnific Popup - v1.1.0 - 2016-02-20 2 | * http://dimsemenov.com/plugins/magnific-popup/ 3 | * Copyright (c) 2016 Dmitry Semenov; */ 4 | .mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#1a1a1a}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} 5 | -------------------------------------------------------------------------------- /assets/css/plugins/perfect-scrollbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Container style 3 | */ 4 | .ps { 5 | overflow: hidden !important; 6 | overflow-anchor: none; 7 | -ms-overflow-style: none; 8 | touch-action: auto; 9 | -ms-touch-action: auto; 10 | } 11 | 12 | /* 13 | * Scrollbar rail styles 14 | */ 15 | .ps__rail-x { 16 | display: none; 17 | opacity: 0; 18 | transition: background-color .2s linear, opacity .2s linear; 19 | -webkit-transition: background-color .2s linear, opacity .2s linear; 20 | height: 15px; 21 | /* there must be 'bottom' or 'top' for ps__rail-x */ 22 | bottom: 0px; 23 | /* please don't change 'position' */ 24 | position: absolute; 25 | } 26 | 27 | .ps__rail-y { 28 | display: none; 29 | opacity: 0; 30 | transition: background-color .2s linear, opacity .2s linear; 31 | -webkit-transition: background-color .2s linear, opacity .2s linear; 32 | width: 15px; 33 | /* there must be 'right' or 'left' for ps__rail-y */ 34 | right: 0; 35 | /* please don't change 'position' */ 36 | position: absolute; 37 | } 38 | 39 | .ps--active-x > .ps__rail-x, 40 | .ps--active-y > .ps__rail-y { 41 | display: block; 42 | background-color: transparent; 43 | } 44 | 45 | .ps:hover > .ps__rail-x, 46 | .ps:hover > .ps__rail-y, 47 | .ps--focus > .ps__rail-x, 48 | .ps--focus > .ps__rail-y, 49 | .ps--scrolling-x > .ps__rail-x, 50 | .ps--scrolling-y > .ps__rail-y { 51 | opacity: 0.6; 52 | } 53 | 54 | .ps .ps__rail-x:hover, 55 | .ps .ps__rail-y:hover, 56 | .ps .ps__rail-x:focus, 57 | .ps .ps__rail-y:focus, 58 | .ps .ps__rail-x.ps--clicking, 59 | .ps .ps__rail-y.ps--clicking { 60 | background-color: #e2e9e1; 61 | opacity: 0.9; 62 | } 63 | 64 | /* 65 | * Scrollbar thumb styles 66 | */ 67 | .ps__thumb-x { 68 | background-color: #aaa; 69 | border-radius: 6px; 70 | transition: background-color .2s linear, height .2s ease-in-out; 71 | -webkit-transition: background-color .2s linear, height .2s ease-in-out; 72 | height: 6px; 73 | /* there must be 'bottom' for ps__thumb-x */ 74 | bottom: 2px; 75 | /* please don't change 'position' */ 76 | position: absolute; 77 | } 78 | 79 | .ps__thumb-y { 80 | background-color: #aaa; 81 | border-radius: 6px; 82 | transition: background-color .2s linear, width .2s ease-in-out; 83 | -webkit-transition: background-color .2s linear, width .2s ease-in-out; 84 | width: 6px; 85 | /* there must be 'right' for ps__thumb-y */ 86 | right: 2px; 87 | /* please don't change 'position' */ 88 | position: absolute; 89 | } 90 | 91 | .ps__rail-x:hover > .ps__thumb-x, 92 | .ps__rail-x:focus > .ps__thumb-x, 93 | .ps__rail-x.ps--clicking .ps__thumb-x { 94 | background-color: #999; 95 | height: 11px; 96 | } 97 | 98 | .ps__rail-y:hover > .ps__thumb-y, 99 | .ps__rail-y:focus > .ps__thumb-y, 100 | .ps__rail-y.ps--clicking .ps__thumb-y { 101 | background-color: #999; 102 | width: 11px; 103 | } 104 | 105 | /* MS supports */ 106 | @supports (-ms-overflow-style: none) { 107 | .ps { 108 | overflow: auto !important; 109 | } 110 | } 111 | 112 | @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 113 | .ps { 114 | overflow: auto !important; 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /assets/css/plugins/select2.min.css: -------------------------------------------------------------------------------- 1 | .select2-container { 2 | box-sizing: border-box; 3 | display: inline-block; 4 | margin: 0; 5 | position: relative; 6 | vertical-align: middle 7 | } 8 | 9 | .select2-container .select2-selection--single { 10 | box-sizing: border-box; 11 | cursor: pointer; 12 | display: block; 13 | height: 28px; 14 | user-select: none; 15 | -webkit-user-select: none 16 | } 17 | 18 | .select2-container .select2-selection--single .select2-selection__rendered { 19 | display: block; 20 | padding-left: 8px; 21 | padding-right: 20px; 22 | overflow: hidden; 23 | text-overflow: ellipsis; 24 | white-space: nowrap 25 | } 26 | 27 | .select2-container .select2-selection--single .select2-selection__clear { 28 | position: relative 29 | } 30 | 31 | .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { 32 | padding-right: 8px; 33 | padding-left: 20px 34 | } 35 | 36 | .select2-container .select2-selection--multiple { 37 | box-sizing: border-box; 38 | cursor: pointer; 39 | display: block; 40 | min-height: 32px; 41 | user-select: none; 42 | -webkit-user-select: none 43 | } 44 | 45 | .select2-container .select2-selection--multiple .select2-selection__rendered { 46 | display: inline-block; 47 | overflow: hidden; 48 | padding-left: 8px; 49 | text-overflow: ellipsis; 50 | white-space: nowrap 51 | } 52 | 53 | .select2-container .select2-search--inline { 54 | float: left 55 | } 56 | 57 | .select2-container .select2-search--inline .select2-search__field { 58 | box-sizing: border-box; 59 | border: none; 60 | font-size: 100%; 61 | margin-top: 5px; 62 | padding: 0 63 | } 64 | 65 | .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { 66 | -webkit-appearance: none 67 | } 68 | 69 | .select2-dropdown { 70 | background-color: white; 71 | border: 1px solid #aaa; 72 | border-radius: 4px; 73 | box-sizing: border-box; 74 | display: block; 75 | position: absolute; 76 | left: -100000px; 77 | width: 100%; 78 | z-index: 1051 79 | } 80 | 81 | .select2-results { 82 | display: block 83 | } 84 | 85 | .select2-results__options { 86 | list-style: none; 87 | margin: 0; 88 | padding: 0 89 | } 90 | 91 | .select2-results__option { 92 | padding: 6px; 93 | user-select: none; 94 | -webkit-user-select: none 95 | } 96 | 97 | .select2-results__option[aria-selected] { 98 | cursor: pointer 99 | } 100 | 101 | .select2-container--open .select2-dropdown { 102 | left: 0 103 | } 104 | 105 | .select2-container--open .select2-dropdown--above { 106 | border-bottom: none; 107 | border-bottom-left-radius: 0; 108 | border-bottom-right-radius: 0 109 | } 110 | 111 | .select2-container--open .select2-dropdown--below { 112 | border-top: none; 113 | border-top-left-radius: 0; 114 | border-top-right-radius: 0 115 | } 116 | 117 | .select2-search--dropdown { 118 | display: block; 119 | padding: 4px 120 | } 121 | 122 | .select2-search--dropdown .select2-search__field { 123 | padding: 4px; 124 | width: 100%; 125 | box-sizing: border-box 126 | } 127 | 128 | .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { 129 | -webkit-appearance: none 130 | } 131 | 132 | .select2-search--dropdown.select2-search--hide { 133 | display: none 134 | } 135 | 136 | .select2-close-mask { 137 | border: 0; 138 | margin: 0; 139 | padding: 0; 140 | display: block; 141 | position: fixed; 142 | left: 0; 143 | top: 0; 144 | min-height: 100%; 145 | min-width: 100%; 146 | height: auto; 147 | width: auto; 148 | opacity: 0; 149 | z-index: 99; 150 | background-color: #fff; 151 | filter: alpha(opacity=0) 152 | } 153 | 154 | .select2-hidden-accessible { 155 | border: 0 !important; 156 | clip: rect(0 0 0 0) !important; 157 | -webkit-clip-path: inset(50%) !important; 158 | clip-path: inset(50%) !important; 159 | height: 1px !important; 160 | overflow: hidden !important; 161 | padding: 0 !important; 162 | position: absolute !important; 163 | width: 1px !important; 164 | white-space: nowrap !important 165 | } 166 | 167 | 168 | .select2-container--default .select2-selection--single .select2-selection__rendered { 169 | color: #1a1a1a; 170 | line-height: 28px 171 | } 172 | 173 | .select2-container--default .select2-selection--single .select2-selection__clear { 174 | cursor: pointer; 175 | float: right; 176 | font-weight: bold 177 | } 178 | 179 | .select2-container--default .select2-selection--single .select2-selection__placeholder { 180 | color: #999 181 | } 182 | 183 | .select2-container--default .select2-selection--single .select2-selection__arrow { 184 | height: 26px; 185 | position: absolute; 186 | top: 1px; 187 | right: 1px; 188 | width: 20px 189 | } 190 | 191 | .select2-container--default .select2-selection--single .select2-selection__arrow b { 192 | border-color: #888 transparent transparent transparent; 193 | border-style: solid; 194 | border-width: 5px 4px 0 4px; 195 | height: 0; 196 | left: 50%; 197 | margin-left: -4px; 198 | margin-top: -2px; 199 | position: absolute; 200 | top: 50%; 201 | width: 0 202 | } 203 | 204 | .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { 205 | float: left 206 | } 207 | 208 | .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { 209 | left: 1px; 210 | right: auto 211 | } 212 | 213 | .select2-container--default.select2-container--disabled .select2-selection--single { 214 | background-color: #e2e9e1; 215 | cursor: default 216 | } 217 | 218 | .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { 219 | display: none 220 | } 221 | 222 | .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { 223 | border-color: transparent transparent #888 transparent; 224 | border-width: 0 4px 5px 4px 225 | } 226 | 227 | .select2-container--default .select2-selection--multiple { 228 | background-color: white; 229 | border: 1px solid #aaa; 230 | border-radius: 4px; 231 | cursor: text 232 | } 233 | 234 | .select2-container--default .select2-selection--multiple .select2-selection__rendered { 235 | box-sizing: border-box; 236 | list-style: none; 237 | margin: 0; 238 | padding: 0 5px; 239 | width: 100% 240 | } 241 | 242 | .select2-container--default .select2-selection--multiple .select2-selection__rendered li { 243 | list-style: none 244 | } 245 | 246 | .select2-container--default .select2-selection--multiple .select2-selection__placeholder { 247 | color: #999; 248 | margin-top: 5px; 249 | float: left 250 | } 251 | 252 | .select2-container--default .select2-selection--multiple .select2-selection__clear { 253 | cursor: pointer; 254 | float: right; 255 | font-weight: bold; 256 | margin-top: 5px; 257 | margin-right: 10px 258 | } 259 | 260 | .select2-container--default .select2-selection--multiple .select2-selection__choice { 261 | background-color: #e4e4e4; 262 | border: 1px solid #aaa; 263 | border-radius: 4px; 264 | cursor: default; 265 | float: left; 266 | margin-right: 5px; 267 | margin-top: 5px; 268 | padding: 0 5px 269 | } 270 | 271 | .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { 272 | color: #999; 273 | cursor: pointer; 274 | display: inline-block; 275 | font-weight: bold; 276 | margin-right: 2px 277 | } 278 | 279 | .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { 280 | color: #333 281 | } 282 | 283 | .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, 284 | .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, 285 | .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { 286 | float: right 287 | } 288 | 289 | .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { 290 | margin-left: 5px; 291 | margin-right: auto 292 | } 293 | 294 | .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { 295 | margin-left: 2px; 296 | margin-right: auto 297 | } 298 | 299 | .select2-container--default.select2-container--focus .select2-selection--multiple { 300 | border: solid black 1px; 301 | outline: 0 302 | } 303 | 304 | .select2-container--default.select2-container--disabled .select2-selection--multiple { 305 | background-color: #e2e9e1; 306 | cursor: default 307 | } 308 | 309 | .select2-container--default.select2-container--disabled .select2-selection__choice__remove { 310 | display: none 311 | } 312 | 313 | .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, 314 | .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { 315 | border-top-left-radius: 0; 316 | border-top-right-radius: 0 317 | } 318 | 319 | .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, 320 | .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { 321 | border-bottom-left-radius: 0; 322 | border-bottom-right-radius: 0 323 | } 324 | 325 | .select2-container--default .select2-search--dropdown .select2-search__field { 326 | border: 1px solid #aaa 327 | } 328 | 329 | .select2-container--default .select2-search--inline .select2-search__field { 330 | background: transparent; 331 | border: none; 332 | outline: 0; 333 | box-shadow: none; 334 | -webkit-appearance: textfield 335 | } 336 | 337 | .select2-container--default .select2-results>.select2-results__options { 338 | max-height: 200px; 339 | overflow-y: auto 340 | } 341 | 342 | .select2-container--default .select2-results__option[role=group] { 343 | padding: 0 344 | } 345 | 346 | .select2-container--default .select2-results__option[aria-disabled=true] { 347 | color: #999 348 | } 349 | 350 | .select2-container--default .select2-results__option[aria-selected=true] { 351 | background-color: #ddd 352 | } 353 | 354 | .select2-container--default .select2-results__option .select2-results__option { 355 | padding-left: 1em 356 | } 357 | 358 | .select2-container--default .select2-results__option .select2-results__option .select2-results__group { 359 | padding-left: 0 360 | } 361 | 362 | .select2-container--default .select2-results__option .select2-results__option .select2-results__option { 363 | margin-left: -1em; 364 | padding-left: 2em 365 | } 366 | 367 | .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { 368 | margin-left: -2em; 369 | padding-left: 3em 370 | } 371 | 372 | .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { 373 | margin-left: -3em; 374 | padding-left: 4em 375 | } 376 | 377 | .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { 378 | margin-left: -4em; 379 | padding-left: 5em 380 | } 381 | 382 | .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { 383 | margin-left: -5em; 384 | padding-left: 6em 385 | } 386 | 387 | .select2-container--default .select2-results__option--highlighted[aria-selected] { 388 | background-color: #9ddbc9; 389 | color: #1a1a1a 390 | } 391 | 392 | .select2-container--default .select2-results__group { 393 | cursor: default; 394 | display: block; 395 | padding: 6px 396 | } 397 | 398 | 399 | .select2-container, 400 | .select2-dropdown, 401 | .select2-search, 402 | .select2-results { 403 | -webkit-transition: none !important; 404 | -moz-transition: none !important; 405 | -ms-transition: none !important; 406 | -o-transition: none !important; 407 | transition: none !important; 408 | } -------------------------------------------------------------------------------- /assets/css/plugins/slick.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | 4 | Slick Slider 5 | Version: 1.8.1 6 | Author: Ken Wheeler 7 | Website: http://kenwheeler.github.io 8 | Docs: http://kenwheeler.github.io/slick 9 | Repo: http://github.com/kenwheeler/slick 10 | Issues: http://github.com/kenwheeler/slick/issues 11 | */ 12 | .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} 13 | 14 | 15 | -------------------------------------------------------------------------------- /assets/css/vendors/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ 2 | 3 | /* Document 4 | ========================================================================== */ 5 | 6 | /** 7 | * 1. Correct the line height in all browsers. 8 | * 2. Prevent adjustments of font size after orientation changes in iOS. 9 | */ 10 | 11 | html { 12 | line-height: 1.15; /* 1 */ 13 | -webkit-text-size-adjust: 100%; /* 2 */ 14 | } 15 | 16 | /* Sections 17 | ========================================================================== */ 18 | 19 | /** 20 | * Remove the margin in all browsers. 21 | */ 22 | 23 | body { 24 | margin: 0; 25 | } 26 | 27 | /** 28 | * Render the `main` element consistently in IE. 29 | */ 30 | 31 | main { 32 | display: block; 33 | } 34 | 35 | /** 36 | * Correct the font size and margin on `h1` elements within `section` and 37 | * `article` contexts in Chrome, Firefox, and Safari. 38 | */ 39 | 40 | h1 { 41 | font-size: 2em; 42 | margin: 0.67em 0; 43 | } 44 | 45 | /* Grouping content 46 | ========================================================================== */ 47 | 48 | /** 49 | * 1. Add the correct box sizing in Firefox. 50 | * 2. Show the overflow in Edge and IE. 51 | */ 52 | 53 | hr { 54 | box-sizing: content-box; /* 1 */ 55 | height: 0; /* 1 */ 56 | overflow: visible; /* 2 */ 57 | } 58 | 59 | /** 60 | * 1. Correct the inheritance and scaling of font size in all browsers. 61 | * 2. Correct the odd `em` font sizing in all browsers. 62 | */ 63 | 64 | pre { 65 | font-family: monospace, monospace; /* 1 */ 66 | font-size: 1em; /* 2 */ 67 | } 68 | 69 | /* Text-level semantics 70 | ========================================================================== */ 71 | 72 | /** 73 | * Remove the gray background on active links in IE 10. 74 | */ 75 | 76 | a { 77 | background-color: transparent; 78 | } 79 | 80 | /** 81 | * 1. Remove the bottom border in Chrome 57- 82 | * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. 83 | */ 84 | 85 | abbr[title] { 86 | border-bottom: none; /* 1 */ 87 | text-decoration: underline; /* 2 */ 88 | text-decoration: underline dotted; /* 2 */ 89 | } 90 | 91 | /** 92 | * Add the correct font weight in Chrome, Edge, and Safari. 93 | */ 94 | 95 | b, 96 | strong { 97 | font-weight: bolder; 98 | } 99 | 100 | /** 101 | * 1. Correct the inheritance and scaling of font size in all browsers. 102 | * 2. Correct the odd `em` font sizing in all browsers. 103 | */ 104 | 105 | code, 106 | kbd, 107 | samp { 108 | font-family: monospace, monospace; /* 1 */ 109 | font-size: 1em; /* 2 */ 110 | } 111 | 112 | /** 113 | * Add the correct font size in all browsers. 114 | */ 115 | 116 | small { 117 | font-size: 80%; 118 | } 119 | 120 | /** 121 | * Prevent `sub` and `sup` elements from affecting the line height in 122 | * all browsers. 123 | */ 124 | 125 | sub, 126 | sup { 127 | font-size: 75%; 128 | line-height: 0; 129 | position: relative; 130 | vertical-align: baseline; 131 | } 132 | 133 | sub { 134 | bottom: -0.25em; 135 | } 136 | 137 | sup { 138 | top: -0.5em; 139 | } 140 | 141 | /* Embedded content 142 | ========================================================================== */ 143 | 144 | /** 145 | * Remove the border on images inside links in IE 10. 146 | */ 147 | 148 | img { 149 | border-style: none; 150 | } 151 | 152 | /* Forms 153 | ========================================================================== */ 154 | 155 | /** 156 | * 1. Change the font styles in all browsers. 157 | * 2. Remove the margin in Firefox and Safari. 158 | */ 159 | 160 | button, 161 | input, 162 | optgroup, 163 | select, 164 | textarea { 165 | font-family: inherit; /* 1 */ 166 | font-size: 100%; /* 1 */ 167 | line-height: 1.15; /* 1 */ 168 | margin: 0; /* 2 */ 169 | } 170 | 171 | /** 172 | * Show the overflow in IE. 173 | * 1. Show the overflow in Edge. 174 | */ 175 | 176 | button, 177 | input { /* 1 */ 178 | overflow: visible; 179 | } 180 | 181 | /** 182 | * Remove the inheritance of text transform in Edge, Firefox, and IE. 183 | * 1. Remove the inheritance of text transform in Firefox. 184 | */ 185 | 186 | button, 187 | select { /* 1 */ 188 | text-transform: none; 189 | } 190 | 191 | /** 192 | * Correct the inability to style clickable types in iOS and Safari. 193 | */ 194 | 195 | button, 196 | [type="button"], 197 | [type="reset"], 198 | [type="submit"] { 199 | -webkit-appearance: button; 200 | } 201 | 202 | /** 203 | * Remove the inner border and padding in Firefox. 204 | */ 205 | 206 | button::-moz-focus-inner, 207 | [type="button"]::-moz-focus-inner, 208 | [type="reset"]::-moz-focus-inner, 209 | [type="submit"]::-moz-focus-inner { 210 | border-style: none; 211 | padding: 0; 212 | } 213 | 214 | /** 215 | * Restore the focus styles unset by the previous rule. 216 | */ 217 | 218 | button:-moz-focusring, 219 | [type="button"]:-moz-focusring, 220 | [type="reset"]:-moz-focusring, 221 | [type="submit"]:-moz-focusring { 222 | outline: 1px dotted ButtonText; 223 | } 224 | 225 | /** 226 | * Correct the padding in Firefox. 227 | */ 228 | 229 | fieldset { 230 | padding: 0.35em 0.75em 0.625em; 231 | } 232 | 233 | /** 234 | * 1. Correct the text wrapping in Edge and IE. 235 | * 2. Correct the color inheritance from `fieldset` elements in IE. 236 | * 3. Remove the padding so developers are not caught out when they zero out 237 | * `fieldset` elements in all browsers. 238 | */ 239 | 240 | legend { 241 | box-sizing: border-box; /* 1 */ 242 | color: inherit; /* 2 */ 243 | display: table; /* 1 */ 244 | max-width: 100%; /* 1 */ 245 | padding: 0; /* 3 */ 246 | white-space: normal; /* 1 */ 247 | } 248 | 249 | /** 250 | * Add the correct vertical alignment in Chrome, Firefox, and Opera. 251 | */ 252 | 253 | progress { 254 | vertical-align: baseline; 255 | } 256 | 257 | /** 258 | * Remove the default vertical scrollbar in IE 10+. 259 | */ 260 | 261 | textarea { 262 | overflow: auto; 263 | } 264 | 265 | /** 266 | * 1. Add the correct box sizing in IE 10. 267 | * 2. Remove the padding in IE 10. 268 | */ 269 | 270 | [type="checkbox"], 271 | [type="radio"] { 272 | box-sizing: border-box; /* 1 */ 273 | padding: 0; /* 2 */ 274 | } 275 | 276 | /** 277 | * Correct the cursor style of increment and decrement buttons in Chrome. 278 | */ 279 | 280 | [type="number"]::-webkit-inner-spin-button, 281 | [type="number"]::-webkit-outer-spin-button { 282 | height: auto; 283 | } 284 | 285 | /** 286 | * 1. Correct the odd appearance in Chrome and Safari. 287 | * 2. Correct the outline style in Safari. 288 | */ 289 | 290 | [type="search"] { 291 | -webkit-appearance: textfield; /* 1 */ 292 | outline-offset: -2px; /* 2 */ 293 | } 294 | 295 | /** 296 | * Remove the inner padding in Chrome and Safari on macOS. 297 | */ 298 | 299 | [type="search"]::-webkit-search-decoration { 300 | -webkit-appearance: none; 301 | } 302 | 303 | /** 304 | * 1. Correct the inability to style clickable types in iOS and Safari. 305 | * 2. Change font properties to `inherit` in Safari. 306 | */ 307 | 308 | ::-webkit-file-upload-button { 309 | -webkit-appearance: button; /* 1 */ 310 | font: inherit; /* 2 */ 311 | } 312 | 313 | /* Interactive 314 | ========================================================================== */ 315 | 316 | /* 317 | * Add the correct display in Edge, IE 10+, and Firefox. 318 | */ 319 | 320 | details { 321 | display: block; 322 | } 323 | 324 | /* 325 | * Add the correct display in all browsers. 326 | */ 327 | 328 | summary { 329 | display: list-item; 330 | } 331 | 332 | /* Misc 333 | ========================================================================== */ 334 | 335 | /** 336 | * Add the correct display in IE 10+. 337 | */ 338 | 339 | template { 340 | display: none; 341 | } 342 | 343 | /** 344 | * Add the correct display in IE 10. 345 | */ 346 | 347 | [hidden] { 348 | display: none; 349 | } 350 | -------------------------------------------------------------------------------- /assets/css/vendors/uicons-regular-straight.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "uicons-regular-straight"; 3 | src: url("../../fonts/uicons/uicons-regular-straight.eot") format("embedded-opentype"), 4 | url("../../fonts/uicons/uicons-regular-straight.woff2") format("woff2"), 5 | url("../../fonts/uicons/uicons-regular-straight.woff") format("woff"); 6 | } 7 | 8 | i[class^="fi-rs-"], span[class^="fi-rs-"] { 9 | line-height: 0 !important; 10 | } 11 | 12 | i[class^="fi-rs-"]:before, i[class*=" fi-rs-"]:before, span[class^="fi-rs-"]:before, span[class*="fi-rs-"]:before { 13 | font-family: uicons-regular-straight !important; 14 | font-style: normal; 15 | font-weight: normal !important; 16 | font-variant: normal; 17 | text-transform: none; 18 | line-height: 1 !important; 19 | -webkit-font-smoothing: antialiased; 20 | -moz-osx-font-smoothing: grayscale; 21 | } 22 | 23 | .fi-rs-add:before { 24 | content: "\f101"; 25 | } 26 | .fi-rs-alarm-clock:before { 27 | content: "\f102"; 28 | } 29 | .fi-rs-align-center:before { 30 | content: "\f103"; 31 | } 32 | .fi-rs-align-justify:before { 33 | content: "\f104"; 34 | } 35 | .fi-rs-align-left:before { 36 | content: "\f105"; 37 | } 38 | .fi-rs-align-right:before { 39 | content: "\f106"; 40 | } 41 | .fi-rs-ambulance:before { 42 | content: "\f107"; 43 | } 44 | .fi-rs-angle-double-left:before { 45 | content: "\f108"; 46 | } 47 | .fi-rs-angle-double-right:before { 48 | content: "\f109"; 49 | } 50 | .fi-rs-angle-double-small-left:before { 51 | content: "\f10a"; 52 | } 53 | .fi-rs-angle-double-small-right:before { 54 | content: "\f10b"; 55 | } 56 | .fi-rs-angle-down:before { 57 | content: "\f10c"; 58 | } 59 | .fi-rs-angle-left:before { 60 | content: "\f10d"; 61 | } 62 | .fi-rs-angle-right:before { 63 | content: "\f10e"; 64 | } 65 | .fi-rs-angle-small-down:before { 66 | content: "\f10f"; 67 | } 68 | .fi-rs-angle-small-left:before { 69 | content: "\f110"; 70 | } 71 | .fi-rs-angle-small-right:before { 72 | content: "\f111"; 73 | } 74 | .fi-rs-angle-small-up:before { 75 | content: "\f112"; 76 | } 77 | .fi-rs-angle-up:before { 78 | content: "\f113"; 79 | } 80 | .fi-rs-apps-add:before { 81 | content: "\f114"; 82 | } 83 | .fi-rs-apps-delete:before { 84 | content: "\f115"; 85 | } 86 | .fi-rs-apps-sort:before { 87 | content: "\f116"; 88 | } 89 | .fi-rs-apps:before { 90 | content: "\f117"; 91 | } 92 | .fi-rs-archive:before { 93 | content: "\f118"; 94 | } 95 | .fi-rs-arrow-down:before { 96 | content: "\f119"; 97 | } 98 | .fi-rs-arrow-left:before { 99 | content: "\f11a"; 100 | } 101 | .fi-rs-arrow-right:before { 102 | content: "\f11b"; 103 | } 104 | .fi-rs-arrow-small-down:before { 105 | content: "\f11c"; 106 | } 107 | .fi-rs-arrow-small-left:before { 108 | content: "\f11d"; 109 | } 110 | .fi-rs-arrow-small-right:before { 111 | content: "\f11e"; 112 | } 113 | .fi-rs-arrow-small-up:before { 114 | content: "\f11f"; 115 | } 116 | .fi-rs-arrow-up:before { 117 | content: "\f120"; 118 | } 119 | .fi-rs-asterisk:before { 120 | content: "\f121"; 121 | } 122 | .fi-rs-backpack:before { 123 | content: "\f122"; 124 | } 125 | .fi-rs-badge:before { 126 | content: "\f123"; 127 | } 128 | .fi-rs-ban:before { 129 | content: "\f124"; 130 | } 131 | .fi-rs-band-aid:before { 132 | content: "\f125"; 133 | } 134 | .fi-rs-bank:before { 135 | content: "\f126"; 136 | } 137 | .fi-rs-barber-shop:before { 138 | content: "\f127"; 139 | } 140 | .fi-rs-baseball:before { 141 | content: "\f128"; 142 | } 143 | .fi-rs-basketball:before { 144 | content: "\f129"; 145 | } 146 | .fi-rs-bell-ring:before { 147 | content: "\f12a"; 148 | } 149 | .fi-rs-bell-school:before { 150 | content: "\f12b"; 151 | } 152 | .fi-rs-bell:before { 153 | content: "\f12c"; 154 | } 155 | .fi-rs-billiard:before { 156 | content: "\f12d"; 157 | } 158 | .fi-rs-bold:before { 159 | content: "\f12e"; 160 | } 161 | .fi-rs-book-alt:before { 162 | content: "\f12f"; 163 | } 164 | .fi-rs-book:before { 165 | content: "\f130"; 166 | } 167 | .fi-rs-bookmark:before { 168 | content: "\f131"; 169 | } 170 | .fi-rs-bowling:before { 171 | content: "\f132"; 172 | } 173 | .fi-rs-box-alt:before { 174 | content: "\f133"; 175 | } 176 | .fi-rs-box:before { 177 | content: "\f134"; 178 | } 179 | .fi-rs-briefcase:before { 180 | content: "\f135"; 181 | } 182 | .fi-rs-broom:before { 183 | content: "\f136"; 184 | } 185 | .fi-rs-browser:before { 186 | content: "\f137"; 187 | } 188 | .fi-rs-brush:before { 189 | content: "\f138"; 190 | } 191 | .fi-rs-bug:before { 192 | content: "\f139"; 193 | } 194 | .fi-rs-building:before { 195 | content: "\f13a"; 196 | } 197 | .fi-rs-bulb:before { 198 | content: "\f13b"; 199 | } 200 | .fi-rs-calculator:before { 201 | content: "\f13c"; 202 | } 203 | .fi-rs-calendar:before { 204 | content: "\f13d"; 205 | } 206 | .fi-rs-camera:before { 207 | content: "\f13e"; 208 | } 209 | .fi-rs-caret-down:before { 210 | content: "\f13f"; 211 | } 212 | .fi-rs-caret-left:before { 213 | content: "\f140"; 214 | } 215 | .fi-rs-caret-right:before { 216 | content: "\f141"; 217 | } 218 | .fi-rs-caret-up:before { 219 | content: "\f142"; 220 | } 221 | .fi-rs-check:before { 222 | content: "\f143"; 223 | } 224 | .fi-rs-checkbox:before { 225 | content: "\f144"; 226 | } 227 | .fi-rs-chess:before { 228 | content: "\f145"; 229 | } 230 | .fi-rs-circle-small:before { 231 | content: "\f146"; 232 | } 233 | .fi-rs-circle:before { 234 | content: "\f147"; 235 | } 236 | .fi-rs-clip:before { 237 | content: "\f148"; 238 | } 239 | .fi-rs-clock:before { 240 | content: "\f149"; 241 | } 242 | .fi-rs-cloud-check:before { 243 | content: "\f14a"; 244 | } 245 | .fi-rs-cloud-disabled:before { 246 | content: "\f14b"; 247 | } 248 | .fi-rs-cloud-download:before { 249 | content: "\f14c"; 250 | } 251 | .fi-rs-cloud-share:before { 252 | content: "\f14d"; 253 | } 254 | .fi-rs-cloud-upload:before { 255 | content: "\f14e"; 256 | } 257 | .fi-rs-cloud:before { 258 | content: "\f14f"; 259 | } 260 | .fi-rs-comment-alt:before { 261 | content: "\f150"; 262 | } 263 | .fi-rs-comment:before { 264 | content: "\f151"; 265 | } 266 | .fi-rs-compress-alt:before { 267 | content: "\f152"; 268 | } 269 | .fi-rs-compress:before { 270 | content: "\f153"; 271 | } 272 | .fi-rs-computer:before { 273 | content: "\f154"; 274 | } 275 | .fi-rs-cookie:before { 276 | content: "\f155"; 277 | } 278 | .fi-rs-copy-alt:before { 279 | content: "\f156"; 280 | } 281 | .fi-rs-copy:before { 282 | content: "\f157"; 283 | } 284 | .fi-rs-copyright:before { 285 | content: "\f158"; 286 | } 287 | .fi-rs-cream:before { 288 | content: "\f159"; 289 | } 290 | .fi-rs-credit-card:before { 291 | content: "\f15a"; 292 | } 293 | .fi-rs-cross-circle:before { 294 | content: "\f15b"; 295 | } 296 | .fi-rs-cross-small:before { 297 | content: "\f15c"; 298 | } 299 | .fi-rs-cross:before { 300 | content: "\f15d"; 301 | } 302 | .fi-rs-crown:before { 303 | content: "\f15e"; 304 | } 305 | .fi-rs-cursor-finger:before { 306 | content: "\f15f"; 307 | } 308 | .fi-rs-cursor-plus:before { 309 | content: "\f160"; 310 | } 311 | .fi-rs-cursor-text-alt:before { 312 | content: "\f161"; 313 | } 314 | .fi-rs-cursor-text:before { 315 | content: "\f162"; 316 | } 317 | .fi-rs-cursor:before { 318 | content: "\f163"; 319 | } 320 | .fi-rs-dart:before { 321 | content: "\f164"; 322 | } 323 | .fi-rs-dashboard:before { 324 | content: "\f165"; 325 | } 326 | .fi-rs-data-transfer:before { 327 | content: "\f166"; 328 | } 329 | .fi-rs-database:before { 330 | content: "\f167"; 331 | } 332 | .fi-rs-delete:before { 333 | content: "\f168"; 334 | } 335 | .fi-rs-diamond:before { 336 | content: "\f169"; 337 | } 338 | .fi-rs-dice:before { 339 | content: "\f16a"; 340 | } 341 | .fi-rs-diploma:before { 342 | content: "\f16b"; 343 | } 344 | .fi-rs-disk:before { 345 | content: "\f16c"; 346 | } 347 | .fi-rs-doctor:before { 348 | content: "\f16d"; 349 | } 350 | .fi-rs-document-signed:before { 351 | content: "\f16e"; 352 | } 353 | .fi-rs-document:before { 354 | content: "\f16f"; 355 | } 356 | .fi-rs-dollar:before { 357 | content: "\f170"; 358 | } 359 | .fi-rs-download:before { 360 | content: "\f171"; 361 | } 362 | .fi-rs-duplicate:before { 363 | content: "\f172"; 364 | } 365 | .fi-rs-e-learning:before { 366 | content: "\f173"; 367 | } 368 | .fi-rs-earnings:before { 369 | content: "\f174"; 370 | } 371 | .fi-rs-edit-alt:before { 372 | content: "\f175"; 373 | } 374 | .fi-rs-edit:before { 375 | content: "\f176"; 376 | } 377 | .fi-rs-envelope:before { 378 | content: "\f177"; 379 | } 380 | .fi-rs-euro:before { 381 | content: "\f178"; 382 | } 383 | .fi-rs-exclamation:before { 384 | content: "\f179"; 385 | } 386 | .fi-rs-expand:before { 387 | content: "\f17a"; 388 | } 389 | .fi-rs-eye-crossed:before { 390 | content: "\f17b"; 391 | } 392 | .fi-rs-eye-dropper:before { 393 | content: "\f17c"; 394 | } 395 | .fi-rs-eye:before { 396 | content: "\f17d"; 397 | } 398 | .fi-rs-feather:before { 399 | content: "\f17e"; 400 | } 401 | .fi-rs-file-add:before { 402 | content: "\f17f"; 403 | } 404 | .fi-rs-file-ai:before { 405 | content: "\f180"; 406 | } 407 | .fi-rs-file-check:before { 408 | content: "\f181"; 409 | } 410 | .fi-rs-file-delete:before { 411 | content: "\f182"; 412 | } 413 | .fi-rs-file-eps:before { 414 | content: "\f183"; 415 | } 416 | .fi-rs-file-gif:before { 417 | content: "\f184"; 418 | } 419 | .fi-rs-file-music:before { 420 | content: "\f185"; 421 | } 422 | .fi-rs-file-psd:before { 423 | content: "\f186"; 424 | } 425 | .fi-rs-file:before { 426 | content: "\f187"; 427 | } 428 | .fi-rs-fill:before { 429 | content: "\f188"; 430 | } 431 | .fi-rs-film:before { 432 | content: "\f189"; 433 | } 434 | .fi-rs-filter:before { 435 | content: "\f18a"; 436 | } 437 | .fi-rs-fingerprint:before { 438 | content: "\f18b"; 439 | } 440 | .fi-rs-flag:before { 441 | content: "\f18c"; 442 | } 443 | .fi-rs-flame:before { 444 | content: "\f18d"; 445 | } 446 | .fi-rs-flip-horizontal:before { 447 | content: "\f18e"; 448 | } 449 | .fi-rs-folder-add:before { 450 | content: "\f18f"; 451 | } 452 | .fi-rs-folder:before { 453 | content: "\f190"; 454 | } 455 | .fi-rs-following:before { 456 | content: "\f191"; 457 | } 458 | .fi-rs-football:before { 459 | content: "\f192"; 460 | } 461 | .fi-rs-form:before { 462 | content: "\f193"; 463 | } 464 | .fi-rs-forward:before { 465 | content: "\f194"; 466 | } 467 | .fi-rs-ftp:before { 468 | content: "\f195"; 469 | } 470 | .fi-rs-gallery:before { 471 | content: "\f196"; 472 | } 473 | .fi-rs-glasses:before { 474 | content: "\f197"; 475 | } 476 | .fi-rs-globe-alt:before { 477 | content: "\f198"; 478 | } 479 | .fi-rs-globe:before { 480 | content: "\f199"; 481 | } 482 | .fi-rs-golf:before { 483 | content: "\f19a"; 484 | } 485 | .fi-rs-graduation-cap:before { 486 | content: "\f19b"; 487 | } 488 | .fi-rs-graphic-tablet:before { 489 | content: "\f19c"; 490 | } 491 | .fi-rs-grid-alt:before { 492 | content: "\f19d"; 493 | } 494 | .fi-rs-grid:before { 495 | content: "\f19e"; 496 | } 497 | .fi-rs-gym:before { 498 | content: "\f19f"; 499 | } 500 | .fi-rs-headphones:before { 501 | content: "\f1a0"; 502 | } 503 | .fi-rs-headset:before { 504 | content: "\f1a1"; 505 | } 506 | .fi-rs-heart:before { 507 | content: "\f1a2"; 508 | } 509 | .fi-rs-home:before { 510 | content: "\f1a3"; 511 | } 512 | .fi-rs-hourglass-end:before { 513 | content: "\f1a4"; 514 | } 515 | .fi-rs-hourglass:before { 516 | content: "\f1a5"; 517 | } 518 | .fi-rs-ice-skate:before { 519 | content: "\f1a6"; 520 | } 521 | .fi-rs-id-badge:before { 522 | content: "\f1a7"; 523 | } 524 | .fi-rs-inbox:before { 525 | content: "\f1a8"; 526 | } 527 | .fi-rs-incognito:before { 528 | content: "\f1a9"; 529 | } 530 | .fi-rs-indent:before { 531 | content: "\f1aa"; 532 | } 533 | .fi-rs-infinity:before { 534 | content: "\f1ab"; 535 | } 536 | .fi-rs-info:before { 537 | content: "\f1ac"; 538 | } 539 | .fi-rs-interactive:before { 540 | content: "\f1ad"; 541 | } 542 | .fi-rs-interlining:before { 543 | content: "\f1ae"; 544 | } 545 | .fi-rs-interrogation:before { 546 | content: "\f1af"; 547 | } 548 | .fi-rs-italic:before { 549 | content: "\f1b0"; 550 | } 551 | .fi-rs-jpg:before { 552 | content: "\f1b1"; 553 | } 554 | .fi-rs-key:before { 555 | content: "\f1b2"; 556 | } 557 | .fi-rs-keyboard:before { 558 | content: "\f1b3"; 559 | } 560 | .fi-rs-label:before { 561 | content: "\f1b4"; 562 | } 563 | .fi-rs-laptop:before { 564 | content: "\f1b5"; 565 | } 566 | .fi-rs-lasso:before { 567 | content: "\f1b6"; 568 | } 569 | .fi-rs-layers:before { 570 | content: "\f1b7"; 571 | } 572 | .fi-rs-layout-fluid:before { 573 | content: "\f1b8"; 574 | } 575 | .fi-rs-letter-case:before { 576 | content: "\f1b9"; 577 | } 578 | .fi-rs-life-ring:before { 579 | content: "\f1ba"; 580 | } 581 | .fi-rs-line-width:before { 582 | content: "\f1bb"; 583 | } 584 | .fi-rs-link:before { 585 | content: "\f1bc"; 586 | } 587 | .fi-rs-lipstick:before { 588 | content: "\f1bd"; 589 | } 590 | .fi-rs-list-check:before { 591 | content: "\f1be"; 592 | } 593 | .fi-rs-list:before { 594 | content: "\f1bf"; 595 | } 596 | .fi-rs-location-alt:before { 597 | content: "\f1c0"; 598 | } 599 | .fi-rs-lock-alt:before { 600 | content: "\f1c1"; 601 | } 602 | .fi-rs-lock:before { 603 | content: "\f1c2"; 604 | } 605 | .fi-rs-magic-wand:before { 606 | content: "\f1c3"; 607 | } 608 | .fi-rs-makeup-brush:before { 609 | content: "\f1c4"; 610 | } 611 | .fi-rs-marker-time:before { 612 | content: "\f1c5"; 613 | } 614 | .fi-rs-marker:before { 615 | content: "\f1c6"; 616 | } 617 | .fi-rs-medicine:before { 618 | content: "\f1c7"; 619 | } 620 | .fi-rs-megaphone:before { 621 | content: "\f1c8"; 622 | } 623 | .fi-rs-menu-burger:before { 624 | content: "\f1c9"; 625 | } 626 | .fi-rs-menu-dots-vertical:before { 627 | content: "\f1ca"; 628 | } 629 | .fi-rs-menu-dots:before { 630 | content: "\f1cb"; 631 | } 632 | .fi-rs-microphone:before { 633 | content: "\f1cc"; 634 | } 635 | .fi-rs-minus-small:before { 636 | content: "\f1cd"; 637 | } 638 | .fi-rs-minus:before { 639 | content: "\f1ce"; 640 | } 641 | .fi-rs-mobile:before { 642 | content: "\f1cf"; 643 | } 644 | .fi-rs-mode-landscape:before { 645 | content: "\f1d0"; 646 | } 647 | .fi-rs-mode-portrait:before { 648 | content: "\f1d1"; 649 | } 650 | .fi-rs-money:before { 651 | content: "\f1d2"; 652 | } 653 | .fi-rs-mouse:before { 654 | content: "\f1d3"; 655 | } 656 | .fi-rs-music-alt:before { 657 | content: "\f1d4"; 658 | } 659 | .fi-rs-music:before { 660 | content: "\f1d5"; 661 | } 662 | .fi-rs-network-cloud:before { 663 | content: "\f1d6"; 664 | } 665 | .fi-rs-network:before { 666 | content: "\f1d7"; 667 | } 668 | .fi-rs-notebook:before { 669 | content: "\f1d8"; 670 | } 671 | .fi-rs-opacity:before { 672 | content: "\f1d9"; 673 | } 674 | .fi-rs-package:before { 675 | content: "\f1da"; 676 | } 677 | .fi-rs-paint-brush:before { 678 | content: "\f1db"; 679 | } 680 | .fi-rs-palette:before { 681 | content: "\f1dc"; 682 | } 683 | .fi-rs-paper-plane:before { 684 | content: "\f1dd"; 685 | } 686 | .fi-rs-password:before { 687 | content: "\f1de"; 688 | } 689 | .fi-rs-pause:before { 690 | content: "\f1df"; 691 | } 692 | .fi-rs-pencil:before { 693 | content: "\f1e0"; 694 | } 695 | .fi-rs-pharmacy:before { 696 | content: "\f1e1"; 697 | } 698 | .fi-rs-physics:before { 699 | content: "\f1e2"; 700 | } 701 | .fi-rs-picture:before { 702 | content: "\f1e3"; 703 | } 704 | .fi-rs-ping-pong:before { 705 | content: "\f1e4"; 706 | } 707 | .fi-rs-play-alt:before { 708 | content: "\f1e5"; 709 | } 710 | .fi-rs-play:before { 711 | content: "\f1e6"; 712 | } 713 | .fi-rs-playing-cards:before { 714 | content: "\f1e7"; 715 | } 716 | .fi-rs-plus-small:before { 717 | content: "\f1e8"; 718 | } 719 | .fi-rs-plus:before { 720 | content: "\f1e9"; 721 | } 722 | .fi-rs-poker-chip:before { 723 | content: "\f1ea"; 724 | } 725 | .fi-rs-portrait:before { 726 | content: "\f1eb"; 727 | } 728 | .fi-rs-pound:before { 729 | content: "\f1ec"; 730 | } 731 | .fi-rs-power:before { 732 | content: "\f1ed"; 733 | } 734 | .fi-rs-presentation:before { 735 | content: "\f1ee"; 736 | } 737 | .fi-rs-print:before { 738 | content: "\f1ef"; 739 | } 740 | .fi-rs-protractor:before { 741 | content: "\f1f0"; 742 | } 743 | .fi-rs-pulse:before { 744 | content: "\f1f1"; 745 | } 746 | .fi-rs-quote-right:before { 747 | content: "\f1f2"; 748 | } 749 | .fi-rs-rec:before { 750 | content: "\f1f3"; 751 | } 752 | .fi-rs-receipt:before { 753 | content: "\f1f4"; 754 | } 755 | .fi-rs-rectangle-horizontal:before { 756 | content: "\f1f5"; 757 | } 758 | .fi-rs-rectangle-panoramic:before { 759 | content: "\f1f6"; 760 | } 761 | .fi-rs-rectangle-vertical:before { 762 | content: "\f1f7"; 763 | } 764 | .fi-rs-redo:before { 765 | content: "\f1f8"; 766 | } 767 | .fi-rs-reflect:before { 768 | content: "\f1f9"; 769 | } 770 | .fi-rs-refresh:before { 771 | content: "\f1fa"; 772 | } 773 | .fi-rs-resize:before { 774 | content: "\f1fb"; 775 | } 776 | .fi-rs-resources:before { 777 | content: "\f1fc"; 778 | } 779 | .fi-rs-rewind:before { 780 | content: "\f1fd"; 781 | } 782 | .fi-rs-rocket:before { 783 | content: "\f1fe"; 784 | } 785 | .fi-rs-rotate-right:before { 786 | content: "\f1ff"; 787 | } 788 | .fi-rs-rugby:before { 789 | content: "\f200"; 790 | } 791 | .fi-rs-scale:before { 792 | content: "\f201"; 793 | } 794 | .fi-rs-school-bus:before { 795 | content: "\f202"; 796 | } 797 | .fi-rs-school:before { 798 | content: "\f203"; 799 | } 800 | .fi-rs-scissors:before { 801 | content: "\f204"; 802 | } 803 | .fi-rs-screen:before { 804 | content: "\f205"; 805 | } 806 | .fi-rs-search-alt:before { 807 | content: "\f206"; 808 | } 809 | .fi-rs-search:before { 810 | content: "\f207"; 811 | } 812 | .fi-rs-settings-sliders:before { 813 | content: "\f208"; 814 | } 815 | .fi-rs-settings:before { 816 | content: "\f209"; 817 | } 818 | .fi-rs-share:before { 819 | content: "\f20a"; 820 | } 821 | .fi-rs-shield-check:before { 822 | content: "\f20b"; 823 | } 824 | .fi-rs-shield-exclamation:before { 825 | content: "\f20c"; 826 | } 827 | .fi-rs-shield-interrogation:before { 828 | content: "\f20d"; 829 | } 830 | .fi-rs-shield-plus:before { 831 | content: "\f20e"; 832 | } 833 | .fi-rs-shield:before { 834 | content: "\f20f"; 835 | } 836 | .fi-rs-shop:before { 837 | content: "\f210"; 838 | } 839 | .fi-rs-shopping-bag-add:before { 840 | content: "\f211"; 841 | } 842 | .fi-rs-shopping-bag:before { 843 | content: "\f212"; 844 | } 845 | .fi-rs-shopping-cart-add:before { 846 | content: "\f213"; 847 | } 848 | .fi-rs-shopping-cart-check:before { 849 | content: "\f214"; 850 | } 851 | .fi-rs-shopping-cart:before { 852 | content: "\f215"; 853 | } 854 | .fi-rs-shuffle:before { 855 | content: "\f216"; 856 | } 857 | .fi-rs-sign-in:before { 858 | content: "\f217"; 859 | } 860 | .fi-rs-sign-out:before { 861 | content: "\f218"; 862 | } 863 | .fi-rs-signal-alt-1:before { 864 | content: "\f219"; 865 | } 866 | .fi-rs-signal-alt-2:before { 867 | content: "\f21a"; 868 | } 869 | .fi-rs-signal-alt:before { 870 | content: "\f21b"; 871 | } 872 | .fi-rs-skateboard:before { 873 | content: "\f21c"; 874 | } 875 | .fi-rs-smartphone:before { 876 | content: "\f21d"; 877 | } 878 | .fi-rs-soap:before { 879 | content: "\f21e"; 880 | } 881 | .fi-rs-spa:before { 882 | content: "\f21f"; 883 | } 884 | .fi-rs-speaker:before { 885 | content: "\f220"; 886 | } 887 | .fi-rs-spinner-alt:before { 888 | content: "\f221"; 889 | } 890 | .fi-rs-spinner:before { 891 | content: "\f222"; 892 | } 893 | .fi-rs-square-root:before { 894 | content: "\f223"; 895 | } 896 | .fi-rs-square:before { 897 | content: "\f224"; 898 | } 899 | .fi-rs-star:before { 900 | content: "\f225"; 901 | } 902 | .fi-rs-stats:before { 903 | content: "\f226"; 904 | } 905 | .fi-rs-stethoscope:before { 906 | content: "\f227"; 907 | } 908 | .fi-rs-sticker:before { 909 | content: "\f228"; 910 | } 911 | .fi-rs-stop:before { 912 | content: "\f229"; 913 | } 914 | .fi-rs-stopwatch:before { 915 | content: "\f22a"; 916 | } 917 | .fi-rs-subtitles:before { 918 | content: "\f22b"; 919 | } 920 | .fi-rs-surfing:before { 921 | content: "\f22c"; 922 | } 923 | .fi-rs-sword:before { 924 | content: "\f22d"; 925 | } 926 | .fi-rs-syringe:before { 927 | content: "\f22e"; 928 | } 929 | .fi-rs-tablet:before { 930 | content: "\f22f"; 931 | } 932 | .fi-rs-target:before { 933 | content: "\f230"; 934 | } 935 | .fi-rs-tennis:before { 936 | content: "\f231"; 937 | } 938 | .fi-rs-test-tube:before { 939 | content: "\f232"; 940 | } 941 | .fi-rs-test:before { 942 | content: "\f233"; 943 | } 944 | .fi-rs-text-check:before { 945 | content: "\f234"; 946 | } 947 | .fi-rs-text:before { 948 | content: "\f235"; 949 | } 950 | .fi-rs-thumbs-down:before { 951 | content: "\f236"; 952 | } 953 | .fi-rs-thumbs-up:before { 954 | content: "\f237"; 955 | } 956 | .fi-rs-ticket:before { 957 | content: "\f238"; 958 | } 959 | .fi-rs-time-add:before { 960 | content: "\f239"; 961 | } 962 | .fi-rs-time-check:before { 963 | content: "\f23a"; 964 | } 965 | .fi-rs-time-delete:before { 966 | content: "\f23b"; 967 | } 968 | .fi-rs-time-fast:before { 969 | content: "\f23c"; 970 | } 971 | .fi-rs-time-forward-sixty:before { 972 | content: "\f23d"; 973 | } 974 | .fi-rs-time-forward-ten:before { 975 | content: "\f23e"; 976 | } 977 | .fi-rs-time-forward:before { 978 | content: "\f23f"; 979 | } 980 | .fi-rs-time-half-past:before { 981 | content: "\f240"; 982 | } 983 | .fi-rs-time-oclock:before { 984 | content: "\f241"; 985 | } 986 | .fi-rs-time-past:before { 987 | content: "\f242"; 988 | } 989 | .fi-rs-time-quarter-past:before { 990 | content: "\f243"; 991 | } 992 | .fi-rs-time-quarter-to:before { 993 | content: "\f244"; 994 | } 995 | .fi-rs-time-twenty-four:before { 996 | content: "\f245"; 997 | } 998 | .fi-rs-tool-crop:before { 999 | content: "\f246"; 1000 | } 1001 | .fi-rs-tool-marquee:before { 1002 | content: "\f247"; 1003 | } 1004 | .fi-rs-tooth:before { 1005 | content: "\f248"; 1006 | } 1007 | .fi-rs-transform:before { 1008 | content: "\f249"; 1009 | } 1010 | .fi-rs-trash:before { 1011 | content: "\f24a"; 1012 | } 1013 | .fi-rs-treatment:before { 1014 | content: "\f24b"; 1015 | } 1016 | .fi-rs-trophy:before { 1017 | content: "\f24c"; 1018 | } 1019 | .fi-rs-umbrella:before { 1020 | content: "\f24d"; 1021 | } 1022 | .fi-rs-underline:before { 1023 | content: "\f24e"; 1024 | } 1025 | .fi-rs-undo:before { 1026 | content: "\f24f"; 1027 | } 1028 | .fi-rs-unlock:before { 1029 | content: "\f250"; 1030 | } 1031 | .fi-rs-upload:before { 1032 | content: "\f251"; 1033 | } 1034 | .fi-rs-usb-drive:before { 1035 | content: "\f252"; 1036 | } 1037 | .fi-rs-user-add:before { 1038 | content: "\f253"; 1039 | } 1040 | .fi-rs-user-delete:before { 1041 | content: "\f254"; 1042 | } 1043 | .fi-rs-user-remove:before { 1044 | content: "\f255"; 1045 | } 1046 | .fi-rs-user-time:before { 1047 | content: "\f256"; 1048 | } 1049 | .fi-rs-user:before { 1050 | content: "\f257"; 1051 | } 1052 | .fi-rs-users:before { 1053 | content: "\f258"; 1054 | } 1055 | .fi-rs-vector-2:before { 1056 | content: "\f259"; 1057 | } 1058 | .fi-rs-vector-alt:before { 1059 | content: "\f25a"; 1060 | } 1061 | .fi-rs-video-camera:before { 1062 | content: "\f25b"; 1063 | } 1064 | .fi-rs-volleyball:before { 1065 | content: "\f25c"; 1066 | } 1067 | .fi-rs-volume:before { 1068 | content: "\f25d"; 1069 | } 1070 | .fi-rs-wifi-alt:before { 1071 | content: "\f25e"; 1072 | } 1073 | .fi-rs-world:before { 1074 | content: "\f25f"; 1075 | } 1076 | .fi-rs-yen:before { 1077 | content: "\f260"; 1078 | } 1079 | .fi-rs-zoom-in:before { 1080 | content: "\f261"; 1081 | } 1082 | .fi-rs-zoom-out:before { 1083 | content: "\f262"; 1084 | } 1085 | -------------------------------------------------------------------------------- /assets/fonts/uicons/uicons-regular-straight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/fonts/uicons/uicons-regular-straight.eot -------------------------------------------------------------------------------- /assets/fonts/uicons/uicons-regular-straight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/fonts/uicons/uicons-regular-straight.woff -------------------------------------------------------------------------------- /assets/fonts/uicons/uicons-regular-straight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/fonts/uicons/uicons-regular-straight.woff2 -------------------------------------------------------------------------------- /assets/imgs/banner/banner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/banner-1.png -------------------------------------------------------------------------------- /assets/imgs/banner/banner-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/banner-11.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/banner-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/banner-2.png -------------------------------------------------------------------------------- /assets/imgs/banner/banner-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/banner-3.png -------------------------------------------------------------------------------- /assets/imgs/banner/banner-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/banner-4.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-1.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-2.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-3.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-4.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-5.png -------------------------------------------------------------------------------- /assets/imgs/banner/brand-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/brand-6.png -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner-2.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner-3.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner-4.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner-5.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner-6.jpg -------------------------------------------------------------------------------- /assets/imgs/banner/menu-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/banner/menu-banner.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-1.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-2.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-3.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-4.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-5.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-6.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-8.jpg -------------------------------------------------------------------------------- /assets/imgs/blog/blog-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/blog/blog-9.jpg -------------------------------------------------------------------------------- /assets/imgs/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/login.png -------------------------------------------------------------------------------- /assets/imgs/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/logo/logo.png -------------------------------------------------------------------------------- /assets/imgs/page/about-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/about-1.png -------------------------------------------------------------------------------- /assets/imgs/page/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-1.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-2.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-3.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-4.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-5.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-6.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-7.jpg -------------------------------------------------------------------------------- /assets/imgs/page/avatar-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/page/avatar-8.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-3.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-4.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-5.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-6.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-7.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/category-thumb-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/category-thumb-8.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-1-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-1-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-10-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-10-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-10-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-10-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-11-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-11-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-11-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-11-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-12-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-12-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-12-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-13-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-13-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-13-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-13-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-14-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-14-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-14-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-14-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-15-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-15-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-15-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-15-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-3.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-4.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-5.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-6.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-16-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-16-7.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-2-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-2-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-3-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-3-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-4-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-4-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-5-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-5-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-6-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-6-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-7-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-7-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-7-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-8-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-8-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-8-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-9-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-9-1.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/product-9-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/product-9-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-2.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-3.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-4.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-5.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-6.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-7.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-8.jpg -------------------------------------------------------------------------------- /assets/imgs/shop/thumbnail-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/shop/thumbnail-9.jpg -------------------------------------------------------------------------------- /assets/imgs/slider/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/slider/slider-1.png -------------------------------------------------------------------------------- /assets/imgs/slider/slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/slider/slider-2.png -------------------------------------------------------------------------------- /assets/imgs/theme/app-store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/app-store.jpg -------------------------------------------------------------------------------- /assets/imgs/theme/btn-brush-bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/btn-brush-bg-1.png -------------------------------------------------------------------------------- /assets/imgs/theme/btn-brush-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/btn-brush-bg-2.png -------------------------------------------------------------------------------- /assets/imgs/theme/btn-brush-bg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/btn-brush-bg-3.png -------------------------------------------------------------------------------- /assets/imgs/theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/favicon.ico -------------------------------------------------------------------------------- /assets/imgs/theme/flag-dt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/flag-dt.png -------------------------------------------------------------------------------- /assets/imgs/theme/flag-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/flag-fr.png -------------------------------------------------------------------------------- /assets/imgs/theme/flag-ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/flag-ru.png -------------------------------------------------------------------------------- /assets/imgs/theme/google-play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/google-play.jpg -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-1.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-2.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-3.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-4.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-5.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/feature-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/feature-6.png -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-cart.svg: -------------------------------------------------------------------------------- 1 | 109 shopping bag -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-email.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-heart.svg: -------------------------------------------------------------------------------- 1 | 121 heart -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-pinterest.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/icon-youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/imgs/theme/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/icons/search.png -------------------------------------------------------------------------------- /assets/imgs/theme/payment-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/payment-method.png -------------------------------------------------------------------------------- /assets/imgs/theme/rating-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/rating-stars.png -------------------------------------------------------------------------------- /assets/imgs/theme/topbar-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfsidemedia/Laravel-9-E-Commerce/7f47fdd7952e41c47029fbacdb31f1cce1dc8ef8/assets/imgs/theme/topbar-bg.jpg -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | "use strict"; 3 | // Page loading 4 | $(window).on('load', function() { 5 | $('#preloader-active').delay(450).fadeOut('slow'); 6 | $('body').delay(450).css({ 7 | 'overflow': 'visible' 8 | }); 9 | $("#onloadModal").modal('show'); 10 | }); 11 | /*----------------- 12 | Menu Stick 13 | -----------------*/ 14 | var header = $('.sticky-bar'); 15 | var win = $(window); 16 | win.on('scroll', function() { 17 | var scroll = win.scrollTop(); 18 | if (scroll < 200) { 19 | header.removeClass('stick'); 20 | $('.header-style-2 .categori-dropdown-active-large').removeClass('open'); 21 | $('.header-style-2 .categori-button-active').removeClass('open'); 22 | } else { 23 | header.addClass('stick'); 24 | } 25 | }); 26 | 27 | /*------ ScrollUp -------- */ 28 | $.scrollUp({ 29 | scrollText: '', 30 | easingType: 'linear', 31 | scrollSpeed: 900, 32 | animation: 'fade' 33 | }); 34 | 35 | /*------ Wow Active ----*/ 36 | new WOW().init(); 37 | 38 | //sidebar sticky 39 | if ($('.sticky-sidebar').length) { 40 | $('.sticky-sidebar').theiaStickySidebar(); 41 | } 42 | 43 | // Slider Range JS 44 | if ( $("#slider-range").length ) { 45 | $("#slider-range").slider({ 46 | range: true, 47 | min: 0, 48 | max: 500, 49 | values: [130, 250], 50 | slide: function (event, ui) { 51 | $("#amount").val("$" + ui.values[0] + " - $" + ui.values[1]); 52 | } 53 | }); 54 | $("#amount").val("$" + $("#slider-range").slider("values", 0) + 55 | " - $" + $("#slider-range").slider("values", 1)); 56 | } 57 | 58 | /*------ Hero slider 1 ----*/ 59 | $('.hero-slider-1').slick({ 60 | slidesToShow: 1, 61 | slidesToScroll: 1, 62 | fade: true, 63 | loop: true, 64 | dots: true, 65 | arrows: true, 66 | prevArrow: '', 67 | nextArrow: '', 68 | appendArrows: '.hero-slider-1-arrow', 69 | autoplay: true, 70 | }); 71 | 72 | /*Carausel 6 columns*/ 73 | $(".carausel-6-columns").each(function(key, item) { 74 | var id=$(this).attr("id"); 75 | var sliderID='#'+id; 76 | var appendArrowsClassName = '#'+id+'-arrows' 77 | 78 | $(sliderID).slick({ 79 | dots: false, 80 | infinite: true, 81 | speed: 1000, 82 | arrows: true, 83 | autoplay: true, 84 | slidesToShow: 6, 85 | slidesToScroll: 1, 86 | loop: true, 87 | adaptiveHeight: true, 88 | responsive: [ 89 | { 90 | breakpoint: 1025, 91 | settings: { 92 | slidesToShow: 4, 93 | slidesToScroll: 1, 94 | } 95 | }, 96 | { 97 | breakpoint: 768, 98 | settings: { 99 | slidesToShow: 3, 100 | slidesToScroll: 1, 101 | } 102 | }, 103 | { 104 | breakpoint: 480, 105 | settings: { 106 | slidesToShow: 2, 107 | slidesToScroll: 1 108 | } 109 | } 110 | ], 111 | prevArrow: '', 112 | nextArrow: '', 113 | appendArrows: (appendArrowsClassName), 114 | }); 115 | }); 116 | 117 | /*Carausel 4 columns*/ 118 | $(".carausel-4-columns").each(function(key, item) { 119 | var id=$(this).attr("id"); 120 | var sliderID='#'+id; 121 | var appendArrowsClassName = '#'+id+'-arrows' 122 | 123 | $(sliderID).slick({ 124 | dots: false, 125 | infinite: true, 126 | speed: 1000, 127 | arrows: true, 128 | autoplay: true, 129 | slidesToShow: 4, 130 | slidesToScroll: 1, 131 | loop: true, 132 | adaptiveHeight: true, 133 | responsive: [ 134 | { 135 | breakpoint: 1025, 136 | settings: { 137 | slidesToShow: 3, 138 | slidesToScroll: 3, 139 | } 140 | }, 141 | { 142 | breakpoint: 480, 143 | settings: { 144 | slidesToShow: 2, 145 | slidesToScroll: 1 146 | } 147 | } 148 | ], 149 | prevArrow: '', 150 | nextArrow: '', 151 | appendArrows: (appendArrowsClassName), 152 | }); 153 | }); 154 | 155 | /*Fix Bootstrap 5 tab & slick slider*/ 156 | 157 | $('button[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) { 158 | $('.carausel-4-columns').slick('setPosition'); 159 | }); 160 | 161 | /*------ Timer Countdown ----*/ 162 | 163 | $('[data-countdown]').each(function() { 164 | var $this = $(this), finalDate = $(this).data('countdown'); 165 | $this.countdown(finalDate, function(event) { 166 | $(this).html( 167 | event.strftime('' 168 | + '%d days ' 169 | + '%H hours ' 170 | + '%M mins ' 171 | + '%S sec ' 172 | ) 173 | ); 174 | }); 175 | }); 176 | 177 | /*------ Product slider active 1 ----*/ 178 | $('.product-slider-active-1').slick({ 179 | slidesToShow: 5, 180 | slidesToScroll: 1, 181 | autoplay: true, 182 | fade: false, 183 | loop: true, 184 | dots: false, 185 | arrows: true, 186 | prevArrow: '', 187 | nextArrow: '', 188 | responsive: [ 189 | { 190 | breakpoint: 1199, 191 | settings: { 192 | slidesToShow: 3, 193 | } 194 | }, 195 | { 196 | breakpoint: 991, 197 | settings: { 198 | slidesToShow: 2, 199 | } 200 | }, 201 | { 202 | breakpoint: 767, 203 | settings: { 204 | slidesToShow: 2, 205 | } 206 | }, 207 | { 208 | breakpoint: 575, 209 | settings: { 210 | slidesToShow: 1, 211 | } 212 | } 213 | ] 214 | }); 215 | 216 | /*------ Testimonial active 1 ----*/ 217 | $('.testimonial-active-1').slick({ 218 | slidesToShow: 3, 219 | slidesToScroll: 1, 220 | fade: false, 221 | loop: true, 222 | dots: false, 223 | arrows: true, 224 | prevArrow: '', 225 | nextArrow: '', 226 | responsive: [ 227 | { 228 | breakpoint: 1199, 229 | settings: { 230 | slidesToShow: 3, 231 | } 232 | }, 233 | { 234 | breakpoint: 991, 235 | settings: { 236 | slidesToShow: 2, 237 | } 238 | }, 239 | { 240 | breakpoint: 767, 241 | settings: { 242 | slidesToShow: 1, 243 | } 244 | }, 245 | { 246 | breakpoint: 575, 247 | settings: { 248 | slidesToShow: 1, 249 | } 250 | } 251 | ] 252 | }); 253 | 254 | /*------ Testimonial active 3 ----*/ 255 | $('.testimonial-active-3').slick({ 256 | slidesToShow: 3, 257 | slidesToScroll: 1, 258 | fade: false, 259 | loop: true, 260 | dots: true, 261 | arrows: false, 262 | responsive: [ 263 | { 264 | breakpoint: 1199, 265 | settings: { 266 | slidesToShow: 3, 267 | } 268 | }, 269 | { 270 | breakpoint: 991, 271 | settings: { 272 | slidesToShow: 2, 273 | } 274 | }, 275 | { 276 | breakpoint: 767, 277 | settings: { 278 | slidesToShow: 1, 279 | } 280 | }, 281 | { 282 | breakpoint: 575, 283 | settings: { 284 | slidesToShow: 1, 285 | } 286 | } 287 | ] 288 | }); 289 | 290 | /*------ Categories slider 1 ----*/ 291 | $('.categories-slider-1').slick({ 292 | slidesToShow: 6, 293 | slidesToScroll: 1, 294 | fade: false, 295 | loop: true, 296 | dots: false, 297 | arrows: false, 298 | responsive: [ 299 | { 300 | breakpoint: 1199, 301 | settings: { 302 | slidesToShow: 4, 303 | } 304 | }, 305 | { 306 | breakpoint: 991, 307 | settings: { 308 | slidesToShow: 3, 309 | } 310 | }, 311 | { 312 | breakpoint: 767, 313 | settings: { 314 | slidesToShow: 2, 315 | } 316 | }, 317 | { 318 | breakpoint: 575, 319 | settings: { 320 | slidesToShow: 1, 321 | } 322 | } 323 | ] 324 | }); 325 | 326 | /*---------------------------- 327 | Category toggle function 328 | ------------------------------*/ 329 | var searchToggle = $('.categori-button-active'); 330 | searchToggle.on('click', function(e){ 331 | e.preventDefault(); 332 | if($(this).hasClass('open')){ 333 | $(this).removeClass('open'); 334 | $(this).siblings('.categori-dropdown-active-large').removeClass('open'); 335 | }else{ 336 | $(this).addClass('open'); 337 | $(this).siblings('.categori-dropdown-active-large').addClass('open'); 338 | } 339 | }) 340 | 341 | 342 | /*--------------------- 343 | Price range 344 | --------------------- */ 345 | var sliderrange = $('#slider-range'); 346 | var amountprice = $('#amount'); 347 | $(function() { 348 | sliderrange.slider({ 349 | range: true, 350 | min: 16, 351 | max: 400, 352 | values: [0, 300], 353 | slide: function(event, ui) { 354 | amountprice.val("$" + ui.values[0] + " - $" + ui.values[1]); 355 | } 356 | }); 357 | amountprice.val("$" + sliderrange.slider("values", 0) + 358 | " - $" + sliderrange.slider("values", 1)); 359 | }); 360 | 361 | /*------------------------------- 362 | Sort by active 363 | -----------------------------------*/ 364 | if ($('.sort-by-product-area').length) { 365 | var $body = $('body'), 366 | $cartWrap = $('.sort-by-product-area'), 367 | $cartContent = $cartWrap.find('.sort-by-dropdown'); 368 | $cartWrap.on('click', '.sort-by-product-wrap', function(e) { 369 | e.preventDefault(); 370 | var $this = $(this); 371 | if (!$this.parent().hasClass('show')) { 372 | $this.siblings('.sort-by-dropdown').addClass('show').parent().addClass('show'); 373 | } else { 374 | $this.siblings('.sort-by-dropdown').removeClass('show').parent().removeClass('show'); 375 | } 376 | }); 377 | /*Close When Click Outside*/ 378 | $body.on('click', function(e) { 379 | var $target = e.target; 380 | if (!$($target).is('.sort-by-product-area') && !$($target).parents().is('.sort-by-product-area') && $cartWrap.hasClass('show')) { 381 | $cartWrap.removeClass('show'); 382 | $cartContent.removeClass('show'); 383 | } 384 | }); 385 | } 386 | 387 | /*----------------------- 388 | Shop filter active 389 | ------------------------- */ 390 | $('.shop-filter-toogle').on('click', function(e) { 391 | e.preventDefault(); 392 | $('.shop-product-fillter-header').slideToggle(); 393 | }) 394 | var shopFiltericon = $('.shop-filter-toogle'); 395 | shopFiltericon.on('click', function() { 396 | $('.shop-filter-toogle').toggleClass('active'); 397 | }) 398 | 399 | /*------------------------------------- 400 | Product details big image slider 401 | ---------------------------------------*/ 402 | $('.pro-dec-big-img-slider').slick({ 403 | slidesToShow: 1, 404 | slidesToScroll: 1, 405 | arrows: false, 406 | draggable: false, 407 | fade: false, 408 | asNavFor: '.product-dec-slider-small , .product-dec-slider-small-2', 409 | }); 410 | 411 | /*--------------------------------------- 412 | Product details small image slider 413 | -----------------------------------------*/ 414 | $('.product-dec-slider-small').slick({ 415 | slidesToShow: 4, 416 | slidesToScroll: 1, 417 | asNavFor: '.pro-dec-big-img-slider', 418 | dots: false, 419 | focusOnSelect: true, 420 | fade: false, 421 | arrows: false, 422 | responsive: [{ 423 | breakpoint: 991, 424 | settings: { 425 | slidesToShow: 3, 426 | } 427 | }, 428 | { 429 | breakpoint: 767, 430 | settings: { 431 | slidesToShow: 4, 432 | } 433 | }, 434 | { 435 | breakpoint: 575, 436 | settings: { 437 | slidesToShow: 2, 438 | } 439 | } 440 | ] 441 | }); 442 | 443 | /*----------------------- 444 | Magnific Popup 445 | ------------------------*/ 446 | $('.img-popup').magnificPopup({ 447 | type: 'image', 448 | gallery: { 449 | enabled: true 450 | } 451 | }); 452 | 453 | /*--------------------- 454 | Select active 455 | --------------------- */ 456 | $('.select-active').select2(); 457 | 458 | /*--- Checkout toggle function ----*/ 459 | $('.checkout-click1').on('click', function(e) { 460 | e.preventDefault(); 461 | $('.checkout-login-info').slideToggle(900); 462 | }); 463 | 464 | /*--- Checkout toggle function ----*/ 465 | $('.checkout-click3').on('click', function(e) { 466 | e.preventDefault(); 467 | $('.checkout-login-info3').slideToggle(1000); 468 | }); 469 | 470 | /*------------------------- 471 | Create an account toggle 472 | --------------------------*/ 473 | $('.checkout-toggle2').on('click', function() { 474 | $('.open-toggle2').slideToggle(1000); 475 | }); 476 | 477 | $('.checkout-toggle').on('click', function() { 478 | $('.open-toggle').slideToggle(1000); 479 | }); 480 | 481 | 482 | /*------------------------------------- 483 | Checkout paymentMethod function 484 | ---------------------------------------*/ 485 | paymentMethodChanged(); 486 | function paymentMethodChanged() { 487 | var $order_review = $( '.payment-method' ); 488 | 489 | $order_review.on( 'click', 'input[name="payment_method"]', function() { 490 | var selectedClass = 'payment-selected'; 491 | var parent = $( this ).parents( '.sin-payment' ).first(); 492 | parent.addClass( selectedClass ).siblings().removeClass( selectedClass ); 493 | } ); 494 | } 495 | 496 | /*---- CounterUp ----*/ 497 | $('.count').counterUp({ 498 | delay: 10, 499 | time: 2000 500 | }); 501 | 502 | // Isotope active 503 | $('.grid').imagesLoaded(function() { 504 | // init Isotope 505 | var $grid = $('.grid').isotope({ 506 | itemSelector: '.grid-item', 507 | percentPosition: true, 508 | layoutMode: 'masonry', 509 | masonry: { 510 | // use outer width of grid-sizer for columnWidth 511 | columnWidth: '.grid-item', 512 | } 513 | }); 514 | }); 515 | 516 | /*====== SidebarSearch ======*/ 517 | function sidebarSearch() { 518 | var searchTrigger = $('.search-active'), 519 | endTriggersearch = $('.search-close'), 520 | container = $('.main-search-active'); 521 | 522 | searchTrigger.on('click', function(e) { 523 | e.preventDefault(); 524 | container.addClass('search-visible'); 525 | }); 526 | 527 | endTriggersearch.on('click', function() { 528 | container.removeClass('search-visible'); 529 | }); 530 | 531 | }; 532 | sidebarSearch(); 533 | 534 | /*====== Sidebar menu Active ======*/ 535 | function mobileHeaderActive() { 536 | var navbarTrigger = $('.burger-icon'), 537 | endTrigger = $('.mobile-menu-close'), 538 | container = $('.mobile-header-active'), 539 | wrapper4 = $('body'); 540 | 541 | wrapper4.prepend('
'); 542 | 543 | navbarTrigger.on('click', function(e) { 544 | e.preventDefault(); 545 | container.addClass('sidebar-visible'); 546 | wrapper4.addClass('mobile-menu-active'); 547 | }); 548 | 549 | endTrigger.on('click', function() { 550 | container.removeClass('sidebar-visible'); 551 | wrapper4.removeClass('mobile-menu-active'); 552 | }); 553 | 554 | $('.body-overlay-1').on('click', function() { 555 | container.removeClass('sidebar-visible'); 556 | wrapper4.removeClass('mobile-menu-active'); 557 | }); 558 | }; 559 | mobileHeaderActive(); 560 | 561 | 562 | /*--------------------- 563 | Mobile menu active 564 | ------------------------ */ 565 | var $offCanvasNav = $('.mobile-menu'), 566 | $offCanvasNavSubMenu = $offCanvasNav.find('.dropdown'); 567 | 568 | /*Add Toggle Button With Off Canvas Sub Menu*/ 569 | $offCanvasNavSubMenu.parent().prepend(''); 570 | 571 | /*Close Off Canvas Sub Menu*/ 572 | $offCanvasNavSubMenu.slideUp(); 573 | 574 | /*Category Sub Menu Toggle*/ 575 | $offCanvasNav.on('click', 'li a, li .menu-expand', function(e) { 576 | var $this = $(this); 577 | if ( ($this.parent().attr('class').match(/\b(menu-item-has-children|has-children|has-sub-menu)\b/)) && ($this.attr('href') === '#' || $this.hasClass('menu-expand')) ) { 578 | e.preventDefault(); 579 | if ($this.siblings('ul:visible').length){ 580 | $this.parent('li').removeClass('active'); 581 | $this.siblings('ul').slideUp(); 582 | } else { 583 | $this.parent('li').addClass('active'); 584 | $this.closest('li').siblings('li').removeClass('active').find('li').removeClass('active'); 585 | $this.closest('li').siblings('li').find('ul:visible').slideUp(); 586 | $this.siblings('ul').slideDown(); 587 | } 588 | } 589 | }); 590 | 591 | /*--- language currency active ----*/ 592 | $('.mobile-language-active').on('click', function(e) { 593 | e.preventDefault(); 594 | $('.lang-dropdown-active').slideToggle(900); 595 | }); 596 | 597 | /*--- Categori-button-active-2 ----*/ 598 | $('.categori-button-active-2').on('click', function(e) { 599 | e.preventDefault(); 600 | $('.categori-dropdown-active-small').slideToggle(900); 601 | }); 602 | 603 | /*--- Mobile demo active ----*/ 604 | var demo = $('.tm-demo-options-wrapper'); 605 | $('.view-demo-btn-active').on('click', function (e) { 606 | e.preventDefault(); 607 | demo.toggleClass('demo-open'); 608 | }); 609 | 610 | /*-----More Menu Open----*/ 611 | $('.more_slide_open').slideUp(); 612 | $('.more_categories').on('click', function (){ 613 | $(this).toggleClass('show'); 614 | $('.more_slide_open').slideToggle(); 615 | }); 616 | 617 | /*-----Modal----*/ 618 | 619 | $('.modal').on('shown.bs.modal', function (e) { 620 | $('.product-image-slider').slick('setPosition'); 621 | $('.slider-nav-thumbnails').slick('setPosition'); 622 | 623 | $('.product-image-slider .slick-active img').elevateZoom({ 624 | zoomType: "inner", 625 | cursor: "crosshair", 626 | zoomWindowFadeIn: 500, 627 | zoomWindowFadeOut: 750 628 | }); 629 | }) 630 | 631 | /*--- VSticker ----*/ 632 | $('#news-flash').vTicker({ 633 | speed: 500, 634 | pause: 3000, 635 | animation: 'fade', 636 | mousePause: false, 637 | showItems: 1 638 | }); 639 | 640 | })(jQuery); 641 | 642 | -------------------------------------------------------------------------------- /assets/js/plugins/counterup.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*! 4 | * jquery.counterup.js 1.0 5 | * 6 | * Copyright 2013, Benjamin Intal http://gambit.ph @bfintal 7 | * Released under the GPL v2 License 8 | * 9 | * Date: Nov 26, 2013 10 | */(function(e){"use strict";e.fn.counterUp=function(t){var n=e.extend({time:400,delay:10},t);return this.each(function(){var t=e(this),r=n,i=function(){var e=[],n=r.time/r.delay,i=t.text(),s=/[0-9]+,[0-9]+/.test(i);i=i.replace(/,/g,"");var o=/^[0-9]+$/.test(i),u=/^[0-9]+\.[0-9]+$/.test(i),a=u?(i.split(".")[1]||[]).length:0;for(var f=n;f>=1;f--){var l=parseInt(i/n*f);u&&(l=parseFloat(i/n*f).toFixed(a));if(s)while(/(\d+)(\d{3})/.test(l.toString()))l=l.toString().replace(/(\d+)(\d{3})/,"$1,$2");e.unshift(l)}t.data("counterup-nums",e);t.text("0");var c=function(){t.text(t.data("counterup-nums").shift());if(t.data("counterup-nums").length)setTimeout(t.data("counterup-func"),r.delay);else{delete t.data("counterup-nums");t.data("counterup-nums",null);t.data("counterup-func",null)}};t.data("counterup-func",c);setTimeout(t.data("counterup-func"),r.delay)};t.waypoint(i,{offset:"100%",triggerOnce:!0})})}})(jQuery); 11 | 12 | 13 | -------------------------------------------------------------------------------- /assets/js/plugins/images-loaded.js: -------------------------------------------------------------------------------- 1 | 2 | /*! 3 | * imagesLoaded PACKAGED v4.1.1 4 | * JavaScript is all like "You images are done yet or what?" 5 | * MIT License 6 | */ 7 | 8 | !function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,o=i[n];e=e||[];for(var r=this._onceEvents&&this._onceEvents[t];o;){var s=r&&r[o];s&&(this.off(t,o),delete r[o]),o.apply(this,e),n+=s?0:1,o=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter")):t.imagesLoaded=e(t,t.EvEmitter)}(window,function(t,e){function i(t,e){for(var i in e)t[i]=e[i];return t}function n(t){var e=[];if(Array.isArray(t))e=t;else if("number"==typeof t.length)for(var i=0;i1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&b<0?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); -------------------------------------------------------------------------------- /assets/js/plugins/jquery.syotimer.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyoTimer v.2.1.2 | under MIT licence 3 | * http://syomochkin.xyz/folio/syotimer/demo.html 4 | */ 5 | !function(i,e){"function"==typeof define&&define.amd?define(["jquery"],i):"object"==typeof module&&module.exports?module.exports=function(e,t){return void 0===t&&(t="undefined"!=typeof window?require("jquery"):require("jquery")(e)),i(t),t}:i(e)}(function(l){var m="day",a="hour",s="minute",d="second",n={d:m,h:a,m:s,s:d},u={list:[d,s,a,m],next:function(e){var t=this.list.indexOf(e);return tThe countdown is finished!

')}},r={second:!1,minute:!1,hour:!1,day:!1},c={init:function(e){var t=l.extend({},o,e||{});t.itemTypes=y.getItemTypesByLayout(t.layout),t._itemsHas=l.extend({},r);for(var i=0;i",{class:"syotimer__head"}).html(t.headTitle),o=l("
",{class:"syotimer__body"}),r=l("
",{class:"syotimer__footer"}).html(t.footTitle),a={},s=0;s .syotimer-cell__value",e).css("opacity",1);var i=new Date,n=new Date(t.year,t.month-1,t.day,t.hour,t.minute,t.second),o=y.getDifferenceWithTimezone(i,n,t),r=y.getSecondsToDeadLine(o,t);0<=r?(c._refreshUnitsDom.apply(this,[r]),c._applyEffectSwitch.apply(this,[t.effectType])):(e=l.extend(e,e.data("syotimer-blocks")),t.afterDeadline(e))},_refreshUnitsDom:function(e){var t=l(this),i=t.data("syotimer-options"),n=t.data("syotimer-items"),o=i.itemTypes,r=y.getUnitsToDeadLine(e);i._itemsHas.day||(r.hour+=24*r.day),i._itemsHas.hour||(r.minute+=60*r.hour),i._itemsHas.minute||(r.second+=60*r.minute);for(var a=0;a",{class:"syotimer-cell__value",text:"0"}),t=l("
",{class:"syotimer-cell__unit"}),i=l("
",{class:"syotimer-cell"});return i.append(e).append(t),i},getItemTypesByLayout:function(e){for(var t=[],i=0;i.theiaStickySidebar:after {content: ""; display: table; clear: both;}')); 83 | } 84 | 85 | $that.each(function () { 86 | var o = {}; 87 | 88 | o.sidebar = $(this); 89 | 90 | // Save options 91 | o.options = options || {}; 92 | 93 | // Get container 94 | o.container = $(o.options.containerSelector); 95 | if (o.container.length == 0) { 96 | o.container = o.sidebar.parent(); 97 | } 98 | 99 | // Create sticky sidebar 100 | o.sidebar.parents().css('-webkit-transform', 'none'); // Fix for WebKit bug - https://code.google.com/p/chromium/issues/detail?id=20574 101 | o.sidebar.css({ 102 | 'position': o.options.defaultPosition, 103 | 'overflow': 'visible', 104 | // The "box-sizing" must be set to "content-box" because we set a fixed height to this element when the sticky sidebar has a fixed position. 105 | '-webkit-box-sizing': 'border-box', 106 | '-moz-box-sizing': 'border-box', 107 | 'box-sizing': 'border-box' 108 | }); 109 | 110 | // Get the sticky sidebar element. If none has been found, then create one. 111 | o.stickySidebar = o.sidebar.find('.theiaStickySidebar'); 112 | if (o.stickySidebar.length == 0) { 113 | // Remove