some cleanup
@@ -1,177 +0,0 @@
|
||||
.wpcf7 .screen-reader-response {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
word-wrap: normal !important;
|
||||
word-break: normal !important;
|
||||
}
|
||||
|
||||
.wpcf7 .hidden-fields-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wpcf7 form .wpcf7-response-output {
|
||||
margin: 2em 0.5em 1em;
|
||||
padding: 0.2em 1em;
|
||||
border: 2px solid #00a0d2; /* Blue */
|
||||
}
|
||||
|
||||
.wpcf7 form.init .wpcf7-response-output,
|
||||
.wpcf7 form.resetting .wpcf7-response-output,
|
||||
.wpcf7 form.submitting .wpcf7-response-output {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wpcf7 form.sent .wpcf7-response-output {
|
||||
border-color: #46b450; /* Green */
|
||||
}
|
||||
|
||||
.wpcf7 form.failed .wpcf7-response-output,
|
||||
.wpcf7 form.aborted .wpcf7-response-output {
|
||||
border-color: #dc3232; /* Red */
|
||||
}
|
||||
|
||||
.wpcf7 form.spam .wpcf7-response-output {
|
||||
border-color: #f56e28; /* Orange */
|
||||
}
|
||||
|
||||
.wpcf7 form.invalid .wpcf7-response-output,
|
||||
.wpcf7 form.unaccepted .wpcf7-response-output,
|
||||
.wpcf7 form.payment-required .wpcf7-response-output {
|
||||
border-color: #ffb900; /* Yellow */
|
||||
}
|
||||
|
||||
.wpcf7-form-control-wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wpcf7-not-valid-tip {
|
||||
color: #dc3232; /* Red */
|
||||
font-size: 1em;
|
||||
font-weight: normal;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.use-floating-validation-tip .wpcf7-not-valid-tip {
|
||||
position: relative;
|
||||
top: -2ex;
|
||||
left: 1em;
|
||||
z-index: 100;
|
||||
border: 1px solid #dc3232;
|
||||
background: #fff;
|
||||
padding: .2em .8em;
|
||||
width: 24em;
|
||||
}
|
||||
|
||||
.wpcf7-list-item {
|
||||
display: inline-block;
|
||||
margin: 0 0 0 1em;
|
||||
}
|
||||
|
||||
.wpcf7-list-item-label::before,
|
||||
.wpcf7-list-item-label::after {
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wpcf7-spinner {
|
||||
visibility: hidden;
|
||||
display: inline-block;
|
||||
background-color: #23282d; /* Dark Gray 800 */
|
||||
opacity: 0.75;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
border-radius: 100%;
|
||||
padding: 0;
|
||||
margin: 0 24px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
form.submitting .wpcf7-spinner {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.wpcf7-spinner::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
background-color: #fbfbfc; /* Light Gray 100 */
|
||||
top: 4px;
|
||||
left: 4px;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border: none;
|
||||
border-radius: 100%;
|
||||
transform-origin: 8px 8px;
|
||||
animation-name: spin;
|
||||
animation-duration: 1000ms;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.wpcf7-spinner::before {
|
||||
animation-name: blink;
|
||||
animation-duration: 2000ms;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.wpcf7 [inert] {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="file"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="file"]:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.wpcf7 .wpcf7-submit:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="url"],
|
||||
.wpcf7 input[type="email"],
|
||||
.wpcf7 input[type="tel"] {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.wpcf7-reflection > output {
|
||||
display: list-item;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.wpcf7-reflection > output[hidden] {
|
||||
display: none;
|
||||
}
|
||||
@@ -1,177 +0,0 @@
|
||||
.wpcf7 .screen-reader-response {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
word-wrap: normal !important;
|
||||
word-break: normal !important;
|
||||
}
|
||||
|
||||
.wpcf7 .hidden-fields-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wpcf7 form .wpcf7-response-output {
|
||||
margin: 2em 0.5em 1em;
|
||||
padding: 0.2em 1em;
|
||||
border: 2px solid #00a0d2; /* Blue */
|
||||
}
|
||||
|
||||
.wpcf7 form.init .wpcf7-response-output,
|
||||
.wpcf7 form.resetting .wpcf7-response-output,
|
||||
.wpcf7 form.submitting .wpcf7-response-output {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.wpcf7 form.sent .wpcf7-response-output {
|
||||
border-color: #46b450; /* Green */
|
||||
}
|
||||
|
||||
.wpcf7 form.failed .wpcf7-response-output,
|
||||
.wpcf7 form.aborted .wpcf7-response-output {
|
||||
border-color: #dc3232; /* Red */
|
||||
}
|
||||
|
||||
.wpcf7 form.spam .wpcf7-response-output {
|
||||
border-color: #f56e28; /* Orange */
|
||||
}
|
||||
|
||||
.wpcf7 form.invalid .wpcf7-response-output,
|
||||
.wpcf7 form.unaccepted .wpcf7-response-output,
|
||||
.wpcf7 form.payment-required .wpcf7-response-output {
|
||||
border-color: #ffb900; /* Yellow */
|
||||
}
|
||||
|
||||
.wpcf7-form-control-wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wpcf7-not-valid-tip {
|
||||
color: #dc3232; /* Red */
|
||||
font-size: 1em;
|
||||
font-weight: normal;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.use-floating-validation-tip .wpcf7-not-valid-tip {
|
||||
position: relative;
|
||||
top: -2ex;
|
||||
left: 1em;
|
||||
z-index: 100;
|
||||
border: 1px solid #dc3232;
|
||||
background: #fff;
|
||||
padding: .2em .8em;
|
||||
width: 24em;
|
||||
}
|
||||
|
||||
.wpcf7-list-item {
|
||||
display: inline-block;
|
||||
margin: 0 0 0 1em;
|
||||
}
|
||||
|
||||
.wpcf7-list-item-label::before,
|
||||
.wpcf7-list-item-label::after {
|
||||
content: " ";
|
||||
}
|
||||
|
||||
.wpcf7-spinner {
|
||||
visibility: hidden;
|
||||
display: inline-block;
|
||||
background-color: #23282d; /* Dark Gray 800 */
|
||||
opacity: 0.75;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
border-radius: 100%;
|
||||
padding: 0;
|
||||
margin: 0 24px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
form.submitting .wpcf7-spinner {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.wpcf7-spinner::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
background-color: #fbfbfc; /* Light Gray 100 */
|
||||
top: 4px;
|
||||
left: 4px;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border: none;
|
||||
border-radius: 100%;
|
||||
transform-origin: 8px 8px;
|
||||
animation-name: spin;
|
||||
animation-duration: 1000ms;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.wpcf7-spinner::before {
|
||||
animation-name: blink;
|
||||
animation-duration: 2000ms;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.wpcf7 [inert] {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="file"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="file"]:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.wpcf7 .wpcf7-submit:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.wpcf7 input[type="url"],
|
||||
.wpcf7 input[type="email"],
|
||||
.wpcf7 input[type="tel"] {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.wpcf7-reflection > output {
|
||||
display: list-item;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.wpcf7-reflection > output[hidden] {
|
||||
display: none;
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{flex-shrink:0;margin:0 var(--divider-element-spacing)}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{border-block-end:0;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color);content:"";display:block;flex-grow:1}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url);-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;min-height:var(--divider-pattern-height);width:100%}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var( --container-widget-flex-grow )}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{flex-shrink:0;margin:0 var(--divider-element-spacing)}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{border-block-end:0;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color);content:"";display:block;flex-grow:1}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url);-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;min-height:var(--divider-pattern-height);width:100%}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var( --container-widget-flex-grow )}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-google_maps .elementor-widget-container,.elementor-widget-google_maps:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-google_maps .elementor-widget-container,.elementor-widget-google_maps:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-image-carousel .swiper{position:static}.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-image-carousel .swiper{position:static}.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}
|
||||
@@ -1 +0,0 @@
|
||||
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}
|
||||
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -1,18 +0,0 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_798_25382)">
|
||||
<path d="M6.4727 17.6485C6.4727 17.4707 6.53781 17.3029 6.66616 17.1499C6.83252 16.9516 6.80664 16.6559 6.60831 16.4895C6.40998 16.3232 6.1143 16.349 5.94794 16.5474C5.38183 17.2222 5.40466 18.2402 6.02514 18.8735C6.32069 19.1752 6.32069 19.708 6.02514 20.0097C5.70461 20.3368 5.53516 20.7604 5.53516 21.2346C5.53516 21.4935 5.74502 21.7034 6.00391 21.7034C6.2628 21.7034 6.47266 21.4935 6.47266 21.2346C6.47266 21.0044 6.54531 20.8183 6.6948 20.6658C7.34317 20.0039 7.34317 18.8793 6.6948 18.2175C6.54747 18.067 6.4727 17.8756 6.4727 17.6485Z" fill="#101111"/>
|
||||
<path d="M10.541 17.6486C10.541 17.4707 10.6061 17.3029 10.7344 17.1499C10.9008 16.9516 10.875 16.6559 10.6766 16.4895C10.4783 16.3231 10.1827 16.3491 10.0162 16.5474C9.45014 17.2221 9.47302 18.2402 10.0935 18.8736C10.389 19.1752 10.389 19.708 10.0935 20.0097C9.77292 20.3368 9.60352 20.7605 9.60352 21.2346C9.60352 21.4935 9.81338 21.7034 10.0723 21.7034C10.3312 21.7034 10.541 21.4935 10.541 21.2346C10.541 21.0044 10.6137 20.8183 10.7632 20.6658C11.4115 20.0039 11.4115 18.8794 10.7632 18.2175C10.6157 18.067 10.541 17.8756 10.541 17.6486Z" fill="#101111"/>
|
||||
<path d="M14.6094 17.6485C14.6094 17.4706 14.6745 17.3029 14.8028 17.1499C14.9692 16.9516 14.9433 16.656 14.745 16.4896C14.5468 16.3232 14.251 16.349 14.0847 16.5473C13.5185 17.2221 13.5413 18.2402 14.1618 18.8735C14.4573 19.1753 14.4574 19.7079 14.1618 20.0097C13.8413 20.3368 13.6719 20.7604 13.6719 21.2346C13.6719 21.4935 13.8818 21.7034 14.1406 21.7034C14.3995 21.7034 14.6094 21.4935 14.6094 21.2346C14.6094 21.0044 14.682 20.8183 14.8315 20.6657C15.1474 20.3432 15.3214 19.9084 15.3214 19.4416C15.3214 18.9747 15.1474 18.54 14.8315 18.2174C14.6841 18.0669 14.6094 17.8756 14.6094 17.6485Z" fill="#101111"/>
|
||||
<path d="M23.1929 14.9648L22.642 13.9948C22.3854 13.543 22.2498 13.0296 22.2498 12.5101V10.8782C22.2498 10.6193 22.0399 10.4095 21.7811 10.4095H21.6121V5.03623C21.6121 4.96119 21.6345 4.88877 21.6768 4.82684L22.2161 4.03808C22.4666 3.67166 22.5146 3.20816 22.3445 2.79828L21.511 0.789125C21.4385 0.614094 21.2676 0.5 21.0781 0.5H19.1715C18.9819 0.5 18.8111 0.614094 18.7385 0.789125L17.9051 2.79823C17.8419 2.95044 17.8089 3.11009 17.8051 3.26938H13.3072C13.0484 3.26938 12.8385 3.47923 12.8385 3.73813C12.8385 3.99702 13.0484 4.20688 13.3072 4.20688H18.1487L18.5727 4.82698C18.6127 4.88534 18.6374 4.9655 18.6374 5.03623V10.4094L1.23042 10.4094V9.92094C1.23042 7.22741 1.3117 6.34363 1.48252 5.48277L1.69064 4.43497C1.71689 4.30278 1.8338 4.20688 1.9687 4.20688H9.18417C9.44306 4.20688 9.65292 3.99702 9.65292 3.73813C9.65292 3.47923 9.44306 3.26938 9.18417 3.26938H1.9687C1.38778 3.26938 0.884156 3.68286 0.771141 4.25244L0.563016 5.30019C0.380016 6.22241 0.292969 7.14908 0.292969 9.92094V13.5687C0.292969 13.8276 0.502828 14.0375 0.761719 14.0375H2.65734V15.058C2.65734 15.3169 2.8672 15.5267 3.12609 15.5267H16.7941C16.6285 15.9684 16.5423 16.4384 16.5423 16.9124V20.9547C16.5423 21.8198 16.8328 22.6739 17.3604 23.3597L18.097 24.3171C18.1858 24.4324 18.323 24.5 18.4686 24.5H21.7812C21.9267 24.5 22.0639 24.4324 22.1527 24.3171L22.8893 23.3597C23.4169 22.674 23.7075 21.8198 23.7075 20.9547V16.9124C23.7074 16.2309 23.5295 15.5574 23.1929 14.9648ZM18.771 3.15748L19.4845 1.4375H20.7651L21.4786 3.15753C21.5268 3.27373 21.5132 3.40513 21.4422 3.509L20.9029 4.29777C20.7536 4.5162 20.6747 4.77158 20.6747 5.03623V10.4094H19.575V5.03609C19.575 4.77505 19.494 4.5133 19.3466 4.29777L18.8074 3.50905C18.7364 3.40513 18.7228 3.27373 18.771 3.15748ZM1.23042 11.3469H17.9997V12.4016H3.82448C3.36656 12.4016 2.94005 12.681 2.75559 13.1H1.23042V11.3469ZM3.5948 13.5687C3.5948 13.4421 3.69783 13.3391 3.82448 13.3391H17.8826C17.7533 13.7892 17.4994 14.1853 17.27 14.5892H3.5948V13.5687ZM22.7699 20.9547C22.7699 21.6142 22.5484 22.2652 22.1462 22.788L21.5503 23.5625H18.6993L18.1034 22.788C17.7012 22.2652 17.4797 21.6141 17.4797 20.9547V16.9124C17.4797 16.3254 17.6648 15.7949 17.9505 15.2894C17.9505 15.2894 18.4003 14.5059 18.4879 14.3374C18.7803 13.7743 18.9375 13.1448 18.9375 12.5099V11.347H21.3123V12.5101C21.3123 13.1916 21.4902 13.8651 21.8268 14.4577L22.3777 15.4278C22.6343 15.8795 22.7699 16.3929 22.7699 16.9124V20.9547Z" fill="#101111"/>
|
||||
<path d="M19.1055 15.9541C18.8466 15.9541 18.6367 16.164 18.6367 16.4229V21.1599C18.6367 21.4187 18.8466 21.6286 19.1055 21.6286C19.3643 21.6286 19.5742 21.4187 19.5742 21.1599V16.4229C19.5742 16.164 19.3643 15.9541 19.1055 15.9541Z" fill="#101111"/>
|
||||
<path d="M21.1426 15.9541C20.8837 15.9541 20.6738 16.164 20.6738 16.4229V21.1599C20.6738 21.4187 20.8837 21.6286 21.1426 21.6286C21.4014 21.6286 21.6113 21.4187 21.6113 21.1599V16.4229C21.6113 16.164 21.4014 15.9541 21.1426 15.9541Z" fill="#101111"/>
|
||||
<path d="M3.04688 5.34668C2.78798 5.34668 2.57812 5.55654 2.57812 5.81543C2.57812 6.07432 2.78798 6.28418 3.04688 6.28418H4.52555C4.78444 6.28418 4.9943 6.07432 4.9943 5.81543C4.9943 5.55654 4.78444 5.34668 4.52555 5.34668H3.04688Z" fill="#101111"/>
|
||||
<path d="M11.2705 9.01268C12.2812 9.01268 13.1035 8.1904 13.1035 7.17968C13.1035 6.16896 12.2812 5.34668 11.2705 5.34668C10.2598 5.34668 9.4375 6.16896 9.4375 7.17968C9.4375 8.1904 10.2598 9.01268 11.2705 9.01268ZM11.2705 6.28418C11.7643 6.28418 12.166 6.6859 12.166 7.17968C12.166 7.67346 11.7643 8.07518 11.2705 8.07518C10.7767 8.07518 10.375 7.67346 10.375 7.17968C10.375 6.6859 10.7767 6.28418 11.2705 6.28418Z" fill="#101111"/>
|
||||
<path d="M10.8847 3.91761C10.9602 4.10192 11.153 4.22117 11.3517 4.20579C11.5555 4.19004 11.7294 4.04084 11.7743 3.84115C11.8663 3.43189 11.3914 3.11543 11.0477 3.35562C10.8704 3.47946 10.8015 3.71796 10.8847 3.91761Z" fill="#101111"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_798_25382">
|
||||
<rect width="24" height="24" fill="white" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.853516 9.4063H5.70844C5.86265 9.40948 5.99216 9.52324 6.01503 9.67578L7.00038 16L11.2067 5.87754H6.36766C6.22422 5.88072 6.09819 5.78302 6.06532 5.64336L4.77839 0L0.853516 9.4063Z" fill="#101111"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 313 B |
@@ -1,68 +0,0 @@
|
||||
/*
|
||||
|
||||
[Main Script]
|
||||
|
||||
Project: Rakar
|
||||
Version: 1.0
|
||||
Author : Themeholy
|
||||
|
||||
*/
|
||||
;(function($){
|
||||
"use strict";
|
||||
|
||||
jQuery(window).on( 'elementor/frontend/init', function() {
|
||||
// console.log( elementorFrontend);
|
||||
if( typeof elementor != "undefined" && typeof elementor.settings.page != "undefined" ) {
|
||||
|
||||
elementor.settings.page.addChangeCallback( 'rakar_header_style', function ( newValue ) {
|
||||
if( newValue == 'prebuilt' ) {
|
||||
elementor.saver.update({
|
||||
onSuccess: function() {
|
||||
elementor.reloadPreview();
|
||||
elementor.once( 'preview:loaded', function() {
|
||||
elementor.getPanelView().setPage( 'page_settings' ).activateTab('settings');
|
||||
} );
|
||||
}
|
||||
});
|
||||
}
|
||||
} );
|
||||
|
||||
|
||||
elementor.settings.page.addChangeCallback( 'rakar_header_builder_option', function ( newValue ) {
|
||||
elementor.saver.update({
|
||||
onSuccess: function() {
|
||||
elementor.reloadPreview();
|
||||
elementor.once( 'preview:loaded', function() {
|
||||
elementor.getPanelView().setPage( 'page_settings' ).activateTab('settings');
|
||||
} );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
elementor.settings.page.addChangeCallback( 'rakar_footer_style', rakarFooterStyle );
|
||||
function rakarFooterStyle ( newValue ) {
|
||||
elementor.saver.update({
|
||||
onSuccess: function() {
|
||||
elementor.reloadPreview();
|
||||
elementor.once( 'preview:loaded', function() {
|
||||
elementor.getPanelView().setPage( 'page_settings' ).activateTab('settings');
|
||||
} );
|
||||
}
|
||||
});
|
||||
}
|
||||
elementor.settings.page.addChangeCallback( 'rakar_footer_choice', rakarFooterChoice );
|
||||
function rakarFooterChoice ( newValue ) {
|
||||
elementor.saver.update({
|
||||
onSuccess: function() {
|
||||
elementor.reloadPreview();
|
||||
elementor.once( 'preview:loaded', function() {
|
||||
elementor.getPanelView().setPage( 'page_settings' ).activateTab('settings');
|
||||
} );
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
@@ -1,45 +0,0 @@
|
||||
/*
|
||||
|
||||
[Main Script]
|
||||
|
||||
Project: Rakar
|
||||
Version: 1.0
|
||||
Author : Themeholy
|
||||
|
||||
*/
|
||||
;(function($){
|
||||
"use strict";
|
||||
/* ------------------------------------------------------------------------- *
|
||||
|
||||
* Mail Chimp ajax
|
||||
|
||||
* ------------------------------------------------------------------------- */
|
||||
|
||||
var $widgetsubscribeForm = $('form.footer-newsletter');
|
||||
|
||||
// Subscribe Shortcode MailChimp ajax
|
||||
$widgetsubscribeForm.on('submit',function(e){
|
||||
let $emailAdd = $(this).find('input[type="email"]').val();
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: rakarajax.action_url,
|
||||
data:{
|
||||
sectsubscribe_email: $emailAdd,
|
||||
security: rakarajax.nonce,
|
||||
action: 'rakar_subscribe_ajax'
|
||||
},
|
||||
|
||||
success: function(data){
|
||||
$('form.footer-newsletter input[type="email"]').val('');
|
||||
$('.footer-newsletter').append(data);
|
||||
},
|
||||
|
||||
error: function(){
|
||||
$('.footer-newsletter').append('<div class="alert alert-danger mt-2" role="alert">Something Goes Wrong</div>');
|
||||
|
||||
}
|
||||
});
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
@@ -1 +0,0 @@
|
||||
jQuery(function(t){if("undefined"==typeof wc_add_to_cart_params)return!1;var a=function(){this.requests=[],this.addRequest=this.addRequest.bind(this),this.run=this.run.bind(this),this.$liveRegion=this.createLiveRegion(),t(document.body).on("click",".add_to_cart_button:not(.wc-interactive)",{addToCartHandler:this},this.onAddToCart).on("keydown",".add_to_cart_button:not(.wc-interactive)",{addToCartHandler:this},t=>{" "===t.key&&(t.preventDefault(),t.target.click())}).on("click",".remove_from_cart_button",{addToCartHandler:this},this.onRemoveFromCart).on("keydown",".remove_from_cart_button",this.onKeydownRemoveFromCart).on("added_to_cart",{addToCartHandler:this},this.onAddedToCart).on("removed_from_cart",{addToCartHandler:this},this.onRemovedFromCart).on("ajax_request_not_sent.adding_to_cart",this.updateButton)};a.prototype.addRequest=function(t){this.requests.push(t),1===this.requests.length&&this.run()},a.prototype.run=function(){var a=this,e=a.requests[0].complete;a.requests[0].complete=function(){"function"==typeof e&&e(),a.requests.shift(),a.requests.length>0&&a.run()},t.ajax(this.requests[0])},a.prototype.onAddToCart=function(a){var e=t(this);if(e.is(".ajax_add_to_cart")){if(!e.attr("data-product_id"))return!0;if(a.data.addToCartHandler.$liveRegion.text("").removeAttr("aria-relevant"),a.preventDefault(),e.removeClass("added"),e.addClass("loading"),!1===t(document.body).triggerHandler("should_send_ajax_request.adding_to_cart",[e]))return t(document.body).trigger("ajax_request_not_sent.adding_to_cart",[!1,!1,e]),!0;var r={};t.each(e.data(),function(t,a){r[t]=a}),t.each(e[0].dataset,function(t,a){r[t]=a}),t(document.body).trigger("adding_to_cart",[e,r]),a.data.addToCartHandler.addRequest({type:"POST",url:wc_add_to_cart_params.wc_ajax_url.toString().replace("%%endpoint%%","add_to_cart"),data:r,success:function(a){a&&(a.error&&a.product_url?window.location=a.product_url:"yes"!==wc_add_to_cart_params.cart_redirect_after_add?t(document.body).trigger("added_to_cart",[a.fragments,a.cart_hash,e]):window.location=wc_add_to_cart_params.cart_url)},dataType:"json"})}},a.prototype.onRemoveFromCart=function(a){var e=t(this),r=e.closest(".woocommerce-mini-cart-item");a.data.addToCartHandler.$liveRegion.text("").removeAttr("aria-relevant"),a.preventDefault(),r.block({message:null,overlayCSS:{opacity:.6}}),a.data.addToCartHandler.addRequest({type:"POST",url:wc_add_to_cart_params.wc_ajax_url.toString().replace("%%endpoint%%","remove_from_cart"),data:{cart_item_key:e.data("cart_item_key")},success:function(a){a&&a.fragments?t(document.body).trigger("removed_from_cart",[a.fragments,a.cart_hash,e]):window.location=e.attr("href")},error:function(){window.location=e.attr("href")},dataType:"json"})},a.prototype.onKeydownRemoveFromCart=function(a){" "===a.key&&(a.preventDefault(),t(this).trigger("click"))},a.prototype.updateButton=function(a,e,r,o){if(o=void 0!==o&&o){if(o.removeClass("loading"),e&&o.addClass("added"),e&&!wc_add_to_cart_params.is_cart&&0===o.parent().find(".added_to_cart").length){var d=document.createElement("a");d.href=wc_add_to_cart_params.cart_url,d.className="added_to_cart wc-forward",d.title=wc_add_to_cart_params.i18n_view_cart,d.textContent=wc_add_to_cart_params.i18n_view_cart,o.after(d)}t(document.body).trigger("wc_cart_button_updated",[o])}},a.prototype.updateFragments=function(a,e){e&&(t.each(e,function(a){t(a).addClass("updating").fadeTo("400","0.6").block({message:null,overlayCSS:{opacity:.6}})}),t.each(e,function(a,e){t(a).replaceWith(e),t(a).stop(!0).css("opacity","1").unblock()}),t(document.body).trigger("wc_fragments_loaded"))},a.prototype.alertCartUpdated=function(t,a,e,r){if(r=void 0!==r&&r){var o=r.data("success_message");if(!o)return;t.data.addToCartHandler.$liveRegion.delay(1e3).text(o).attr("aria-relevant","all")}},a.prototype.createLiveRegion=function(){var a=t(".widget_shopping_cart_live_region");return a.length?a:t('<div class="widget_shopping_cart_live_region screen-reader-text" role="status"></div>').appendTo("body")},a.prototype.onAddedToCart=function(t,a,e,r){t.data.addToCartHandler.updateButton(t,a,e,r),t.data.addToCartHandler.updateFragments(t,a),t.data.addToCartHandler.alertCartUpdated(t,a,e,r)},a.prototype.onRemovedFromCart=function(t,a,e,r){t.data.addToCartHandler.updateFragments(t,a),t.data.addToCartHandler.alertCartUpdated(t,a,e,r)},new a});
|
||||
@@ -1 +0,0 @@
|
||||
!function(t){"use strict";const e=t.params,n=(document.querySelector.bind(document),(t,e)=>e.split(".").reduce((t,e)=>t&&t[e],t)),i=()=>null,s=t=>null===t||t===undefined?"":t,o="wc/store/checkout";function a(t){document.querySelectorAll("wc-order-attribution-inputs").forEach((t,e)=>{e>0&&t.remove()});for(const e of document.querySelectorAll("wc-order-attribution-inputs"))e.values=t}function r(t){window.wp&&window.wp.data&&window.wp.data.dispatch&&window.wc&&window.wc.wcBlocksData&&window.wp.data.dispatch(window.wc.wcBlocksData.CHECKOUT_STORE_KEY).setExtensionData("woocommerce/order-attribution",t,!0)}function c(){return"undefined"!=typeof sbjs}function d(){if(window.wp&&window.wp.data&&"function"==typeof window.wp.data.subscribe){const e=window.wp.data.subscribe(function(){e(),r(t.getAttributionData())},o)}}t.getAttributionData=function(){const s=e.allowTracking&&c()?n:i,o=c()?sbjs.get:{},a=Object.entries(t.fields).map(([t,e])=>[t,s(o,e)]);return Object.fromEntries(a)},t.setOrderTracking=function(n){if(e.allowTracking=n,n){if(!c())return;sbjs.init({lifetime:Number(e.lifetime),session_length:Number(e.session),base64:Boolean(e.base64),timezone_offset:"0"})}else!function(){const t=window.location.hostname;["sbjs_current","sbjs_current_add","sbjs_first","sbjs_first_add","sbjs_session","sbjs_udata","sbjs_migrations","sbjs_promo"].forEach(e=>{document.cookie=`${e}=; path=/; max-age=-999; domain=.${t};`})}();const i=t.getAttributionData();a(i),r(i)},t.setOrderTracking(e.allowTracking),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",d):d(),window.customElements.define("wc-order-attribution-inputs",class extends HTMLElement{constructor(){if(super(),this._fieldNames=Object.keys(t.fields),this.hasOwnProperty("_values")){let t=this.values;delete this.values,this.values=t||{}}}connectedCallback(){this.innerHTML="";const t=new DocumentFragment;for(const n of this._fieldNames){const i=document.createElement("input");i.type="hidden",i.name=`${e.prefix}${n}`,i.value=s(this.values&&this.values[n]||""),t.appendChild(i)}this.appendChild(t)}set values(t){if(this._values=t,this.isConnected)for(const t of this._fieldNames){const n=this.querySelector(`input[name="${e.prefix}${t}"]`);n?n.value=s(this.values[t]):console.warn(`Field "${t}" not found. `+"Most likely, the '<wc-order-attribution-inputs>' element was manipulated.")}}get values(){return this._values}})}(window.wc_order_attribution);
|
||||
@@ -1 +0,0 @@
|
||||
function on_keydown_remove_from_cart(e){" "===e.key&&(e.preventDefault(),e.currentTarget.click())}function focus_populate_live_region(){var e=["woocommerce-message","woocommerce-error","wc-block-components-notice-banner"].map(function(e){return"."+e+'[role="alert"]'}).join(", "),o=document.querySelectorAll(e);if(0!==o.length){var t=o[0];t.setAttribute("tabindex","-1");var n=setTimeout(function(){t.focus(),clearTimeout(n)},500)}}function refresh_sorted_by_live_region(){var e=document.querySelector(".woocommerce-result-count"),o=document.querySelector('[data-wp-interactive="woocommerce/product-filters"]');if(e&&window.location.search&&!o){var t=e.innerHTML;e.setAttribute("role","alert"),e.setAttribute("aria-hidden","true");var n=setTimeout(function(){e.setAttribute("aria-hidden","false"),e.innerHTML="",e.innerHTML=t,clearTimeout(n)},2e3)}}function on_document_ready(){focus_populate_live_region(),refresh_sorted_by_live_region()}jQuery(function(e){e(".woocommerce-ordering").on("change","select.orderby",function(){e(this).closest("form").trigger("submit")}),e("input.qty:not(.product-quantity input.qty)").each(function(){var o=parseFloat(e(this).attr("min"));o>=0&&parseFloat(e(this).val())<o&&e(this).val(o)});var o="store_notice"+(e(".woocommerce-store-notice").data("noticeId")||"");if("hidden"===Cookies.get(o))e(".woocommerce-store-notice").hide();else{function t(o){["Enter"," "].includes(o.key)&&(o.preventDefault(),e(".woocommerce-store-notice__dismiss-link").click())}e(".woocommerce-store-notice").show(),e(".woocommerce-store-notice__dismiss-link").on("click",function n(r){Cookies.set(o,"hidden",{path:"/"}),e(".woocommerce-store-notice").hide(),r.preventDefault(),e(".woocommerce-store-notice__dismiss-link").off("click",n).off("keydown",t)}).on("keydown",t)}e(".woocommerce-input-wrapper span.description").length&&e(document.body).on("click",function(){e(".woocommerce-input-wrapper span.description:visible").prop("aria-hidden",!0).slideUp(250)}),e(".woocommerce-input-wrapper").on("click",function(e){e.stopPropagation()}),e(".woocommerce-input-wrapper :input").on("keydown",function(o){var t=e(this).parent().find("span.description");if(27===o.which&&t.length&&t.is(":visible"))return t.prop("aria-hidden",!0).slideUp(250),o.preventDefault(),!1}).on("click focus",function(){var o=e(this).parent(),t=o.find("span.description");o.addClass("currentTarget"),e(".woocommerce-input-wrapper:not(.currentTarget) span.description:visible").prop("aria-hidden",!0).slideUp(250),t.length&&t.is(":hidden")&&t.prop("aria-hidden",!1).slideDown(250),o.removeClass("currentTarget")}),e.scroll_to_notices=function(o){o.length&&e("html, body").animate({scrollTop:o.offset().top-100},1e3)},e('.woocommerce form .woocommerce-Input[type="password"]').wrap('<span class="password-input"></span>'),e(".woocommerce form input").filter(":password").parent("span").addClass("password-input"),e(".password-input").each(function(){const o=e(this).find("input").attr("id");e(this).append('<button type="button" class="show-password-input" aria-label="'+woocommerce_params.i18n_password_show+'" aria-describedBy="'+o+'"></button>')}),e(".show-password-input").on("click",function(o){o.preventDefault(),e(this).hasClass("display-password")?(e(this).removeClass("display-password"),e(this).attr("aria-label",woocommerce_params.i18n_password_show)):(e(this).addClass("display-password"),e(this).attr("aria-label",woocommerce_params.i18n_password_hide)),e(this).hasClass("display-password")?e(this).siblings(['input[type="password"]']).prop("type","text"):e(this).siblings('input[type="text"]').prop("type","password"),e(this).siblings("input").focus()}),e("a.coming-soon-footer-banner-dismiss").on("click",function(o){var t=e(o.target);e.ajax({type:"post",url:t.data("rest-url"),data:{woocommerce_meta:{coming_soon_banner_dismissed:"yes"}},beforeSend:function(e){e.setRequestHeader("X-WP-Nonce",t.data("rest-nonce"))},complete:function(){e("#coming-soon-footer-banner").hide()}})}),"undefined"==typeof wc_add_to_cart_params&&e(document.body).on("keydown",".remove_from_cart_button",on_keydown_remove_from_cart),e(document.body).on("item_removed_from_classic_cart updated_wc_div",focus_populate_live_region)}),document.addEventListener("DOMContentLoaded",on_document_ready);
|
||||
@@ -1,2 +0,0 @@
|
||||
/*! js-cookie v3.0.5 | MIT */
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self,function(){var n=e.Cookies,o=e.Cookies=t();o.noConflict=function(){return e.Cookies=n,o}}())}(this,function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}return function t(n,o){function r(t,r,i){if("undefined"!=typeof document){"number"==typeof(i=e({},o,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var c="";for(var u in i)i[u]&&(c+="; "+u,!0!==i[u]&&(c+="="+i[u].split(";")[0]));return document.cookie=t+"="+n.write(r,t)+c}}return Object.create({set:r,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],o={},r=0;r<t.length;r++){var i=t[r].split("="),c=i.slice(1).join("=");try{var u=decodeURIComponent(i[0]);if(o[u]=n.read(c,u),e===u)break}catch(f){}}return e?o[e]:o}},remove:function(t,n){r(t,"",e({},n,{expires:-1}))},withAttributes:function(n){return t(this.converter,e({},this.attributes,n))},withConverter:function(n){return t(e({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(o)},converter:{value:Object.freeze(n)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})});
|
||||
@@ -1,37 +0,0 @@
|
||||
.woosw-list table.woosw-items tr td {
|
||||
padding: 20px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a {
|
||||
font-size: 20px;
|
||||
color: var(--title-color);
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a {
|
||||
font-size: 20px;
|
||||
}
|
||||
.woosw-list table.woosw-items tr .woosw-item--actions {
|
||||
width: 88px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a:hover {
|
||||
color: var(--theme-color);
|
||||
}
|
||||
|
||||
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline .cart-button.icon-btn.added {
|
||||
display: none;
|
||||
}
|
||||
.woosw-list table.woosw-items tr .woosw-item--actions {
|
||||
width: 170px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc p, .woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline {
|
||||
text-align: center;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline .added_to_cart.wc-forward {
|
||||
height: 50px;
|
||||
display: block;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
background-color: var(--icon-bg, #f7f7f7);
|
||||
border: 1px solid var(--th-border-color);
|
||||
color: var(--title-color);
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
.woosw-list table.woosw-items tr td {
|
||||
padding: 20px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a {
|
||||
font-size: 20px;
|
||||
color: var(--title-color);
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a {
|
||||
font-size: 20px;
|
||||
}
|
||||
.woosw-list table.woosw-items tr .woosw-item--actions {
|
||||
width: 88px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--name a:hover {
|
||||
color: var(--theme-color);
|
||||
}
|
||||
|
||||
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline .cart-button.icon-btn.added {
|
||||
display: none;
|
||||
}
|
||||
.woosw-list table.woosw-items tr .woosw-item--actions {
|
||||
width: 170px;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc p, .woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline {
|
||||
text-align: center;
|
||||
}
|
||||
.woosw-list table.woosw-items .woosw-item .woosw-item--atc .add_to_cart_inline .added_to_cart.wc-forward {
|
||||
height: 50px;
|
||||
display: block;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
background-color: var(--icon-bg, #f7f7f7);
|
||||
border: 1px solid var(--th-border-color);
|
||||
color: var(--title-color);
|
||||
}
|
||||
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -546,26 +546,6 @@ function rakar_content_load_scripts() {
|
||||
});
|
||||
});
|
||||
|
||||
$(".masonary-active, .woocommerce-Reviews .comment-list").imagesLoaded(function () {
|
||||
var $filter = ".masonary-active, .woocommerce-Reviews .comment-list",
|
||||
$filterItem = ".filter-item, .woocommerce-Reviews .comment-list li";
|
||||
|
||||
if ($($filter).length > 0) {
|
||||
$($filter).isotope({
|
||||
itemSelector: $filterItem,
|
||||
filter: "*",
|
||||
masonry: {
|
||||
// use outer width of grid-sizer for columnWidth
|
||||
columnWidth: 1,
|
||||
},
|
||||
});
|
||||
}
|
||||
$('[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) {
|
||||
$($filter).isotope({
|
||||
filter: "*",
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
/*----------- 14. Counter Up ----------*/
|
||||
$(".counter-number").counterUp({
|
||||
@@ -606,77 +586,8 @@ function rakar_content_load_scripts() {
|
||||
$('.shape-mockup').shapeMockup();
|
||||
}
|
||||
|
||||
/*----------- 17. Progress Bar Animation ----------*/
|
||||
$('.progress-bar').waypoint(function() {
|
||||
$('.progress-bar').css({
|
||||
animation: "animate-positive 1.8s",
|
||||
opacity: "1"
|
||||
});
|
||||
}, { offset: '75%' });
|
||||
|
||||
/*----------- 18. Countdown ----------*/
|
||||
$.fn.countdown = function () {
|
||||
$(this).each(function () {
|
||||
var $counter = $(this),
|
||||
countDownDate = new Date($counter.data("offer-date")).getTime(), // Set the date we're counting down toz
|
||||
exprireCls = "expired";
|
||||
|
||||
// Finding Function
|
||||
function s$(element) {
|
||||
return $counter.find(element);
|
||||
}
|
||||
|
||||
// Update the count down every 1 second
|
||||
var counter = setInterval(function () {
|
||||
// Get today's date and time
|
||||
var now = new Date().getTime();
|
||||
|
||||
// Find the distance between now and the count down date
|
||||
var distance = countDownDate - now;
|
||||
|
||||
// Time calculations for days, hours, minutes and seconds
|
||||
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
||||
var hours = Math.floor(
|
||||
(distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)
|
||||
);
|
||||
var minutes = Math.floor(
|
||||
(distance % (1000 * 60 * 60)) / (1000 * 60)
|
||||
);
|
||||
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
|
||||
|
||||
// Check If value is lower than ten, so add zero before number
|
||||
days < 10 ? (days = "0" + days) : null;
|
||||
hours < 10 ? (hours = "0" + hours) : null;
|
||||
minutes < 10 ? (minutes = "0" + minutes) : null;
|
||||
seconds < 10 ? (seconds = "0" + seconds) : null;
|
||||
|
||||
// If the count down is over, write some text
|
||||
if (distance < 0) {
|
||||
clearInterval(counter);
|
||||
$counter.addClass(exprireCls);
|
||||
$counter.find(".message").css("display", "block");
|
||||
} else {
|
||||
// Output the result in elements
|
||||
s$(".day").html(days);
|
||||
s$(".hour").html(hours);
|
||||
s$(".minute").html(minutes);
|
||||
s$(".seconds").html(seconds);
|
||||
}
|
||||
}, 1000);
|
||||
});
|
||||
};
|
||||
|
||||
if ($(".counter-list").length) {
|
||||
$(".counter-list").countdown();
|
||||
}
|
||||
|
||||
/*---------- 19. Hero 2 Animation ----------*/
|
||||
if ($('.hero-2').length > 0) {
|
||||
window.addEventListener('scroll', function() {
|
||||
let value = window.scrollY;
|
||||
$('.line').css('width', "calc(" + 'var(--size)' + " - " + value * 0.1 + 'px' + ")");
|
||||
})
|
||||
};
|
||||
|
||||
/*----------- 21. Overlay Direction ----------*/
|
||||
if ($('.overlay-direction').length > 0) {
|
||||
@@ -784,94 +695,8 @@ function rakar_content_load_scripts() {
|
||||
$('.slider-button').css('left', `calc(${sliderPos}% - 32px)`)
|
||||
});
|
||||
|
||||
/*----------- 00. Color Scheme ----------*/
|
||||
$('.color-switch-btns button').each(function () {
|
||||
// Get color for button
|
||||
const button = $(this);
|
||||
const color = button.data('color');
|
||||
button.css('--theme-color', color);
|
||||
|
||||
// Change theme color on click
|
||||
button.on('click', function () {
|
||||
const clickedColor = $(this).data('color');
|
||||
$(':root').css('--theme-color', clickedColor);
|
||||
});
|
||||
});
|
||||
|
||||
// Handle color picker change event
|
||||
$('#thcolorpicker').on('input', function () {
|
||||
const pickedColor = $(this).val();
|
||||
updateThemeColor(pickedColor);
|
||||
});
|
||||
|
||||
function updateThemeColor(color) {
|
||||
$(':root').css('--theme-color', color);
|
||||
}
|
||||
|
||||
$(document).on('click','.switchIcon',function() {
|
||||
$('.color-scheme').toggleClass('active');
|
||||
});
|
||||
|
||||
|
||||
/*----------- 00. Woocommerce Toggle ----------*/
|
||||
// Ship To Different Address
|
||||
$("#ship-to-different-address-checkbox").on("change", function () {
|
||||
if ($(this).is(":checked")) {
|
||||
$("#ship-to-different-address")
|
||||
.next(".shipping_address")
|
||||
.slideDown();
|
||||
} else {
|
||||
$("#ship-to-different-address").next(".shipping_address").slideUp();
|
||||
}
|
||||
});
|
||||
|
||||
// Woocommerce Payment Toggle
|
||||
$('.wc_payment_methods input[type="radio"]:checked')
|
||||
.siblings(".payment_box")
|
||||
.show();
|
||||
$('.wc_payment_methods input[type="radio"]').each(function () {
|
||||
$(this).on("change", function () {
|
||||
$(".payment_box").slideUp();
|
||||
$(this).siblings(".payment_box").slideDown();
|
||||
});
|
||||
});
|
||||
|
||||
// Woocommerce Rating Toggle
|
||||
$(".rating-select .stars a").each(function () {
|
||||
$(this).on("click", function (e) {
|
||||
e.preventDefault();
|
||||
$(this).siblings().removeClass("active");
|
||||
$(this).parent().parent().addClass("selected");
|
||||
$(this).addClass("active");
|
||||
});
|
||||
});
|
||||
|
||||
// Quantity Plus Minus ---------------------------
|
||||
$(document).on('click', '.quantity-plus, .quantity-minus', function (e) {
|
||||
e.preventDefault();
|
||||
// Get current quantity values
|
||||
var qty = $(this).closest('.quantity, .product-quantity').find('.qty-input');
|
||||
var val = parseFloat(qty.val());
|
||||
var max = parseFloat(qty.attr('max'));
|
||||
var min = parseFloat(qty.attr('min'));
|
||||
var step = parseFloat(qty.attr('step'));
|
||||
|
||||
// Change the value if plus or minus
|
||||
if ($(this).is('.quantity-plus')) {
|
||||
if (max && (max <= val)) {
|
||||
qty.val(max);
|
||||
} else {
|
||||
qty.val(val + step);
|
||||
}
|
||||
} else {
|
||||
if (min && (min >= val)) {
|
||||
qty.val(min);
|
||||
} else if (val > 0) {
|
||||
qty.val(val - step);
|
||||
}
|
||||
}
|
||||
$('.cart_table button[name="update_cart"]').prop('disabled', false);
|
||||
});
|
||||
|
||||
/*----------- Search Masonary ----------*/
|
||||
$('.search-active').imagesLoaded(function () {
|
||||
@@ -953,74 +778,8 @@ function rakar_content_load_scripts() {
|
||||
// Window Load
|
||||
$(window).on('load', function () {
|
||||
rakar_content_load_scripts();
|
||||
/*---------- 18. Image to SVG Code ----------*/
|
||||
const cache = {};
|
||||
|
||||
$.fn.inlineSvg = function fnInlineSvg() {
|
||||
this.each(imgToSvg);
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
function imgToSvg() {
|
||||
const $img = $(this);
|
||||
const src = $img.attr("src");
|
||||
|
||||
// fill cache by src with promise
|
||||
if (!cache[src]) {
|
||||
const d = $.Deferred();
|
||||
$.get(src, (data) => {
|
||||
d.resolve($(data).find("svg"));
|
||||
});
|
||||
cache[src] = d.promise();
|
||||
}
|
||||
|
||||
// replace img with svg when cached promise resolves
|
||||
cache[src].then((svg) => {
|
||||
const $svg = $(svg).clone();
|
||||
|
||||
if ($img.attr("id")) $svg.attr("id", $img.attr("id"));
|
||||
if ($img.attr("class")) $svg.attr("class", $img.attr("class"));
|
||||
if ($img.attr("style")) $svg.attr("style", $img.attr("style"));
|
||||
|
||||
if ($img.attr("width")) {
|
||||
$svg.attr("width", $img.attr("width"));
|
||||
if (!$img.attr("height")) $svg.removeAttr("height");
|
||||
}
|
||||
if ($img.attr("height")) {
|
||||
$svg.attr("height", $img.attr("height"));
|
||||
if (!$img.attr("width")) $svg.removeAttr("width");
|
||||
}
|
||||
|
||||
$svg.insertAfter($img);
|
||||
$img.trigger("svgInlined", $svg[0]);
|
||||
$img.remove();
|
||||
});
|
||||
}
|
||||
|
||||
$(".svg-img").inlineSvg();
|
||||
});
|
||||
|
||||
// Cart count with ajax
|
||||
jQuery(function ($) {
|
||||
$(document).on('click', '.add_to_cart_button', function (e) {
|
||||
e.preventDefault();
|
||||
var $button = $(this);
|
||||
var product_id = $button.data('product_id');
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: wc_add_to_cart_params.ajax_url,
|
||||
data: {
|
||||
'action': 'update_cart_count',
|
||||
'product_id': product_id
|
||||
},
|
||||
success: function (response) {
|
||||
$('.cart_badge').text(response);
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
})(jQuery);
|
||||
1026
public/wp-content/themes/rakar/assets/js/main.js.bak
Normal file
@@ -1,36 +0,0 @@
|
||||
/*
|
||||
Theme Name: Rakar
|
||||
Theme URI: https://wordpress.themeholy.com/rakar
|
||||
Author: Themeholy
|
||||
Author URI: https://themeforest.net/user/themeholy
|
||||
Description: Rakar - Handyman Multipurpose Repairing Services WordPress Theme
|
||||
Version: 1.0.0
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: rakar
|
||||
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
|
||||
Requires at least: 5.0
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 7.4
|
||||
|
||||
This theme, like WordPress, is licensed under the GPL.
|
||||
Use it to make something cool, have fun, and share what you've learned with others.
|
||||
|
||||
*/
|
||||
|
||||
/* Header sub-menu icon */
|
||||
.hide-icon.main-menu ul.sub-menu li a:before {
|
||||
display: none;
|
||||
}
|
||||
.hide-icon.main-menu ul.sub-menu li a:hover {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.widget.no-banner-widget {
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
margin-bottom: 0px;
|
||||
position: relative;
|
||||
border-radius: 0px;
|
||||
border: 0px solid transparent;
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
/*
|
||||
Theme Name: Rakar
|
||||
Theme URI: https://wordpress.themeholy.com/rakar
|
||||
Author: Themeholy
|
||||
Author URI: https://themeforest.net/user/themeholy
|
||||
Description: Rakar - Handyman Multipurpose Repairing Services WordPress Theme
|
||||
Version: 1.0.0
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: rakar
|
||||
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
|
||||
Requires at least: 5.0
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 7.4
|
||||
|
||||
This theme, like WordPress, is licensed under the GPL.
|
||||
Use it to make something cool, have fun, and share what you've learned with others.
|
||||
|
||||
*/
|
||||
|
||||
/* Header sub-menu icon */
|
||||
.hide-icon.main-menu ul.sub-menu li a:before {
|
||||
display: none;
|
||||
}
|
||||
.hide-icon.main-menu ul.sub-menu li a:hover {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.widget.no-banner-widget {
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
margin-bottom: 0px;
|
||||
position: relative;
|
||||
border-radius: 0px;
|
||||
border: 0px solid transparent;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 633 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="57" viewBox="0 0 56 57" fill="none"><g clip-path="url(#clip0_798_13494)"><path d="M8.9696 36.3179L3.67346 46.9084C3.41882 47.4173 3.44616 48.0219 3.74481 48.5055C4.04431 48.9887 4.57153 49.2831 5.14019 49.2831H13.1071L17.8871 55.6563C18.1977 56.072 18.6852 56.3126 19.1983 56.3126C19.8798 56.3126 20.4168 55.9058 20.6663 55.4059L25.657 45.4242C18.9095 44.7791 12.9605 41.3577 8.9696 36.3179Z" fill="white"></path><path d="M52.297 46.9084L47.0009 36.3179C43.0099 41.3577 37.061 44.7791 30.3135 45.4242L35.3046 55.4059C35.5537 55.9058 36.0907 56.3126 36.7722 56.3126C37.2853 56.3126 37.7732 56.072 38.0838 55.6563L42.8634 49.2831H50.8303C51.3989 49.2831 51.9261 48.9887 52.2256 48.5055C52.5243 48.0219 52.5516 47.4173 52.297 46.9084Z" fill="white"></path><path d="M30.7317 16.4608L27.9858 12.0742L25.2407 16.4608C25.0156 16.8205 24.6597 17.079 24.2482 17.1819L19.2285 18.4376L22.5516 22.4042C22.8242 22.7293 22.9601 23.1476 22.9306 23.571L22.573 28.733L27.3723 26.7984C27.6004 26.7065 28.067 26.5839 28.5989 26.7984L33.3986 28.733L33.0414 23.571C33.0123 23.1476 33.1482 22.7293 33.4208 22.4042L36.7439 18.4376L31.7242 17.1819C31.3127 17.079 30.9568 16.8205 30.7317 16.4608Z" fill="white"></path><path d="M48.9565 21.2834C48.9565 9.72003 39.549 0.3125 27.9856 0.3125C16.4222 0.3125 7.01465 9.72003 7.01465 21.2834C7.01465 32.8464 16.4222 42.2544 27.9856 42.2544C39.549 42.2544 48.9565 32.8469 48.9565 21.2834ZM40.9423 18.5358L36.3605 24.0046L36.8527 31.1216C36.8915 31.6856 36.6378 32.2299 36.1806 32.5623C35.723 32.8943 35.127 32.9678 34.6028 32.7567L27.9856 30.0894L21.3684 32.7567C21.1911 32.8281 20.4849 33.0665 19.7906 32.5623C19.3334 32.2299 19.0797 31.6856 19.1185 31.1216L19.6116 24.0046L15.0298 18.5363C14.6666 18.1026 14.5521 17.513 14.7269 16.9755C14.9016 16.438 15.3408 16.0279 15.8894 15.8907L22.8099 14.1595L26.5949 8.11188C26.8948 7.63293 27.4203 7.34198 27.9856 7.34198C28.5508 7.34198 29.0764 7.63293 29.3763 8.11188L33.1621 14.1595L40.0826 15.8907C40.6312 16.0279 41.0704 16.438 41.2452 16.9755C41.4199 17.513 41.3054 18.1026 40.9423 18.5358Z" fill="white"></path></g><defs><clipPath id="clip0_798_13494"><rect width="56" height="56" fill="white" transform="translate(0 0.3125)"></rect></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><g clip-path="url(#clip0_798_29985)"><path d="M28.2118 22.0883C29.1455 21.3801 29.75 20.2593 29.75 18.9996C29.75 16.8629 28.0117 15.1246 25.875 15.1246C23.7383 15.1246 22 16.8629 22 18.9996C22 20.2589 22.6041 21.3793 23.5374 22.0876C22.7629 22.4072 22.0582 22.8844 21.4694 23.4951C20.8093 22.1898 19.6956 21.1516 18.3368 20.5886C19.2705 19.8804 19.875 18.7596 19.875 17.5C19.875 15.3633 18.1367 13.625 16 13.625C13.8633 13.625 12.125 15.3633 12.125 17.5C12.125 18.7596 12.7295 19.8804 13.6632 20.5886C12.3044 21.1516 11.1907 22.1898 10.5306 23.4951C9.94175 22.8843 9.23706 22.4072 8.46262 22.0876C9.39587 21.3793 10 20.2589 10 18.9996C10 16.8629 8.26169 15.1246 6.125 15.1246C3.98831 15.1246 2.25 16.8629 2.25 18.9996C2.25 20.2593 2.8545 21.3801 3.78825 22.0883C1.56681 23.0086 0 25.1994 0 27.7496V31.3746C0 31.7198 0.279813 31.9996 0.625 31.9996H10.5H21.5H31.375C31.7202 31.9996 32 31.7198 32 31.3746V27.7496C32 25.1994 30.4332 23.0086 28.2118 22.0883ZM3.5 18.9996C3.5 17.5522 4.67756 16.3746 6.125 16.3746C7.57244 16.3746 8.75 17.5522 8.75 18.9996C8.75 20.4471 7.57244 21.6246 6.125 21.6246C4.67756 21.6246 3.5 20.4471 3.5 18.9996ZM9.875 26.25V30.7496H1.25V27.7496C1.25 25.0615 3.43694 22.8746 6.125 22.8746C7.67544 22.8746 9.11856 23.6061 10.0381 24.8439C9.93163 25.2956 9.875 25.7663 9.875 26.25ZM13.375 17.5C13.375 16.0526 14.5526 14.875 16 14.875C17.4474 14.875 18.625 16.0526 18.625 17.5C18.625 18.9474 17.4474 20.125 16 20.125C14.5526 20.125 13.375 18.9474 13.375 17.5ZM20.875 30.7496H19.6354V28.7792C19.6354 28.4341 19.3556 28.1542 19.0104 28.1542C18.6652 28.1542 18.3854 28.4341 18.3854 28.7792V30.7496H11.125V26.25C11.125 23.5619 13.3119 21.375 16 21.375C18.6881 21.375 20.875 23.5619 20.875 26.25V30.7496ZM23.25 18.9996C23.25 17.5522 24.4276 16.3746 25.875 16.3746C27.3224 16.3746 28.5 17.5522 28.5 18.9996C28.5 20.4471 27.3224 21.6246 25.875 21.6246C24.4276 21.6246 23.25 20.4471 23.25 18.9996ZM30.75 30.7496H22.125V26.25C22.125 25.7663 22.0684 25.2956 21.9619 24.8439C22.8814 23.6061 24.3246 22.8746 25.875 22.8746C28.5631 22.8746 30.75 25.0615 30.75 27.7496V30.7496Z" fill="white"></path><path d="M22.1921 1.92526C21.948 1.68113 21.5523 1.6812 21.3081 1.92526L19.1635 4.06988C18.9195 4.31394 18.9195 4.7097 19.1635 4.95382C19.2856 5.07582 19.4455 5.13688 19.6055 5.13688C19.7655 5.13688 19.9255 5.07588 20.0475 4.95382L22.1921 2.8092C22.4361 2.56513 22.4361 2.16938 22.1921 1.92526Z" fill="white"></path><path d="M12.8366 4.06986L10.692 1.92523C10.4479 1.68117 10.0522 1.68117 9.80807 1.92523C9.56395 2.1693 9.56401 2.56505 9.80807 2.80917L11.9528 4.9538C12.0748 5.07586 12.2348 5.13686 12.3947 5.13686C12.5546 5.13686 12.7146 5.07586 12.8366 4.9538C13.0807 4.70973 13.0807 4.31398 12.8366 4.06986Z" fill="white"></path><path d="M16 0C15.6548 0 15.375 0.279813 15.375 0.625V1.96794C15.375 2.31312 15.6548 2.59294 16 2.59294C16.3452 2.59294 16.625 2.31312 16.625 1.96794V0.625C16.625 0.279813 16.3452 0 16 0Z" fill="white"></path><path d="M20.8565 7.05969C20.7472 6.723 20.4615 6.48231 20.1113 6.43144L17.8425 6.10175L16.8279 4.04588C16.6712 3.72844 16.354 3.53125 16 3.53125C15.646 3.53125 15.3288 3.72844 15.1722 4.04588L14.1575 6.10175L11.8888 6.43144C11.5385 6.48231 11.253 6.72306 11.1435 7.05969C11.0342 7.39631 11.1236 7.75894 11.3771 8.00606L13.0188 9.60631L12.6313 11.8659C12.5714 12.2148 12.7121 12.5608 12.9985 12.7689C13.1603 12.8864 13.3497 12.9462 13.5402 12.9462C13.687 12.9462 13.8345 12.9108 13.9707 12.8392L16 11.7723L18.0293 12.8391C18.3426 13.0039 18.7152 12.9769 19.0016 12.7689C19.288 12.5608 19.4287 12.2147 19.3688 11.8659L18.9812 9.60631L20.623 8.00606C20.8765 7.75894 20.9659 7.39631 20.8565 7.05969ZM17.9857 8.83119C17.7681 9.04331 17.6688 9.34869 17.7202 9.64831L18.0248 11.4246L16.4297 10.586C16.2952 10.5153 16.1476 10.4799 16 10.4799C15.8525 10.4799 15.7049 10.5153 15.5704 10.586L13.9752 11.4246L14.2799 9.64825C14.3312 9.34875 14.232 9.04331 14.0143 8.83119L12.7238 7.57325L14.5072 7.31406C14.8081 7.27038 15.068 7.08156 15.2024 6.809L16 5.19287L16.867 6.94956C16.958 7.13394 17.1339 7.26175 17.3373 7.29144L19.2762 7.57319L17.9857 8.83119Z" fill="white"></path><path d="M19.4516 25.9042C19.3348 25.7879 19.1741 25.7217 19.0098 25.7217C18.8448 25.7217 18.6841 25.7879 18.5679 25.9042C18.451 26.0211 18.3848 26.1816 18.3848 26.3467C18.3848 26.5111 18.451 26.6723 18.5679 26.7885C18.6841 26.9048 18.8448 26.9717 19.0098 26.9717C19.1741 26.9717 19.3348 26.9048 19.4516 26.7885C19.5679 26.6717 19.6348 26.5111 19.6348 26.3467C19.6348 26.1823 19.5679 26.0211 19.4516 25.9042Z" fill="white"></path></g><defs><clipPath id="clip0_798_29985"><rect width="32" height="32" fill="white"></rect></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M29.4412 12.9229C29.0942 12.6993 28.7258 12.5169 28.3426 12.3765C27.752 6.08598 22.4424 1.14648 16 1.14648C9.55769 1.14648 4.24806 6.08592 3.65744 12.3765C3.27437 12.5167 2.90606 12.6991 2.55944 12.9224C0.956813 13.9543 0 15.7073 0 17.6117V19.413C0 22.4869 2.50075 24.9877 5.57463 24.9877H6.83162C7.80825 24.9877 8.60281 24.1931 8.60281 23.2164V13.8083C8.60281 12.8317 7.80825 12.037 6.83162 12.037H5.57463C5.54319 12.037 5.51187 12.0382 5.48044 12.0387C6.21394 6.8898 10.6514 2.91767 16 2.91767C21.3486 2.91767 25.7861 6.88974 26.5196 12.0388C26.4881 12.0383 26.4568 12.0372 26.4254 12.0372H25.1684C24.1917 12.0372 23.3972 12.8317 23.3972 13.8084V23.2165C23.3972 24.1931 24.1917 24.9877 25.1684 24.9877H26.3579C25.6111 27.3581 23.3925 29.0817 20.7787 29.0817C20.2896 29.0817 19.8931 29.4782 19.8931 29.9674C19.8931 30.4565 20.2896 30.853 20.7787 30.853C24.4866 30.853 27.5837 28.1905 28.2601 24.6771C30.4354 23.9167 32 21.8444 32 19.413V17.6117C32 15.7073 31.0433 13.9544 29.4412 12.9229ZM5.57463 13.8084H6.83162L6.83275 23.2164C6.83275 23.2164 6.83238 23.2165 6.83162 23.2165H5.57463C3.47744 23.2165 1.77125 21.5103 1.77125 19.4131V17.6118C1.77125 16.3123 2.42438 15.1161 3.51863 14.4115C4.13088 14.0169 4.84188 13.8084 5.57463 13.8084ZM30.2288 19.413C30.2288 21.5102 28.5227 23.2164 26.4254 23.2164H25.1684V13.8083H26.4254C27.1582 13.8083 27.8692 14.0169 28.4821 14.4119C29.5759 15.116 30.2288 16.3122 30.2288 17.6117V19.413Z" fill="white"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 8.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none"><g clip-path="url(#clip0_798_13402)"><path d="M55.4062 20.93C55.7891 20.4513 56 19.8502 56 19.2372V1.80645C56 0.810419 55.1896 0 54.1936 0H45.1613C44.1653 0 43.3548 0.810419 43.3548 1.80645V19.2374C43.3548 19.8502 43.5657 20.4513 43.9486 20.9301L46.9677 24.7039V27.0968H45.1613C44.1653 27.0968 43.3548 27.9072 43.3548 28.9032V51.308L36.129 45.0247V9.93548H36.6582C37.1406 9.93548 37.5944 9.7475 37.9355 9.40631L40.9097 6.4321C41.3216 6.02034 41.5484 5.47264 41.5484 4.89018C41.5484 3.68787 40.5702 2.70968 39.3679 2.70968H23.4839C22.4878 2.70968 21.6774 3.5201 21.6774 4.51613V8.12903C21.6774 9.12506 22.4878 9.93548 23.4839 9.93548H27.0968V37.1706L21.6774 32.4581V16.4677C21.6774 16.259 21.6531 16.0501 21.6054 15.8471L18.2474 1.57556C18.0291 0.647839 17.2111 0 16.2581 0C15.305 0 14.4871 0.647839 14.2687 1.57556L10.9107 15.847C10.863 16.0501 10.8387 16.2589 10.8387 16.4677V23.033L3.65253 16.7842C3.26223 16.4449 2.76263 16.2581 2.24553 16.2581H2.14426C0.961936 16.2581 0 17.22 0 18.4023V53.8557C0 55.0381 0.961936 56 2.14426 56H43.0171C43.5628 56 44.0599 55.7934 44.4388 55.4566C44.892 55.7976 45.4551 56 46.0646 56H53.2904C54.7846 56 56.0001 54.7844 56.0001 53.2903V28.9032C56.0001 27.9072 55.1897 27.0968 54.1937 27.0968H52.3872V24.7039L55.4062 20.93ZM48.3051 23.4839L45.4148 19.871H53.9401L51.0498 23.4839H48.3051ZM46.9677 4.89018C47.3089 5.23137 47.7626 5.41935 48.245 5.41935H51.1097C51.5921 5.41935 52.0459 5.23137 52.387 4.89018L54.1934 3.08373V18.0645H45.1612V3.08373L46.9677 4.89018ZM46.4386 1.80645H52.9162L51.1097 3.6129H48.245L46.4386 1.80645ZM28.9032 9.93548H30.7097V8.12903H23.4839V4.51613H39.3679C39.5742 4.51613 39.7419 4.6839 39.7419 4.89018C39.7419 4.9901 39.703 5.08403 39.6324 5.15471L36.6582 8.12903H32.5161V9.93548H34.3226V43.4539L28.9032 38.7414V9.93548ZM10.8387 46.9677H9.03226V30.8937L10.8387 32.4744V46.9677ZM12.6452 18.0645H15.3548V46.9677H12.6452V18.0645ZM19.8464 16.2581H12.6699L14.7951 7.22581H17.7212L19.8464 16.2581ZM17.1613 18.0645H19.871V46.9677H17.1613V18.0645ZM21.6774 41.9582L27.4025 46.9677H21.6774V41.9582ZM16.2581 1.80645C16.3687 1.80645 16.4637 1.88165 16.489 1.98935L17.2961 5.41935H15.2201L16.0272 1.98935C16.0525 1.88165 16.1474 1.80645 16.2581 1.80645ZM43.017 54.1935H36.129V52.3871H34.3226V54.1935H32.5161V50.5806H30.7097V54.1935H28.9032V52.3871H27.0968V54.1935H25.2903V50.5806H23.4839V54.1935H21.6774V52.3871H19.871V54.1935H18.0645V50.5806H16.2581V54.1935H14.4516V52.3871H12.6452V54.1935H10.8387V50.5806H9.03226V54.1935H7.22581V52.3871H5.41935V54.1935H2.14426C1.95808 54.1935 1.80645 54.042 1.80645 53.8557V52.3871H3.6129V50.5806H1.80645V48.7742H5.41935V46.9677H1.80645V45.1613H3.6129V43.3548H1.80645V41.5484H5.41935V39.7419H1.80645V37.9355H3.6129V36.129H1.80645V34.3226H5.41935V32.5161H1.80645V30.7097H3.6129V28.9032H1.80645V27.0968H5.41935V25.2903H1.80645V23.4839H3.6129V21.6774H1.80645V18.4023C1.80645 18.2161 1.95797 18.0645 2.14426 18.0645H2.24553C2.32705 18.0645 2.40574 18.094 2.46716 18.1474L10.8387 25.4269V30.074L7.22581 26.9127V48.7742H32.2104L21.6774 39.5579V34.852L43.2387 53.6008C43.3125 53.665 43.3548 53.758 43.3548 53.8557C43.3548 54.042 43.2033 54.1935 43.017 54.1935ZM53.2903 54.1935H46.0645C45.5665 54.1935 45.1613 53.7883 45.1613 53.2903V32.5161H54.1936V53.2903C54.1936 53.7883 53.7883 54.1935 53.2903 54.1935ZM54.1936 30.7097H45.1613V28.9032H54.1936V30.7097ZM48.7742 27.0968V25.2903H50.5806V27.0968H48.7742Z" fill="#F47629"></path></g><defs><clipPath id="clip0_798_13402"><rect width="56" height="56" fill="white"></rect></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 3.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56" fill="none"><g clip-path="url(#clip0_798_13405)"><mask id="mask0_798_13405" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="56" height="56"><path d="M56 0H0V56H56V0Z" fill="white"></path></mask><g mask="url(#mask0_798_13405)"><path d="M11.7031 20.7813C11.7031 29.8278 19.0629 37.1875 28.1094 37.1875C37.156 37.1875 44.5157 29.8278 44.5157 20.7813C44.5157 11.7347 37.156 4.375 28.1094 4.375C19.0629 4.375 11.7031 11.7347 11.7031 20.7813ZM28.1094 6.5625C35.9498 6.5625 42.3282 12.9409 42.3282 20.7813C42.3282 28.6217 35.9498 35 28.1094 35C20.269 35 13.8907 28.6217 13.8907 20.7813C13.8907 12.9409 20.269 6.5625 28.1094 6.5625Z" fill="#F47629"></path><path d="M17.9805 18.8311L22.22 23.0082L21.2447 28.8791C21.1767 29.288 21.3455 29.6999 21.6809 29.9434C22.0158 30.1869 22.4598 30.2198 22.8276 30.0293L28.1096 27.2863L33.3912 30.0293C33.7561 30.2185 34.2001 30.189 34.538 29.9434C34.8734 29.6999 35.0421 29.288 34.9742 28.8791L33.9988 23.0082L38.2384 18.8311C38.5336 18.5406 38.6391 18.1082 38.5109 17.7138C38.3828 17.32 38.0432 17.0324 37.6334 16.9704L31.7498 16.0848L29.0876 10.7609C28.9026 10.3904 28.5236 10.1562 28.1096 10.1562C27.6952 10.1562 27.3166 10.3904 27.1313 10.7609L24.469 16.0848L18.5854 16.9704C18.1758 17.0319 17.836 17.32 17.7079 17.7138C17.5797 18.1082 17.6857 18.5406 17.9805 18.8311ZM25.3564 18.1633C25.7085 18.1103 26.0127 17.8895 26.1721 17.5711L28.1096 13.6956L30.0472 17.5711C30.2065 17.8895 30.5108 18.1103 30.8628 18.1633L35.1451 18.8081L32.0591 21.8479C31.8058 22.0978 31.6895 22.4554 31.7476 22.8067L32.4577 27.0795L28.6133 25.0834C28.4557 25.0014 28.2826 24.9604 28.1096 24.9604C27.9366 24.9604 27.7635 25.0014 27.6055 25.0834L23.7611 27.0795L24.4712 22.8067C24.5297 22.4554 24.4135 22.0978 24.1597 21.8479L21.0741 18.8081L25.3564 18.1633Z" fill="#F47629"></path><path d="M29.2032 1.09375C29.2032 1.69788 28.7135 2.1875 28.1094 2.1875C27.5053 2.1875 27.0156 1.69788 27.0156 1.09375C27.0156 0.489625 27.5053 0 28.1094 0C28.7135 0 29.2032 0.489625 29.2032 1.09375Z" fill="#F47629"></path><path d="M22.9546 0.64465C13.7539 2.99323 7.32812 11.2737 7.32812 20.7812C7.32812 26.6862 9.81088 32.2502 14.1692 36.1907L7.57977 47.8037C7.36786 48.1776 7.39434 48.6407 7.64728 48.9876C7.90021 49.335 8.33259 49.502 8.75342 49.4144L16.2366 47.8605L18.8667 55.272C19.0094 55.6753 19.3748 55.9578 19.8012 55.9957C20.2275 56.0337 20.6364 55.8189 20.8479 55.4468L28.1094 42.6806L35.3705 55.4468C35.5661 55.7907 35.9301 55.9996 36.3206 55.9996C36.3527 55.9996 36.3852 55.9984 36.4172 55.9957C36.8436 55.9578 37.2089 55.6749 37.3521 55.272L39.9817 47.8605L47.465 49.4144C47.8854 49.5016 48.3182 49.3345 48.5711 48.9876C48.8245 48.6407 48.8505 48.1776 48.6386 47.8037L42.0492 36.1907C46.4075 32.2502 48.8903 26.6862 48.8903 20.7812C48.8903 11.2737 42.4645 2.99323 33.2642 0.64465C32.6784 0.495114 32.0832 0.848447 31.9337 1.43378C31.7842 2.01911 32.1375 2.61469 32.7228 2.76423C40.9542 4.86542 46.7032 12.2743 46.7032 20.7812C46.7032 31.1347 38.2945 39.375 28.1094 39.375C17.917 39.375 9.51567 31.1278 9.51567 20.7812C9.51567 12.2743 15.2643 4.86542 23.4956 2.76423C24.0809 2.61469 24.4343 2.01911 24.2851 1.43378C24.1356 0.848447 23.5404 0.495114 22.9546 0.64465ZM20.1289 52.2872L17.9794 46.2302C17.7965 45.7149 17.2616 45.4137 16.7262 45.5248L10.6752 46.7813L15.8902 37.5904C18.9309 39.8009 22.5313 41.1476 26.2753 41.4809L20.1289 52.2872ZM39.4921 45.5248C38.9572 45.4137 38.4218 45.7149 38.239 46.2302L36.0899 52.2872L29.9432 41.4809C33.6875 41.1476 37.2876 39.8009 40.3286 37.5904L45.5436 46.7813L39.4921 45.5248Z" fill="#F47629"></path></g></g><defs><clipPath id="clip0_798_13405"><rect width="56" height="56" fill="white"></rect></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 720 KiB |
|
Before Width: | Height: | Size: 12 KiB |