style
|
After Width: | Height: | Size: 4.1 KiB |
|
|
@ -0,0 +1,90 @@
|
|||
@mixin transition {
|
||||
transition: all 0.2s ease-in-out 0s;
|
||||
-moz-transition: all 0.2s ease-in-out 0s;
|
||||
}
|
||||
@mixin transition-bg {
|
||||
transition: background 0.2s ease-in-out 0s;
|
||||
-moz-transition: background 0.2s ease-in-out 0s;
|
||||
}
|
||||
@mixin transition-border {
|
||||
transition: border 0.2s ease-in-out 0s;
|
||||
-moz-transition: border 0.2s ease-in-out 0s;
|
||||
}
|
||||
@mixin fullImage {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
-o-object-fit: cover;
|
||||
}
|
||||
@mixin transformY {
|
||||
transform: translateY(-50%);
|
||||
-moz-ransform: translateY(-50%);
|
||||
-o-transform: translateY(-50%);
|
||||
-ms-transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
}
|
||||
@mixin transformX {
|
||||
transform: translateX(-50%);
|
||||
-moz-ransform: translateX(-50%);
|
||||
-o-transform: translateX(-50%);
|
||||
-ms-transform: translateX(-50%);
|
||||
-webkit-transform: translateX(-50%);
|
||||
}
|
||||
@mixin transform {
|
||||
transform: translate(-50%, -50%);
|
||||
-moz-ransform: translate(-50%, -50%);
|
||||
-o-transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
}
|
||||
@mixin transformReset {
|
||||
transform: translate(0, 0);
|
||||
-moz-ransform: translate(0, 0);
|
||||
-o-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
}
|
||||
@mixin rotate {
|
||||
transform: rotate(90deg);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-o-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
-moz-transform: rotate(90deg);
|
||||
}
|
||||
@mixin rotate180deg {
|
||||
transform: rotate(180deg);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-o-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
-moz-transform: rotate(180deg);
|
||||
}
|
||||
@mixin rotate270deg {
|
||||
transform: rotate(270deg);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-o-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
-moz-transform: rotate(270deg);
|
||||
}
|
||||
|
||||
@mixin xxsm-xsm {
|
||||
@media (max-width: 374px) { @content; }
|
||||
}
|
||||
@mixin xsm-sm {
|
||||
@media (max-width: 540px) { @content; }
|
||||
}
|
||||
@mixin sm-md {
|
||||
@media (max-width: 700px) { @content; }
|
||||
}
|
||||
@mixin md-lg {
|
||||
@media (max-width: 768px) { @content; }
|
||||
}
|
||||
@mixin lg-xlg {
|
||||
@media (max-width: 1024px) { @content; }
|
||||
}
|
||||
|
||||
@mixin xlg-xxlg {
|
||||
@media (max-width: 1400px) { @content; }
|
||||
}
|
||||
@mixin xxlg-xxxlg {
|
||||
@media (max-width: 1640px) { @content; }
|
||||
}
|
||||
|
|
@ -0,0 +1,102 @@
|
|||
/***
|
||||
|
||||
====================================================================
|
||||
Reset
|
||||
====================================================================
|
||||
|
||||
***/
|
||||
// :root {
|
||||
// font-size: calc(1vw + 0.6em);
|
||||
// }
|
||||
* {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: none;
|
||||
outline: none;
|
||||
}
|
||||
button {
|
||||
outline: none;
|
||||
}
|
||||
button:focus {
|
||||
outline: none;
|
||||
}
|
||||
button:focus {
|
||||
outline: none;
|
||||
}
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
/***
|
||||
====================================================================
|
||||
Global Settings
|
||||
====================================================================
|
||||
***/
|
||||
|
||||
body {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 14px;
|
||||
color: #000;
|
||||
line-height: 1.7em;
|
||||
font-weight: 400;
|
||||
background: #fff;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-font-smoothing: antialiased;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
position: relative;
|
||||
font-weight: normal;
|
||||
margin: 0px;
|
||||
background: none;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
/* Typography */
|
||||
h1 {
|
||||
font-size: 4em;
|
||||
}
|
||||
h2 {
|
||||
font-size: 40px;
|
||||
}
|
||||
h3 {
|
||||
font-size: 34px;
|
||||
}
|
||||
h4 {
|
||||
font-size: 22px;
|
||||
}
|
||||
h5 {
|
||||
font-size: 20px;
|
||||
}
|
||||
h6 {
|
||||
font-size: 18px;
|
||||
}
|
||||
p {
|
||||
position: relative;
|
||||
line-height: 1.8em;
|
||||
}
|
||||
.auto__container {
|
||||
position: relative;
|
||||
max-width: 1440px;
|
||||
padding: 0px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
.mr-top-bot {
|
||||
margin: 80px 0;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
$main-color: #fd4c24;
|
||||
$text-light-black: #242424;
|
||||
$text-black: #000;
|
||||
$text-color-white: #ffffff;
|
||||
$text-color-grey: #a2a2a2;
|
||||
$color-grey: #b4b4b4;
|
||||
$p-size: 16px;
|
||||
$p-height: 26px;
|
||||
$h2-size: 22px;
|
||||
$h2-height: 28px;
|
||||
$h3-size: 20px;
|
||||
$h3-height: 24px;
|
||||
$h4-size: 16px;
|
||||
$h4-height: 20px;
|
||||
$h5-size: 14px;
|
||||
$h5-height: 20px;
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
.footer {
|
||||
background: $text-light-black;
|
||||
padding: 30px 0;
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
&__copyright {
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
font-weight: 400;
|
||||
color: $text-color-white;
|
||||
a {
|
||||
color: $text-color-white;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
&__social {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&-link {
|
||||
fill: $text-color-white;
|
||||
margin: 0 10px;
|
||||
@include transition;
|
||||
&:hover {
|
||||
fill: $main-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
.header {
|
||||
position: relative;
|
||||
.mobileSearch {
|
||||
display: none;
|
||||
}
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
background: #00822c;
|
||||
}
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 20px 0;
|
||||
}
|
||||
&__logo {
|
||||
width: 120px;
|
||||
}
|
||||
&__search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&-input {
|
||||
width: 350px;
|
||||
position: relative;
|
||||
input {
|
||||
width: calc(100% - 60px);
|
||||
font-family: "roboto";
|
||||
padding: 14px 40px 14px 20px;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-size;
|
||||
color: rgba($color: $text-light-black, $alpha: 0.3);
|
||||
border-radius: 5px;
|
||||
border: 1px solid #c9c9c9;
|
||||
&::placeholder {
|
||||
font-family: "roboto";
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-size;
|
||||
color: rgba($color: $text-light-black, $alpha: 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
&-btn {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 20px;
|
||||
@include transformY;
|
||||
svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
fill: $text-light-black;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__slogan {
|
||||
font-family: "Oswald", sans-serif;
|
||||
color: $main-color;
|
||||
font-weight: 700;
|
||||
font-size: 40px;
|
||||
line-height: 40px;
|
||||
margin-right: 20px;
|
||||
letter-spacing: -1.5px;
|
||||
}
|
||||
.hamBtn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.searchModal {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -0,0 +1,433 @@
|
|||
// Helper Functions
|
||||
|
||||
/// Replace `$search` with `$replace` in `$string`
|
||||
/// @author Hugo Giraudel
|
||||
/// @param {String} $string - Initial string
|
||||
/// @param {String} $search - Substring to replace
|
||||
/// @param {String} $replace ('') - New value
|
||||
/// @return {String} - Updated string
|
||||
@function lightpick-str-replace($string, $search, $replace: "") {
|
||||
$index: str-index($string, $search);
|
||||
|
||||
@if $index {
|
||||
@return str-slice($string, 1, $index - 1) + $replace +
|
||||
lightpick-str-replace(
|
||||
str-slice($string, $index + str-length($search)),
|
||||
$search,
|
||||
$replace
|
||||
);
|
||||
}
|
||||
|
||||
@return $string;
|
||||
}
|
||||
|
||||
/// Split `$string` between the `$separator` characters
|
||||
/// @author https://stackoverflow.com/a/42295154/108816
|
||||
/// @param {String} $string - Initial string
|
||||
/// @param {String} $separator - Substring to split on
|
||||
/// @return {List} - Split string
|
||||
@function lightpick-str-split($string, $separator) {
|
||||
$split-arr: ();
|
||||
$index: str-index($string, $separator);
|
||||
|
||||
@while $index != null {
|
||||
$item: str-slice($string, 1, $index - 1);
|
||||
|
||||
$split-arr: append($split-arr, $item);
|
||||
|
||||
$string: str-slice($string, $index + 1);
|
||||
|
||||
$index: str-index($string, $separator);
|
||||
}
|
||||
|
||||
$split-arr: append($split-arr, $string);
|
||||
|
||||
@return $split-arr;
|
||||
}
|
||||
|
||||
// SCSS Variables
|
||||
|
||||
$lightpick-font: system-ui, Roboto, Helvetica, Arial, sans-serif !default;
|
||||
$lightpick-line-height: 1.125em !default;
|
||||
$lightpick-border-radius: 4px !default;
|
||||
$lightpick-padding: 4px !default;
|
||||
$lightpick-color: #000 !default;
|
||||
$lightpick-background-color: #fff !default;
|
||||
$lightpick-months-background-color: #eee !default;
|
||||
$lightpick-title-font-size: 16px !default;
|
||||
$lightpick-title-font-weight: normal !default;
|
||||
$lightpick-day-of-week-font-size: 11px !default;
|
||||
$lightpick-day-of-week-font-weight: bold !default;
|
||||
$lightpick-day-hover-color: #e0e0e0 !default;
|
||||
$lightpick-day-hover-background-image-color: lightpick-str-replace(
|
||||
quote(#{$lightpick-day-hover-color}),
|
||||
"#",
|
||||
"%23"
|
||||
);
|
||||
$lightpick-day-hover-background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='#{$lightpick-day-hover-background-image-color}' cx='16' cy='16' r='16'/%3E%3C/svg%3E") !default;
|
||||
$lightpick-day-disabled-opacity: 0.38 !default;
|
||||
$lightpick-day-previous-next-opacity: $lightpick-day-disabled-opacity !default;
|
||||
$lightpick-day-size: 40px !default;
|
||||
$lightpick-day-font-size: 13px !default;
|
||||
$lightpick-selected-date-color: #fff !default;
|
||||
$main-color: #268bd2 !default;
|
||||
$lightpick-selected-date-background-image-color: lightpick-str-replace(
|
||||
quote(#{$main-color}),
|
||||
"#",
|
||||
"%23"
|
||||
);
|
||||
$lightpick-selected-date-background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='#{$lightpick-selected-date-background-image-color}' cx='16' cy='16' r='16'/%3E%3C/svg%3E") !default;
|
||||
$lightpick-selected-date-font-weight: bold !default;
|
||||
$lightpick-selected-range-background-color: rgba($main-color, 0.1) !default;
|
||||
$lightpick-selected-range-hover-background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='#{rgba($main-color, 0.5)}' cx='16' cy='16' r='16'/%3E%3C/svg%3E") !default;
|
||||
$lightpick-today-color: #dc322f !default;
|
||||
$lightpick-today-background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='#{rgba($lightpick-today-color, .5)}' cx='16' cy='16' r='16'/%3E%3C/svg%3E") !default;
|
||||
$lightpick-tooltip-background-color: #fff !default;
|
||||
$lightpick-tooltip-padding: 4px 8px !default;
|
||||
$lightpick-tooltip-margin: -(unquote(nth(lightpick-str-split(quote(#{$lightpick-tooltip-padding}), " "), 1))) !default;
|
||||
$lightpick-tooltip-triangle-size: 4px !default;
|
||||
$lightpick-tooltip-border-color: rgba(0, 0, 0, 0.12) !default;
|
||||
$lightpick-tooltip-font-size: 11px !default;
|
||||
$lightpick-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) !default;
|
||||
$lightpick-dropdown-font-size: 1em !default;
|
||||
$lightpick-dropdown-font-weight: bold !default;
|
||||
$lightpick-dropdown-disabled-color: #333 !default;
|
||||
$lightpick-action-width: 32px !default;
|
||||
$lightpick-action-height: $lightpick-action-width !default;
|
||||
$lightpick-action-background-color: #ddd !default;
|
||||
$lightpick-action-reset-background-color: #aeacad !default;
|
||||
$lightpick-action-reset-color: #fff !default;
|
||||
$lightpick-action-apply-background-color: #2495f3 !default;
|
||||
$lightpick-action-apply-color: #fff !default;
|
||||
$lightpick-action-border-radius: 5px !default;
|
||||
$lightpick-action-font-size: 12px !default;
|
||||
$lightpick-action-close-font-size: 18px !default;
|
||||
|
||||
// Styles
|
||||
.calendar__outer {
|
||||
width: 100%;
|
||||
input {
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.lightpick {
|
||||
position: absolute;
|
||||
z-index: 99999;
|
||||
border-radius: $lightpick-border-radius;
|
||||
// background-color: $lightpick-background-color;
|
||||
// box-shadow: $lightpick-box-shadow;
|
||||
color: $lightpick-color;
|
||||
font-family: $lightpick-font;
|
||||
line-height: $lightpick-line-height;
|
||||
width: 100%;
|
||||
margin-bottom: 80px;
|
||||
&--inlined {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
&,
|
||||
& *,
|
||||
&::after,
|
||||
&::before {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
&.is-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__months {
|
||||
display: grid;
|
||||
background-color: $lightpick-months-background-color;
|
||||
grid-template-columns: auto;
|
||||
grid-gap: 1px;
|
||||
|
||||
@at-root .lightpick--2-columns #{&} {
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
@at-root .lightpick--3-columns #{&} {
|
||||
grid-template-columns: auto auto auto;
|
||||
}
|
||||
|
||||
@at-root .lightpick--4-columns #{&} {
|
||||
grid-template-columns: auto auto auto auto;
|
||||
}
|
||||
|
||||
@at-root .lightpick--5-columns #{&} {
|
||||
grid-template-columns: auto auto auto auto auto;
|
||||
}
|
||||
}
|
||||
|
||||
&__month {
|
||||
width: 100%;
|
||||
background-color: $lightpick-background-color;
|
||||
|
||||
&-title-bar {
|
||||
display: flex;
|
||||
margin-bottom: $lightpick-padding;
|
||||
justify-content: space-between;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid #242424;
|
||||
position: relative;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
&-title {
|
||||
margin-top: $lightpick-padding;
|
||||
margin-bottom: $lightpick-padding;
|
||||
margin-left: $lightpick-padding;
|
||||
font-size: $lightpick-title-font-size;
|
||||
font-weight: 700;
|
||||
line-height: $lightpick-title-font-size * 1.5;
|
||||
cursor: default;
|
||||
padding: 0 $lightpick-padding;
|
||||
border-radius: $lightpick-border-radius;
|
||||
|
||||
& > .lightpick__select {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
outline: none;
|
||||
-moz-appearance: none;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
&:disabled {
|
||||
color: $lightpick-dropdown-disabled-color;
|
||||
}
|
||||
}
|
||||
|
||||
& > .lightpick__select-months {
|
||||
font-weight: $lightpick-dropdown-font-weight;
|
||||
font-size: $lightpick-dropdown-font-size;
|
||||
margin-right: 0;
|
||||
direction: ltr;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__toolbar {
|
||||
display: flex;
|
||||
// text-align: right;
|
||||
justify-content: space-between;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
-moz-transform: translateY(-50%);
|
||||
-ms-transform: translateY(-50%);
|
||||
-o-transform: translateY(-50%);
|
||||
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&__previous-action,
|
||||
&__next-action,
|
||||
&__close-action {
|
||||
display: flex;
|
||||
width: $lightpick-action-width;
|
||||
height: $lightpick-action-height;
|
||||
outline: none;
|
||||
border: none;
|
||||
background: none;
|
||||
// border-radius: 50%;
|
||||
// background-color: $lightpick-action-background-color;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
&:active {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
&__previous-action,
|
||||
&__next-action {
|
||||
font-size: 20px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
&__close-action {
|
||||
font-size: $lightpick-action-close-font-size;
|
||||
}
|
||||
|
||||
&__days-of-the-week {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
}
|
||||
|
||||
&__day-of-the-week {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
&__days {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
}
|
||||
|
||||
&__day {
|
||||
display: flex;
|
||||
height: $lightpick-day-size;
|
||||
padding: 10px 0;
|
||||
background-position: center center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
font-size: $h3-size - 3px;
|
||||
line-height: $h3-height - 3px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: default;
|
||||
|
||||
&.is-today {
|
||||
background-image: $lightpick-today-background-image;
|
||||
background-size: 18.8% auto;
|
||||
background-position: center bottom;
|
||||
color: $lightpick-today-color;
|
||||
}
|
||||
|
||||
&:not(.is-disabled):hover {
|
||||
background-size: contain;
|
||||
background-image: $lightpick-day-hover-background-image;
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
opacity: $lightpick-day-disabled-opacity;
|
||||
pointer-events: none;
|
||||
|
||||
&.is-forward-selected {
|
||||
opacity: 1;
|
||||
|
||||
&:not(.is-start-date) {
|
||||
background-color: $lightpick-selected-range-background-color;
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.disabled-tooltip {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
&.is-previous-month,
|
||||
&.is-next-month {
|
||||
opacity: $lightpick-day-previous-next-opacity;
|
||||
}
|
||||
|
||||
&#{&}.is-in-range:not(.is-disabled) {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.is-in-range {
|
||||
border-radius: 0;
|
||||
background-color: $lightpick-selected-range-background-color;
|
||||
background-image: none;
|
||||
|
||||
&:hover {
|
||||
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='rgba(38, 139, 210, 0.5)' cx='16' cy='16' r='16'/%3E%3C/svg%3E");
|
||||
}
|
||||
}
|
||||
|
||||
&.is-start-date.is-in-range,
|
||||
&.is-end-date.is-in-range.is-flipped {
|
||||
border-top-left-radius: 50%;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 50%;
|
||||
background-color: $main-color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
&.is-end-date.is-in-range,
|
||||
&.is-start-date.is-in-range.is-flipped {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 50%;
|
||||
border-bottom-right-radius: 50%;
|
||||
border-bottom-left-radius: 0;
|
||||
background-color: $main-color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
&.is-start-date.is-end-date {
|
||||
background-color: transparent;
|
||||
background-image: $lightpick-selected-date-background-image;
|
||||
}
|
||||
|
||||
&.is-start-date,
|
||||
&.is-end-date,
|
||||
&.is-start-date:hover,
|
||||
&.is-end-date:hover {
|
||||
background-image: $lightpick-selected-date-background-image;
|
||||
background-size: auto;
|
||||
background-position: center;
|
||||
color: $lightpick-selected-date-color;
|
||||
font-weight: $lightpick-selected-date-font-weight;
|
||||
}
|
||||
}
|
||||
|
||||
&__tooltip {
|
||||
position: absolute;
|
||||
margin-top: $lightpick-tooltip-margin;
|
||||
padding: $lightpick-tooltip-padding;
|
||||
border-radius: $lightpick-border-radius;
|
||||
background-color: $lightpick-tooltip-background-color;
|
||||
box-shadow: $lightpick-box-shadow;
|
||||
white-space: nowrap;
|
||||
font-size: $lightpick-tooltip-font-size;
|
||||
pointer-events: none;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
bottom: -($lightpick-tooltip-triangle-size + 1);
|
||||
left: calc(50% - #{$lightpick-tooltip-triangle-size + 1});
|
||||
border-top: ($lightpick-tooltip-triangle-size + 1) solid
|
||||
$lightpick-tooltip-border-color;
|
||||
border-right: ($lightpick-tooltip-triangle-size + 1) solid transparent;
|
||||
border-left: ($lightpick-tooltip-triangle-size + 1) solid transparent;
|
||||
content: "";
|
||||
}
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
bottom: -$lightpick-tooltip-triangle-size;
|
||||
left: calc(50% - #{$lightpick-tooltip-triangle-size});
|
||||
border-top: $lightpick-tooltip-triangle-size solid
|
||||
$lightpick-tooltip-background-color;
|
||||
border-right: $lightpick-tooltip-triangle-size solid transparent;
|
||||
border-left: $lightpick-tooltip-triangle-size solid transparent;
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
|
||||
&__footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
&__reset-action,
|
||||
&__apply-action {
|
||||
border-radius: $lightpick-action-border-radius;
|
||||
font-size: $lightpick-action-font-size;
|
||||
border: none;
|
||||
}
|
||||
|
||||
&__reset-action {
|
||||
color: $lightpick-action-reset-color;
|
||||
background-color: $lightpick-action-reset-background-color;
|
||||
}
|
||||
|
||||
&__apply-action {
|
||||
color: $lightpick-action-apply-color;
|
||||
background-color: $lightpick-action-apply-background-color;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
.card {
|
||||
position: relative;
|
||||
padding: 25px;
|
||||
background: $text-color-white;
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
&-category {
|
||||
padding: 5px 10px;
|
||||
background: $main-color;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
color: $text-color-white;
|
||||
font-weight: 700;
|
||||
max-width: 115px;
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
&-view {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: $text-color-grey;
|
||||
font-weight: 400;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height - 5px;
|
||||
svg {
|
||||
margin-right: 5px;
|
||||
stroke: $text-color-grey;
|
||||
width: 21px;
|
||||
height: 14px;
|
||||
}
|
||||
}
|
||||
&-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
color: $text-color-grey;
|
||||
font-weight: 400;
|
||||
svg {
|
||||
margin: 0 5px;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__link {
|
||||
color: $text-black;
|
||||
font-weight: 700;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
margin: 10px 0 0 0;
|
||||
display: block;
|
||||
height: 75px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
&__box {
|
||||
padding: 30px 0;
|
||||
|
||||
&:last-child {
|
||||
border-top: 1px solid $text-color-grey;
|
||||
padding: 30px 0 0 0;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
padding: 0 0 30px 0;
|
||||
}
|
||||
}
|
||||
&.other {
|
||||
padding: 30px;
|
||||
.card__header {
|
||||
&-category {
|
||||
background: $text-light-black;
|
||||
color: $text-color-white;
|
||||
}
|
||||
}
|
||||
border-bottom: 1px solid #e6e6e6;
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
.newsSlider {
|
||||
&__outer {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.p2 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
@include transformY;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.n2 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
@include transformY;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.newsSlider__item {
|
||||
position: relative;
|
||||
height: 320px;
|
||||
img {
|
||||
@include fullImage;
|
||||
}
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
width: calc(100% - 10px);
|
||||
height: calc(100% - 10px);
|
||||
background: rgb(0, 0, 0);
|
||||
background: linear-gradient(
|
||||
0deg,
|
||||
rgba(0, 0, 0, 1) 0%,
|
||||
rgba(0, 0, 0, 0) 100%
|
||||
);
|
||||
z-index: 1;
|
||||
}
|
||||
&-content {
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
top: 30px;
|
||||
width: calc(100% - 60px);
|
||||
z-index: 2;
|
||||
height: calc(100% - 60px);
|
||||
display: flex;
|
||||
&-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px 12px;
|
||||
background: $main-color;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 400;
|
||||
max-width: 145px;
|
||||
color: $text-color-white;
|
||||
margin-bottom: 10px;
|
||||
svg {
|
||||
margin: 0 4px;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
fill: $text-color-white;
|
||||
}
|
||||
}
|
||||
&-link {
|
||||
color: $text-color-white;
|
||||
font-size: 16px;
|
||||
line-height: 25px;
|
||||
font-weight: 700;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.slick-slider {
|
||||
margin: 0 -10px;
|
||||
}
|
||||
.slick-slide {
|
||||
padding: 5px;
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
.partnerSlider {
|
||||
position: relative;
|
||||
|
||||
&__inner {
|
||||
}
|
||||
&__item {
|
||||
margin-right: 5px;
|
||||
padding: 30px;
|
||||
border-right: 5px;
|
||||
border: 1px solid #e6e6e6;
|
||||
position: relative;
|
||||
img {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
.p1 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
@include transformY;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.n1 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 50%;
|
||||
right: 5px;
|
||||
@include transformY;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,830 @@
|
|||
@include xxlg-xxxlg {
|
||||
.auto__container {
|
||||
max-width: 1240px;
|
||||
}
|
||||
.swiper {
|
||||
&-slide {
|
||||
height: 450px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include xlg-xxlg {
|
||||
.swiper-slide-content-link {
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
height: 50px;
|
||||
}
|
||||
.newsSlider {
|
||||
&__item {
|
||||
height: 280px;
|
||||
}
|
||||
}
|
||||
.main__banner {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.swiper {
|
||||
&-slide {
|
||||
height: 350px;
|
||||
}
|
||||
}
|
||||
.newsSlider .newsSlider__item {
|
||||
height: 180px;
|
||||
&-content {
|
||||
&-date {
|
||||
max-width: 120px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header__slogan {
|
||||
font-size: 28px;
|
||||
line-height: 1;
|
||||
}
|
||||
.auto__container {
|
||||
max-width: 1040px;
|
||||
padding: 0 25px;
|
||||
}
|
||||
.banner {
|
||||
margin: 40px 0;
|
||||
}
|
||||
.slider {
|
||||
height: 450px;
|
||||
&__item {
|
||||
height: 450px;
|
||||
}
|
||||
&__nav {
|
||||
a {
|
||||
height: 33.3%;
|
||||
span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.event {
|
||||
margin: 40px 0;
|
||||
&__header {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__body {
|
||||
&-row {
|
||||
margin: 0 -10px;
|
||||
}
|
||||
&-image {
|
||||
margin: 0 10px;
|
||||
width: calc(50% - 20px);
|
||||
a.progressive {
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
&-card {
|
||||
top: 150px;
|
||||
left: 10px;
|
||||
width: calc(100% - 20px);
|
||||
}
|
||||
&-column {
|
||||
margin: 0 10px;
|
||||
width: calc(50% - 30px);
|
||||
padding: 0 15px;
|
||||
.card {
|
||||
padding: 15px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.main {
|
||||
&__body {
|
||||
&-header {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&-column {
|
||||
a.progressive {
|
||||
height: 240px;
|
||||
}
|
||||
}
|
||||
&-card {
|
||||
margin: -50px 15px 0 15px;
|
||||
}
|
||||
}
|
||||
&__sidebar {
|
||||
&-title {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
a.progressive {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&-tag {
|
||||
margin-bottom: 40px;
|
||||
&-link {
|
||||
padding: 4px 6px;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.card {
|
||||
padding: 15px;
|
||||
}
|
||||
.partner {
|
||||
&__title {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
.heading {
|
||||
&__row {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__title {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__content {
|
||||
padding: 15px 0 15px 15px;
|
||||
width: calc(60% - 15px);
|
||||
&-header {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
&-body {
|
||||
&-para {
|
||||
height: 90px;
|
||||
}
|
||||
}
|
||||
}
|
||||
a.progressive {
|
||||
height: 250px;
|
||||
}
|
||||
}
|
||||
.form {
|
||||
&__title {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__input {
|
||||
label {
|
||||
height: 60px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
.news {
|
||||
&__inner {
|
||||
padding: 40px 0;
|
||||
}
|
||||
&__image {
|
||||
margin: 20px 0;
|
||||
}
|
||||
&__body {
|
||||
&-row {
|
||||
&-image {
|
||||
margin: 0 10px;
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@include lg-xlg {
|
||||
.newsSlider {
|
||||
&__item {
|
||||
height: 240px;
|
||||
}
|
||||
}
|
||||
.swiper-container {
|
||||
.slick-list {
|
||||
padding: 0 20% 0 0;
|
||||
}
|
||||
}
|
||||
.partner__title {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.swiper-slide {
|
||||
&-content {
|
||||
padding: 15px;
|
||||
width: calc(100% - 30px);
|
||||
&-category {
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
padding: 8px 12px;
|
||||
font-weight: 500;
|
||||
}
|
||||
&-link {
|
||||
font-size: 14px;
|
||||
line-height: 26px;
|
||||
height: 52px;
|
||||
width: 75%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.slider {
|
||||
&__nav {
|
||||
display: none;
|
||||
}
|
||||
&__inner {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
.search {
|
||||
&Modal {
|
||||
display: block;
|
||||
@include transition;
|
||||
position: fixed;
|
||||
z-index: 1000;
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform: translateY(-100%);
|
||||
-webkit-transform: translateY(-100%);
|
||||
-moz-transform: translateY(-100%);
|
||||
-ms-transform: translateY(-100%);
|
||||
-o-transform: translateY(-100%);
|
||||
background: #fff;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
&__inner {
|
||||
padding: 25px;
|
||||
}
|
||||
&.active {
|
||||
transform: translateY(0);
|
||||
-webkit-transform: translateY(0);
|
||||
-moz-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
&Input {
|
||||
position: relative;
|
||||
max-width: 450px;
|
||||
margin: 0 auto;
|
||||
input {
|
||||
width: calc(100% - 60px);
|
||||
height: 50px;
|
||||
padding: 0 40px 0 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
font-weight: 500;
|
||||
color: $text-black;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #242424;
|
||||
}
|
||||
&__btn {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
background: none;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
-moz-transform: translateY(-50%);
|
||||
-ms-transform: translateY(-50%);
|
||||
-o-transform: translateY(-50%);
|
||||
svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
fill: #242424;
|
||||
}
|
||||
}
|
||||
}
|
||||
&Logo {
|
||||
width: 100%;
|
||||
max-width: 160px;
|
||||
margin: 30px auto;
|
||||
}
|
||||
&Close {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
fill: #b4b4b4;
|
||||
}
|
||||
}
|
||||
.header {
|
||||
border-bottom: 4px solid #242424;
|
||||
&__slogan {
|
||||
display: none;
|
||||
}
|
||||
.mobileSearch {
|
||||
display: block;
|
||||
svg {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
fill: #b4b4b4;
|
||||
}
|
||||
}
|
||||
&__search {
|
||||
display: none;
|
||||
}
|
||||
.hamBtn {
|
||||
display: block;
|
||||
width: 35px;
|
||||
background: none;
|
||||
height: 25px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
justify-content: space-between;
|
||||
span {
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
border-radius: 10px;
|
||||
background: $text-light-black;
|
||||
}
|
||||
}
|
||||
}
|
||||
.subheader__inner {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
z-index: 1000;
|
||||
@include transition;
|
||||
.close {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
top: 30px;
|
||||
display: block;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 50%;
|
||||
height: calc(100% - 50px);
|
||||
overflow-y: scroll;
|
||||
background: $text-light-black;
|
||||
&__inner {
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
&-link {
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-right: 0;
|
||||
padding: 20px;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
width: calc(100% - 40px);
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
.dropDown {
|
||||
margin-top: 20px;
|
||||
position: unset;
|
||||
width: unset;
|
||||
background: unset;
|
||||
background: #b4b4b4;
|
||||
&__link {
|
||||
color: $text-color-white;
|
||||
text-align: center;
|
||||
padding: 20px 0;
|
||||
&:hover {
|
||||
background: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.language {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 50%;
|
||||
padding: 15px 0;
|
||||
justify-content: center;
|
||||
background: $color-grey;
|
||||
}
|
||||
&.showMenu {
|
||||
width: 100%;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.event {
|
||||
&__body {
|
||||
&-image {
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
&-column {
|
||||
width: calc(50% - 30px);
|
||||
}
|
||||
}
|
||||
}
|
||||
.main {
|
||||
margin-top: 40px;
|
||||
&__sidebar {
|
||||
display: none;
|
||||
}
|
||||
&__content {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
&__body {
|
||||
&-card {
|
||||
margin: -50px 0 0 0;
|
||||
}
|
||||
&-column {
|
||||
a.progressive {
|
||||
height: 300px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
&__inner {
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
&__social {
|
||||
margin-top: 20px;
|
||||
}
|
||||
&__copyright {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.card.other {
|
||||
padding: 15px;
|
||||
}
|
||||
.mr-top-bot {
|
||||
margin: 40px 0;
|
||||
}
|
||||
.about {
|
||||
padding: 40px 0;
|
||||
}
|
||||
.news {
|
||||
&__sidebar {
|
||||
display: none;
|
||||
}
|
||||
&__content {
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
.terms {
|
||||
padding: 40px 0;
|
||||
&__title {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
&__para {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include sm-md {
|
||||
.newsSlider__outer {
|
||||
display: none;
|
||||
}
|
||||
.swiper-container {
|
||||
.slick-list {
|
||||
padding: 0 0 0 0;
|
||||
}
|
||||
}
|
||||
.header__logo {
|
||||
width: 80px;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.marquee {
|
||||
display: none;
|
||||
}
|
||||
.slider {
|
||||
height: 350px;
|
||||
&__item {
|
||||
height: 350px;
|
||||
}
|
||||
}
|
||||
|
||||
.event {
|
||||
&__body {
|
||||
&-row {
|
||||
margin: 0;
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
border: 1px solid #dcdcdc;
|
||||
}
|
||||
&-image {
|
||||
width: 100%;
|
||||
margin: 15px 0;
|
||||
a.progressive {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
&-column {
|
||||
width: calc(100% - 30px);
|
||||
margin: 0;
|
||||
padding: 0 15px;
|
||||
border: none;
|
||||
.card {
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid #dcdcdc;
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-card {
|
||||
position: unset;
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-bottom: 1px solid #dcdcdc;
|
||||
}
|
||||
}
|
||||
}
|
||||
.main {
|
||||
&__body {
|
||||
&-row {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
.banner__mobile {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
&-column {
|
||||
width: 100%;
|
||||
margin: 15px 0;
|
||||
a.progressive {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__banner {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
.heading {
|
||||
&__row {
|
||||
margin-bottom: 20px;
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
}
|
||||
&__image {
|
||||
width: 100%;
|
||||
}
|
||||
&__content {
|
||||
padding: 20px 0;
|
||||
width: 100%;
|
||||
&-body {
|
||||
&-para {
|
||||
height: 120px;
|
||||
}
|
||||
}
|
||||
}
|
||||
a.progressive {
|
||||
height: auto;
|
||||
img {
|
||||
height: unset;
|
||||
width: 100%;
|
||||
object-fit: unset;
|
||||
-o-object-fit: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
.form {
|
||||
&__row {
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
}
|
||||
&__input {
|
||||
margin-bottom: 20px;
|
||||
&:first-child {
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
}
|
||||
&:last-child {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
label {
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
&__btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.main {
|
||||
&__inner.contact {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.news {
|
||||
&__body {
|
||||
&-row {
|
||||
margin: 0;
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
&-image {
|
||||
margin: 15px 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
margin: 15px 0;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&__footer {
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
margin: 15px 0;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.newsSlider {
|
||||
.newsSlider__item {
|
||||
img {
|
||||
height: 250px;
|
||||
}
|
||||
&-content {
|
||||
position: unset;
|
||||
padding: 10px;
|
||||
border: 1px solid #dfdfdf;
|
||||
width: calc(100% - 20px);
|
||||
&-link {
|
||||
color: $text-light-black;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
height: 48px;
|
||||
}
|
||||
&-date {
|
||||
font-size: 10px;
|
||||
width: 100%;
|
||||
padding: 8px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@include xsm-sm {
|
||||
.swiper-slide-content-category {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
right: 15px;
|
||||
}
|
||||
.auto__container {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.slider {
|
||||
height: 300px;
|
||||
&__item {
|
||||
height: 300px;
|
||||
}
|
||||
}
|
||||
.partnerSlider {
|
||||
overflow: hidden;
|
||||
&__item {
|
||||
margin-right: 0;
|
||||
padding: 5px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
&__social {
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
&-link {
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.subheader {
|
||||
z-index: 12;
|
||||
&__inner {
|
||||
.close {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
top: 15px;
|
||||
left: 15px;
|
||||
}
|
||||
}
|
||||
.nav {
|
||||
width: calc(100% - 50px);
|
||||
}
|
||||
.language {
|
||||
width: calc(100% - 50px);
|
||||
}
|
||||
}
|
||||
.swiper-slide {
|
||||
height: 300px;
|
||||
}
|
||||
.newsSlider__outer {
|
||||
display: none;
|
||||
}
|
||||
.main {
|
||||
&__body {
|
||||
&-card {
|
||||
margin: 0 0 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.popUp {
|
||||
display: flex;
|
||||
transform: translateY(100%);
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: #f7f7f7;
|
||||
z-index: 11;
|
||||
animation: popUp 0.2s linear;
|
||||
border-radius: 20px 20px 0 0;
|
||||
padding: 40px 20px;
|
||||
width: calc(100% - 40px);
|
||||
@include transition;
|
||||
&__inner {
|
||||
width: 100%;
|
||||
|
||||
&-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&-logo {
|
||||
width: 75px;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
&-close {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-end;
|
||||
svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
fill: #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-body {
|
||||
margin: 15px 0;
|
||||
&-subtitle {
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 400;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
}
|
||||
&-title {
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
font-weight: 700;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
&-footer {
|
||||
&-btn {
|
||||
width: 80%;
|
||||
margin: 0 auto;
|
||||
padding: 15px 0;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
border-radius: 15px;
|
||||
background: $main-color;
|
||||
display: flex;
|
||||
}
|
||||
&-close {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 400;
|
||||
color: $main-color;
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
@keyframes popUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(100%);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
.animaSlider {
|
||||
height: 560px;
|
||||
&__outer {
|
||||
position: relative;
|
||||
|
||||
}
|
||||
&__item {
|
||||
height: 560px;
|
||||
padding: 5px;
|
||||
&-image {
|
||||
height: 100%;
|
||||
width: 66.6%;
|
||||
-moz-transition: 0.4s linear;
|
||||
transition: 0.4s linear;
|
||||
img {
|
||||
@include fullImage;
|
||||
}
|
||||
}
|
||||
&.slick-slide {
|
||||
width: 66.6%;
|
||||
}
|
||||
|
||||
&-category {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
bottom: 30px;
|
||||
background: $main-color;
|
||||
color: $text-color-white;
|
||||
font-weight: 400;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
padding: 5px 20px;
|
||||
}
|
||||
&.slick-active {
|
||||
.animaSlider__item-image {
|
||||
width: 100%;
|
||||
img {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.slick-list {
|
||||
padding: 0 33.3% 0 0;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
.subheader {
|
||||
background: $text-light-black;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
.close {
|
||||
display: none;
|
||||
}
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.nav {
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&-link {
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
font-weight: 400;
|
||||
color: $text-color-white;
|
||||
margin-right: 40px;
|
||||
padding: 15px 0;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&::before {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 0;
|
||||
height: 4px;
|
||||
background: $main-color;
|
||||
content: "";
|
||||
@include transition;
|
||||
}
|
||||
&:hover::before {
|
||||
width: 100%;
|
||||
}
|
||||
&.active::before {
|
||||
width: 100%;
|
||||
}
|
||||
.dropDown {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 200px;
|
||||
max-height: 0;
|
||||
overflow: auto;
|
||||
z-index: 2;
|
||||
background: $text-color-white;
|
||||
&__link {
|
||||
display: block;
|
||||
padding: 15px;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
font-weight: 400;
|
||||
color: $text-light-black;
|
||||
@include transition;
|
||||
&:hover {
|
||||
background: #f7f7f7;
|
||||
}
|
||||
}
|
||||
}
|
||||
&:hover .dropDown {
|
||||
max-height: 2000px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.language {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&__link {
|
||||
width: 30px;
|
||||
height: 20px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,162 @@
|
|||
.swiper-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
|
||||
.p3 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
@include transformY;
|
||||
width: 40px;
|
||||
height: 60px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.n3 {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
@include transformY;
|
||||
width: 40px;
|
||||
height: 60px;
|
||||
background: rgba($color: #000000, $alpha: 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.slick-list {
|
||||
padding: 0 33.3% 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-slide {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
height: 520px;
|
||||
/* Center slide t ext vertically */
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
@include transition;
|
||||
&-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
transform-origin: 0% 50%;
|
||||
position: relative;
|
||||
picture {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
img {
|
||||
@include fullImage;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
display: none;
|
||||
width: calc(100% - 80px);
|
||||
background: rgb(0, 0, 0);
|
||||
background: linear-gradient(
|
||||
0deg,
|
||||
rgba(0, 0, 0, 1) 0%,
|
||||
rgba(0, 0, 0, 0.022846638655462215) 100%
|
||||
);
|
||||
padding: 50px 40px;
|
||||
|
||||
&-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 400;
|
||||
color: $text-color-white;
|
||||
margin-bottom: 10px;
|
||||
svg {
|
||||
margin: 0 4px;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
fill: $text-color-white;
|
||||
}
|
||||
}
|
||||
&-footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
&-link {
|
||||
color: $text-color-white;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
height: 60px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: 700;
|
||||
display: block;
|
||||
text-align: left;
|
||||
width: 75%;
|
||||
}
|
||||
&-category {
|
||||
color: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 700;
|
||||
color: $text-color-white;
|
||||
padding: 8px 16px;
|
||||
background: $main-color;
|
||||
}
|
||||
}
|
||||
&.slick-active .swiper-slide-content {
|
||||
display: block;
|
||||
animation: myAnim 1s ease 0s 1 normal forwards;
|
||||
animation-delay: 0.5;
|
||||
}
|
||||
}
|
||||
.copy {
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
color: white;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
.swiper-slide img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
@keyframes myAnim {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(250px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
.about {
|
||||
padding: 80px 0;
|
||||
&__title {
|
||||
font-size: $h2-size;
|
||||
line-height: $h2-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
}
|
||||
&__para {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height + 14px;
|
||||
font-weight: 400;
|
||||
color: $text-light-black;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,102 @@
|
|||
.form {
|
||||
&__title {
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
&__row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
&__input {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
label {
|
||||
display: block;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
input {
|
||||
width: calc(100% - 40px);
|
||||
padding: 0 20px;
|
||||
height: 60px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #c9c9c9;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-size;
|
||||
color: $text-light-black;
|
||||
}
|
||||
&:last-child {
|
||||
width: calc(50% - 20px);
|
||||
margin-left: 20px;
|
||||
}
|
||||
&:first-child {
|
||||
width: calc(50% - 20px);
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
&__input-bg {
|
||||
width: 100%;
|
||||
label {
|
||||
display: block;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
input {
|
||||
width: calc(100% - 40px);
|
||||
padding: 0 20px;
|
||||
height: 60px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #c9c9c9;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-size;
|
||||
color: $text-light-black;
|
||||
}
|
||||
}
|
||||
&__textarea {
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
label {
|
||||
display: block;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
textarea {
|
||||
width: calc(100% - 40px);
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #c9c9c9;
|
||||
}
|
||||
}
|
||||
&__btn {
|
||||
width: 250px;
|
||||
background: $main-color;
|
||||
text-align: center;
|
||||
color: $text-color-white;
|
||||
font-weight: 700;
|
||||
padding: 14px;
|
||||
border-radius: 5px;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
.main {
|
||||
&__inner.contact {
|
||||
padding: 80px 0 160px 0;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
.heading {
|
||||
&__title {
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
&__row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__image {
|
||||
width: 40%;
|
||||
}
|
||||
a.progressive {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
height: 320px;
|
||||
&:not(.replace) {
|
||||
cursor: default;
|
||||
}
|
||||
& img {
|
||||
@include fullImage;
|
||||
}
|
||||
& img.preview {
|
||||
filter: blur(2vw);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
& img.reveal {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
will-change: transform, opacity;
|
||||
animation: reveal 1s ease-out;
|
||||
}
|
||||
}
|
||||
&__content {
|
||||
width: calc(60% - 30px);
|
||||
height: calc(100% - 60px);
|
||||
padding: 30px 0 30px 30px;
|
||||
&-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 20px;
|
||||
&-view {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: $text-color-grey;
|
||||
font-weight: 400;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height - 5px;
|
||||
svg {
|
||||
margin-right: 5px;
|
||||
stroke: $text-color-grey;
|
||||
width: 21px;
|
||||
}
|
||||
}
|
||||
&-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
color: $text-color-white;
|
||||
background: $text-light-black;
|
||||
font-weight: 400;
|
||||
padding: 5px 15px;
|
||||
svg {
|
||||
margin: 0 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-body {
|
||||
&-link {
|
||||
color: $text-black;
|
||||
font-weight: 700;
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
margin: 10px 0 0 0;
|
||||
display: block;
|
||||
height: 40px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
&-para {
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 400;
|
||||
color: $text-light-black;
|
||||
height: 100px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&-page {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: $text-light-black;
|
||||
svg {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
fill: $text-color-white;
|
||||
}
|
||||
}
|
||||
&-input {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
margin: 0 10px;
|
||||
|
||||
input {
|
||||
text-align: center;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border-radius: 5px;
|
||||
background: #e6e6e6;
|
||||
font-weight: 400;
|
||||
color: $text-light-black;
|
||||
}
|
||||
}
|
||||
span {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
color: $text-light-black;
|
||||
font-weight: 400;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.address {
|
||||
&__inner {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
color: $text-light-black;
|
||||
font-weight: 400;
|
||||
margin-bottom: 25px;
|
||||
span {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,394 @@
|
|||
.marquee {
|
||||
&__outer {
|
||||
position: relative;
|
||||
}
|
||||
width: 100%;
|
||||
margin: 10px 0;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
height: 50px;
|
||||
background: #00822c;
|
||||
&__item {
|
||||
&.slick-slide {
|
||||
padding: 0;
|
||||
}
|
||||
margin: 0 50px;
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 50px;
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
&__link {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 120px;
|
||||
height: 100%;
|
||||
background: #ee4037;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
font-size: 14px;
|
||||
color: $text-color-white;
|
||||
line-height: 16px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
&::before {
|
||||
clip-path: polygon(100% 46%, 0 0, 0 100%);
|
||||
background: #ee4037;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 100%;
|
||||
height: 100%;
|
||||
width: 25px;
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
}
|
||||
.hero {
|
||||
&__inner {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes marquee {
|
||||
0% {
|
||||
left: 0;
|
||||
}
|
||||
100% {
|
||||
left: -100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Make it move */
|
||||
@keyframes marquee {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
100% {
|
||||
transform: translate(-100%, 0);
|
||||
}
|
||||
}
|
||||
// banner start
|
||||
.banner {
|
||||
margin: 80px 0;
|
||||
&__inner {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
// banner end
|
||||
.rek__item {
|
||||
display: block;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
// main start
|
||||
.main {
|
||||
margin-top: 30px;
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
}
|
||||
&__content {
|
||||
width: calc(70% - 25px);
|
||||
margin-right: 25px;
|
||||
}
|
||||
&__body {
|
||||
&-row {
|
||||
margin: 0 -20px 50px -20px;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
&-column {
|
||||
width: calc(50% - 42px);
|
||||
margin: 0 20px;
|
||||
a.progressive {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
height: 300px;
|
||||
}
|
||||
a.progressive:not(.replace) {
|
||||
cursor: default;
|
||||
}
|
||||
a.progressive img {
|
||||
@include fullImage;
|
||||
}
|
||||
a.progressive img.preview {
|
||||
filter: blur(2vw);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
a.progressive img.reveal {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
will-change: transform, opacity;
|
||||
animation: reveal 1s ease-out;
|
||||
}
|
||||
&.border {
|
||||
border: 1px solid #dcdcdc;
|
||||
}
|
||||
}
|
||||
&-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 80%;
|
||||
height: 1px;
|
||||
background: #e6e6e6;
|
||||
@include transform;
|
||||
z-index: -1;
|
||||
}
|
||||
&-title {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
background: $text-color-white;
|
||||
}
|
||||
&-link {
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
font-weight: 400;
|
||||
color: $text-color-grey;
|
||||
background: $text-color-white;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&-card {
|
||||
margin: -100px 30px 0 30px;
|
||||
border: 1px solid #dcdcdc;
|
||||
.card {
|
||||
border-bottom: 1px solid #dcdcdc;
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-title {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
&__banner {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 40px;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
&__sidebar {
|
||||
margin-left: 25px;
|
||||
width: calc(30% - 25px);
|
||||
&-adv {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&-title {
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 80px;
|
||||
color: $text-light-black;
|
||||
}
|
||||
.card {
|
||||
&.other {
|
||||
padding: 0 0 30px 0;
|
||||
}
|
||||
&__link {
|
||||
height: unset;
|
||||
text-overflow: unset;
|
||||
}
|
||||
}
|
||||
a.progressive {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
margin-bottom: 80px;
|
||||
&:not(.replace) {
|
||||
cursor: default;
|
||||
}
|
||||
& img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
& img.preview {
|
||||
filter: blur(2vw);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
& img.reveal {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
will-change: transform, opacity;
|
||||
animation: reveal 1s ease-out;
|
||||
}
|
||||
}
|
||||
&-tag {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
margin: -30px -5px 80px -5px;
|
||||
&-link {
|
||||
padding: 8px 9px;
|
||||
border-right: 5px;
|
||||
background: #f7f7f6;
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
color: $text-light-black;
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// main end
|
||||
.banner__mobile {
|
||||
display: none;
|
||||
}
|
||||
// event start
|
||||
.event {
|
||||
margin: 50px 0;
|
||||
&__header {
|
||||
margin-bottom: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
&-title {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
background: $text-color-white;
|
||||
}
|
||||
&-link {
|
||||
font-size: $h5-size;
|
||||
line-height: $h5-height;
|
||||
font-weight: 400;
|
||||
color: $text-color-grey;
|
||||
background: $text-color-white;
|
||||
}
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 80%;
|
||||
height: 1px;
|
||||
background: #e6e6e6;
|
||||
@include transform;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
&__body {
|
||||
&-row {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
margin: 0 -20px;
|
||||
}
|
||||
&-image {
|
||||
width: calc(50% - 40px);
|
||||
margin: 0 20px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
a.progressive {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
height: 330px;
|
||||
}
|
||||
a.progressive:not(.replace) {
|
||||
cursor: default;
|
||||
}
|
||||
a.progressive img {
|
||||
@include fullImage;
|
||||
}
|
||||
a.progressive img.preview {
|
||||
filter: blur(2vw);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
a.progressive img.reveal {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
will-change: transform, opacity;
|
||||
animation: reveal 1s ease-out;
|
||||
}
|
||||
}
|
||||
&-card {
|
||||
position: absolute;
|
||||
top: 210px;
|
||||
left: 30px;
|
||||
width: calc(100% - 60px);
|
||||
border: 1px solid #dcdcdc;
|
||||
}
|
||||
&-column {
|
||||
width: calc(50% - 100px);
|
||||
margin: 0 20px;
|
||||
padding: 15px 30px;
|
||||
border: 1px solid #dcdcdc;
|
||||
.card {
|
||||
padding: 30px 0;
|
||||
border-bottom: 1px solid #dcdcdc;
|
||||
&:nth-last-child(1) {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// event end
|
||||
// partner start
|
||||
.partner {
|
||||
margin-bottom: 80px;
|
||||
&__title {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
}
|
||||
// partner end
|
||||
.popUp {
|
||||
display: none;
|
||||
}
|
||||
/* progressive image CSS */
|
||||
|
||||
@keyframes reveal {
|
||||
0% {
|
||||
transform: scale(1.05);
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
.news {
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
padding: 80px 0;
|
||||
}
|
||||
&__sidebar {
|
||||
margin-left: 25px;
|
||||
width: calc(30% - 25px);
|
||||
&-title {
|
||||
font-size: $h4-size;
|
||||
line-height: $h4-height;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 20px;
|
||||
color: $text-light-black;
|
||||
}
|
||||
.card {
|
||||
padding: 30px 0;
|
||||
border-bottom: 1px solid #dcdcdc;
|
||||
&__link {
|
||||
height: unset;
|
||||
text-overflow: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__content {
|
||||
width: calc(70% - 25px);
|
||||
margin-right: 25px;
|
||||
&-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
&__title {
|
||||
color: $text-black;
|
||||
font-weight: 700;
|
||||
font-size: $h2-size;
|
||||
line-height: $h2-height;
|
||||
}
|
||||
&__date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
color: $text-color-grey;
|
||||
font-weight: 400;
|
||||
margin-bottom: 20px;
|
||||
svg {
|
||||
margin: 0 5px;
|
||||
}
|
||||
}
|
||||
&__image {
|
||||
width: 100%;
|
||||
margin: 25px 0;
|
||||
display: block;
|
||||
img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
&__body {
|
||||
p {
|
||||
font-size: $p-size;
|
||||
line-height: $p-height;
|
||||
margin-bottom: 20px;
|
||||
img {
|
||||
width: 90%;
|
||||
margin: 30px auto;
|
||||
display: block;
|
||||
height: auto;
|
||||
}
|
||||
strong {
|
||||
a {
|
||||
color: #4285f4;
|
||||
}
|
||||
}
|
||||
}
|
||||
img {
|
||||
width: 90%;
|
||||
margin: 30px auto;
|
||||
display: block;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
&__footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&-social {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
&-link {
|
||||
margin-right: 20px;
|
||||
fill: $main-color;
|
||||
svg {
|
||||
color: $main-color;
|
||||
}
|
||||
}
|
||||
.footer__social-link {
|
||||
fill: $main-color;
|
||||
}
|
||||
}
|
||||
&-name {
|
||||
font-size: $h2-size;
|
||||
line-height: $h2-height;
|
||||
font-weight: 700;
|
||||
color: $text-light-black;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
.terms {
|
||||
padding: 80px 0;
|
||||
&__title {
|
||||
font-size: $h3-size;
|
||||
line-height: $h3-height;
|
||||
font-weight: 700;
|
||||
color: $text-black;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
&__para {
|
||||
font-size: $p-size;
|
||||
line-height: $p-height;
|
||||
font-weight: 400;
|
||||
color: $text-black;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
// 1-main components
|
||||
@import "components/1-main/mixin";
|
||||
@import "components/1-main/nulifier";
|
||||
@import "components/1-main/variables";
|
||||
// 2-layout components
|
||||
|
||||
@import "components/2-layout/header";
|
||||
@import "components/2-layout/footer";
|
||||
|
||||
@import "components/2-layout/subheader";
|
||||
@import "../slick/slick";
|
||||
@import "../slick/slick-theme";
|
||||
@import "components/2-layout/partnerSlider";
|
||||
@import "components/2-layout/newsCard";
|
||||
@import "components/2-layout/lightpick";
|
||||
@import "components/2-layout/newsSlider";
|
||||
@import "components/2-layout/swiper";
|
||||
|
||||
|
||||
|
||||
|
||||
// 3-page components
|
||||
@import "components/3-page/home";
|
||||
@import "components/3-page/heading";
|
||||
@import "components/3-page/about";
|
||||
@import "components/3-page/contact";
|
||||
@import "components/3-page/news";
|
||||
@import "components/3-page/terms";
|
||||
|
||||
|
||||
@import "components/2-layout/slider";
|
||||
|
||||
// responsive
|
||||
@import "components/2-layout/responsive";
|
||||
|
|
@ -0,0 +1,921 @@
|
|||
{
|
||||
"version": "7",
|
||||
"about": "This is a Prepros (https://prepros.io) configuration file. You can commit this file to a git repo to backup and sync project configurations.",
|
||||
"config": {
|
||||
"proxy": {
|
||||
"enable": false,
|
||||
"target": "",
|
||||
"useLocalAssets": false
|
||||
},
|
||||
"reload": {
|
||||
"enable": true,
|
||||
"delay": 0,
|
||||
"animate": true,
|
||||
"afterUpload": false
|
||||
},
|
||||
"sync": {
|
||||
"enable": false,
|
||||
"mouse": true,
|
||||
"keyboard": true,
|
||||
"form": true,
|
||||
"scroll": true
|
||||
},
|
||||
"watcher": {
|
||||
"enable": true,
|
||||
"maxFiles": 2000,
|
||||
"usePolling": false,
|
||||
"pollingInterval": 500,
|
||||
"extensions": [
|
||||
".html",
|
||||
".htm",
|
||||
".php"
|
||||
],
|
||||
"ignore": {
|
||||
"patterns": [
|
||||
".*",
|
||||
"wp-admin",
|
||||
"wp-includes",
|
||||
"node_modules",
|
||||
"Prepros Export",
|
||||
"bower_components"
|
||||
],
|
||||
"exceptions": []
|
||||
}
|
||||
},
|
||||
"exporter": {
|
||||
"ignore": {
|
||||
"patterns": [
|
||||
".*",
|
||||
"desktop.ini",
|
||||
"prepros.cfg",
|
||||
"node_modules",
|
||||
"Prepros Export",
|
||||
"prepros.config",
|
||||
"prepros-6.config",
|
||||
"*-original.jpg",
|
||||
"*-original.jpeg",
|
||||
"*-original.png",
|
||||
"*-original.svg",
|
||||
"*.scss",
|
||||
"*.sass",
|
||||
"*.less",
|
||||
"*.pug",
|
||||
"*.jade",
|
||||
"*.styl",
|
||||
"*.haml",
|
||||
"*.slim",
|
||||
"*.coffee",
|
||||
"*.kit",
|
||||
"*.turf",
|
||||
"*.ts"
|
||||
],
|
||||
"exceptions": []
|
||||
}
|
||||
},
|
||||
"uploader": {
|
||||
"remotePath": "",
|
||||
"timeout": 20000,
|
||||
"autoUpload": false,
|
||||
"reuseConnection": true,
|
||||
"connectionType": "ftp",
|
||||
"history": []
|
||||
},
|
||||
"packages": {
|
||||
"createPackageLock": true
|
||||
},
|
||||
"images": {
|
||||
"preserveOriginal": true
|
||||
},
|
||||
"tasks": {
|
||||
"autoprefixer": {
|
||||
"cascade": true,
|
||||
"add": true,
|
||||
"remove": true,
|
||||
"supports": true,
|
||||
"flexbox": true,
|
||||
"grid": "autoplace",
|
||||
"browsers": [
|
||||
"> 2%",
|
||||
"not dead"
|
||||
],
|
||||
"sourceMap": false
|
||||
},
|
||||
"babel": {
|
||||
"sourceMap": false,
|
||||
"presets": {
|
||||
"@babel/preset-env": {
|
||||
"enable": true,
|
||||
"options": {
|
||||
"targets": [
|
||||
"> 2%",
|
||||
"not dead"
|
||||
],
|
||||
"preserveImports": false,
|
||||
"polyfills": false
|
||||
}
|
||||
},
|
||||
"@babel/preset-react": true,
|
||||
"@babel/preset-flow": false
|
||||
},
|
||||
"plugins": {
|
||||
"@babel/plugin-proposal-class-static-block": false,
|
||||
"@babel/plugin-proposal-class-properties": false,
|
||||
"@babel/plugin-proposal-decorators": {
|
||||
"enable": false,
|
||||
"options": {
|
||||
"decoratorsBeforeExport": true
|
||||
}
|
||||
},
|
||||
"@babel/plugin-proposal-export-namespace-from": false,
|
||||
"@babel/plugin-proposal-function-sent": false,
|
||||
"@babel/plugin-proposal-logical-assignment-operators": false,
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": false,
|
||||
"@babel/plugin-proposal-numeric-separator": false,
|
||||
"@babel/plugin-proposal-optional-chaining": false,
|
||||
"@babel/plugin-proposal-private-methods": false,
|
||||
"@babel/plugin-proposal-throw-expressions": false
|
||||
},
|
||||
"customPresets": [],
|
||||
"customPlugins": []
|
||||
},
|
||||
"bundle-js": {
|
||||
"sourceMap": false,
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"bower_components"
|
||||
],
|
||||
"devMode": true,
|
||||
"globals": [],
|
||||
"externals": [],
|
||||
"babel": {
|
||||
"enable": true,
|
||||
"options": {
|
||||
"sourceMap": false,
|
||||
"presets": {
|
||||
"@babel/preset-env": {
|
||||
"enable": true,
|
||||
"options": {
|
||||
"targets": [
|
||||
"> 2%",
|
||||
"not dead"
|
||||
],
|
||||
"preserveImports": false,
|
||||
"polyfills": false
|
||||
}
|
||||
},
|
||||
"@babel/preset-react": true,
|
||||
"@babel/preset-flow": false
|
||||
},
|
||||
"plugins": {
|
||||
"@babel/plugin-proposal-class-static-block": false,
|
||||
"@babel/plugin-proposal-class-properties": false,
|
||||
"@babel/plugin-proposal-decorators": {
|
||||
"enable": false,
|
||||
"options": {
|
||||
"decoratorsBeforeExport": true
|
||||
}
|
||||
},
|
||||
"@babel/plugin-proposal-export-namespace-from": false,
|
||||
"@babel/plugin-proposal-function-sent": false,
|
||||
"@babel/plugin-proposal-logical-assignment-operators": false,
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": false,
|
||||
"@babel/plugin-proposal-numeric-separator": false,
|
||||
"@babel/plugin-proposal-optional-chaining": false,
|
||||
"@babel/plugin-proposal-private-methods": false,
|
||||
"@babel/plugin-proposal-throw-expressions": false
|
||||
},
|
||||
"customPresets": [],
|
||||
"customPlugins": []
|
||||
}
|
||||
},
|
||||
"css": {
|
||||
"enable": true
|
||||
},
|
||||
"fonts": {
|
||||
"enable": true
|
||||
}
|
||||
},
|
||||
"coffeescript": {
|
||||
"header": false,
|
||||
"bare": false,
|
||||
"sourceMap": false
|
||||
},
|
||||
"command": {
|
||||
"command": "",
|
||||
"rootDir": ""
|
||||
},
|
||||
"concat-js": {
|
||||
"sourceMap": false,
|
||||
"rootDir": ""
|
||||
},
|
||||
"copy": {
|
||||
"sourceMap": false
|
||||
},
|
||||
"dart-sass": {
|
||||
"indentType": "space",
|
||||
"indentWidth": 2,
|
||||
"linefeed": "lf",
|
||||
"sourceMap": false,
|
||||
"allowWildcardImports": false
|
||||
},
|
||||
"haml": {
|
||||
"doubleQuoteAttributes": true
|
||||
},
|
||||
"jpg": {
|
||||
"quality": 90
|
||||
},
|
||||
"less": {
|
||||
"javascriptEnabled": false,
|
||||
"strictImports": false,
|
||||
"insecure": false,
|
||||
"math": "always",
|
||||
"strictUnits": false,
|
||||
"dumpLineNumbers": false,
|
||||
"sourceMap": false
|
||||
},
|
||||
"markdown": {
|
||||
"githubFlavored": true,
|
||||
"wrapWithHtml": false
|
||||
},
|
||||
"minify-css": {
|
||||
"sourceMap": false
|
||||
},
|
||||
"minify-html": {
|
||||
"caseSensitive": false,
|
||||
"collapseBooleanAttributes": true,
|
||||
"collapseInlineTagWhitespace": false,
|
||||
"collapseWhitespace": true,
|
||||
"conservativeCollapse": false,
|
||||
"decodeEntities": false,
|
||||
"html5": true,
|
||||
"includeAutoGeneratedTags": true,
|
||||
"keepClosingSlash": false,
|
||||
"minifyCSS": true,
|
||||
"minifyJS": true,
|
||||
"preserveLineBreaks": false,
|
||||
"preventAttributesEscaping": false,
|
||||
"processConditionalComments": false,
|
||||
"removeAttributeQuotes": false,
|
||||
"removeComments": true,
|
||||
"removeEmptyAttributes": false,
|
||||
"removeEmptyElement": false,
|
||||
"removeOptionalTags": false,
|
||||
"removeRedundantAttributes": false,
|
||||
"removeScriptTypeAttributes": false,
|
||||
"removeStyleLinkTypeAttributes": false,
|
||||
"removeTagWhitespace": false,
|
||||
"sortAttributes": false,
|
||||
"sortClassName": false,
|
||||
"useShortDoctype": true
|
||||
},
|
||||
"minify-js": {
|
||||
"parse": {
|
||||
"bare_returns": false
|
||||
},
|
||||
"compress": {
|
||||
"arrows": true,
|
||||
"arguments": false,
|
||||
"booleans": true,
|
||||
"booleans_as_integers": false,
|
||||
"collapse_vars": true,
|
||||
"comparisons": true,
|
||||
"computed_props": true,
|
||||
"conditionals": true,
|
||||
"dead_code": true,
|
||||
"directives": true,
|
||||
"drop_console": false,
|
||||
"drop_debugger": true,
|
||||
"evaluate": true,
|
||||
"expression": false,
|
||||
"global_defs": [],
|
||||
"hoist_funs": false,
|
||||
"hoist_props": true,
|
||||
"hoist_vars": false,
|
||||
"if_return": true,
|
||||
"inline": 3,
|
||||
"join_vars": true,
|
||||
"keep_fargs": true,
|
||||
"keep_infinity": false,
|
||||
"loops": true,
|
||||
"negate_iife": true,
|
||||
"properties": true,
|
||||
"pure_funcs": [],
|
||||
"pure_getters": false,
|
||||
"reduce_vars": true,
|
||||
"sequences": true,
|
||||
"side_effects": true,
|
||||
"switches": true,
|
||||
"top_retain": [],
|
||||
"typeofs": true,
|
||||
"unsafe": false,
|
||||
"unsafe_arrows": false,
|
||||
"unsafe_comps": false,
|
||||
"unsafe_Function": false,
|
||||
"unsafe_math": false,
|
||||
"unsafe_proto": false,
|
||||
"unsafe_regexp": false,
|
||||
"unsafe_undefined": false,
|
||||
"unused": true,
|
||||
"reduce_funcs": true
|
||||
},
|
||||
"mangle": {
|
||||
"eval": false,
|
||||
"reserved": []
|
||||
},
|
||||
"output": {
|
||||
"ascii_only": false,
|
||||
"braces": false,
|
||||
"comments": "none",
|
||||
"inline_script": true,
|
||||
"keep_numbers": false,
|
||||
"keep_quoted_props": false,
|
||||
"preamble": null,
|
||||
"quote_keys": false,
|
||||
"quote_style": 0,
|
||||
"semicolons": true,
|
||||
"shebang": true,
|
||||
"webkit": false,
|
||||
"wrap_iife": false,
|
||||
"wrap_func_args": true
|
||||
},
|
||||
"sourceMap": false,
|
||||
"toplevel": false,
|
||||
"ie8": false,
|
||||
"keep_classnames": false,
|
||||
"keep_fnames": false,
|
||||
"safari10": false
|
||||
},
|
||||
"node-sass": {
|
||||
"indentType": "space",
|
||||
"indentWidth": 2,
|
||||
"linefeed": "lf",
|
||||
"outputStyle": "expanded",
|
||||
"precision": 10,
|
||||
"sourceMap": false,
|
||||
"sourceComments": false,
|
||||
"allowWildcardImports": false
|
||||
},
|
||||
"png": {
|
||||
"quality": 90
|
||||
},
|
||||
"postcss-import": {
|
||||
"ignoreKeywords": [],
|
||||
"sourceMap": false
|
||||
},
|
||||
"postcss-preset-env": {
|
||||
"stage": 2,
|
||||
"browsers": [
|
||||
"> 2%",
|
||||
"not dead"
|
||||
],
|
||||
"sourceMap": false
|
||||
},
|
||||
"pug": {
|
||||
"pretty": true
|
||||
},
|
||||
"slim": {
|
||||
"indent": "space",
|
||||
"indentSize": 2,
|
||||
"pretty": true
|
||||
},
|
||||
"stylus": {
|
||||
"useNib": true,
|
||||
"sourceMap": false,
|
||||
"linenos": false
|
||||
},
|
||||
"svg": {
|
||||
"cleanupAttrs": true,
|
||||
"removeDoctype": true,
|
||||
"removeXMLProcInst": true,
|
||||
"removeComments": true,
|
||||
"removeMetadata": true,
|
||||
"removeTitle": true,
|
||||
"removeDesc": true,
|
||||
"removeUselessDefs": true,
|
||||
"removeEditorsNSData": true,
|
||||
"removeEmptyAttrs": true,
|
||||
"removeHiddenElems": true,
|
||||
"removeEmptyText": true,
|
||||
"removeEmptyContainers": true,
|
||||
"removeViewBox": false,
|
||||
"cleanupEnableBackground": true,
|
||||
"convertStyleToAttrs": true,
|
||||
"convertColors": true,
|
||||
"convertPathData": true,
|
||||
"convertTransform": true,
|
||||
"removeUnknownsAndDefaults": true,
|
||||
"removeNonInheritableGroupAttrs": true,
|
||||
"removeUselessStrokeAndFill": true,
|
||||
"removeUnusedNS": true,
|
||||
"cleanupIDs": true,
|
||||
"cleanupNumericValues": true,
|
||||
"moveElemsAttrsToGroup": true,
|
||||
"moveGroupAttrsToElems": true,
|
||||
"collapseGroups": true,
|
||||
"removeRasterImages": false,
|
||||
"mergePaths": true,
|
||||
"convertShapeToPath": true,
|
||||
"sortAttrs": true,
|
||||
"removeDimensions": true
|
||||
},
|
||||
"turf": {
|
||||
"rootDir": ""
|
||||
},
|
||||
"typescript": {
|
||||
"allowJs": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"allowUmdGlobalAccess": false,
|
||||
"allowUnreachableCode": false,
|
||||
"allowUnusedLabels": false,
|
||||
"alwaysStrict": false,
|
||||
"charset": "utf8",
|
||||
"checkJs": false,
|
||||
"declaration": false,
|
||||
"disableSizeLimit": false,
|
||||
"downlevelIteration": false,
|
||||
"emitBOM": false,
|
||||
"emitDecoratorMetadata": false,
|
||||
"experimentalDecorators": false,
|
||||
"forceConsistentCasingInFileNames": false,
|
||||
"importHelpers": false,
|
||||
"jsx": "React",
|
||||
"keyofStringsOnly": false,
|
||||
"lib": [],
|
||||
"maxNodeModuleJsDepth": 0,
|
||||
"module": "ES2015",
|
||||
"moduleResolution": "NodeJs",
|
||||
"newLine": "LineFeed",
|
||||
"noFallthroughCasesInSwitch": false,
|
||||
"noImplicitAny": false,
|
||||
"noImplicitReturns": false,
|
||||
"noImplicitThis": false,
|
||||
"noStrictGenericChecks": false,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"noImplicitUseStrict": false,
|
||||
"noLib": false,
|
||||
"noResolve": false,
|
||||
"preserveConstEnums": false,
|
||||
"jsxFactory": "React.createElement",
|
||||
"removeComments": false,
|
||||
"skipLibCheck": false,
|
||||
"sourceMap": false,
|
||||
"strict": false,
|
||||
"strictFunctionTypes": false,
|
||||
"strictBindCallApply": false,
|
||||
"strictNullChecks": false,
|
||||
"strictPropertyInitialization": false,
|
||||
"suppressExcessPropertyErrors": false,
|
||||
"suppressImplicitAnyIndexErrors": false,
|
||||
"target": "ES3",
|
||||
"resolveJsonModule": false,
|
||||
"esModuleInterop": false,
|
||||
"useDefineForClassFields": false
|
||||
}
|
||||
},
|
||||
"fileTypes": {
|
||||
"sass": {
|
||||
"extensions": [
|
||||
".scss",
|
||||
".sass"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "dart-sass",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "autoprefixer",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-css",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".css",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "scss",
|
||||
"replaceWith": "css"
|
||||
},
|
||||
{
|
||||
"segment": "sass",
|
||||
"replaceWith": "css"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"less": {
|
||||
"extensions": [
|
||||
".less"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "less",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "autoprefixer",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-css",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".css",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "less",
|
||||
"replaceWith": "css"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"pug": {
|
||||
"extensions": [
|
||||
".pug",
|
||||
".jade"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "pug",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-html",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".html",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "pug",
|
||||
"replaceWith": "html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"css": {
|
||||
"extensions": [
|
||||
".css"
|
||||
],
|
||||
"autoCompile": false,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "copy",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "postcss-import",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "postcss-preset-env",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "autoprefixer",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-css",
|
||||
"enable": true
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".css",
|
||||
"type": "SOURCE_RELATIVE",
|
||||
"relativePath": "",
|
||||
"suffix": "-dist",
|
||||
"alwaysSuffix": false
|
||||
}
|
||||
},
|
||||
"javascript": {
|
||||
"extensions": [
|
||||
".js",
|
||||
".jsx"
|
||||
],
|
||||
"autoCompile": false,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "copy",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "concat-js",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "babel",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "bundle-js",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "minify-js",
|
||||
"enable": true
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".js",
|
||||
"type": "SOURCE_RELATIVE",
|
||||
"relativePath": "",
|
||||
"suffix": "-dist",
|
||||
"alwaysSuffix": false
|
||||
}
|
||||
},
|
||||
"stylus": {
|
||||
"extensions": [
|
||||
".styl"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "stylus",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "autoprefixer",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-css",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".css",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "stylus",
|
||||
"replaceWith": "css"
|
||||
},
|
||||
{
|
||||
"segment": "styl",
|
||||
"replaceWith": "css"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"markdown": {
|
||||
"extensions": [
|
||||
".md",
|
||||
".markdown",
|
||||
".mkd"
|
||||
],
|
||||
"autoCompile": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "markdown",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-html",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".html",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "markdown",
|
||||
"replaceWith": "html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"haml": {
|
||||
"extensions": [
|
||||
".haml"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "haml",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-html",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".html",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "haml",
|
||||
"replaceWith": "html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"slim": {
|
||||
"extensions": [
|
||||
".slim"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "slim",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-html",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".html",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "slim",
|
||||
"replaceWith": "html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"coffeescript": {
|
||||
"extensions": [
|
||||
".coffee"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "coffeescript",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "babel",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "bundle-js",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "minify-js",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".js",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "coffee-script",
|
||||
"replaceWith": "js"
|
||||
},
|
||||
{
|
||||
"segment": "coffeescript",
|
||||
"replaceWith": "js"
|
||||
},
|
||||
{
|
||||
"segment": "coffee",
|
||||
"replaceWith": "js"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"turf": {
|
||||
"extensions": [
|
||||
".turf",
|
||||
".kit"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "turf",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "minify-html",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".html",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "turf",
|
||||
"replaceWith": "html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typescript": {
|
||||
"extensions": [
|
||||
".ts",
|
||||
".tsx"
|
||||
],
|
||||
"autoCompile": true,
|
||||
"sourceMap": false,
|
||||
"tasks": [
|
||||
{
|
||||
"task": "typescript",
|
||||
"enable": true
|
||||
},
|
||||
{
|
||||
"task": "babel",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "bundle-js",
|
||||
"enable": false
|
||||
},
|
||||
{
|
||||
"task": "minify-js",
|
||||
"enable": false
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".js",
|
||||
"type": "REPLACE_SEGMENTS",
|
||||
"segments": [
|
||||
{
|
||||
"segment": "typescript",
|
||||
"replaceWith": "js"
|
||||
},
|
||||
{
|
||||
"segment": "ts",
|
||||
"replaceWith": "js"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"jpg": {
|
||||
"extensions": [
|
||||
".jpg",
|
||||
".jpeg"
|
||||
],
|
||||
"tasks": [
|
||||
{
|
||||
"task": "jpg",
|
||||
"enable": true
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".jpg",
|
||||
"type": "SOURCE_RELATIVE",
|
||||
"relativePath": ""
|
||||
}
|
||||
},
|
||||
"png": {
|
||||
"extensions": [
|
||||
".png"
|
||||
],
|
||||
"tasks": [
|
||||
{
|
||||
"task": "png",
|
||||
"enable": true
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".png",
|
||||
"type": "SOURCE_RELATIVE",
|
||||
"relativePath": ""
|
||||
}
|
||||
},
|
||||
"svg": {
|
||||
"extensions": [
|
||||
".svg"
|
||||
],
|
||||
"tasks": [
|
||||
{
|
||||
"task": "svg",
|
||||
"enable": true
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"extension": ".svg",
|
||||
"type": "SOURCE_RELATIVE",
|
||||
"relativePath": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,139 @@
|
|||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
.right_top-up {
|
||||
max-width: 42.3rem;
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
.right_top-title {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.right_top-title-text {
|
||||
width: 17rem;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.right_top-line {
|
||||
border: 0.01rem solid rgba(0, 0, 0, 15%);
|
||||
max-width: 33%;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.right_top-content-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.right_top-content-sphere {
|
||||
text-align: center;
|
||||
padding: 0.6rem 0;
|
||||
color: #fff;
|
||||
background: #FD4C24;
|
||||
max-width: 11.7rem;
|
||||
width: 100%;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1rem;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.right-top-content-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.date,
|
||||
.time {
|
||||
color: #a2a2a2;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
.date {
|
||||
margin-right: 2.5rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
.date::after {
|
||||
display: inline-block;
|
||||
width: 0.4rem;
|
||||
height: 0.4rem;
|
||||
content: "";
|
||||
border: none;
|
||||
background: #a2a2a2;
|
||||
transform: rotate(45deg) translateY(-50%);
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: -23%;
|
||||
}
|
||||
|
||||
.right_top-content-bottom {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
.right_top-content:last-child{
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
.right_top-content-bottom-text {
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
font-size: 1.6rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.hr-line {
|
||||
width: 100%;
|
||||
border: 0.01rem solid rgba(0, 0, 0, 15%);
|
||||
}
|
||||
/* .hr-line:last-child{
|
||||
display: none; */
|
||||
}
|
||||
@media screen and (min-width: 1400px){
|
||||
.right_top-line{
|
||||
max-width: 47%;
|
||||
}
|
||||
}
|
||||
/* ========================================== */
|
||||
|
||||
|
||||
|
||||
|
||||
.right_top-title-text-2 {
|
||||
width: 9.4rem;
|
||||
}
|
||||
|
||||
.right_top-line-2 {
|
||||
max-width: 40%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.additional {
|
||||
text-decoration: none;
|
||||
color: rgba(0, 0, 0, 30%);
|
||||
font-size: 1.4rem;
|
||||
margin-left: 2.1rem;
|
||||
}
|
||||
|
||||
.right-top-content-date-2 {
|
||||
margin-top: 5rem;
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="940" height="160" viewBox="0 0 940 160">
|
||||
<rect id="Реклама_большая_1_" data-name="Реклама большая (1)" width="940" height="160" fill="#b4b4b4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 229 B |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 392 B |
|
|
@ -0,0 +1,32 @@
|
|||
<svg id="header_2" data-name="header 2" xmlns="http://www.w3.org/2000/svg" width="116" height="60" viewBox="0 0 116 60">
|
||||
<g id="Group_101" data-name="Group 101" transform="translate(18.146 0.368)">
|
||||
<g id="Group_198" data-name="Group 198" transform="translate(0 0)">
|
||||
<path id="Path_85" data-name="Path 85" d="M108.458,42.238l3.5,28.609H110.3a7.537,7.537,0,0,1-7.369-6.5L100.537,45.4H97.774V37.222h2.763a3.118,3.118,0,0,0,3.132-3.158V22.918a3.118,3.118,0,0,0-3.132-3.158H97.59a12.2,12.2,0,0,0-3.869-7.431L92.8,11.4h7.737a11.528,11.528,0,0,1,11.421,11.518V34.064a11.128,11.128,0,0,1-3.5,8.174" transform="translate(-92.8 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_103" data-name="Group 103" transform="translate(39.79 0.368)">
|
||||
<g id="Group_197" data-name="Group 197" transform="translate(0 0)">
|
||||
<path id="Path_86" data-name="Path 86" d="M104.5,11.4h0V70.847h8.474v-50.9A8.608,8.608,0,0,0,104.5,11.4" transform="translate(-104.5 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_105" data-name="Group 105" transform="translate(0 0.368)">
|
||||
<g id="Group_196" data-name="Group 196" transform="translate(0 0)">
|
||||
<path id="Path_87" data-name="Path 87" d="M101.237,14.372C99.4,12.329,96.816,11.4,93.5,11.4s-5.895.929-7.737,2.972C83.921,16.23,83,19.016,83,22.546V59.885a11.537,11.537,0,0,0,2.763,8.174c1.842,2.043,4.421,2.972,7.737,2.972s5.895-.929,7.737-2.972C103.08,66.2,104,63.415,104,59.885V22.546c0-3.53-.921-6.316-2.763-8.174M95.9,60.071c0,2.6-1.105,2.972-2.395,2.972-1.105,0-2.395-.372-2.395-2.972v-37.9c0-2.6,1.105-2.972,2.395-2.972,1.105,0,2.395.372,2.395,2.972Z" transform="translate(-83 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_107" data-name="Group 107" transform="translate(90.946 0.368)">
|
||||
<g id="Group_193" data-name="Group 193" transform="translate(0 0)">
|
||||
<path id="Path_88" data-name="Path 88" d="M157.154,11.4v8.546H150.89v50.9a8.54,8.54,0,0,1-3.132-.557,8.765,8.765,0,0,1-4.79-4.83h0a1.124,1.124,0,0,1-.184-.743c-.184-.557-.184-1.115-.368-1.672v-43.1H132.1a9.8,9.8,0,0,1,2.579-5.573c1.842-2.044,4.421-2.972,7.737-2.972Z" transform="translate(-132.1 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_109" data-name="Group 109" transform="translate(70.498 0)">
|
||||
<g id="Group_194" data-name="Group 194" transform="translate(0 0)">
|
||||
<path id="Path_89" data-name="Path 89" d="M141.448,22.346V45.567L132.237,11.2H121V60.429h8.106V26.99l9.579,35.482a11.082,11.082,0,0,0,10.869,8.36V22.346Z" transform="translate(-121 -11.2)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_111" data-name="Group 111" transform="translate(50.576 0.368)">
|
||||
<g id="Group_195" data-name="Group 195" transform="translate(0 0)">
|
||||
<path id="Path_90" data-name="Path 90" d="M118.774,62.86V45.212h5.895V37.037h-5.895V19.2H127.8V11.4H110.3V62.117a8.389,8.389,0,0,0,7.921,8.546h19.9V62.675H118.774v.186Z" transform="translate(-110.3 -11.4)" fill="#ee4037"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
|
||||
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 171 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="440" height="500" viewBox="0 0 440 500">
|
||||
<rect id="Реклама_1_" data-name="Реклама (1)" width="440" height="500" fill="#b4b4b4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 199 B |
|
|
@ -0,0 +1,30 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="20" viewBox="0 0 30 20">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_9" data-name="Rectangle 9" width="30" height="20" transform="translate(1332 -224)" fill="#fff"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-2">
|
||||
<path id="Path_7" data-name="Path 7" d="M0,0V20H34.286V0Z"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-path-3">
|
||||
<path id="Path_4" data-name="Path 4" d="M17.143,10H34.286V20Zm0,0V20H0Zm0,0H0V0Zm0,0V0H34.286Z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="ENG" transform="translate(-1670 -397)">
|
||||
<g id="ENG-2" data-name="ENG" transform="translate(338 621)" clip-path="url(#clip-path)">
|
||||
<g id="Flag_of_the_United_Kingdom" transform="translate(1329.857 -224)" clip-path="url(#clip-path-2)">
|
||||
<path id="Path_1" data-name="Path 1" d="M0,0V20H34.286V0Z" fill="#012169"/>
|
||||
<path id="Path_2" data-name="Path 2" d="M0,0,34.286,20m0-20L0,20" stroke="#fff" stroke-width="3"/>
|
||||
<g id="Group_1" data-name="Group 1" clip-path="url(#clip-path-3)">
|
||||
<path id="Path_3" data-name="Path 3" d="M0,0,34.286,20m0-20L0,20" stroke="#c8102e" stroke-width="2"/>
|
||||
</g>
|
||||
<path id="Path_5" data-name="Path 5" d="M17.143,0V20M0,10H34.286" stroke="#fff" stroke-width="5"/>
|
||||
<path id="Path_6" data-name="Path 6" d="M17.143,0V20M0,10H34.286" stroke="#c8102e" stroke-width="3"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_25" data-name="Rectangle 25" transform="translate(1670 397)" fill="none" stroke="#b4b4b4" stroke-width="0.2">
|
||||
<rect width="30" height="20" stroke="none"/>
|
||||
<rect x="0.1" y="0.1" width="29.8" height="19.8" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
|
||||
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 171 B |
|
|
@ -0,0 +1,20 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="20" viewBox="0 0 30 20">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_4" data-name="Rectangle 4" width="30" height="20" transform="translate(1492 -224)" fill="#fff"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="RUS" transform="translate(-1750 -397)">
|
||||
<g id="RUS-2" data-name="RUS" transform="translate(258 621)" clip-path="url(#clip-path)">
|
||||
<g id="Flag_of_Russia" transform="translate(1491.464 -223.333)">
|
||||
<rect id="Rectangle_5" data-name="Rectangle 5" width="31.071" height="9.667" fill="#fff"/>
|
||||
<rect id="Rectangle_6" data-name="Rectangle 6" width="31.071" height="9.667" transform="translate(0 9.667)" fill="#d52b1e"/>
|
||||
<rect id="Rectangle_7" data-name="Rectangle 7" width="31.071" height="6.444" transform="translate(0 6.444)" fill="#0039a6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_26" data-name="Rectangle 26" transform="translate(1750 397)" fill="none" stroke="#b4b4b4" stroke-width="0.2">
|
||||
<rect width="30" height="20" stroke="none"/>
|
||||
<rect x="0.1" y="0.1" width="29.8" height="19.8" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,490 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30" height="20" viewBox="0 0 30 20">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect id="Rectangle_8" data-name="Rectangle 8" width="30" height="20" transform="translate(1398 -224)" fill="#fff"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="TKM" transform="translate(-1710 -397)">
|
||||
<g id="TKM-2" data-name="TKM" transform="translate(312 621)" clip-path="url(#clip-path)">
|
||||
<g id="Flag_of_Turkmenistan" transform="translate(1397.536 -225.339)">
|
||||
<rect id="rect2" width="32.094" height="19.97" transform="translate(0 1.319)" fill="#00843d"/>
|
||||
<g id="g14" transform="translate(11.554 3.215)">
|
||||
<path id="crescent" d="M31.476,5.176A2.488,2.488,0,0,1,33.089,7.46a2.578,2.578,0,0,1-2.662,2.485A2.766,2.766,0,0,1,28.7,9.352a2.814,2.814,0,0,0,.933.2A2.6,2.6,0,0,0,32.41,7.176a2.41,2.41,0,0,0-.934-2Z" transform="translate(-27.096 -4.857)" fill="#fff"/>
|
||||
<path id="star" d="M28.638,8.285l.3-.866-.79.535h.976l-.79-.535Z" transform="translate(-26.797 -6.141)" fill="#fff"/>
|
||||
<path id="use6" d="M28.638,8.285l.3-.866-.79.535h.976l-.79-.535Z" transform="translate(-26.797 -7.419)" fill="#fff"/>
|
||||
<path id="use8" d="M28.638,8.285l.3-.866-.79.535h.976l-.79-.535Z" transform="translate(-25.444 -6.764)" fill="#fff"/>
|
||||
<path id="use10" d="M28.638,8.285l.3-.866-.79.535h.976l-.79-.535Z" transform="translate(-28.15 -5.518)" fill="#fff"/>
|
||||
<path id="use12" d="M28.638,8.285l.3-.866-.79.535h.976l-.79-.535Z" transform="translate(-26.797 -4.863)" fill="#fff"/>
|
||||
</g>
|
||||
<rect id="rect16" width="5.777" height="19.97" transform="translate(3.851 1.319)" fill="#d22630"/>
|
||||
<g id="ornm" transform="translate(3.851 0)">
|
||||
<path id="path18" d="M8.4-3.081v.2l.325.284-.11.1.232.2-.1.086v-.125h-.2v.15l.448.391h.227l.025-.138h-.13l.142-.123.355.3-.355.3-.142-.123h.13l-.025-.139H8.995l-.448.391v.15h.2v-.125l.1.086-.232.2.11.1L8.4-.64v.2l.55-.478-.11-.1.23-.2-.2-.173L9-1.505l.253.219.555-.476-.555-.476L9-2.018l-.132-.115.2-.173-.23-.2.11-.1-.55-.48Zm0,.95v.737l.128-.122v-.143h.136l.11-.1-.11-.1H8.528V-2.01L8.4-2.131Zm.937.261-.019.1.019.1.117-.1Z" transform="translate(-8.4 3.081)" fill="#383739"/>
|
||||
<path id="path20" d="M8.4-3.032v.155l.348.3-.11.1.232.2-.14.122V-2.3H8.562v.13L9-1.789h.2L9.227-1.9H9.076l.181-.159.378.323-.378.323-.181-.157h.151L9.206-1.68H9l-.44.383v.13H8.73v-.146l.14.122-.232.2.11.1-.348.3v.155l.527-.457-.11-.1.23-.2-.2-.173L9-1.5l.253.22.531-.457-.531-.457L9-1.971,8.849-2.1l.2-.173-.23-.2.11-.1L8.4-3.032Zm0,.95v.695l.113-.106v-.153h.145l.094-.088-.094-.088H8.513v-.153L8.4-2.082Zm.948.268-.013.072.013.072.083-.072Z" transform="translate(-8.4 3.053)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use23" transform="translate(3.851 3.635)">
|
||||
<path id="path18-2" data-name="path18" d="M8.4-3.081v.2l.325.284-.11.1.232.2-.1.086v-.125h-.2v.15l.448.391h.227l.025-.138h-.13l.142-.123.355.3-.355.3-.142-.123h.13l-.025-.139H8.995l-.448.391v.15h.2v-.125l.1.086-.232.2.11.1L8.4-.64v.2l.55-.478-.11-.1.23-.2-.2-.173L9-1.505l.253.219.555-.476-.555-.476L9-2.018l-.132-.115.2-.173-.23-.2.11-.1-.55-.48Zm0,.95v.737l.128-.122v-.143h.136l.11-.1-.11-.1H8.528V-2.01L8.4-2.131Zm.937.261-.019.1.019.1.117-.1Z" transform="translate(-8.4 3.081)" fill="#383739"/>
|
||||
<path id="path20-2" data-name="path20" d="M8.4-3.032v.155l.348.3-.11.1.232.2-.14.122V-2.3H8.562v.13L9-1.789h.2L9.227-1.9H9.076l.181-.159.378.323-.378.323-.181-.157h.151L9.206-1.68H9l-.44.383v.13H8.73v-.146l.14.122-.232.2.11.1-.348.3v.155l.527-.457-.11-.1.23-.2-.2-.173L9-1.5l.253.22.531-.457-.531-.457L9-1.971,8.849-2.1l.2-.173-.23-.2.11-.1L8.4-3.032Zm0,.95v.695l.113-.106v-.153h.145l.094-.088-.094-.088H8.513v-.153L8.4-2.082Zm.948.268-.013.072.013.072.083-.072Z" transform="translate(-8.4 3.053)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use25" transform="translate(3.851 7.389)">
|
||||
<path id="path18-3" data-name="path18" d="M8.4-3.081v.2l.325.284-.11.1.232.2-.1.086v-.125h-.2v.15l.448.391h.227l.025-.138h-.13l.142-.123.355.3-.355.3-.142-.123h.13l-.025-.139H8.995l-.448.391v.15h.2v-.125l.1.086-.232.2.11.1L8.4-.64v.2l.55-.478-.11-.1.23-.2-.2-.173L9-1.505l.253.219.555-.476-.555-.476L9-2.018l-.132-.115.2-.173-.23-.2.11-.1-.55-.48Zm0,.95v.737l.128-.122v-.143h.136l.11-.1-.11-.1H8.528V-2.01L8.4-2.131Zm.937.261-.019.1.019.1.117-.1Z" transform="translate(-8.4 3.081)" fill="#383739"/>
|
||||
<path id="path20-3" data-name="path20" d="M8.4-3.032v.155l.348.3-.11.1.232.2-.14.122V-2.3H8.562v.13L9-1.789h.2L9.227-1.9H9.076l.181-.159.378.323-.378.323-.181-.157h.151L9.206-1.68H9l-.44.383v.13H8.73v-.146l.14.122-.232.2.11.1-.348.3v.155l.527-.457-.11-.1.23-.2-.2-.173L9-1.5l.253.22.531-.457-.531-.457L9-1.971,8.849-2.1l.2-.173-.23-.2.11-.1L8.4-3.032Zm0,.95v.695l.113-.106v-.153h.145l.094-.088-.094-.088H8.513v-.153L8.4-2.082Zm.948.268-.013.072.013.072.083-.072Z" transform="translate(-8.4 3.053)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use27" transform="translate(3.851 11.143)">
|
||||
<path id="path18-4" data-name="path18" d="M8.4-3.081v.2l.325.284-.11.1.232.2-.1.086v-.125h-.2v.15l.448.391h.227l.025-.138h-.13l.142-.123.355.3-.355.3-.142-.123h.13l-.025-.139H8.995l-.448.391v.15h.2v-.125l.1.086-.232.2.11.1L8.4-.64v.2l.55-.478-.11-.1.23-.2-.2-.173L9-1.505l.253.219.555-.476-.555-.476L9-2.018l-.132-.115.2-.173-.23-.2.11-.1-.55-.48Zm0,.95v.737l.128-.122v-.143h.136l.11-.1-.11-.1H8.528V-2.01L8.4-2.131Zm.937.261-.019.1.019.1.117-.1Z" transform="translate(-8.4 3.081)" fill="#383739"/>
|
||||
<path id="path20-4" data-name="path20" d="M8.4-3.032v.155l.348.3-.11.1.232.2-.14.122V-2.3H8.562v.13L9-1.789h.2L9.227-1.9H9.076l.181-.159.378.323-.378.323-.181-.157h.151L9.206-1.68H9l-.44.383v.13H8.73v-.146l.14.122-.232.2.11.1-.348.3v.155l.527-.457-.11-.1.23-.2-.2-.173L9-1.5l.253.22.531-.457-.531-.457L9-1.971,8.849-2.1l.2-.173-.23-.2.11-.1L8.4-3.032Zm0,.95v.695l.113-.106v-.153h.145l.094-.088-.094-.088H8.513v-.153L8.4-2.082Zm.948.268-.013.072.013.072.083-.072Z" transform="translate(-8.4 3.053)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use29" transform="translate(3.851 14.897)">
|
||||
<path id="path18-5" data-name="path18" d="M8.4-3.081v.2l.325.284-.11.1.232.2-.1.086v-.125h-.2v.15l.448.391h.227l.025-.138h-.13l.142-.123.355.3-.355.3-.142-.123h.13l-.025-.139H8.995l-.448.391v.15h.2v-.125l.1.086-.232.2.11.1L8.4-.64v.2l.55-.478-.11-.1.23-.2-.2-.173L9-1.505l.253.219.555-.476-.555-.476L9-2.018l-.132-.115.2-.173-.23-.2.11-.1-.55-.48Zm0,.95v.737l.128-.122v-.143h.136l.11-.1-.11-.1H8.528V-2.01L8.4-2.131Zm.937.261-.019.1.019.1.117-.1Z" transform="translate(-8.4 3.081)" fill="#383739"/>
|
||||
<path id="path20-5" data-name="path20" d="M8.4-3.032v.155l.348.3-.11.1.232.2-.14.122V-2.3H8.562v.13L9-1.789h.2L9.227-1.9H9.076l.181-.159.378.323-.378.323-.181-.157h.151L9.206-1.68H9l-.44.383v.13H8.73v-.146l.14.122-.232.2.11.1-.348.3v.155l.527-.457-.11-.1.23-.2-.2-.173L9-1.5l.253.22.531-.457-.531-.457L9-1.971,8.849-2.1l.2-.173-.23-.2.11-.1L8.4-3.032Zm0,.95v.695l.113-.106v-.153h.145l.094-.088-.094-.088H8.513v-.153L8.4-2.082Zm.948.268-.013.072.013.072.083-.072Z" transform="translate(-8.4 3.053)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use32" transform="translate(9.628 17.535) rotate(180)">
|
||||
<g id="g1693" transform="translate(0 14.897)">
|
||||
<path id="path1689" d="M0,2.637v-.2l.325-.284-.11-.1.232-.2-.1-.086V1.9h-.2v-.15l.448-.391H.822L.846,1.5H.716l.142.123.355-.3-.355-.3-.142.123h.13l-.025.139H.595L.147.887V.737h.2V.862l.1-.086L.215.575l.11-.1L0,.2V0L.55.478l-.11.1.23.2-.2.173L.6,1.061.858.843l.555.476-.555.476L.6,1.574l-.132.115.2.173-.23.2.11.1L0,2.637Zm0-.95V.95l.128.122v.143H.264l.11.1-.11.1H.128v.145L0,1.687Zm.937-.261-.019-.1.019-.1.117.1Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path1691" d="M0,2.595V2.44l.348-.3-.11-.1.232-.2-.14-.122v.146H.162v-.13L.6,1.352h.2l.021.109H.676l.181.159L1.235,1.3.858.975l-.181.157H.827l-.021.111H.6L.162.86V.73H.331V.876L.47.755.238.554l.11-.1L0,.155V0L.527.457l-.11.1.23.2L.45.927.6,1.061.858.841l.531.457-.531.457L.6,1.534.45,1.668l.2.173-.23.2.11.1L0,2.595Zm0-.95V.95l.113.106v.153H.259L.353,1.3l-.094.088H.113v.153L0,1.645Zm.948-.268L.935,1.3l.013-.072.083.072Z" transform="translate(0 0.021)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use1695" transform="translate(0 11.263)">
|
||||
<path id="path18-6" data-name="path18" d="M0,2.637v-.2l.325-.284-.11-.1.232-.2-.1-.086V1.9h-.2v-.15l.448-.391H.822L.846,1.5H.716l.142.123.355-.3-.355-.3-.142.123h.13l-.025.139H.595L.147.887V.737h.2V.862l.1-.086L.215.575l.11-.1L0,.2V0L.55.478l-.11.1.23.2-.2.173L.6,1.061.858.843l.555.476-.555.476L.6,1.574l-.132.115.2.173-.23.2.11.1L0,2.637Zm0-.95V.95l.128.122v.143H.264l.11.1-.11.1H.128v.145L0,1.687Zm.937-.261-.019-.1.019-.1.117.1Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path20-6" data-name="path20" d="M0,2.595V2.44l.348-.3-.11-.1.232-.2-.14-.122v.146H.162v-.13L.6,1.352h.2l.021.109H.676l.181.159L1.235,1.3.858.975l-.181.157H.827l-.021.111H.6L.162.86V.73H.331V.876L.47.755.238.554l.11-.1L0,.155V0L.527.457l-.11.1.23.2L.45.927.6,1.061.858.841l.531.457-.531.457L.6,1.534.45,1.668l.2.173-.23.2.11.1L0,2.595Zm0-.95V.95l.113.106v.153H.259L.353,1.3l-.094.088H.113v.153L0,1.645Zm.948-.268L.935,1.3l.013-.072.083.072Z" transform="translate(0 0.021)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use1697" transform="translate(0 7.508)">
|
||||
<path id="path18-7" data-name="path18" d="M0,2.637v-.2l.325-.284-.11-.1.232-.2-.1-.086V1.9h-.2v-.15l.448-.391H.822L.846,1.5H.716l.142.123.355-.3-.355-.3-.142.123h.13l-.025.139H.595L.147.887V.737h.2V.862l.1-.086L.215.575l.11-.1L0,.2V0L.55.478l-.11.1.23.2-.2.173L.6,1.061.858.843l.555.476-.555.476L.6,1.574l-.132.115.2.173-.23.2.11.1L0,2.637Zm0-.95V.95l.128.122v.143H.264l.11.1-.11.1H.128v.145L0,1.687Zm.937-.261-.019-.1.019-.1.117.1Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path20-7" data-name="path20" d="M0,2.595V2.44l.348-.3-.11-.1.232-.2-.14-.122v.146H.162v-.13L.6,1.352h.2l.021.109H.676l.181.159L1.235,1.3.858.975l-.181.157H.827l-.021.111H.6L.162.86V.73H.331V.876L.47.755.238.554l.11-.1L0,.155V0L.527.457l-.11.1.23.2L.45.927.6,1.061.858.841l.531.457-.531.457L.6,1.534.45,1.668l.2.173-.23.2.11.1L0,2.595Zm0-.95V.95l.113.106v.153H.259L.353,1.3l-.094.088H.113v.153L0,1.645Zm.948-.268L.935,1.3l.013-.072.083.072Z" transform="translate(0 0.021)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use1699" transform="translate(0 3.754)">
|
||||
<path id="path18-8" data-name="path18" d="M0,2.637v-.2l.325-.284-.11-.1.232-.2-.1-.086V1.9h-.2v-.15l.448-.391H.822L.846,1.5H.716l.142.123.355-.3-.355-.3-.142.123h.13l-.025.139H.595L.147.887V.737h.2V.862l.1-.086L.215.575l.11-.1L0,.2V0L.55.478l-.11.1.23.2-.2.173L.6,1.061.858.843l.555.476-.555.476L.6,1.574l-.132.115.2.173-.23.2.11.1L0,2.637Zm0-.95V.95l.128.122v.143H.264l.11.1-.11.1H.128v.145L0,1.687Zm.937-.261-.019-.1.019-.1.117.1Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path20-8" data-name="path20" d="M0,2.595V2.44l.348-.3-.11-.1.232-.2-.14-.122v.146H.162v-.13L.6,1.352h.2l.021.109H.676l.181.159L1.235,1.3.858.975l-.181.157H.827l-.021.111H.6L.162.86V.73H.331V.876L.47.755.238.554l.11-.1L0,.155V0L.527.457l-.11.1.23.2L.45.927.6,1.061.858.841l.531.457-.531.457L.6,1.534.45,1.668l.2.173-.23.2.11.1L0,2.595Zm0-.95V.95l.113.106v.153H.259L.353,1.3l-.094.088H.113v.153L0,1.645Zm.948-.268L.935,1.3l.013-.072.083.072Z" transform="translate(0 0.021)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="use1701">
|
||||
<path id="path18-9" data-name="path18" d="M0,2.637v-.2l.325-.284-.11-.1.232-.2-.1-.086V1.9h-.2v-.15l.448-.391H.822L.846,1.5H.716l.142.123.355-.3-.355-.3-.142.123h.13l-.025.139H.595L.147.887V.737h.2V.862l.1-.086L.215.575l.11-.1L0,.2V0L.55.478l-.11.1.23.2-.2.173L.6,1.061.858.843l.555.476-.555.476L.6,1.574l-.132.115.2.173-.23.2.11.1L0,2.637Zm0-.95V.95l.128.122v.143H.264l.11.1-.11.1H.128v.145L0,1.687Zm.937-.261-.019-.1.019-.1.117.1Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path20-9" data-name="path20" d="M0,2.595V2.44l.348-.3-.11-.1.232-.2-.14-.122v.146H.162v-.13L.6,1.352h.2l.021.109H.676l.181.159L1.235,1.3.858.975l-.181.157H.827l-.021.111H.6L.162.86V.73H.331V.876L.47.755.238.554l.11-.1L0,.155V0L.527.457l-.11.1.23.2L.45.927.6,1.061.858.841l.531.457-.531.457L.6,1.534.45,1.668l.2.173-.23.2.11.1L0,2.595Zm0-.95V.95l.113.106v.153H.259L.353,1.3l-.094.088H.113v.153L0,1.645Zm.948-.268L.935,1.3l.013-.072.083.072Z" transform="translate(0 0.021)" fill="#ffc72c"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="branch" d="M9.263,40.877c.028.113.125.2.148.317a.576.576,0,0,0,.057-.36c-.023-.1-.109-.164-.119-.263a.287.287,0,0,0-.086.306Zm-.024.475a.789.789,0,0,0,.314.233.263.263,0,0,1,.072-.228.243.243,0,0,0,.041-.268.6.6,0,0,1-.09.138.391.391,0,0,0-.1.217.427.427,0,0,1-.123-.169.554.554,0,0,0-.226-.212.74.74,0,0,0,.11.29Zm.449.305a.5.5,0,0,0-.029.173,1.255,1.255,0,0,0-.186-.136A1.449,1.449,0,0,1,9.22,41.5a.382.382,0,0,0,.171.292c.111.078.245.119.354.2a.586.586,0,0,1,.064-.3.266.266,0,0,0-.069-.268.706.706,0,0,1-.051.228Zm.249.371a1.014,1.014,0,0,0,.131.225,1.757,1.757,0,0,1-.328-.15,2.52,2.52,0,0,1-.379-.19.531.531,0,0,0,.405.37,3.472,3.472,0,0,1,.432.085,1.061,1.061,0,0,0-.109-.323,1.152,1.152,0,0,1-.116-.218A.249.249,0,0,0,9.937,42.028Zm.433.3a.521.521,0,0,0,.16.162c-.167.01-.3-.089-.464-.093-.1,0-.2.027-.3.018a.964.964,0,0,0,.4.161c.193.023.37-.022.583,0a.756.756,0,0,1-.211-.247.416.416,0,0,0-.313-.22,1.3,1.3,0,0,1,.147.223Zm.593.259a5.877,5.877,0,0,1-.877.11,1.5,1.5,0,0,0,.987.016,1.172,1.172,0,0,1,.455-.085,1.083,1.083,0,0,1,.708.35l.105-.079a1.7,1.7,0,0,0-1.378-.313Z" transform="translate(-4.944 -21.891)" fill="#ffc72c"/>
|
||||
<path id="path37" d="M9.43,2.665,8.967,2.4V1.763L9.43,1.5V1.161L9.867.916h.349l.665-.349h1.428l.665.349h.349l.437.246V1.5l.463.265V2.4l-.463.265V3l-.437.246h-.349l-.665.349H10.881l-.665-.349H9.867L9.43,3Z" transform="translate(-4.855 0.995)" fill="#383739"/>
|
||||
<path id="path39" d="M10.9.6,10.238.95H9.891l-.427.24v.337L9,1.791v.621l.463.264v.338l.425.24h.349L10.9,3.6h1.42l.665-.349h.349l.427-.24V2.676l.463-.264V1.791l-.463-.264V1.19L13.338.95h-.349L12.324.6H10.9Zm.04.129h1.343l.665.349H13.3l.323.182V1.6l.465.264v.48l-.465.264v.337l-.323.182h-.348l-.665.349H10.943l-.665-.349H9.931l-.325-.182V2.606l-.463-.264v-.48L9.606,1.6V1.261l.325-.182h.348Z" transform="translate(-4.874 0.975)" fill="#00843d"/>
|
||||
<path id="path41" d="M11.792,2.3V.935h-.66l-.665.349H10.12l-.314.176V1.8l-.463.265v.224h2.463V3.65h.66l.665-.349h.347l.314-.176V2.789l.463-.265V2.3Z" transform="translate(-5.06 0.784)" fill="#ffc72c"/>
|
||||
<path id="path43" d="M9.343,2.3v.224l.463.265v.336l.314.176h.347l.665.349h.66V2.285h2.463V2.061L13.792,1.8V1.46l-.314-.176h-.347L12.467.935h-.66V2.3Z" transform="translate(-5.06 0.784)" fill="#fff"/>
|
||||
<g id="carp1h" transform="translate(4.498 1.704)">
|
||||
<g id="carp1q" transform="translate(0.497 0)">
|
||||
<path id="path45" d="M11.24,1.912l-.114-.1-.113.065.114.1-.147.085h.32l.276.243.088-.087L11.4,1.981v-.16Z" transform="translate(-10.941 -1.423)" fill="#383739"/>
|
||||
<path id="path47" d="M12.416,1.81l-.114-.1-.113.065.114.1-.147.085h.32l.276.243.088-.087-.268-.236v-.16Z" transform="translate(-11.578 -1.364)" fill="#383739"/>
|
||||
<path id="path49" d="M11.153,2.577l-.114-.1-.113.065.114.1-.147.085h.32l.276.243.088-.087-.268-.236v-.16Z" transform="translate(-10.894 -1.803)" fill="#383739"/>
|
||||
<path id="path51" d="M13.576.9h-.289l-.151.136h-.294l-.218.105.051.115.194-.1h.085l.3.321.324-.184Z" transform="translate(-11.831 -0.901)" fill="#383739"/>
|
||||
<path id="path53" d="M11.187,1.854l.1.089-.086.05L11.1,1.9Zm.257.016v.141l.262.23-.067.066-.269-.237H11.1l.347-.2Z" transform="translate(-11.004 -1.446)" fill="#d22630"/>
|
||||
<path id="path55" d="M12.364,1.752l.1.089-.086.05-.1-.089Zm.257.016v.141l.262.23-.067.066-.269-.237h-.272l.347-.2Z" transform="translate(-11.641 -1.388)" fill="#d22630"/>
|
||||
<path id="path57" d="M11.1,2.519l.1.089-.086.05-.1-.089Zm.257.016v.141l.262.23-.067.066-.269-.237h-.272l.347-.2Z" transform="translate(-10.958 -1.827)" fill="#d22630"/>
|
||||
<path id="path59" d="M13.591.935h-.275l-.151.136h-.3l-.2.1.039.089.182-.089h.1l.294.317.314-.178Z" transform="translate(-11.854 -0.92)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="use62" transform="translate(0.497 1.578)">
|
||||
<path id="path45-2" data-name="path45" d="M11.24-2.569l-.114.1-.113-.065.114-.1-.147-.085h.32l.276-.243.088.087-.268.236v.16Z" transform="translate(-10.941 3.246)" fill="#383739"/>
|
||||
<path id="path47-2" data-name="path47" d="M12.416-2.467l-.114.1-.113-.065.114-.1-.147-.085h.32l.276-.243.088.087-.268.236v.16Z" transform="translate(-11.578 3.188)" fill="#383739"/>
|
||||
<path id="path49-2" data-name="path49" d="M11.153-3.234l-.114.1L10.927-3.2l.114-.1-.147-.085h.32l.276-.243.088.087L11.31-3.3v.16Z" transform="translate(-10.894 3.627)" fill="#383739"/>
|
||||
<path id="path51-2" data-name="path51" d="M13.576-1.68h-.289l-.151-.136h-.294l-.218-.105.051-.115.194.1h.085l.3-.321.324.184Z" transform="translate(-11.831 2.846)" fill="#383739"/>
|
||||
<path id="path53-2" data-name="path53" d="M11.187-2.461l.1-.089L11.2-2.6l-.1.089Zm.257-.016v-.141l.262-.23-.067-.066-.269.237H11.1l.347.2Z" transform="translate(-11.004 3.219)" fill="#d22630"/>
|
||||
<path id="path55-2" data-name="path55" d="M12.364-2.359l.1-.089L12.38-2.5l-.1.089Zm.257-.016v-.141l.262-.23-.067-.066-.269.237h-.272l.347.2Z" transform="translate(-11.641 3.161)" fill="#d22630"/>
|
||||
<path id="path57-2" data-name="path57" d="M11.1-3.126l.1-.089-.086-.05-.1.089Zm.257-.016v-.141l.262-.23-.067-.066-.269.237h-.272l.347.2Z" transform="translate(-10.958 3.6)" fill="#d22630"/>
|
||||
<path id="path59-2" data-name="path59" d="M13.591-1.67h-.275l-.151-.136h-.3l-.2-.1.039-.089.182.089h.1l.294-.317.314.178Z" transform="translate(-11.854 2.822)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path64" d="M10.414,3.024l-.138-.048,0,0-.178.115v.031l-.285.336L10.1,3.8v.031l.181.117.138-.048-.084-.052v-.1l.033-.037h.149v-.5h-.149l-.033-.037v-.1Z" transform="translate(-9.811 -2.088)" fill="#383739"/>
|
||||
<path id="path66" d="M10.134,3.122l.168-.109.1.036-.066.041V3.2l.042.046h.141v.468h-.141l-.042.046v.112l.066.041-.1.036-.168-.109V3.813l-.28-.331.28-.331Z" transform="translate(-9.834 -2.11)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="use69" transform="translate(8.981 4.448) rotate(180)">
|
||||
<g id="carp1q-2" data-name="carp1q" transform="translate(0.497 1.578)">
|
||||
<path id="path45-3" data-name="path45" d="M.259.393l-.114.1L.032.427l.114-.1L0,.243H.32L.6,0,.684.087.416.323v.16Z" transform="translate(0.04 0.285)" fill="#383739"/>
|
||||
<path id="path47-3" data-name="path47" d="M.259.393l-.114.1L.032.427l.114-.1L0,.243H.32L.6,0,.684.087.416.323v.16Z" transform="translate(0.579 0.328)" fill="#383739"/>
|
||||
<path id="path49-3" data-name="path49" d="M.259.393l-.114.1L.032.427l.114-.1L0,.243H.32L.6,0,.684.087.416.323v.16Z" fill="#383739"/>
|
||||
<path id="path51-3" data-name="path51" d="M.952.583H.663L.512.447H.218L0,.341.051.226l.194.1H.33L.627,0,.952.184Z" transform="translate(0.793 0.584)" fill="#383739"/>
|
||||
<path id="path53-3" data-name="path53" d="M.09.454l.1-.089L.106.315,0,.4ZM.347.437V.3L.608.066.541,0,.272.237H0l.347.2Z" transform="translate(0.093 0.305)" fill="#d22630"/>
|
||||
<path id="path55-3" data-name="path55" d="M.09.454l.1-.089L.106.315,0,.4ZM.347.437V.3L.608.066.541,0,.272.237H0l.347.2Z" transform="translate(0.633 0.348)" fill="#d22630"/>
|
||||
<path id="path57-3" data-name="path57" d="M.09.454l.1-.089L.106.315,0,.4ZM.347.437V.3L.608.066.541,0,.272.237H0l.347.2Z" transform="translate(0.054 0.02)" fill="#d22630"/>
|
||||
<path id="path59-3" data-name="path59" d="M.925.55H.65L.5.414H.2L0,.316.039.227.222.317h.1L.611,0,.925.178Z" transform="translate(0.813 0.602)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="use62-2" data-name="use62" transform="translate(0.497)">
|
||||
<path id="path45-4" data-name="path45" d="M.259.1.145,0,.032.065l.114.1L0,.249H.32L.6.492.684.4.416.169V.009Z" transform="translate(0.04 0.39)" fill="#383739"/>
|
||||
<path id="path47-4" data-name="path47" d="M.259.1.145,0,.032.065l.114.1L0,.249H.32L.6.492.684.4.416.169V.009Z" transform="translate(0.579 0.346)" fill="#383739"/>
|
||||
<path id="path49-4" data-name="path49" d="M.259.1.145,0,.032.065l.114.1L0,.249H.32L.6.492.684.4.416.169V.009Z" transform="translate(0 0.675)" fill="#383739"/>
|
||||
<path id="path51-4" data-name="path51" d="M.952,0H.663L.512.136H.218L0,.241.051.357l.194-.1H.33l.3.321L.952.4Z" transform="translate(0.793)" fill="#383739"/>
|
||||
<path id="path53-4" data-name="path53" d="M.09,0l.1.089L.106.139,0,.049ZM.347.016V.157l.262.23L.541.454.272.217H0l.347-.2Z" transform="translate(0.093 0.408)" fill="#d22630"/>
|
||||
<path id="path55-4" data-name="path55" d="M.09,0l.1.089L.106.139,0,.049ZM.347.016V.157l.262.23L.541.454.272.217H0l.347-.2Z" transform="translate(0.633 0.364)" fill="#d22630"/>
|
||||
<path id="path57-4" data-name="path57" d="M.09,0l.1.089L.106.139,0,.049ZM.347.016V.157l.262.23L.541.454.272.217H0l.347-.2Z" transform="translate(0.054 0.692)" fill="#d22630"/>
|
||||
<path id="path59-4" data-name="path59" d="M.925,0H.65L.5.136H.2l-.2.1L.039.322.222.233h.1L.611.55.925.372Z" transform="translate(0.813 0.014)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path64-2" data-name="path64" d="M.6.92.466.968l0,0L.285.851V.82L0,.484.285.148V.117L.466,0,.6.048.519.1V.2L.553.236H.7v.5H.553L.519.769v.1Z" transform="translate(0 0.888)" fill="#383739"/>
|
||||
<path id="path66-2" data-name="path66" d="M.28.827.448.936.55.9.484.86V.748L.526.7H.667V.234H.526L.484.188V.076L.55.036.448,0,.28.109V.137L0,.468.28.8Z" transform="translate(0.019 0.904)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path71" d="M10.306,2.555l-.077-.063v-.03l-.166-.189.166-.189v-.03l.077-.063.139.106h-.08l.119.112h.271l.213-.156V1.643H11.5l.62-.355V1.195l-.095-.059H12l-.1.064-.016.048-.081-.1.157-.123h.025L12.155.9h.067l.177.121h.025l.157.123-.081.1L12.484,1.2l-.1-.064h-.03l-.095.059v.093l.62.355h.533v.411l.213.156h.271l.119-.112h-.08l.139-.106.077.063v.03l.166.189-.166.189v.03l-.077.063-.139-.106h.08l-.119-.112h-.271l-.213.156V2.9h-.533l-.62.355v.093l.095.059h.03l.1-.064L12.5,3.3l.081.1-.157.123H12.4l-.177.121h-.067l-.177-.121h-.025L11.8,3.4l.081-.1.016.048.1.064h.03l.095-.059V3.259L11.5,2.9h-.533V2.494l-.213-.156h-.271l-.119.112h.08Z" transform="translate(-5.449 0.803)" fill="#383739"/>
|
||||
<path id="path73" d="M12.227,3.441l.068.048-.068.048v-.1Zm-.216.088h0l.177.121h.021V3.556l-.093-.066.093-.066V3.245l-.663-.38h-.49V2.484L10.805,2.3h-.382l-.1.1-.1-.1h-.113l.155.177v.029l.062.05.1-.072h-.058V2.466l.129-.123h.284l.223.163v.4h.522l.63.361v.109l-.105.066h-.039l-.111-.07L11.9,3.349l-.054.069.142.111h.022ZM10.328,2.206l.076.08h-.151Zm1.883-1.158-.068.048.068.048ZM14.035,2.3l.076.08.076-.08Zm-1.61-1.244L12.247.935h-.021v.095l.093.066-.093.066v.178l.663.38h.49V2.1l.253.185h.382l.1-.1.1.1h.113l-.155-.177V2.08L14.1,2.03,14,2.1h.058v.018l-.129.123h-.284l-.223-.163v-.4H12.9l-.63-.361V1.206l.105-.066h.039l.111.07.009.026.054-.069-.142-.111h-.025Z" transform="translate(-5.479 0.784)" fill="#ffc72c"/>
|
||||
<path id="path75" d="M12.212,3.538l-.068-.048.068-.048ZM10.4,2.3l-.076.08-.076-.08Zm2.023,1.229h0l-.177.121h-.021V3.556l.093-.066-.093-.066V3.245l.663-.38h.49V2.484l.253-.185h.382l.1.1.1-.1h.113l-.155.177v.029l-.062.05L14,2.483h.058V2.466l-.129-.123h-.284l-.223.163v.4H12.9l-.63.361v.109l.105.066h.039l.111-.07.009-.026.054.069-.142.111h-.022ZM14.11,2.206l-.076.08h.151Zm-2.1-1.15.177-.121h.021v.095l-.093.066.093.066v.178l-.663.38h-.49V2.1l-.253.185h-.382l-.1-.1-.1.1h-.113l.155-.177V2.08l.062-.05.1.072h-.058v.018l.129.123h.284l.223-.163v-.4h.522l.63-.361V1.206l-.105-.066h-.039l-.111.07-.009.026-.054-.069.142-.111Zm.213.088.068-.048-.068-.048Z" transform="translate(-5.479 0.784)" fill="#fff"/>
|
||||
<path id="path77" d="M13.052,2.863V1.92l-.659.377h-.479v.374l-.243.178h1.4v.943l.659-.377H14.2V3.041l.243-.178Z" transform="translate(-6.32 0.221)" fill="#00843d"/>
|
||||
<path id="path79" d="M11.671,2.863l.244.178v.374h.479l.659.377V2.849h1.4L14.2,2.671V2.3h-.479l-.659-.377v.943Z" transform="translate(-6.32 0.22)" fill="#d22630"/>
|
||||
<path id="path81" d="M12.847,2.906l-.114-.1-.113.065.114.1-.147.085h.32l.276.243.088-.087L13,2.975v-.16Z" transform="translate(-6.817 -0.287)" fill="#383739"/>
|
||||
<path id="path83" d="M15.744,4.652l.114.1.113-.065-.114-.1L16,4.5h-.32l-.276-.243-.088.087.268.236v.16Z" transform="translate(-8.296 -1.118)" fill="#383739"/>
|
||||
<path id="path85" d="M12.847,4.652l-.114.1-.113-.065.114-.1L12.588,4.5h.32l.276-.243.088.087L13,4.582v.16Z" transform="translate(-6.817 -1.118)" fill="#383739"/>
|
||||
<path id="path87" d="M15.744,2.906l.114-.1.113.065-.114.1L16,3.056h-.32l-.276.243-.088-.087.268-.236v-.16Z" transform="translate(-8.296 -0.287)" fill="#383739"/>
|
||||
<path id="path89" d="M14.444,3.926l-.1-.089.086-.05.1.089Zm-.257-.016V3.769l-.262-.23.067-.066.269.237h.272l-.347.2ZM12.795,2.848l.1.089-.086.05-.1-.089Zm.257.016v.141l.262.23-.067.066-.269-.237h-.272l.347-.2Z" transform="translate(-6.88 -0.311)" fill="#d22630"/>
|
||||
<path id="path91" d="M14.444,2.848l-.1.089.086.05.1-.089Zm-.257.016v.141l-.262.23.067.066.269-.237h.272l-.347-.2ZM12.795,3.926l.1-.089-.086-.05-.1.089Zm.257-.016V3.769l.262-.23-.067-.066-.269.237h-.272l.347.2Z" transform="translate(-6.88 -0.311)" fill="#00843d"/>
|
||||
<path id="path93" d="M14.572,3.519l-.708.441-.708-.441.708-.441Z" transform="translate(-7.124 -0.442)" fill="#383739"/>
|
||||
<path id="path95" d="M13.9,3.129l-.662.412h1.338l-.662-.412v.837l.662-.412H13.24l.662.412Z" transform="translate(-7.17 -0.471)" fill="#fff"/>
|
||||
<path id="path97" d="M14.376,3.895v.121H14V3.895h-.245v-.3H14V3.471h.379v.121h.245v.3Z" transform="translate(-7.447 -0.667)" fill="#383739"/>
|
||||
<path id="path99" d="M14.031,3.5v.121h-.245v.13H14.2V3.5h-.166Zm.182.251h.412v-.13h-.245V3.5h-.166v.251Zm-.427.014V3.9h.245v.121H14.2V3.769h-.412Zm.427.251h.166V3.9h.245v-.13h-.412v.251Z" transform="translate(-7.465 -0.686)" fill="#d22630"/>
|
||||
<path id="path102" d="M13.134,12.2V12h.57v-.194h.57V10.054H13.7V9.86h-.57V9.666h-.57V9.472H11.288v.194h-.57V9.86h-.57v.194h-.57v1.753h.57V12h.57V12.2h.57v.194h1.276V12.2Z" transform="translate(-5.186 -4.1)" fill="#383739"/>
|
||||
<path id="path104" d="M11.322,9.5V9.7h-.57v.194h-.57v.194h-.57v1.726h.57v.194h.57V12.2h.57v.194h1.245V12.2h.57v-.194h.57v-.194h.57V10.086h-.57V9.892h-.57V9.7h-.57V9.5Zm.151.141h.942v.194h.57v.194h.57v.194h.57V11.67h-.57v.194h-.57v.194h-.57v.194h-.942v-.194H10.9v-.194h-.57V11.67h-.57V10.227h.57v-.194h.57V9.839h.57Z" transform="translate(-5.204 -4.118)" fill="#ffc72c"/>
|
||||
<path id="path106" d="M11.114,12.252v-.194h-.57v-.194h-.57V10.45h.57v-.194h.57v-.194h.57V9.868H12.6v.194h.57v.194h.57v.194h.57v1.415h-.57v.194h-.57v.194H12.6v.194h-.913v-.194Z" transform="translate(-5.401 -4.326)" fill="#d22630"/>
|
||||
<path id="path108" d="M11.032,10.207l-.148-.1v.2l-.141.084v-.125l-.136.114-.136-.114v.125l-.157-.093v.185l-.127.086v-.114l-.15.1-.15-.1v.114l-.142-.1v.562H9.578v.256h.166v.562l.142-.1v.114l.15-.1.15.1v-.114l.127.086v.185l.157-.093v.125l.136-.114.136.114v-.125l.141.084v.2l.148-.1v.14l.145-.121.145.121v-.14l.132.093v.213l.2-.168v.2l.274-.164.274.164v-.2l.2.168V12.2l.132-.093v.14l.145-.121.145.121v-.14l.148.1v-.2l.141-.084v.125l.136-.114.136.114v-.125l.157.093v-.185l.127-.086v.114l.15-.1.15.1v-.114l.142.1v-.562h.166v-.256h-.166v-.562l-.142.1v-.114l-.15.1-.15-.1v.114l-.127-.086v-.185l-.157.093v-.125l-.136.114-.136-.114v.125l-.141-.084v-.2l-.148.1v-.14l-.145.121-.145-.121v.14l-.132-.093V9.9l-.2.168v-.2l-.274.164-.274-.164v.2l-.2-.168v.213l-.132.093v-.14l-.145.121-.145-.121Z" transform="translate(-5.186 -4.328)" fill="#383739"/>
|
||||
<g id="g118" transform="translate(4.407 5.771)">
|
||||
<path id="path110" d="M9.919,11.406v-.114l.135.091,0,0,.131-.088v.114l.142-.1v1.324l-.142-.1v.114l-.135-.091-.135.091v-.114l-.142.1v-.548H9.611v-.227h.166V11.31Z" transform="translate(-9.611 -10.912)" fill="#00843d"/>
|
||||
<path id="path112" d="M12.609,10.4l.13.108.13-.108v.137l.148-.1v2.054l-.148-.1v.137l-.13-.108-.13.108v-.137l-.148.1V10.437l.148.1Z" transform="translate(-11.154 -10.404)" fill="#00843d"/>
|
||||
<path id="path114" d="M16.136,10.4l-.13.108-.13-.108v.137l-.148-.1v2.054l.148-.1v.137l.13-.108.13.108v-.137l.148.1V10.437l-.148.1Z" transform="translate(-12.924 -10.404)" fill="#00843d"/>
|
||||
<path id="path116" d="M18.629,11.406v-.114l-.135.091,0,0-.131-.088v.114l-.142-.1v1.324l.142-.1v.114l.135-.091.135.091v-.114l.142.1v-.548h.166v-.227h-.166V11.31Z" transform="translate(-14.271 -10.912)" fill="#00843d"/>
|
||||
</g>
|
||||
<g id="g126" transform="translate(5.143 5.569)">
|
||||
<path id="path120" d="M11.374,10.859l.12.1.12-.1v.119l.157-.093v1.678l-.157-.093v.119l-.12-.1-.12.1V12.47l-.157.093V10.885l.157.093Z" transform="translate(-11.217 -10.462)" fill="#ffc72c"/>
|
||||
<path id="path122" d="M13.9,10.136l-.2-.168V12.42l.2-.168v.2l.258-.155h0l.258.155v-.2l.2.168V9.968l-.2.168v-.2l-.258.155h0L13.9,9.932Z" transform="translate(-12.564 -9.932)" fill="#ffc72c"/>
|
||||
<path id="path124" d="M17.37,10.859l-.12.1-.12-.1v.119l-.157-.093v1.678l.157-.093v.119l.12-.1.12.1V12.47l.157.093V10.885l-.157.093Z" transform="translate(-14.334 -10.462)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="carp2h" transform="translate(4.733 5.732)">
|
||||
<g id="carp2q" transform="translate(0 0.238)">
|
||||
<path id="path128" d="M10.379,12.038a.089.089,0,0,0,.123,0,.286.286,0,0,0,.055-.209l-.074.073-.043-.069L10.4,11.9l-.074-.073A.286.286,0,0,0,10.379,12.038Z" transform="translate(-10.324 -11.417)" fill="#383739"/>
|
||||
<path id="path130" d="M11.564,11.571l-.046-.043v-.085l-.1.091.187.175.187-.175-.1-.091v.085l-.046.043v-.15l.081-.065-.118-.094-.118.094.081.065Z" transform="translate(-10.914 -11.093)" fill="#383739"/>
|
||||
<path id="path132" d="M12.808,11.177l-.046-.043V11.05l-.1.091.187.175.187-.175-.1-.091v.085l-.046.043v-.15l.081-.065-.118-.094-.118.094.081.065Z" transform="translate(-11.587 -10.868)" fill="#383739"/>
|
||||
<path id="path134" d="M10.46,11.9l.04.065.061-.06a.239.239,0,0,1-.05.163.073.073,0,0,1-.1,0,.239.239,0,0,1-.05-.163l.061.06.04-.065Z" transform="translate(-10.342 -11.46)" fill="#fff"/>
|
||||
<path id="path136" d="M12.892,11.046v.191l.076-.071v-.058l.067.058-.165.154-.165-.154.067-.058v.058l.076.071v-.191l-.073-.058.094-.076.094.076Z" transform="translate(-11.613 -10.893)" fill="#fff"/>
|
||||
<path id="path138" d="M11.649,11.439v.191l.076-.071V11.5l.067.058-.165.154-.165-.154.067-.058v.058l.076.071v-.191l-.073-.058.094-.076.094.076Z" transform="translate(-10.94 -11.118)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="use141" transform="translate(4.013 0.883) rotate(180)">
|
||||
<path id="path128-2" data-name="path128" d="M.056.025A.087.087,0,0,1,.117,0,.087.087,0,0,1,.179.025.286.286,0,0,1,.234.234L.16.161.117.23.074.161,0,.234A.286.286,0,0,1,.056.025Z" transform="translate(0)" fill="#383739"/>
|
||||
<path id="path130-2" data-name="path130" d="M.15.138.1.181V.265L0,.175.187,0,.375.175.27.265V.181L.224.138v.15L.3.353.187.447.07.353.15.288Z" transform="translate(0.5 0.029)" fill="#383739"/>
|
||||
<path id="path132-2" data-name="path132" d="M.15.138.1.181V.265L0,.175.187,0,.375.175.27.265V.181L.224.138v.15L.3.353.187.447.07.353.15.288Z" transform="translate(1.07 0.198)" fill="#383739"/>
|
||||
<path id="path134-2" data-name="path134" d="M.1.188.141.123.2.183A.239.239,0,0,0,.152.02.072.072,0,0,0,.1,0,.072.072,0,0,0,.05.02.239.239,0,0,0,0,.183L.061.123.1.188Z" transform="translate(0.016 0.014)" fill="#fff"/>
|
||||
<path id="path136-2" data-name="path136" d="M.187.275V.083L.263.155V.213L.33.154.165,0,0,.154.067.213V.155L.144.083V.275L.071.333.165.408.259.333Z" transform="translate(1.092 0.218)" fill="#fff"/>
|
||||
<path id="path138-2" data-name="path138" d="M.187.275V.083L.263.155V.213L.33.154.165,0,0,.154.067.213V.155L.144.083V.275L.071.333.165.408.259.333Z" transform="translate(0.522 0.049)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path143" d="M14.546,10.923l-.061-.079.157-.136L14.5,10.6v.08l-.061.049V10.58l.139-.1-.251-.172-.251.172.139.1v.145l-.061-.049V10.6L14,10.708l.157.136-.061.079Z" transform="translate(-12.315 -10.312)" fill="#383739"/>
|
||||
<path id="path145" d="M14.155,10.933l.052-.067-.154-.133.108-.083v.056l.092.073V10.6l-.128-.088.225-.155.225.155-.128.088v.183l.092-.073V10.65l.108.083-.154.133.052.067Z" transform="translate(-12.343 -10.336)" fill="#d22630"/>
|
||||
<path id="path147" d="M14.45,10.61l.115.079.115-.079-.115-.079,0,0Z" transform="translate(-12.558 -10.438)" fill="#383739"/>
|
||||
<path id="path149" d="M14.595,10.573l.089.061-.089.061-.089-.061Z" transform="translate(-12.588 -10.461)" fill="#00843d"/>
|
||||
</g>
|
||||
<g id="use152" transform="translate(4.733 7.047)">
|
||||
<g id="carp2q-2" data-name="carp2q" transform="translate(0 0)">
|
||||
<path id="path128-3" data-name="path128" d="M10.379-12.35a.087.087,0,0,1,.061-.025.087.087,0,0,1,.061.025.286.286,0,0,1,.055.209l-.074-.073-.043.069-.043-.069-.074.073A.286.286,0,0,1,10.379-12.35Z" transform="translate(-10.324 12.375)" fill="#383739"/>
|
||||
<path id="path130-3" data-name="path130" d="M11.564-12.169l-.046.043v.085l-.1-.091.187-.175.187.175-.1.091v-.085l-.046-.043v.15l.081.065-.118.094-.118-.094.081-.065Z" transform="translate(-10.914 12.336)" fill="#383739"/>
|
||||
<path id="path132-3" data-name="path132" d="M12.808-11.775l-.046.043v.085l-.1-.091.187-.175.187.175-.1.091v-.085l-.046-.043v.15l.081.065-.118.094-.118-.094.081-.065Z" transform="translate(-11.587 12.111)" fill="#383739"/>
|
||||
<path id="path134-3" data-name="path134" d="M10.46-12.154l.04-.065.061.06a.239.239,0,0,0-.05-.163.072.072,0,0,0-.051-.02.072.072,0,0,0-.051.02.239.239,0,0,0-.05.163l.061-.06Z" transform="translate(-10.342 12.356)" fill="#fff"/>
|
||||
<path id="path136-3" data-name="path136" d="M12.892-11.591v-.191l.076.071v.058l.067-.058-.165-.154-.165.154.067.058v-.058l.076-.071v.191l-.073.058.094.076.094-.076Z" transform="translate(-11.613 12.084)" fill="#fff"/>
|
||||
<path id="path138-3" data-name="path138" d="M11.649-11.985v-.191l.076.071v.058l.067-.058-.165-.154-.165.154.067.058v-.058l.076-.071v.191l-.073.058.094.076.094-.076Z" transform="translate(-10.94 12.309)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="use141-2" data-name="use141" transform="translate(4.013 0.645) rotate(180)">
|
||||
<path id="path128-4" data-name="path128" d="M.056.209A.087.087,0,0,0,.117.234.087.087,0,0,0,.179.209.286.286,0,0,0,.234,0L.16.073.117,0,.074.073,0,0A.286.286,0,0,0,.056.209Z" transform="translate(0 0.411)" fill="#383739"/>
|
||||
<path id="path130-4" data-name="path130" d="M.15.309.1.267V.182L0,.273.187.447.375.273.27.182V.267L.224.309V.159L.3.094.187,0,.07.094.15.159Z" transform="translate(0.5 0.168)" fill="#383739"/>
|
||||
<path id="path132-4" data-name="path132" d="M.15.309.1.267V.182L0,.273.187.447.375.273.27.182V.267L.224.309V.159L.3.094.187,0,.07.094.15.159Z" transform="translate(1.07)" fill="#383739"/>
|
||||
<path id="path134-4" data-name="path134" d="M.1,0l.04.065L.2,0a.239.239,0,0,1-.05.163A.072.072,0,0,1,.1.188.072.072,0,0,1,.05.167.239.239,0,0,1,0,0l.061.06L.1,0Z" transform="translate(0.016 0.443)" fill="#fff"/>
|
||||
<path id="path136-4" data-name="path136" d="M.187.134V.325L.263.254V.2L.33.254.165.408,0,.254.067.2V.254L.144.325V.134L.071.076.165,0,.259.076Z" transform="translate(1.092 0.019)" fill="#fff"/>
|
||||
<path id="path138-4" data-name="path138" d="M.187.134V.325L.263.254V.2L.33.254.165.408,0,.254.067.2V.254L.144.325V.134L.071.076.165,0,.259.076Z" transform="translate(0.522 0.187)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path143-2" data-name="path143" d="M14.546-11.74l-.061.079.157.136-.147.112v-.08l-.061-.049v.145l.139.1-.251.172-.251-.172.139-.1v-.145l-.061.049v.08L14-11.525l.157-.136L14.1-11.74Z" transform="translate(-12.315 12.011)" fill="#383739"/>
|
||||
<path id="path145-2" data-name="path145" d="M14.155-11.706l.052.067-.154.133.108.083v-.056l.092-.073v.183l-.128.088.225.155.225-.155-.128-.088v-.183l.092.073v.056l.108-.083-.154-.133.052-.067Z" transform="translate(-12.343 11.992)" fill="#d22630"/>
|
||||
<path id="path147-2" data-name="path147" d="M14.45-10.821l.115-.079.115.079-.115.079,0,0Z" transform="translate(-12.558 11.531)" fill="#383739"/>
|
||||
<path id="path149-2" data-name="path149" d="M14.595-10.736l.089-.061-.089-.061-.089.061Z" transform="translate(-12.588 11.507)" fill="#00843d"/>
|
||||
</g>
|
||||
<path id="path154" d="M14.332,12.127h-.251v-.093h-.767l-.534-.327h-.954l-.534.327h-.767v.093h-.251v.164h.251v.093h.767l.534.327h.954l.534-.327h.767v-.093h.251Z" transform="translate(-5.563 -5.378)" fill="#383739"/>
|
||||
<path id="path156" d="M11.849,11.741l-.535.326h-.756v.093h-.251V12.3h.251v.093h.756l.535.328h.946l.533-.328h.757V12.3h.251V12.16h-.251v-.093h-.757l-.533-.326Zm.011.048h.922l.489.3v.046h.546v.19h-.546v.046l-.489.3H11.86l-.487-.3v-.046h-.548v-.19h.548v-.046Z" transform="translate(-5.581 -5.398)" fill="#d22630"/>
|
||||
<path id="path158" d="M13.408,11.886l.477.292v.052h.547v.162h-.547v.052l-.477.292h-.913l-.477-.292v-.052h-.547v-.162h.547v-.052l.477-.292Z" transform="translate(-6.212 -5.481)" fill="#d22630"/>
|
||||
<g id="g176" transform="translate(5.89 6.452)">
|
||||
<path id="path160" d="M13.187,12.54l.207.145.136-.1-.079-.055-.057.04-.049-.034.778-.545h-.158Zm.451.213H13.8l.778-.545-.207-.145-.136.1.079.055.057-.04.049.034Zm.327,0h.158l-.778-.545.049-.034.057.04.079-.055-.136-.1-.207.145Zm.451-.213-.049.034-.057-.04-.079.055.136.1.207-.145-.778-.545h-.158Z" transform="translate(-13.031 -11.995)" fill="#383739"/>
|
||||
<path id="path162" d="M12.846,12.766l.139.086.139-.086-.139-.086Z" transform="translate(-12.846 -12.387)" fill="#383739"/>
|
||||
<path id="path164" d="M14.4,12.766l.139.086.139-.086-.139-.086Z" transform="translate(-13.686 -12.387)" fill="#383739"/>
|
||||
<path id="path166" d="M16.226,12.766l-.139.086-.139-.086.139-.086Z" transform="translate(-14.526 -12.387)" fill="#383739"/>
|
||||
<path id="path168" d="M14.579,12.559l-.181.127-.11-.077.054-.038.057.04.074-.052-.758-.531h.107Zm-.471.2H14l-.758-.531.181-.127.11.077-.054.038-.057-.04-.074.052Zm-.286,0h-.107l.758-.531-.074-.052-.057.04-.054-.038.11-.077.181.127Zm.179-.73h.107l-.758.531.074.052.057-.04.054.038-.11.077-.181-.127Z" transform="translate(-13.061 -12.014)" fill="#ffc72c"/>
|
||||
<path id="path170" d="M13.018,12.72l.111.069-.111.069-.111-.069Z" transform="translate(-12.879 -12.409)" fill="#00843d"/>
|
||||
<path id="path172" d="M14.569,12.72l.111.069-.111.069-.111-.069Z" transform="translate(-13.719 -12.409)" fill="#00843d"/>
|
||||
<path id="path174" d="M16.119,12.72l-.111.069.111.069.111-.069Z" transform="translate(-14.558 -12.409)" fill="#00843d"/>
|
||||
</g>
|
||||
<g id="g219" transform="translate(4.243 9.055)">
|
||||
<path id="path179" d="M9.309,21.2l-.054.072.1.07-.1.07.054.072.113.012.11-.079.274.162v-.135l-.172-.1.172-.1V21.1l-.274.162-.11-.079Z" transform="translate(-9.254 -19.807)" fill="#383739"/>
|
||||
<path id="path181" d="M9.309,20.1l-.054.072.1.07-.1.07.054.072.113.012.11-.079.274.162v-.135l-.172-.1.172-.1V20l-.274.162-.11-.079Z" transform="translate(-9.254 -19.18)" fill="#383739"/>
|
||||
<path id="path183" d="M9.309,22.573,9.254,22.5l.1-.07-.1-.07.054-.072.113-.012.11.079.274-.162v.135l-.172.1.172.1v.135l-.274-.162-.11.079Z" transform="translate(-9.254 -20.433)" fill="#383739"/>
|
||||
<path id="path185" d="M19.439,21.2l.054.072-.1.07.1.07-.054.072-.113.012-.11-.079-.274.162v-.135l.172-.1-.172-.1V21.1l.274.162.11-.079Z" transform="translate(-14.5 -19.807)" fill="#383739"/>
|
||||
<path id="path187" d="M19.439,20.1l.054.072-.1.07.1.07-.054.072-.113.012-.11-.079-.274.162v-.135l.172-.1-.172-.1V20l.274.162.11-.079Z" transform="translate(-14.5 -19.18)" fill="#383739"/>
|
||||
<path id="path189" d="M19.439,22.573l.054-.072-.1-.07.1-.07-.054-.072-.113-.012-.11.079-.274-.162v.135l.172.1-.172.1v.135l.274-.162.11.079Z" transform="translate(-14.5 -20.433)" fill="#383739"/>
|
||||
<path id="path191" d="M17.634,18.335v.195h.152v.086h.149v-.157H17.8v-.124Z" transform="translate(-13.792 -18.225)" fill="#383739"/>
|
||||
<path id="path193" d="M18.611,19.053v.195h.152v.086h.149v-.157h-.133v-.124Z" transform="translate(-14.321 -18.636)" fill="#383739"/>
|
||||
<path id="path195" d="M11.41,18.335v.195h-.152v.086h-.149v-.157h.133v-.124Z" transform="translate(-10.259 -18.225)" fill="#383739"/>
|
||||
<path id="path197" d="M17.634,24.6V24.4h.152v-.086h.149v.157H17.8V24.6Z" transform="translate(-13.792 -21.647)" fill="#383739"/>
|
||||
<path id="path199" d="M11.41,24.6V24.4h-.152v-.086h-.149v.157h.133V24.6Z" transform="translate(-10.259 -21.647)" fill="#383739"/>
|
||||
<path id="path201" d="M18.611,23.879v-.195h.152V23.6h.149v.157h-.133v.124Z" transform="translate(-14.321 -21.236)" fill="#383739"/>
|
||||
<path id="path203" d="M10.433,19.053v.195h-.152v.086h-.149v-.157h.133v-.124Z" transform="translate(-9.73 -18.636)" fill="#383739"/>
|
||||
<path id="path205" d="M10.433,23.879v-.195h-.152V23.6h-.149v.157h.133v.124Z" transform="translate(-9.73 -21.236)" fill="#383739"/>
|
||||
<path id="path207" d="M15.62,18.184l-.116-.105-.114.1.1.09-.128.116h.19l.068-.062.068.062h.19l-.128-.116.1-.09-.114-.1-.116.105Z" transform="translate(-12.561 -18.079)" fill="#383739"/>
|
||||
<path id="path209" d="M14.394,18.184l-.116-.105-.114.1.1.09-.128.116h.19l.068-.062.068.062h.19l-.128-.116.1-.09-.114-.1-.116.105Z" transform="translate(-11.898 -18.079)" fill="#383739"/>
|
||||
<path id="path211" d="M13.169,18.184l.116-.105.114.1-.1.09.128.116h-.19l-.068-.062-.068.062h-.19l.128-.116-.1-.09.114-.1.116.105Z" transform="translate(-11.234 -18.079)" fill="#383739"/>
|
||||
<path id="path213" d="M15.62,24.717l-.116.105-.114-.1.1-.09-.128-.116h.19l.068.062.068-.062h.19l-.128.116.1.09-.114.1-.116-.105Z" transform="translate(-12.561 -21.762)" fill="#383739"/>
|
||||
<path id="path215" d="M14.394,24.717l-.116.105-.114-.1.1-.09-.128-.116h.19l.068.062.068-.062h.19l-.128.116.1.09-.114.1-.116-.105Z" transform="translate(-11.898 -21.762)" fill="#383739"/>
|
||||
<path id="path217" d="M13.169,24.717l.116.105.114-.1-.1-.09.128-.116h-.19l-.068.062-.068-.062h-.19l.128.116-.1.09.114.1.116-.105Z" transform="translate(-11.234 -21.762)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g261" transform="translate(4.264 9.075)">
|
||||
<path id="path221" d="M9.816,21.482v.1l-.26-.154-.113.082-.1-.011L9.3,21.444l.1-.073L9.3,21.3l.042-.055.1-.011.113.082.26-.154v.1l-.186.11Z" transform="translate(-9.3 -19.861)" fill="#00843d"/>
|
||||
<path id="path223" d="M9.816,20.387v.1l-.26-.154-.113.082-.1-.011L9.3,20.349l.1-.073L9.3,20.2l.042-.055.1-.011.113.082.26-.154v.1l-.186.11Z" transform="translate(-9.3 -19.235)" fill="#00843d"/>
|
||||
<path id="path225" d="M9.816,22.357v-.1l-.26.154-.113-.082-.1.011-.042.055.1.073-.1.073.042.055.1.011.113-.082.26.154v-.1l-.186-.11Z" transform="translate(-9.3 -20.488)" fill="#00843d"/>
|
||||
<path id="path227" d="M18.975,21.482v.1l.26-.154.113.082.1-.011.042-.055-.1-.073.1-.073-.042-.055-.1-.011-.113.082-.26-.154v.1l.186.11Z" transform="translate(-14.539 -19.861)" fill="#00843d"/>
|
||||
<path id="path229" d="M18.975,20.387v.1l.26-.154.113.082.1-.011.042-.055-.1-.073.1-.073-.042-.055-.1-.011-.113.082-.26-.154v.1l.186.11Z" transform="translate(-14.539 -19.235)" fill="#00843d"/>
|
||||
<path id="path231" d="M18.975,22.357v-.1l.26.154.113-.082.1.011.042.055-.1.073.1.073-.042.055-.1.011-.113-.082-.26.154v-.1l.186-.11Z" transform="translate(-14.539 -20.488)" fill="#00843d"/>
|
||||
<path id="path233" d="M17.805,18.368v.124h.133v.128H17.82v-.086h-.152v-.166Z" transform="translate(-13.831 -18.264)" fill="#00843d"/>
|
||||
<path id="path235" d="M18.782,19.086v.124h.133v.128H18.8v-.086h-.152v-.166Z" transform="translate(-14.36 -18.675)" fill="#00843d"/>
|
||||
<path id="path237" d="M11.275,18.368v.124h-.133v.128h.119v-.086h.152v-.166Z" transform="translate(-10.298 -18.264)" fill="#00843d"/>
|
||||
<path id="path239" d="M17.805,24.6v-.124h.133V24.35H17.82v.086h-.152V24.6Z" transform="translate(-13.831 -21.686)" fill="#00843d"/>
|
||||
<path id="path241" d="M11.275,24.6v-.124h-.133V24.35h.119v.086h.152V24.6Z" transform="translate(-10.297 -21.686)" fill="#00843d"/>
|
||||
<path id="path243" d="M18.782,23.884V23.76h.133v-.128H18.8v.086h-.152v.166Z" transform="translate(-14.36 -21.275)" fill="#00843d"/>
|
||||
<path id="path245" d="M10.3,19.086v.124h-.133v.128h.119v-.086h.152v-.166Z" transform="translate(-9.769 -18.675)" fill="#00843d"/>
|
||||
<path id="path247" d="M10.3,23.884V23.76h-.133v-.128h.119v.086h.152v.166Z" transform="translate(-9.769 -21.275)" fill="#00843d"/>
|
||||
<path id="path249" d="M15.548,18.124l.116.105.116-.105.091.079-.1.09.112.1h-.146l-.075-.068-.075.068h-.146l.112-.1-.1-.09.091-.079Z" transform="translate(-12.627 -18.124)" fill="#00843d"/>
|
||||
<path id="path251" d="M14.323,18.124l.116.105.116-.105.091.079-.1.09.112.1h-.146l-.075-.068-.075.068h-.146l.112-.1-.1-.09Z" transform="translate(-11.963 -18.124)" fill="#00843d"/>
|
||||
<path id="path253" d="M13.33,18.124l-.116.105-.116-.105-.091.079.1.09-.112.1h.146l.075-.068.075.068h.146l-.112-.1.1-.09Z" transform="translate(-11.3 -18.124)" fill="#00843d"/>
|
||||
<path id="path255" d="M15.548,24.822l.116-.105.116.105.091-.079-.1-.09.112-.1h-.146l-.075.068-.075-.068h-.146l.112.1-.1.09.091.079Z" transform="translate(-12.627 -21.801)" fill="#00843d"/>
|
||||
<path id="path257" d="M14.323,24.822l.116-.105.116.105.091-.079-.1-.09.112-.1h-.146l-.075.068-.075-.068h-.146l.112.1-.1.09Z" transform="translate(-11.963 -21.801)" fill="#00843d"/>
|
||||
<path id="path259" d="M13.33,24.822l-.116-.105-.116.105-.091-.079.1-.09-.112-.1h.146l.075.068.075-.068h.146l-.112.1.1.09Z" transform="translate(-11.3 -21.801)" fill="#00843d"/>
|
||||
</g>
|
||||
<path id="path263" d="M10.872,20.929v.307H13.9v-.307h.448V19.064H13.9v-.307H10.872v.307h-.448v1.865Z" transform="translate(-5.645 -9.412)" fill="#383739"/>
|
||||
<path id="path265" d="M10.907,18.789V19.1H10.46v1.837h.448v.307H13.9v-.307h.448V19.1H13.9v-.307H10.907Zm.193.118h2.608v.3l.108.074h.406v1.476h-.408l-.106.072v.3H11.1v-.3l-.108-.074h-.408V19.278h.406l.11-.074v-.3Z" transform="translate(-5.664 -9.43)" fill="#ffc72c"/>
|
||||
<path id="path267" d="M11.282,19.1v.272l.393-.272Zm2.183,0,.393.272V19.1Zm-2.7.37v.254l.37-.254h-.37Zm3.234,0,.372.256v-.256Zm.372,1.19L14,20.916h.372Zm-3.606,0v.256h.37Zm.514.354v.27h.391Zm2.576,0-.391.27h.391Z" transform="translate(-5.831 -9.607)" fill="#d22630"/>
|
||||
<path id="path269" d="M13.439,19.1l.934.644v.9l-.934.644H11.7l-.934-.644v-.9L11.7,19.1Z" transform="translate(-5.83 -9.607)" fill="#00843d"/>
|
||||
<path id="path271" d="M11.125,20.8l-.107-.116.1-.109-.1-.109.1-.109-.1-.109.1-.109-.1-.109.1-.109-.1-.109.107-.116h3.162l.107.116-.1.109.1.109-.1.109.1.109-.1.109.1.109-.1.109.1.109-.107.116ZM13.3,19.294l-.125-.1-.117.094-.117-.094-.117.094-.117-.094-.117.094-.117-.094-.117.094-.117-.094-.125.1V21.2l.125.1.117-.094.117.094.117-.094.117.094.117-.094.117.094.117-.094.117.094.125-.1Z" transform="translate(-5.966 -9.661)" fill="#383739"/>
|
||||
<g id="g283" transform="translate(5.072 9.551)">
|
||||
<path id="path273" d="M15.19,19.325l-.109-.088-.109.088v1.892l.109.088.109-.088Z" transform="translate(-13.179 -19.237)" fill="#ffc72c"/>
|
||||
<path id="path275" d="M14.17,19.325l-.109-.088-.109.088v1.892l.109.088.109-.088Z" transform="translate(-12.626 -19.237)" fill="#ffc72c"/>
|
||||
<path id="path277" d="M11.156,22.64l-.094-.1.094-.1H14.3l.094.1-.094.1Z" transform="translate(-11.062 -21.067)" fill="#ffc72c"/>
|
||||
<path id="path279" d="M14.3,21.415l.094.1-.094.1H11.156l-.094-.1.094-.1Z" transform="translate(-11.062 -20.483)" fill="#ffc72c"/>
|
||||
<path id="path281" d="M14.3,20.6l.094-.1-.094-.1H11.156l-.094.1.094.1Z" transform="translate(-11.062 -19.9)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="g295" transform="translate(5.072 9.551)">
|
||||
<path id="path285" d="M15.7,19.325l-.109-.088-.109.088v1.892l.109.088.109-.088Z" transform="translate(-13.455 -19.237)" fill="#d22630"/>
|
||||
<path id="path287" d="M13.66,19.325l-.109-.088-.109.088v1.892l.109.088.109-.088Z" transform="translate(-12.35 -19.237)" fill="#d22630"/>
|
||||
<path id="path289" d="M11.156,22.13l-.094-.1.094-.1H14.3l.094.1-.094.1Z" transform="translate(-11.062 -20.775)" fill="#d22630"/>
|
||||
<path id="path291" d="M11.156,21.109l-.094-.1.094-.1H14.3l.094.1-.094.1Z" transform="translate(-11.062 -20.191)" fill="#d22630"/>
|
||||
<path id="path293" d="M14.68,21.218l-.109.088-.109-.088V19.325l.109-.088.109.088Z" transform="translate(-12.903 -19.237)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path297" d="M14.179,19.529H12.058v.157h-.271v1.5h.271v.157h2.129V21.19h.271v-1.5h-.271v-.157Z" transform="translate(-6.383 -9.854)" fill="#383739"/>
|
||||
<path id="path299" d="M12.091,19.564v.157h-.272V21.2h.272v.157h.223l-.444-.347V19.911l.444-.347Zm1.876,0,.442.347v1.095l-.442.347h.223V21.2h.27V19.721h-.27v-.157h-.223Z" transform="translate(-6.4 -9.873)" fill="#d22630"/>
|
||||
<g id="g327" transform="translate(5.485 9.691)">
|
||||
<path id="path301" d="M12.417,19.564l-.453.354V21l.453.354h1.6L14.472,21V19.918l-.451-.354Zm.023.06H14l.412.323v1.024L14,21.291H12.439l-.41-.321V19.946Z" transform="translate(-11.963 -19.564)" fill="#00843d"/>
|
||||
<path id="path303" d="M13.548,22.889l.07.028.013.076-.088.072.127.115h-.123L13.46,23.1l-.088.079H13.25l.127-.115-.088-.072.013-.076.07-.028.088.066,0,0Z" transform="translate(-12.66 -21.466)" fill="#00843d"/>
|
||||
<path id="path305" d="M14.54,22.889l.07.028.013.076-.088.072.127.115h-.123l-.088-.079-.088.079h-.123l.127-.115-.088-.072.013-.076.07-.028.088.066,0,0Z" transform="translate(-13.197 -21.466)" fill="#00843d"/>
|
||||
<path id="path307" d="M15.355,22.889l-.07.028-.013.076.088.072-.127.115h.123l.088-.079.088.079h.123l-.127-.115.088-.072-.013-.076-.07-.028-.088.066,0,0Z" transform="translate(-13.734 -21.466)" fill="#00843d"/>
|
||||
<path id="path309" d="M13.548,20.029l.07-.028.013-.076-.088-.072.127-.115h-.123l-.088.079-.088-.079H13.25l.127.115-.088.072L13.3,20l.07.028.088-.066,0,0Z" transform="translate(-12.66 -19.664)" fill="#00843d"/>
|
||||
<path id="path311" d="M14.54,20.029l.07-.028.013-.076-.088-.072.127-.115h-.123l-.088.079-.088-.079h-.123l.127.115-.088.072.013.076.07.028.088-.066,0,0Z" transform="translate(-13.197 -19.664)" fill="#00843d"/>
|
||||
<path id="path313" d="M15.355,20.029,15.285,20l-.013-.076.088-.072-.127-.115h.123l.088.079.088-.079h.123l-.127.115.088.072L15.6,20l-.07.028-.088-.066,0,0Z" transform="translate(-13.734 -19.664)" fill="#00843d"/>
|
||||
<path id="path315" d="M16.911,20.583l-.07.054.07.054v.089L16.8,20.7l-.077.065-.082-.01-.029-.05.071-.066-.071-.066.029-.05.082-.01.077.065.107-.082Z" transform="translate(-14.483 -20.096)" fill="#00843d"/>
|
||||
<path id="path317" d="M16.911,21.409l-.07.054.07.054v.089l-.107-.082-.077.065-.082-.01-.029-.05.071-.066-.071-.066.029-.05.082-.01.077.065.107-.082Z" transform="translate(-14.483 -20.569)" fill="#00843d"/>
|
||||
<path id="path319" d="M16.911,22.343l-.07-.054.07-.054v-.089l-.107.082-.077-.065-.082.01-.029.05.071.066-.071.066.029.05.082.01.077-.065.107.082Z" transform="translate(-14.483 -21.041)" fill="#00843d"/>
|
||||
<path id="path321" d="M12.141,20.583l.07.054-.07.054v.089l.107-.082.077.065.082-.01.029-.05-.071-.066.071-.066-.029-.05-.082-.01-.077.065-.107-.082Z" transform="translate(-12.059 -20.096)" fill="#00843d"/>
|
||||
<path id="path323" d="M12.141,21.409l.07.054-.07.054v.089l.107-.082.077.065.082-.01.029-.05-.071-.066.071-.066-.029-.05-.082-.01-.077.065-.107-.082Z" transform="translate(-12.059 -20.569)" fill="#00843d"/>
|
||||
<path id="path325" d="M12.141,22.343l.07-.054-.07-.054v-.089l.107.082.077-.065.082.01.029.05-.071.066.071.066-.029.05-.082.01-.077-.065-.107.082Z" transform="translate(-12.059 -21.041)" fill="#00843d"/>
|
||||
</g>
|
||||
<path id="path329" d="M12.541,19.737l-.395.309.1.079.074-.062.1.012.038.065-.068.063.068.063-.038.065-.1.011-.074-.06-.106.083v.028l.106.083.074-.06.1.011.038.065-.068.063.068.063-.038.067-.1.011-.074-.062-.106.083v.03l.106.083.074-.062.1.012.038.065-.068.063.068.063-.038.065-.1.012-.074-.062-.1.078.395.309h.087l.127-.115-.081-.067.015-.092.085-.033.087.063.085-.063.085.033.017.092-.083.067.123.109.123-.109-.083-.067.015-.092.087-.033.085.063.087-.063.085.033.015.092-.081.067.121.111.123-.111-.081-.067L13.6,21.1l.087-.033.085.063.085-.063.087.033.015.092-.081.067.127.115h.085l.395-.309-.1-.078-.072.062-.1-.012-.04-.065.068-.063-.068-.063.04-.065.1-.012.072.062.106-.083v-.03l-.106-.083-.072.062-.1-.011-.04-.067.068-.063-.068-.063.04-.065.1-.011.072.06.106-.081v-.032l-.106-.081-.072.06-.1-.011-.04-.065.068-.063-.068-.063.04-.065.1-.012.072.062.1-.078-.4-.31H14l-.127.115.081.067-.015.092-.087.035-.085-.063-.085.063L13.6,20.01l-.015-.092.081-.067-.121-.109-.123.109.081.067-.015.092-.085.035-.087-.063-.085.063-.087-.035-.015-.092.083-.067-.123-.109-.123.109.083.067-.017.092-.085.035-.085-.063-.087.063-.085-.035-.015-.092.081-.067-.128-.115Zm-.4.784v.072l.045-.037Z" transform="translate(-6.574 -9.972)" fill="#d22630"/>
|
||||
<g id="g355" transform="translate(5.566 9.765)">
|
||||
<path id="path331" d="M13.632,23.432l-.066.058h.13Z" transform="translate(-12.912 -21.851)" fill="#fff"/>
|
||||
<path id="path333" d="M14.623,23.432l-.064.058h.13Z" transform="translate(-13.45 -21.851)" fill="#fff"/>
|
||||
<path id="path335" d="M15.613,23.432l-.066.058h.132Z" transform="translate(-13.985 -21.851)" fill="#fff"/>
|
||||
<path id="path337" d="M13.562,19.737l.068.06.066-.06Z" transform="translate(-12.91 -19.737)" fill="#fff"/>
|
||||
<path id="path339" d="M14.554,19.737l.066.06.068-.06Z" transform="translate(-13.448 -19.737)" fill="#fff"/>
|
||||
<path id="path341" d="M15.547,19.737l.066.06.066-.06Z" transform="translate(-13.985 -19.737)" fill="#fff"/>
|
||||
<path id="path343" d="M17.2,20.746l-.045.035.045.034Z" transform="translate(-14.858 -20.314)" fill="#fff"/>
|
||||
<path id="path345" d="M17.2,21.57l-.045.035.045.035Z" transform="translate(-14.858 -20.786)" fill="#fff"/>
|
||||
<path id="path347" d="M17.2,22.4l-.045.035.045.035Z" transform="translate(-14.858 -21.259)" fill="#fff"/>
|
||||
<path id="path349" d="M12.14,20.742v.072l.045-.035Z" transform="translate(-12.14 -20.312)" fill="#fff"/>
|
||||
<path id="path351" d="M12.14,21.57v.072l.045-.037Z" transform="translate(-12.14 -20.786)" fill="#fff"/>
|
||||
<path id="path353" d="M12.14,22.394v.072l.045-.035Z" transform="translate(-12.14 -21.257)" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g375" transform="translate(6.162 10.202)">
|
||||
<path id="path357" d="M14.406,21.024V20.9h-.137V20.76h-.5V20.9h-.137v.126H13.44v.236h.189v.126h.137v.138h.5v-.138h.137V21.26H14.6v-.236Z" transform="translate(-13.44 -20.76)" fill="#383739"/>
|
||||
<path id="path359" d="M14.028,20.793v.143l-.217.115v.1h-.338v-.1h.189v-.126H13.8v-.138Z" transform="translate(-13.458 -20.779)" fill="#ffc72c"/>
|
||||
<path id="path361" d="M14.716,22.032v-.143l.217-.115v-.1h.338v.1h-.189v.126h-.137v.138Z" transform="translate(-14.131 -21.281)" fill="#ffc72c"/>
|
||||
<path id="path363" d="M14.933,21.154v-.1l-.217-.115v-.143h.229v.138h.137v.126h.189v.1Z" transform="translate(-14.131 -20.779)" fill="#fff"/>
|
||||
<path id="path365" d="M13.473,21.671h.338v.1l.217.115v.143H13.8v-.138h-.137v-.126h-.189Z" transform="translate(-13.458 -21.281)" fill="#fff"/>
|
||||
<path id="path367" d="M14.244,21.671v.1l.2.107v-.2Z" transform="translate(-13.875 -21.281)" fill="#d22630"/>
|
||||
<path id="path369" d="M14.445,21.163l-.2.107v.1h.2Z" transform="translate(-13.875 -20.99)" fill="#00843d"/>
|
||||
<path id="path371" d="M14.918,21.366v-.1l-.2-.107v.2Z" transform="translate(-14.131 -20.99)" fill="#d22630"/>
|
||||
<path id="path373" d="M14.716,21.873l.2-.107v-.1h-.2Z" transform="translate(-14.131 -21.281)" fill="#00843d"/>
|
||||
</g>
|
||||
<path id="path378" d="M9.759,27.064v.39h-.4v.354h-.4v1.007h.4v.354h.4v.39h1.448l.255.143-.122.069h-.516l-.045-.047h.468l-.132-.124h-.669l.3.295h.628l.214-.12.214.12h.628l.3-.295h-.669l-.132.124H12.4l-.045.047h-.516l-.122-.069.255-.143h1.448v-.39h.4v-.354h.4V27.808h-.4v-.354h-.4v-.39H11.974l-.255-.143.122-.069h.516l.045.047h-.468l.132.124h.669l-.3-.295H11.8l-.214.12-.214-.12h-.628l-.3.295h.669l.132-.124h-.468l.045-.047h.516l.122.069-.255.143Z" transform="translate(-4.85 -13.972)" fill="#d22630"/>
|
||||
<path id="path380" d="M11.986,29.562h1.437v-.39h.4v-.354h.4V27.84h-.4v-.353h-.4V27.1H11.986l-.6-.337h-.618l-.274.266h.627l.1-.1h-.467l.072-.076h.529l.676.381h1.235v.39h.4v.354h.4v.7h-.4v.354h-.4v.39H12.037l-.676.379h-.529l-.072-.074h.467l-.1-.1H10.5l.274.266h.618Zm-.81-.139H9.941v-.39h-.4v-.354h-.4v-.7h.4v-.354h.4v-.39h1.235l.678-.381h.527l.072.076h-.465l.1.1h.627l-.274-.266h-.618l-.6.337H9.792v.39h-.4v.353h-.4v.978h.4v.354h.4v.39h1.437l.6.337h.618l.274-.266H12.09l-.1.1h.465l-.072.074h-.527Z" transform="translate(-4.868 -13.99)" fill="#ffc72c"/>
|
||||
<path id="path382" d="M11.8,27.346l-.427.24H10.152v.39h-.4v.354h-.4V29h.4v.354h.4v.39h1.224l.427.238.427-.238h1.224v-.39h.4V29h.4v-.67h-.4v-.354h-.4v-.39H12.23Zm0,.1.4.226h1.16v.39h.4v.353h.4v.5h-.4v.354h-.4v.39h-1.16l-.4.226-.4-.226h-1.16v-.39h-.4v-.354h-.4v-.5h.4V28.06h.4v-.39H11.4Z" transform="translate(-5.064 -14.325)" fill="none"/>
|
||||
<path id="path384" d="M13.473,29.409v.39H12.325l-.4.223-.4-.223H10.382v-.39h-.4v-.354h-.4v-.474h.4v-.354h.4v-.39H11.53l.4-.223.4.223h1.148v.39h.4v.354h.4v.474h-.4v.354Z" transform="translate(-5.188 -14.479)" fill="#00843d"/>
|
||||
<g id="g402" transform="translate(5.344 13.508)">
|
||||
<path id="path386" d="M11.656,31.47v.377h.631l-.631-.391Z" transform="translate(-11.656 -30.185)" fill="#383739"/>
|
||||
<path id="path388" d="M11.656,28.861v-.377h.631l-.631.391Z" transform="translate(-11.656 -28.484)" fill="#383739"/>
|
||||
<path id="path390" d="M17,31.47v.377h-.631L17,31.457Z" transform="translate(-14.207 -30.185)" fill="#383739"/>
|
||||
<path id="path392" d="M17,28.861v-.377h-.631l.631.391Z" transform="translate(-14.207 -28.484)" fill="#383739"/>
|
||||
<path id="path394" d="M11.69,31.519l.565.35H11.69Z" transform="translate(-11.675 -30.22)" fill="#d22630"/>
|
||||
<path id="path396" d="M11.69,28.867l.565-.35H11.69Z" transform="translate(-11.675 -28.503)" fill="#d22630"/>
|
||||
<path id="path398" d="M17.042,31.519l-.565.35h.565Z" transform="translate(-14.267 -30.22)" fill="#d22630"/>
|
||||
<path id="path400" d="M17.042,28.867l-.565-.35h.565Z" transform="translate(-14.267 -28.503)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="carp4y" transform="translate(5.174 13.846)">
|
||||
<path id="path404" d="M12.26,29.664v-.193h-.07l-.338-.2,0,0-.334.195h-.07v.193h-.159v.207h.159v.193h.07l.338.2.338-.2h.07v-.193H12.5v-.207Z" transform="translate(-11.285 -29.274)" fill="#383739"/>
|
||||
<path id="path406" d="M12.157,29.313l.309.18h-.618Zm.309.773-.309.18-.309-.18Z" transform="translate(-11.589 -29.296)" fill="#d22630"/>
|
||||
<path id="path408" d="M12.577,30.218V30.4h-.385v-.178Z" transform="translate(-11.776 -29.814)" fill="#d22630"/>
|
||||
<g id="g422" transform="translate(0.015 0.211)">
|
||||
<path id="path410" d="M12.924,30.669v.178h-.385v-.178Z" transform="translate(-11.979 -30.283)" fill="#ffc72c"/>
|
||||
<path id="path412" d="M12.05,30.669v.178h-.385v-.178Z" transform="translate(-11.506 -30.283)" fill="#ffc72c"/>
|
||||
<path id="path414" d="M13.451,30.218V30.4h-.385v-.178Z" transform="translate(-12.264 -30.026)" fill="#ffc72c"/>
|
||||
<path id="path416" d="M11.7,30.218V30.4h-.385v-.178Z" transform="translate(-11.318 -30.026)" fill="#ffc72c"/>
|
||||
<path id="path418" d="M12.924,29.768v.178h-.385v-.178Z" transform="translate(-11.979 -29.768)" fill="#ffc72c"/>
|
||||
<path id="path420" d="M12.05,29.768v.178h-.385v-.178Z" transform="translate(-11.506 -29.768)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="g438" transform="translate(0.121 0.251)">
|
||||
<path id="path424" d="M11.723,30.311v.1H11.55v-.1Z" transform="translate(-11.55 -30.118)" fill="#383739"/>
|
||||
<path id="path426" d="M12.069,29.861v.1H11.9v-.1Z" transform="translate(-11.737 -29.861)" fill="#383739"/>
|
||||
<path id="path428" d="M12.943,29.861v.1H12.77v-.1Z" transform="translate(-12.21 -29.861)" fill="#383739"/>
|
||||
<path id="path430" d="M12.6,30.311v.1h-.173v-.1Z" transform="translate(-12.023 -30.118)" fill="#383739"/>
|
||||
<path id="path432" d="M13.471,30.311v.1H13.3v-.1Z" transform="translate(-12.496 -30.118)" fill="#383739"/>
|
||||
<path id="path434" d="M12.943,30.762v.1H12.77v-.1Z" transform="translate(-12.21 -30.376)" fill="#383739"/>
|
||||
<path id="path436" d="M12.069,30.762v.1H11.9v-.1Z" transform="translate(-11.737 -30.376)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g454" transform="translate(0.138 0.266)">
|
||||
<path id="path440" d="M11.726,30.347h-.141v.069h.141Z" transform="translate(-11.585 -30.154)" fill="#fff"/>
|
||||
<path id="path442" d="M12.072,29.9h-.141v.069h.141Z" transform="translate(-11.773 -29.896)" fill="#fff"/>
|
||||
<path id="path444" d="M12.946,29.9h-.141v.069h.141Z" transform="translate(-12.246 -29.896)" fill="#fff"/>
|
||||
<path id="path446" d="M12.6,30.347h-.141v.069H12.6Z" transform="translate(-12.058 -30.154)" fill="#fff"/>
|
||||
<path id="path448" d="M13.474,30.347h-.141v.069h.141Z" transform="translate(-12.532 -30.154)" fill="#fff"/>
|
||||
<path id="path450" d="M12.946,30.8h-.141v.069h.141Z" transform="translate(-12.246 -30.412)" fill="#fff"/>
|
||||
<path id="path452" d="M12.072,30.8h-.141v.069h.141Z" transform="translate(-11.773 -30.412)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="use457" transform="translate(8.306 14.833) rotate(180)">
|
||||
<path id="path404-2" data-name="path404" d="M.976.6V.79H.905l-.338.2,0,0L.229.79H.159V.6H0V.39H.159V.2h.07L.567,0,.905.2h.07V.39h.242V.6Z" fill="#383739"/>
|
||||
<path id="path406-2" data-name="path406" d="M.309.953.618.773H0ZM.618.18.309,0,0,.18Z" transform="translate(0.258 0.017)" fill="#d22630"/>
|
||||
<path id="path408-2" data-name="path408" d="M.385.178V0H0V.178Z" transform="translate(0.416 0.404)" fill="#d22630"/>
|
||||
<g id="g422-2" data-name="g422" transform="translate(0.015 0.211)">
|
||||
<path id="path410-2" data-name="path410" d="M.385.178V0H0V.178Z" transform="translate(0.56)" fill="#ffc72c"/>
|
||||
<path id="path412-2" data-name="path412" d="M.385.178V0H0V.178Z" transform="translate(0.159)" fill="#ffc72c"/>
|
||||
<path id="path414-2" data-name="path414" d="M.385.178V0H0V.178Z" transform="translate(0.801 0.193)" fill="#ffc72c"/>
|
||||
<path id="path416-2" data-name="path416" d="M.385.178V0H0V.178Z" transform="translate(0 0.193)" fill="#ffc72c"/>
|
||||
<path id="path418-2" data-name="path418" d="M.385.178V0H0V.178Z" transform="translate(0.56 0.385)" fill="#ffc72c"/>
|
||||
<path id="path420-2" data-name="path420" d="M.385.178V0H0V.178Z" transform="translate(0.159 0.385)" fill="#ffc72c"/>
|
||||
</g>
|
||||
<g id="g438-2" data-name="g438" transform="translate(0.121 0.251)">
|
||||
<path id="path424-2" data-name="path424" d="M.173.1V0H0V.1Z" transform="translate(0 0.193)" fill="#383739"/>
|
||||
<path id="path426-2" data-name="path426" d="M.173.1V0H0V.1Z" transform="translate(0.159 0.385)" fill="#383739"/>
|
||||
<path id="path428-2" data-name="path428" d="M.173.1V0H0V.1Z" transform="translate(0.56 0.385)" fill="#383739"/>
|
||||
<path id="path430-2" data-name="path430" d="M.173.1V0H0V.1Z" transform="translate(0.401 0.193)" fill="#383739"/>
|
||||
<path id="path432-2" data-name="path432" d="M.173.1V0H0V.1Z" transform="translate(0.801 0.193)" fill="#383739"/>
|
||||
<path id="path434-2" data-name="path434" d="M.173.1V0H0V.1Z" transform="translate(0.56)" fill="#383739"/>
|
||||
<path id="path436-2" data-name="path436" d="M.173.1V0H0V.1Z" transform="translate(0.159)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g454-2" data-name="g454" transform="translate(0.138 0.266)">
|
||||
<path id="path440-2" data-name="path440" d="M.141.069H0V0H.141Z" transform="translate(0 0.193)" fill="#fff"/>
|
||||
<path id="path442-2" data-name="path442" d="M.141.069H0V0H.141Z" transform="translate(0.159 0.385)" fill="#fff"/>
|
||||
<path id="path444-2" data-name="path444" d="M.141.069H0V0H.141Z" transform="translate(0.56 0.385)" fill="#fff"/>
|
||||
<path id="path446-2" data-name="path446" d="M.141.069H0V0H.141Z" transform="translate(0.401 0.193)" fill="#fff"/>
|
||||
<path id="path448-2" data-name="path448" d="M.141.069H0V0H.141Z" transform="translate(0.801 0.193)" fill="#fff"/>
|
||||
<path id="path450-2" data-name="path450" d="M.141.069H0V0H.141Z" transform="translate(0.56)" fill="#fff"/>
|
||||
<path id="path452-2" data-name="path452" d="M.141.069H0V0H.141Z" transform="translate(0.159)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="carp4r" transform="translate(6.131 13.317)">
|
||||
<path id="path459" d="M14.389,28.635v.193h-.07l-.338.2,0,0-.334-.195h-.07v-.193h-.2v-.207h.2v-.193h.07l.338-.2.338.2h.07v.193h.2v.207Z" transform="translate(-13.372 -28.038)" fill="#383739"/>
|
||||
<path id="path461" d="M14.335,29.03l.309-.18h-.618Zm.309-.773-.309-.18-.309.18Z" transform="translate(-13.726 -28.06)" fill="#ffc72c"/>
|
||||
<g id="g477" transform="translate(0.015 0.211)">
|
||||
<path id="path463" d="M15.1,28.71v-.178h-.385v.178Z" transform="translate(-14.115 -28.532)" fill="#d22630"/>
|
||||
<path id="path465" d="M14.228,28.71v-.178h-.385v.178Z" transform="translate(-13.642 -28.532)" fill="#d22630"/>
|
||||
<path id="path467" d="M15.539,29.161v-.178h-.385v.178Z" transform="translate(-14.352 -28.789)" fill="#d22630"/>
|
||||
<path id="path469" d="M14.665,29.161v-.178h-.385v.178Z" transform="translate(-13.879 -28.789)" fill="#d22630"/>
|
||||
<path id="path471" d="M13.791,29.161v-.178h-.385v.178Z" transform="translate(-13.406 -28.789)" fill="#d22630"/>
|
||||
<path id="path473" d="M15.1,29.611v-.178h-.385v.178Z" transform="translate(-14.115 -29.047)" fill="#d22630"/>
|
||||
<path id="path475" d="M14.228,29.611v-.178h-.385v.178Z" transform="translate(-13.642 -29.047)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="g493" transform="translate(0.121 0.251)">
|
||||
<path id="path479" d="M14.247,28.624v.1h-.173v-.1Z" transform="translate(-13.874 -28.624)" fill="#383739"/>
|
||||
<path id="path481" d="M15.121,28.624v.1h-.173v-.1Z" transform="translate(-14.347 -28.624)" fill="#383739"/>
|
||||
<path id="path483" d="M13.81,29.075v.1h-.173v-.1Z" transform="translate(-13.637 -28.882)" fill="#383739"/>
|
||||
<path id="path485" d="M14.684,29.075v.1h-.173v-.1Z" transform="translate(-14.11 -28.882)" fill="#383739"/>
|
||||
<path id="path487" d="M15.558,29.075v.1h-.173v-.1Z" transform="translate(-14.584 -28.882)" fill="#383739"/>
|
||||
<path id="path489" d="M14.247,29.525v.1h-.173v-.1Z" transform="translate(-13.874 -29.14)" fill="#383739"/>
|
||||
<path id="path491" d="M15.121,29.525v.1h-.173v-.1Z" transform="translate(-14.347 -29.14)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g509" transform="translate(0.138 0.266)">
|
||||
<path id="path495" d="M14.25,28.66H14.11v.069h.141Z" transform="translate(-13.909 -28.66)" fill="#fff"/>
|
||||
<path id="path497" d="M15.124,28.66h-.141v.069h.141Z" transform="translate(-14.382 -28.66)" fill="#fff"/>
|
||||
<path id="path499" d="M13.813,29.11h-.141v.069h.141Z" transform="translate(-13.673 -28.918)" fill="#fff"/>
|
||||
<path id="path501" d="M14.687,29.11h-.141v.069h.141Z" transform="translate(-14.146 -28.918)" fill="#fff"/>
|
||||
<path id="path503" d="M15.561,29.11h-.141v.069h.141Z" transform="translate(-14.619 -28.918)" fill="#fff"/>
|
||||
<path id="path505" d="M14.25,29.561H14.11v.069h.141Z" transform="translate(-13.909 -29.175)" fill="#fff"/>
|
||||
<path id="path507" d="M15.124,29.561h-.141v.069h.141Z" transform="translate(-14.382 -29.175)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="use512" transform="translate(6.131 14.375)">
|
||||
<path id="path459-2" data-name="path459" d="M14.389,28.635v.193h-.07l-.338.2,0,0-.334-.195h-.07v-.193h-.2v-.207h.2v-.193h.07l.338-.2.338.2h.07v.193h.2v.207Z" transform="translate(-13.372 -28.038)" fill="#383739"/>
|
||||
<path id="path461-2" data-name="path461" d="M14.335,29.03l.309-.18h-.618Zm.309-.773-.309-.18-.309.18Z" transform="translate(-13.726 -28.06)" fill="#ffc72c"/>
|
||||
<g id="g477-2" data-name="g477" transform="translate(0.015 0.211)">
|
||||
<path id="path463-2" data-name="path463" d="M15.1,28.71v-.178h-.385v.178Z" transform="translate(-14.115 -28.532)" fill="#d22630"/>
|
||||
<path id="path465-2" data-name="path465" d="M14.228,28.71v-.178h-.385v.178Z" transform="translate(-13.642 -28.532)" fill="#d22630"/>
|
||||
<path id="path467-2" data-name="path467" d="M15.539,29.161v-.178h-.385v.178Z" transform="translate(-14.352 -28.789)" fill="#d22630"/>
|
||||
<path id="path469-2" data-name="path469" d="M14.665,29.161v-.178h-.385v.178Z" transform="translate(-13.879 -28.789)" fill="#d22630"/>
|
||||
<path id="path471-2" data-name="path471" d="M13.791,29.161v-.178h-.385v.178Z" transform="translate(-13.406 -28.789)" fill="#d22630"/>
|
||||
<path id="path473-2" data-name="path473" d="M15.1,29.611v-.178h-.385v.178Z" transform="translate(-14.115 -29.047)" fill="#d22630"/>
|
||||
<path id="path475-2" data-name="path475" d="M14.228,29.611v-.178h-.385v.178Z" transform="translate(-13.642 -29.047)" fill="#d22630"/>
|
||||
</g>
|
||||
<g id="g493-2" data-name="g493" transform="translate(0.121 0.251)">
|
||||
<path id="path479-2" data-name="path479" d="M14.247,28.624v.1h-.173v-.1Z" transform="translate(-13.874 -28.624)" fill="#383739"/>
|
||||
<path id="path481-2" data-name="path481" d="M15.121,28.624v.1h-.173v-.1Z" transform="translate(-14.347 -28.624)" fill="#383739"/>
|
||||
<path id="path483-2" data-name="path483" d="M13.81,29.075v.1h-.173v-.1Z" transform="translate(-13.637 -28.882)" fill="#383739"/>
|
||||
<path id="path485-2" data-name="path485" d="M14.684,29.075v.1h-.173v-.1Z" transform="translate(-14.11 -28.882)" fill="#383739"/>
|
||||
<path id="path487-2" data-name="path487" d="M15.558,29.075v.1h-.173v-.1Z" transform="translate(-14.584 -28.882)" fill="#383739"/>
|
||||
<path id="path489-2" data-name="path489" d="M14.247,29.525v.1h-.173v-.1Z" transform="translate(-13.874 -29.14)" fill="#383739"/>
|
||||
<path id="path491-2" data-name="path491" d="M15.121,29.525v.1h-.173v-.1Z" transform="translate(-14.347 -29.14)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g509-2" data-name="g509" transform="translate(0.138 0.266)">
|
||||
<path id="path495-2" data-name="path495" d="M14.25,28.66H14.11v.069h.141Z" transform="translate(-13.909 -28.66)" fill="#fff"/>
|
||||
<path id="path497-2" data-name="path497" d="M15.124,28.66h-.141v.069h.141Z" transform="translate(-14.382 -28.66)" fill="#fff"/>
|
||||
<path id="path499-2" data-name="path499" d="M13.813,29.11h-.141v.069h.141Z" transform="translate(-13.673 -28.918)" fill="#fff"/>
|
||||
<path id="path501-2" data-name="path501" d="M14.687,29.11h-.141v.069h.141Z" transform="translate(-14.146 -28.918)" fill="#fff"/>
|
||||
<path id="path503-2" data-name="path503" d="M15.561,29.11h-.141v.069h.141Z" transform="translate(-14.619 -28.918)" fill="#fff"/>
|
||||
<path id="path505-2" data-name="path505" d="M14.25,29.561H14.11v.069h.141Z" transform="translate(-13.909 -29.175)" fill="#fff"/>
|
||||
<path id="path507-2" data-name="path507" d="M15.124,29.561h-.141v.069h.141Z" transform="translate(-14.382 -29.175)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path515" d="M9.93,36.276l1.5-.753H12.8l1.5.753v1.241l-1.5.753H11.43l-1.5-.753Z" transform="translate(-5.377 -19.003)" fill="#383739"/>
|
||||
<path id="path517" d="M11.454,35.556,9.965,36.3v1.223l1.488.747h1.366l1.488-.747V36.3l-1.488-.747Zm.026.1h1.313l1.409.707v1.105l-1.409.707H11.479l-1.409-.707V36.364Z" transform="translate(-5.396 -19.022)" fill="#00843d"/>
|
||||
<path id="path519" d="M12.286,37.061v1.253h.645l1.4-.7v-.537H12.271V35.822h-.645l-1.4.7v.537Z" transform="translate(-5.539 -19.174)" fill="#ffc72c"/>
|
||||
<path id="path521" d="M12.271,37.061v1.253h-.645l-1.4-.7v-.537h2.058V35.822h.645l1.4.7v.537Z" transform="translate(-5.539 -19.174)" fill="#fff"/>
|
||||
<path id="path523" d="M13.722,38.337v-.362l-.125.074-.125-.074v.362h-.39l.263-.18V37.9l-.4-.238h-.281v-1h.281l.4-.238v-.257l-.263-.18h.39v.362l.125-.074.125.074v-.362h.39l-.263.18v.257l.4.238h.281v1H14.25l-.4.238v.257l.263.18Z" transform="translate(-6.856 -19.268)" fill="#383739"/>
|
||||
<path id="path525" d="M13.756,36.022V36.4l-.134-.079v.106l.614.365h.2v.388h.1V36.7h-.27l-.412-.243V36.18l.232-.159ZM12.7,37.189v.48h.268l.414.245v.272l-.232.159h.329V37.97l.132.079V37.94l-.614-.361h-.2v-.39Z" transform="translate(-6.875 -19.288)" fill="#ffc72c"/>
|
||||
<path id="path527" d="M13.146,36.022l.232.159v.272l-.414.243H12.7v.48h.1v-.388h.2l.614-.363v-.108l-.132.079v-.374h-.329Zm1.292,1.167v.39h-.2l-.614.361v.109l.134-.079v.374h.329l-.232-.159v-.272l.412-.245h.27v-.479h-.1Z" transform="translate(-6.875 -19.288)" fill="#fff"/>
|
||||
<path id="path529" d="M12.938,38.116h.19l.617.365.617-.365h.19v-.763h-.19l-.617-.365-.617.365h-.19Z" transform="translate(-7.006 -19.841)" fill="#d22630"/>
|
||||
<path id="path531" d="M14.334,38.285h.132v-.058h-.1v-.106h.212v.27h-.2v.184h-.418V38.31h.184v.106H14.07v.053h.193v-.1l-.783-.445h-.132v.058h.1v.106h-.212v-.27h.2v-.184h.418V37.9h-.184v-.106h.071v-.053H13.55v.1Zm-.071-.445v-.1H14.07v.053h.071V37.9h-.184v-.264h.418v.184h.2v.27h-.212V37.98h.1v-.058h-.132l-.783.445v.1h.193v-.053h-.071V38.31h.184v.264h-.418v-.184h-.2v-.27h.212v.106h-.1v.058h.132Z" transform="translate(-7.167 -20.21)" fill="#383739"/>
|
||||
<path id="path533" d="M14.3,38.379V38.5h-.223v-.081h.071v-.077H13.99v.236h.388V38.4h.2v-.241H14.4v.077h.1v.087h-.151l-.794-.452v-.123h.223v.081h-.071V37.9h.153v-.236h-.388v.184h-.2v.241h.181v-.077h-.1v-.087H13.5Zm.052-.452H14.5v.087h-.1v.077h.181V37.85h-.2v-.184H13.99V37.9h.153v-.077h-.071v-.081H14.3v.123l-.794.452H13.35v-.087h.1v-.077h-.181V38.4h.2v.184h.388v-.236h-.153v.077h.071V38.5h-.223v-.123Z" transform="translate(-7.185 -20.229)" fill="#fff"/>
|
||||
<g id="g559" transform="translate(4.931 16.92)">
|
||||
<path id="path535" d="M17.88,38.88v.391H17.7v-.138h-.18v.138h-.178V38.88h.178v.138h.18V38.88Z" transform="translate(-14.323 -37.843)" fill="#383739"/>
|
||||
<path id="path537" d="M16.487,40.094v.391h-.178v-.138h-.18v.138H15.95v-.391h.178v.138h.18v-.138Z" transform="translate(-13.568 -38.538)" fill="#383739"/>
|
||||
<path id="path539" d="M17.88,38.063v-.391H17.7v.138h-.18v-.138h-.178v.391h.178v-.138h.18v.138Z" transform="translate(-14.323 -37.152)" fill="#383739"/>
|
||||
<path id="path541" d="M10.885,38.88v.391h.178v-.138h.18v.138h.178V38.88h-.178v.138h-.18V38.88Z" transform="translate(-10.826 -37.843)" fill="#383739"/>
|
||||
<path id="path543" d="M10.885,38.063v-.391h.178v.138h.18v-.138h.178v.391h-.178v-.138h-.18v.138Z" transform="translate(-10.826 -37.152)" fill="#383739"/>
|
||||
<path id="path545" d="M16.487,36.849v-.391h-.178V36.6h-.18v-.138H15.95v.391h.178v-.138h.18v.138Z" transform="translate(-13.568 -36.457)" fill="#383739"/>
|
||||
<path id="path547" d="M12.278,40.094v.391h.178v-.138h.18v.138h.178v-.391h-.178v.138h-.18v-.138Z" transform="translate(-11.58 -38.538)" fill="#383739"/>
|
||||
<path id="path549" d="M12.278,36.849v-.391h.178V36.6h.18v-.138h.178v.391h-.178v-.138h-.18v.138Z" transform="translate(-11.58 -36.457)" fill="#383739"/>
|
||||
<path id="path551" d="M17.354,36.731v.3h.592Z" transform="translate(-14.328 -36.614)" fill="#383739"/>
|
||||
<path id="path553" d="M11.347,40.338v-.3h-.592Z" transform="translate(-10.755 -38.507)" fill="#383739"/>
|
||||
<path id="path555" d="M11.347,36.731v.3h-.592Z" transform="translate(-10.755 -36.614)" fill="#383739"/>
|
||||
<path id="path557" d="M17.354,40.338v-.3h.592Z" transform="translate(-14.328 -38.507)" fill="#383739"/>
|
||||
</g>
|
||||
<g id="g577" transform="translate(5.006 16.934)">
|
||||
<path id="path561" d="M17.735,39.138v.138h.148v-.363h-.148v.138h-.21v-.138h-.148v.363h.148v-.138Z" transform="translate(-14.416 -37.877)" fill="#d22630"/>
|
||||
<path id="path563" d="M16.342,40.352v.138h.148v-.363h-.148v.138h-.21v-.138h-.148v.363h.148v-.138Z" transform="translate(-13.661 -38.571)" fill="#d22630"/>
|
||||
<path id="path565" d="M17.735,37.843v-.138h.148v.363h-.148V37.93h-.21v.138h-.148v-.363h.148v.138Z" transform="translate(-14.416 -37.185)" fill="#d22630"/>
|
||||
<path id="path567" d="M11.067,39.138v.138h-.148v-.363h.148v.138h.21v-.138h.148v.363h-.148v-.138Z" transform="translate(-10.919 -37.877)" fill="#d22630"/>
|
||||
<path id="path569" d="M11.067,37.843v-.138h-.148v.363h.148V37.93h.21v.138h.148v-.363h-.148v.138Z" transform="translate(-10.919 -37.185)" fill="#d22630"/>
|
||||
<path id="path571" d="M16.342,36.629v-.138h.148v.363h-.148v-.138h-.21v.138h-.148v-.363h.148v.138Z" transform="translate(-13.661 -36.491)" fill="#d22630"/>
|
||||
<path id="path573" d="M12.46,40.352v.138h-.148v-.363h.148v.138h.21v-.138h.148v.363H12.67v-.138Z" transform="translate(-11.673 -38.571)" fill="#d22630"/>
|
||||
<path id="path575" d="M12.46,36.629v-.138h-.148v.363h.148v-.138h.21v.138h.148v-.363H12.67v.138Z" transform="translate(-11.673 -36.491)" fill="#d22630"/>
|
||||
</g>
|
||||
<path id="path579" d="M13.869,36.788v.259h.516Zm-2.981,1.407.516.259v-.259h-.516Z" transform="translate(-5.896 -19.727)" fill="#ffc72c"/>
|
||||
<path id="path581" d="M11.4,36.788l-.516.259H11.4Zm2.465,1.407v.259l.516-.259Z" transform="translate(-5.896 -19.727)" fill="#fff"/>
|
||||
<path id="path1986" d="M16.345,40.877c-.028.113-.125.2-.148.317a.576.576,0,0,1-.057-.36c.023-.1.109-.164.119-.263a.287.287,0,0,1,.086.306Zm.024.475a.789.789,0,0,1-.314.233.263.263,0,0,0-.072-.228.243.243,0,0,1-.041-.268.6.6,0,0,0,.09.138.391.391,0,0,1,.1.217.427.427,0,0,0,.123-.169.554.554,0,0,1,.226-.212.74.74,0,0,1-.11.29Zm-.449.305a.5.5,0,0,1,.029.173,1.255,1.255,0,0,1,.186-.136,1.449,1.449,0,0,0,.254-.192.382.382,0,0,1-.171.292c-.111.078-.245.119-.354.2a.586.586,0,0,0-.064-.3.266.266,0,0,1,.069-.268.706.706,0,0,0,.051.228Zm-.249.371a1.014,1.014,0,0,1-.131.225,1.757,1.757,0,0,0,.328-.15,2.52,2.52,0,0,0,.379-.19.531.531,0,0,1-.405.37,3.472,3.472,0,0,0-.432.085,1.061,1.061,0,0,1,.109-.323,1.152,1.152,0,0,0,.116-.218.249.249,0,0,1,.036.2Zm-.433.3a.521.521,0,0,1-.16.162c.167.01.3-.089.464-.093.1,0,.2.027.3.018a.964.964,0,0,1-.4.161c-.193.023-.37-.022-.583,0a.756.756,0,0,0,.211-.247.416.416,0,0,1,.313-.22A1.3,1.3,0,0,0,15.239,42.33Zm-.593.259a5.877,5.877,0,0,0,.877.11,1.5,1.5,0,0,1-.987.016,1.172,1.172,0,0,0-.455-.085,1.083,1.083,0,0,0-.708.35l-.105-.079a1.7,1.7,0,0,1,1.378-.313Z" transform="translate(-7.184 -21.891)" fill="#ffc72c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_24" data-name="Rectangle 24" transform="translate(1710 397)" fill="none" stroke="#b4b4b4" stroke-width="0.2">
|
||||
<rect width="30" height="20" stroke="none"/>
|
||||
<rect x="0.1" y="0.1" width="29.8" height="19.8" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 78 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="20.001" viewBox="0 0 23 20.001">
|
||||
<g id="Telegram" transform="translate(-1174 -275.999)">
|
||||
<path id="telegram-2" data-name="telegram" d="M.4,10.709l5.625,2.785a.725.725,0,0,0,.682-.022l5.006-2.892-3.03,2.668a.713.713,0,0,0-.242.535v6.5a.721.721,0,0,0,1.294.429L12.164,17.5l6.013,3.4a.72.72,0,0,0,1.06-.48l3.75-18.57a.717.717,0,0,0-.966-.806L.457,9.4a.713.713,0,0,0-.059,1.3ZM21.319,2.854l-3.3,16.319-5.7-3.224a.723.723,0,0,0-.931.191L9.876,18.147V14.105l8.195-7.215a.716.716,0,0,0-.838-1.152L6.318,12.045,2.492,10.15Z" transform="translate(1173.999 275.002)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 650 B |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="10.004" height="10.832" viewBox="0 0 10.004 10.832">
|
||||
<g id="arrow-right" transform="translate(1 1.414)">
|
||||
<line id="Line_55" data-name="Line 55" x1="8" transform="translate(0.004 4.004)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<path id="Path_1" data-name="Path 1" d="M16,5,12,9l4,4" transform="translate(-12 -5)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 527 B |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="10.004" height="10.832" viewBox="0 0 10.004 10.832">
|
||||
<g id="arrow-right" transform="translate(-4 -3.586)">
|
||||
<line id="Line_55" data-name="Line 55" x2="8" transform="translate(5 9.004)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<path id="Path_1" data-name="Path 1" d="M12,5l4,4-4,4" transform="translate(-2.998)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 524 B |
|
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#fff" d="M300.188,246L484.14,62.04c5.06-5.064,7.852-11.82,7.86-19.024c0-7.208-2.792-13.972-7.86-19.028L468.02,7.872
|
||||
c-5.068-5.076-11.824-7.856-19.036-7.856c-7.2,0-13.956,2.78-19.024,7.856L246.008,191.82L62.048,7.872
|
||||
c-5.06-5.076-11.82-7.856-19.028-7.856c-7.2,0-13.96,2.78-19.02,7.856L7.872,23.988c-10.496,10.496-10.496,27.568,0,38.052
|
||||
L191.828,246L7.872,429.952c-5.064,5.072-7.852,11.828-7.852,19.032c0,7.204,2.788,13.96,7.852,19.028l16.124,16.116
|
||||
c5.06,5.072,11.824,7.856,19.02,7.856c7.208,0,13.968-2.784,19.028-7.856l183.96-183.952l183.952,183.952
|
||||
c5.068,5.072,11.824,7.856,19.024,7.856h0.008c7.204,0,13.96-2.784,19.028-7.856l16.12-16.116
|
||||
c5.06-5.064,7.852-11.824,7.852-19.028c0-7.204-2.792-13.96-7.852-19.028L300.188,246z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="15" viewBox="0 0 21 15">
|
||||
<g id="eye" transform="translate(-0.5 -3.5)">
|
||||
<path id="Path_6489" data-name="Path 6489" d="M1,11S4.636,4,11,4s10,7,10,7-3.636,7-10,7S1,11,1,11Z" fill="none" stroke="" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
<ellipse id="Ellipse_12" data-name="Ellipse 12" cx="4.859" cy="4.791" rx="4.859" ry="4.791" transform="translate(6.141 6.209)" fill="none" stroke="" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 557 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg id="facebook" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g id="Group_199" data-name="Group 199">
|
||||
<path id="Path_99" data-name="Path 99" d="M17.656,0H2.344A2.346,2.346,0,0,0,0,2.344V17.656A2.346,2.346,0,0,0,2.344,20H17.656A2.346,2.346,0,0,0,20,17.656V2.344A2.346,2.346,0,0,0,17.656,0Zm.781,17.656a.782.782,0,0,1-.781.781H13.2V12.07h2.414l.4-2.422H13.2V7.969A1.152,1.152,0,0,1,14.375,6.8h1.6V4.375h-1.6a3.593,3.593,0,0,0-3.593,3.6V9.648H8.438V12.07h2.345v6.367H2.344a.782.782,0,0,1-.781-.781V2.344a.782.782,0,0,1,.781-.781H17.656a.782.782,0,0,1,.781.781Z" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 630 B |
|
|
@ -0,0 +1,32 @@
|
|||
<svg id="header_2" data-name="header 2" xmlns="http://www.w3.org/2000/svg" width="116" height="60" viewBox="0 0 116 60">
|
||||
<g id="Group_101" data-name="Group 101" transform="translate(18.146 0.368)">
|
||||
<g id="Group_198" data-name="Group 198" transform="translate(0 0)">
|
||||
<path id="Path_85" data-name="Path 85" d="M108.458,42.238l3.5,28.609H110.3a7.537,7.537,0,0,1-7.369-6.5L100.537,45.4H97.774V37.222h2.763a3.118,3.118,0,0,0,3.132-3.158V22.918a3.118,3.118,0,0,0-3.132-3.158H97.59a12.2,12.2,0,0,0-3.869-7.431L92.8,11.4h7.737a11.528,11.528,0,0,1,11.421,11.518V34.064a11.128,11.128,0,0,1-3.5,8.174" transform="translate(-92.8 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_103" data-name="Group 103" transform="translate(39.79 0.368)">
|
||||
<g id="Group_197" data-name="Group 197" transform="translate(0 0)">
|
||||
<path id="Path_86" data-name="Path 86" d="M104.5,11.4h0V70.847h8.474v-50.9A8.608,8.608,0,0,0,104.5,11.4" transform="translate(-104.5 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_105" data-name="Group 105" transform="translate(0 0.368)">
|
||||
<g id="Group_196" data-name="Group 196" transform="translate(0 0)">
|
||||
<path id="Path_87" data-name="Path 87" d="M101.237,14.372C99.4,12.329,96.816,11.4,93.5,11.4s-5.895.929-7.737,2.972C83.921,16.23,83,19.016,83,22.546V59.885a11.537,11.537,0,0,0,2.763,8.174c1.842,2.043,4.421,2.972,7.737,2.972s5.895-.929,7.737-2.972C103.08,66.2,104,63.415,104,59.885V22.546c0-3.53-.921-6.316-2.763-8.174M95.9,60.071c0,2.6-1.105,2.972-2.395,2.972-1.105,0-2.395-.372-2.395-2.972v-37.9c0-2.6,1.105-2.972,2.395-2.972,1.105,0,2.395.372,2.395,2.972Z" transform="translate(-83 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_107" data-name="Group 107" transform="translate(90.946 0.368)">
|
||||
<g id="Group_193" data-name="Group 193" transform="translate(0 0)">
|
||||
<path id="Path_88" data-name="Path 88" d="M157.154,11.4v8.546H150.89v50.9a8.54,8.54,0,0,1-3.132-.557,8.765,8.765,0,0,1-4.79-4.83h0a1.124,1.124,0,0,1-.184-.743c-.184-.557-.184-1.115-.368-1.672v-43.1H132.1a9.8,9.8,0,0,1,2.579-5.573c1.842-2.044,4.421-2.972,7.737-2.972Z" transform="translate(-132.1 -11.4)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_109" data-name="Group 109" transform="translate(70.498 0)">
|
||||
<g id="Group_194" data-name="Group 194" transform="translate(0 0)">
|
||||
<path id="Path_89" data-name="Path 89" d="M141.448,22.346V45.567L132.237,11.2H121V60.429h8.106V26.99l9.579,35.482a11.082,11.082,0,0,0,10.869,8.36V22.346Z" transform="translate(-121 -11.2)" fill="#00822c"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_111" data-name="Group 111" transform="translate(50.576 0.368)">
|
||||
<g id="Group_195" data-name="Group 195" transform="translate(0 0)">
|
||||
<path id="Path_90" data-name="Path 90" d="M118.774,62.86V45.212h5.895V37.037h-5.895V19.2H127.8V11.4H110.3V62.117a8.389,8.389,0,0,0,7.921,8.546h19.9V62.675H118.774v.186Z" transform="translate(-110.3 -11.4)" fill="#ee4037"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
<svg id="instagram" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path id="Path_96" data-name="Path 96" d="M20.4,5.88a7.307,7.307,0,0,0-.465-2.426A5.124,5.124,0,0,0,17.006.527,7.329,7.329,0,0,0,14.579.063C13.508.012,13.168,0,10.452,0S7.4.012,6.33.059A7.313,7.313,0,0,0,3.9.524,4.881,4.881,0,0,0,2.129,1.68,4.924,4.924,0,0,0,.976,3.45,7.326,7.326,0,0,0,.511,5.876C.46,6.947.449,7.287.449,10s.012,3.055.059,4.122A7.306,7.306,0,0,0,.972,16.55,5.123,5.123,0,0,0,3.9,19.477a7.331,7.331,0,0,0,2.427.465c1.067.047,1.407.059,4.123.059s3.056-.012,4.123-.059A7.309,7.309,0,0,0,17,19.477a5.116,5.116,0,0,0,2.927-2.926,7.331,7.331,0,0,0,.465-2.426c.047-1.067.059-1.407.059-4.122s0-3.055-.051-4.122Zm-1.8,8.166a5.481,5.481,0,0,1-.344,1.856,3.318,3.318,0,0,1-1.9,1.9,5.5,5.5,0,0,1-1.856.344c-1.055.047-1.372.059-4.041.059s-2.989-.012-4.041-.059A5.481,5.481,0,0,1,4.56,17.8a3.078,3.078,0,0,1-1.149-.746,3.109,3.109,0,0,1-.746-1.149,5.5,5.5,0,0,1-.344-1.856c-.047-1.055-.059-1.371-.059-4.04s.012-2.989.059-4.04a5.478,5.478,0,0,1,.344-1.856,3.04,3.04,0,0,1,.75-1.149,3.105,3.105,0,0,1,1.149-.746A5.507,5.507,0,0,1,6.42,1.875c1.055-.047,1.372-.059,4.041-.059s2.989.012,4.041.059a5.484,5.484,0,0,1,1.856.344,3.076,3.076,0,0,1,1.149.746,3.109,3.109,0,0,1,.746,1.149A5.5,5.5,0,0,1,18.6,5.97c.047,1.055.059,1.371.059,4.04s-.012,2.981-.059,4.036Zm0,0" transform="translate(-0.449 0)" fill="#fff"/>
|
||||
<path id="Path_97" data-name="Path 97" d="M130.089,124.5a5.138,5.138,0,1,0,5.14,5.138A5.14,5.14,0,0,0,130.089,124.5Zm0,8.47a3.333,3.333,0,1,1,3.334-3.333A3.334,3.334,0,0,1,130.089,132.97Zm0,0" transform="translate(-120.085 -119.636)" fill="#fff"/>
|
||||
<path id="Path_98" data-name="Path 98" d="M364.849,89.8a1.2,1.2,0,1,1-1.2-1.2A1.2,1.2,0,0,1,364.849,89.8Zm0,0" transform="translate(-348.303 -85.14)" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g id="linkedin" transform="translate(-1250 -294)">
|
||||
<path id="linkedin-2" data-name="linkedin" d="M6.251,16.523H3.516V7.7H6.251ZM6.523,4.883a1.6,1.6,0,1,0-1.6,1.6,1.6,1.6,0,0,0,1.6-1.6Zm9.961,6.784c0-2.37-.5-4.128-3.269-4.128A2.838,2.838,0,0,0,10.628,8.9h0V7.7H7.969v8.828h2.656V12.14c0-1.148.292-2.26,1.715-2.26,1.4,0,1.449,1.313,1.449,2.333v4.31h2.7ZM20,17.656V2.344A2.346,2.346,0,0,0,17.657,0H2.344A2.346,2.346,0,0,0,0,2.344V17.656A2.346,2.346,0,0,0,2.344,20H17.657A2.346,2.346,0,0,0,20,17.656ZM17.657,1.563a.782.782,0,0,1,.781.781V17.656a.782.782,0,0,1-.781.781H2.344a.782.782,0,0,1-.781-.781V2.344a.782.782,0,0,1,.781-.781Zm0,0" transform="translate(1250 294)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 784 B |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="20" viewBox="0 0 13 20">
|
||||
<g id="odnoklassniki" transform="translate(-4.5)">
|
||||
<path id="Path_6490" data-name="Path 6490" d="M4.692,12.748c-.531,1,.072,1.484,1.448,2.3A9.837,9.837,0,0,0,9.965,16.1L5.873,19.887c-1.191,1.1.726,2.858,1.916,1.784l3.222-2.988c1.233,1.141,2.416,2.234,3.222,2.992,1.191,1.078,3.107-.668,1.929-1.784-.088-.081-4.366-4.026-4.105-3.784a9.863,9.863,0,0,0,3.8-1.051h0c1.376-.824,1.98-1.3,1.456-2.308-.316-.57-1.169-1.047-2.3-.223A7.206,7.206,0,0,1,11,13.654,7.2,7.2,0,0,1,7,12.525c-1.135-.828-1.991-.347-2.3.223Z" transform="translate(0 -2.013)" fill="#fff"/>
|
||||
<path id="Path_6491" data-name="Path 6491" d="M11.2,10.118a5.308,5.308,0,0,0,5.516-5.053A5.309,5.309,0,0,0,11.2,0,5.31,5.31,0,0,0,5.68,5.065,5.308,5.308,0,0,0,11.2,10.118Zm0-7.553a2.612,2.612,0,0,1,2.709,2.5A2.611,2.611,0,0,1,11.2,7.553,2.611,2.611,0,0,1,8.488,5.065a2.611,2.611,0,0,1,2.709-2.5Z" transform="translate(-0.197)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1003 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="20" viewBox="0 0 24 20">
|
||||
<g id="twitter" transform="translate(-1130 -276)">
|
||||
<path id="twitter_1_" data-name="twitter (1)" d="M24,2.671c-1.51.071-1.477.065-1.647.08l.894-2.6s-2.791,1.045-3.5,1.232a5.521,5.521,0,0,0-6.595-.54,4.68,4.68,0,0,0-2.2,4.782A12.131,12.131,0,0,1,3.066,1.1L2.4.292l-.495.925A5.679,5.679,0,0,0,1.324,4.98a5.471,5.471,0,0,0,.515,1.469l-.568-.224L1.2,7.191a5.225,5.225,0,0,0,.859,3.065,5.433,5.433,0,0,0,.669.84l-.294-.046L2.8,12.157a5.355,5.355,0,0,0,2.717,3.206c-1.267.548-2.291.9-3.974,1.46L0,17.339l1.422.792a14.762,14.762,0,0,0,4.351,1.612c4.208.672,8.945.125,12.135-2.8,2.686-2.463,3.568-5.967,3.385-9.614a2.308,2.308,0,0,1,.418-1.483c.6-.81,2.286-3.169,2.29-3.175ZM20.586,4.988a3.758,3.758,0,0,0-.7,2.414c.185,3.678-.8,6.53-2.922,8.478-2.481,2.275-6.482,3.167-10.977,2.45a10.74,10.74,0,0,1-2.352-.712A36.917,36.917,0,0,0,7.9,15.835l2.456-1.184-2.712-.177A3.822,3.822,0,0,1,4.6,12.708a4.785,4.785,0,0,0,1.032-.175L8.216,11.8l-2.608-.65a3.889,3.889,0,0,1-2.372-1.68,4.087,4.087,0,0,1-.514-1.155,6.4,6.4,0,0,0,1.058.172l2.414.243L4.281,7.21A4.139,4.139,0,0,1,2.755,2.891a13.85,13.85,0,0,0,9.859,4.321A8.622,8.622,0,0,0,12.47,6a3.31,3.31,0,0,1,1.419-3.935,4.141,4.141,0,0,1,4.955.418A1.243,1.243,0,0,0,20,2.794,9.59,9.59,0,0,0,20.95,2.5l-.606,1.763h.774l-.532.725Zm0,0" transform="translate(1130 276)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="20" viewBox="0 0 32 20">
|
||||
<g id="vk" transform="translate(-1078 -276)">
|
||||
<path id="vk-2" data-name="vk" d="M16.193,24.5c4.629,0,2.979-2.931,3.336-3.773-.005-.629-.011-1.235.011-1.6a7.105,7.105,0,0,1,2.415,1.823c2.207,2.227,2.771,3.553,4.553,3.553h3.281a2.166,2.166,0,0,0,1.852-.792,2.071,2.071,0,0,0,.237-1.917c-.732-2.3-5-6.268-5.267-6.687.04-.077.1-.18.137-.233h0c.843-1.113,4.059-5.932,4.532-7.86a.025.025,0,0,0,0-.011,1.922,1.922,0,0,0-.221-1.773A2.038,2.038,0,0,0,29.328,4.5H26.047a2.416,2.416,0,0,0-2.353,1.563c-.705,1.793-2.687,5.481-4.172,6.787-.045-1.849-.015-3.261.009-4.311.048-2.047.2-4.039-1.921-4.039H12.452c-1.331,0-2.6,1.453-1.225,3.179,1.205,1.512.433,2.355.693,6.549A24.535,24.535,0,0,1,7.829,6.456,2.4,2.4,0,0,0,5.407,4.5H2.125A1.873,1.873,0,0,0,0,6.441C0,9.169,6.039,24.5,16.193,24.5ZM5.407,6.5c.289,0,.319,0,.533.609,1.305,3.844,4.233,9.532,6.372,9.532,1.607,0,1.607-1.647,1.607-2.267V9.44A4.716,4.716,0,0,0,12.844,6.5l4.677.005c0,.023-.027,5.46.013,6.777,0,1.871,1.485,2.943,3.8.6a28.5,28.5,0,0,0,4.207-7.057c.1-.24.187-.321.5-.321h3.295s0,.008,0,.012c-.3,1.4-3.261,5.861-4.252,7.247-.016.021-.031.044-.045.067a1.992,1.992,0,0,0,.06,2.605h0c.077.093.279.312.572.616.912.941,4.04,4.16,4.317,5.44-.184.029-.384.008-3.484.015-.66,0-1.176-.987-3.145-2.973C21.592,17.805,20.443,17.1,19.4,17.1c-2.032,0-1.884,1.649-1.865,3.644.007,2.163-.007,1.479.008,1.615a4.019,4.019,0,0,1-1.345.14C7.733,22.5,2.224,9.072,2.012,6.505c.073-.007,1.083,0,3.395,0Z" transform="translate(1078 271.5)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="20" viewBox="0 0 26 20">
|
||||
<g id="youtube" transform="translate(0.001)">
|
||||
<path id="Path_6492" data-name="Path 6492" d="M198.366,109.848l-5.834-3.192a1.071,1.071,0,0,0-1.586.94v6.329a1.07,1.07,0,0,0,1.579.944l5.834-3.137a1.071,1.071,0,0,0,.007-1.884Zm-5.872,3.281V108.4l4.36,2.386Zm0,0" transform="translate(-181.316 -101.03)" fill="#fff"/>
|
||||
<path id="Path_6493" data-name="Path 6493" d="M25.808,4.72V4.708A6.1,6.1,0,0,0,24.66,1.644a4.2,4.2,0,0,0-2.8-1.334L21.729.294l-.045,0C18.247.035,13.056,0,13,0h-.009c-.052,0-5.243.035-8.711.289l-.046,0L4.116.309A4.1,4.1,0,0,0,1.33,1.684,6.391,6.391,0,0,0,.193,4.693l0,.027C.183,4.809,0,6.914,0,9.028V11c0,2.114.183,4.219.191,4.308v.013a6.039,6.039,0,0,0,1.142,3.027,4.285,4.285,0,0,0,2.9,1.316c.106.012.2.023.259.034l.06.008c1.985.192,8.207.286,8.471.29h.016c.052,0,5.243-.035,8.68-.289l.045,0,.146-.017a4,4,0,0,0,2.762-1.342A6.39,6.39,0,0,0,25.8,15.338l0-.027C25.815,15.223,26,13.118,26,11V9.028c0-2.114-.184-4.219-.191-4.308ZM24.475,11c0,1.956-.168,3.971-.184,4.156a4.963,4.963,0,0,1-.747,2.144,2.488,2.488,0,0,1-1.8.847l-.162.019c-3.325.244-8.32.282-8.55.283-.258,0-6.389-.1-8.314-.281-.1-.016-.205-.029-.317-.042A2.826,2.826,0,0,1,2.454,17.3l-.014-.015a4.5,4.5,0,0,1-.733-2.122c-.012-.14-.185-2.178-.185-4.162V9.028c0-1.954.168-3.967.184-4.156a4.861,4.861,0,0,1,.747-2.144,2.611,2.611,0,0,1,1.836-.883l.124-.015c3.373-.245,8.4-.282,8.584-.283s5.21.038,8.553.283l.134.016a2.708,2.708,0,0,1,1.866.858l.006.007a4.576,4.576,0,0,1,.733,2.153c.012.132.185,2.175.185,4.163Zm0,0" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20.414" height="20.414" viewBox="0 0 20.414 20.414">
|
||||
<g id="Иконка_Поиск_" data-name="Иконка (Поиск)" transform="translate(1 1)">
|
||||
<circle id="Ellipse_1" data-name="Ellipse 1" cx="8" cy="8" r="8" fill="none" stroke="#242424" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
<line id="Line_1" data-name="Line 1" x1="4.35" y1="4.35" transform="translate(13.65 13.65)" fill="none" stroke="#242424" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 570 B |
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,75 @@
|
|||
// lazyload start
|
||||
// =============================================
|
||||
if (
|
||||
window.addEventListener &&
|
||||
window.requestAnimationFrame &&
|
||||
document.getElementsByClassName
|
||||
)
|
||||
window.addEventListener(
|
||||
"load",
|
||||
function () {
|
||||
let pItem = document.getElementsByClassName("progressive replace"),
|
||||
timer;
|
||||
window.addEventListener("scroll", scroller, false);
|
||||
window.addEventListener("resize", scroller, false);
|
||||
inView();
|
||||
function scroller(e) {
|
||||
timer =
|
||||
timer ||
|
||||
setTimeout(function () {
|
||||
timer = null;
|
||||
requestAnimationFrame(inView);
|
||||
}, 300);
|
||||
}
|
||||
function inView() {
|
||||
let wT = window.pageYOffset,
|
||||
wB = wT + window.innerHeight,
|
||||
cRect,
|
||||
pT,
|
||||
pB,
|
||||
p = 0;
|
||||
while (p < pItem.length) {
|
||||
cRect = pItem[p].getBoundingClientRect();
|
||||
pT = wT + cRect.top;
|
||||
pB = pT + cRect.height;
|
||||
|
||||
if (wT < pB && wB > pT) {
|
||||
loadFullImage(pItem[p]);
|
||||
pItem[p].classList.remove("replace");
|
||||
} else p++;
|
||||
}
|
||||
}
|
||||
function loadFullImage(item) {
|
||||
if (!item || !item.href) return;
|
||||
let img = new Image();
|
||||
if (item.dataset) {
|
||||
img.srcset = item.dataset.srcset || "";
|
||||
img.sizes = item.dataset.sizes || "";
|
||||
}
|
||||
img.src = item.href;
|
||||
img.className = "reveal";
|
||||
if (img.complete) addImg();
|
||||
else img.onload = addImg;
|
||||
function addImg() {
|
||||
item.addEventListener(
|
||||
"click",
|
||||
function (e) {
|
||||
e.preventDefault();
|
||||
},
|
||||
false
|
||||
);
|
||||
item.appendChild(img).addEventListener("animationend", function (e) {
|
||||
var pImg = item.querySelector && item.querySelector("img.preview");
|
||||
if (pImg) {
|
||||
e.target.alt = pImg.alt || "";
|
||||
item.removeChild(pImg);
|
||||
e.target.classList.remove("reveal");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
false
|
||||
);
|
||||
// lazyload end
|
||||
// =============================================
|
||||
|
|
@ -0,0 +1,151 @@
|
|||
function SetSlideNavigation(e) {
|
||||
var anchors = e.parentNode.childNodes;
|
||||
if (e.tagName == "SPAN") {
|
||||
anchors = e.parentNode.parentNode.childNodes;
|
||||
}
|
||||
anchors.forEach((t) => {
|
||||
if (t.tagName == "A") {
|
||||
t.classList.remove("active");
|
||||
}
|
||||
});
|
||||
if (e.tagName == "SPAN") {
|
||||
e.parentNode.classList.add("active");
|
||||
} else {
|
||||
e.classList.add("active");
|
||||
}
|
||||
}
|
||||
$(".swiper-wrapper").slick({
|
||||
slidesToShow: 1,
|
||||
slidesToScroll: 1,
|
||||
arrows: true,
|
||||
infinite: true,
|
||||
autoplay: true,
|
||||
speed: 500,
|
||||
prevArrow: $(".p3"),
|
||||
nextArrow: $(".n3"),
|
||||
});
|
||||
$(".newsSlider").slick({
|
||||
dots: false,
|
||||
infinite: true,
|
||||
autoplay: true,
|
||||
speed: 300,
|
||||
slidesToShow: 3,
|
||||
arrows: true,
|
||||
prevArrow: $(".p2"),
|
||||
nextArrow: $(".n2"),
|
||||
slidesToScroll: 1,
|
||||
responsive: [
|
||||
{
|
||||
breakpoint: 1024,
|
||||
settings: {
|
||||
slidesToShow: 2,
|
||||
slidesToScroll: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
// popUp start
|
||||
var popUp = document.getElementById("popUp");
|
||||
var popUpClose1 = document.getElementById("popUpClose1");
|
||||
var popUpClose2 = document.getElementById("popUpClose2");
|
||||
popUpClose1.onclick = function () {
|
||||
popUp.classList.remove("active");
|
||||
};
|
||||
popUpClose2.onclick = function () {
|
||||
popUp.classList.remove("active");
|
||||
};
|
||||
// popUp end
|
||||
$(".marquee").slick({
|
||||
speed: 8000,
|
||||
autoplay: true,
|
||||
autoplaySpeed: 0,
|
||||
centerMode: true,
|
||||
cssEase: "linear",
|
||||
slidesToShow: 1,
|
||||
slidesToScroll: 1,
|
||||
variableWidth: true,
|
||||
infinite: true,
|
||||
initialSlide: 1,
|
||||
arrows: false,
|
||||
buttons: false,
|
||||
});
|
||||
// lazyload start
|
||||
// =============================================
|
||||
if (
|
||||
window.addEventListener &&
|
||||
window.requestAnimationFrame &&
|
||||
document.getElementsByClassName
|
||||
)
|
||||
window.addEventListener(
|
||||
"load",
|
||||
function () {
|
||||
let pItem = document.getElementsByClassName("progressive replace"),
|
||||
timer;
|
||||
window.addEventListener("scroll", scroller, false);
|
||||
window.addEventListener("resize", scroller, false);
|
||||
inView();
|
||||
function scroller(e) {
|
||||
timer =
|
||||
timer ||
|
||||
setTimeout(function () {
|
||||
timer = null;
|
||||
requestAnimationFrame(inView);
|
||||
}, 300);
|
||||
}
|
||||
function inView() {
|
||||
let wT = window.pageYOffset,
|
||||
wB = wT + window.innerHeight,
|
||||
cRect,
|
||||
pT,
|
||||
pB,
|
||||
p = 0;
|
||||
while (p < pItem.length) {
|
||||
cRect = pItem[p].getBoundingClientRect();
|
||||
pT = wT + cRect.top;
|
||||
pB = pT + cRect.height;
|
||||
|
||||
if (wT < pB && wB > pT) {
|
||||
loadFullImage(pItem[p]);
|
||||
pItem[p].classList.remove("replace");
|
||||
} else p++;
|
||||
}
|
||||
}
|
||||
function loadFullImage(item) {
|
||||
if (!item || !item.href) return;
|
||||
let img = new Image();
|
||||
if (item.dataset) {
|
||||
img.srcset = item.dataset.srcset || "";
|
||||
img.sizes = item.dataset.sizes || "";
|
||||
}
|
||||
img.src = item.href;
|
||||
img.className = "reveal";
|
||||
if (img.complete) addImg();
|
||||
else img.onload = addImg;
|
||||
function addImg() {
|
||||
item.addEventListener(
|
||||
"click",
|
||||
function (e) {
|
||||
e.preventDefault();
|
||||
},
|
||||
false
|
||||
);
|
||||
item.appendChild(img).addEventListener(
|
||||
"animationend",
|
||||
function (e) {
|
||||
var pImg =
|
||||
item.querySelector &&
|
||||
item.querySelector("img.preview");
|
||||
if (pImg) {
|
||||
e.target.alt = pImg.alt || "";
|
||||
item.removeChild(pImg);
|
||||
e.target.classList.remove("reveal");
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
},
|
||||
false
|
||||
);
|
||||
// lazyload end
|
||||
// =============================================
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
var menu = document.getElementById("menu");
|
||||
|
||||
var menuBtn = document.getElementById("menuBtn");
|
||||
var closeMenu = document.getElementById("closeMenu");
|
||||
menuBtn.onclick = function () {
|
||||
menu.classList.add("showMenu");
|
||||
};
|
||||
closeMenu.onclick = function () {
|
||||
menu.classList.remove("showMenu");
|
||||
};
|
||||
|
||||
var searchModal = document.getElementById("searchModal");
|
||||
var searchBtn = document.getElementById("searchBtn");
|
||||
var searchClose = document.getElementById("searchClose");
|
||||
searchBtn.onclick = function () {
|
||||
searchModal.classList.add("active");
|
||||
};
|
||||
searchClose.onclick = function () {
|
||||
searchModal.classList.remove("active");
|
||||
};
|
||||
|
|
@ -0,0 +1,551 @@
|
|||
//! moment.js
|
||||
//! version : 2.17.1
|
||||
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
||||
//! license : MIT
|
||||
//! momentjs.com
|
||||
!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.moment=b()}(this,function(){"use strict";function a(){return od.apply(null,arguments)}
|
||||
// This is done to register the method called with moment()
|
||||
// without creating circular dependencies.
|
||||
function b(a){od=a}function c(a){return a instanceof Array||"[object Array]"===Object.prototype.toString.call(a)}function d(a){
|
||||
// IE8 will treat undefined and null as object if it wasn't for
|
||||
// input != null
|
||||
return null!=a&&"[object Object]"===Object.prototype.toString.call(a)}function e(a){var b;for(b in a)
|
||||
// even if its not own property I'd still call it non-empty
|
||||
return!1;return!0}function f(a){return"number"==typeof a||"[object Number]"===Object.prototype.toString.call(a)}function g(a){return a instanceof Date||"[object Date]"===Object.prototype.toString.call(a)}function h(a,b){var c,d=[];for(c=0;c<a.length;++c)d.push(b(a[c],c));return d}function i(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function j(a,b){for(var c in b)i(b,c)&&(a[c]=b[c]);return i(b,"toString")&&(a.toString=b.toString),i(b,"valueOf")&&(a.valueOf=b.valueOf),a}function k(a,b,c,d){return rb(a,b,c,d,!0).utc()}function l(){
|
||||
// We need to deep clone this object.
|
||||
return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null}}function m(a){return null==a._pf&&(a._pf=l()),a._pf}function n(a){if(null==a._isValid){var b=m(a),c=qd.call(b.parsedDateParts,function(a){return null!=a}),d=!isNaN(a._d.getTime())&&b.overflow<0&&!b.empty&&!b.invalidMonth&&!b.invalidWeekday&&!b.nullInput&&!b.invalidFormat&&!b.userInvalidated&&(!b.meridiem||b.meridiem&&c);if(a._strict&&(d=d&&0===b.charsLeftOver&&0===b.unusedTokens.length&&void 0===b.bigHour),null!=Object.isFrozen&&Object.isFrozen(a))return d;a._isValid=d}return a._isValid}function o(a){var b=k(NaN);return null!=a?j(m(b),a):m(b).userInvalidated=!0,b}function p(a){return void 0===a}function q(a,b){var c,d,e;if(p(b._isAMomentObject)||(a._isAMomentObject=b._isAMomentObject),p(b._i)||(a._i=b._i),p(b._f)||(a._f=b._f),p(b._l)||(a._l=b._l),p(b._strict)||(a._strict=b._strict),p(b._tzm)||(a._tzm=b._tzm),p(b._isUTC)||(a._isUTC=b._isUTC),p(b._offset)||(a._offset=b._offset),p(b._pf)||(a._pf=m(b)),p(b._locale)||(a._locale=b._locale),rd.length>0)for(c in rd)d=rd[c],e=b[d],p(e)||(a[d]=e);return a}
|
||||
// Moment prototype object
|
||||
function r(b){q(this,b),this._d=new Date(null!=b._d?b._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),
|
||||
// Prevent infinite loop in case updateOffset creates new moment
|
||||
// objects.
|
||||
sd===!1&&(sd=!0,a.updateOffset(this),sd=!1)}function s(a){return a instanceof r||null!=a&&null!=a._isAMomentObject}function t(a){return a<0?Math.ceil(a)||0:Math.floor(a)}function u(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=t(b)),c}
|
||||
// compare two arrays, return the number of differences
|
||||
function v(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;d<e;d++)(c&&a[d]!==b[d]||!c&&u(a[d])!==u(b[d]))&&g++;return g+f}function w(b){a.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+b)}function x(b,c){var d=!0;return j(function(){if(null!=a.deprecationHandler&&a.deprecationHandler(null,b),d){for(var e,f=[],g=0;g<arguments.length;g++){if(e="","object"==typeof arguments[g]){e+="\n["+g+"] ";for(var h in arguments[0])e+=h+": "+arguments[0][h]+", ";e=e.slice(0,-2)}else e=arguments[g];f.push(e)}w(b+"\nArguments: "+Array.prototype.slice.call(f).join("")+"\n"+(new Error).stack),d=!1}return c.apply(this,arguments)},c)}function y(b,c){null!=a.deprecationHandler&&a.deprecationHandler(b,c),td[b]||(w(c),td[b]=!0)}function z(a){return a instanceof Function||"[object Function]"===Object.prototype.toString.call(a)}function A(a){var b,c;for(c in a)b=a[c],z(b)?this[c]=b:this["_"+c]=b;this._config=a,
|
||||
// Lenient ordinal parsing accepts just a number in addition to
|
||||
// number + (possibly) stuff coming from _ordinalParseLenient.
|
||||
this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)}function B(a,b){var c,e=j({},a);for(c in b)i(b,c)&&(d(a[c])&&d(b[c])?(e[c]={},j(e[c],a[c]),j(e[c],b[c])):null!=b[c]?e[c]=b[c]:delete e[c]);for(c in a)i(a,c)&&!i(b,c)&&d(a[c])&&(
|
||||
// make sure changes to properties don't modify parent config
|
||||
e[c]=j({},e[c]));return e}function C(a){null!=a&&this.set(a)}function D(a,b,c){var d=this._calendar[a]||this._calendar.sameElse;return z(d)?d.call(b,c):d}function E(a){var b=this._longDateFormat[a],c=this._longDateFormat[a.toUpperCase()];return b||!c?b:(this._longDateFormat[a]=c.replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a])}function F(){return this._invalidDate}function G(a){return this._ordinal.replace("%d",a)}function H(a,b,c,d){var e=this._relativeTime[c];return z(e)?e(a,b,c,d):e.replace(/%d/i,a)}function I(a,b){var c=this._relativeTime[a>0?"future":"past"];return z(c)?c(b):c.replace(/%s/i,b)}function J(a,b){var c=a.toLowerCase();Dd[c]=Dd[c+"s"]=Dd[b]=a}function K(a){return"string"==typeof a?Dd[a]||Dd[a.toLowerCase()]:void 0}function L(a){var b,c,d={};for(c in a)i(a,c)&&(b=K(c),b&&(d[b]=a[c]));return d}function M(a,b){Ed[a]=b}function N(a){var b=[];for(var c in a)b.push({unit:c,priority:Ed[c]});return b.sort(function(a,b){return a.priority-b.priority}),b}function O(b,c){return function(d){return null!=d?(Q(this,b,d),a.updateOffset(this,c),this):P(this,b)}}function P(a,b){return a.isValid()?a._d["get"+(a._isUTC?"UTC":"")+b]():NaN}function Q(a,b,c){a.isValid()&&a._d["set"+(a._isUTC?"UTC":"")+b](c)}
|
||||
// MOMENTS
|
||||
function R(a){return a=K(a),z(this[a])?this[a]():this}function S(a,b){if("object"==typeof a){a=L(a);for(var c=N(a),d=0;d<c.length;d++)this[c[d].unit](a[c[d].unit])}else if(a=K(a),z(this[a]))return this[a](b);return this}function T(a,b,c){var d=""+Math.abs(a),e=b-d.length,f=a>=0;return(f?c?"+":"":"-")+Math.pow(10,Math.max(0,e)).toString().substr(1)+d}
|
||||
// token: 'M'
|
||||
// padded: ['MM', 2]
|
||||
// ordinal: 'Mo'
|
||||
// callback: function () { this.month() + 1 }
|
||||
function U(a,b,c,d){var e=d;"string"==typeof d&&(e=function(){return this[d]()}),a&&(Id[a]=e),b&&(Id[b[0]]=function(){return T(e.apply(this,arguments),b[1],b[2])}),c&&(Id[c]=function(){return this.localeData().ordinal(e.apply(this,arguments),a)})}function V(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function W(a){var b,c,d=a.match(Fd);for(b=0,c=d.length;b<c;b++)Id[d[b]]?d[b]=Id[d[b]]:d[b]=V(d[b]);return function(b){var e,f="";for(e=0;e<c;e++)f+=d[e]instanceof Function?d[e].call(b,a):d[e];return f}}
|
||||
// format date using native date object
|
||||
function X(a,b){return a.isValid()?(b=Y(b,a.localeData()),Hd[b]=Hd[b]||W(b),Hd[b](a)):a.localeData().invalidDate()}function Y(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Gd.lastIndex=0;d>=0&&Gd.test(a);)a=a.replace(Gd,c),Gd.lastIndex=0,d-=1;return a}function Z(a,b,c){$d[a]=z(b)?b:function(a,d){return a&&c?c:b}}function $(a,b){return i($d,a)?$d[a](b._strict,b._locale):new RegExp(_(a))}
|
||||
// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
|
||||
function _(a){return aa(a.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e}))}function aa(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function ba(a,b){var c,d=b;for("string"==typeof a&&(a=[a]),f(b)&&(d=function(a,c){c[b]=u(a)}),c=0;c<a.length;c++)_d[a[c]]=d}function ca(a,b){ba(a,function(a,c,d,e){d._w=d._w||{},b(a,d._w,d,e)})}function da(a,b,c){null!=b&&i(_d,a)&&_d[a](b,c._a,c,a)}function ea(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function fa(a,b){return a?c(this._months)?this._months[a.month()]:this._months[(this._months.isFormat||ke).test(b)?"format":"standalone"][a.month()]:this._months}function ga(a,b){return a?c(this._monthsShort)?this._monthsShort[a.month()]:this._monthsShort[ke.test(b)?"format":"standalone"][a.month()]:this._monthsShort}function ha(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._monthsParse)for(
|
||||
// this is not used
|
||||
this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],d=0;d<12;++d)f=k([2e3,d]),this._shortMonthsParse[d]=this.monthsShort(f,"").toLocaleLowerCase(),this._longMonthsParse[d]=this.months(f,"").toLocaleLowerCase();return c?"MMM"===b?(e=je.call(this._shortMonthsParse,g),e!==-1?e:null):(e=je.call(this._longMonthsParse,g),e!==-1?e:null):"MMM"===b?(e=je.call(this._shortMonthsParse,g),e!==-1?e:(e=je.call(this._longMonthsParse,g),e!==-1?e:null)):(e=je.call(this._longMonthsParse,g),e!==-1?e:(e=je.call(this._shortMonthsParse,g),e!==-1?e:null))}function ia(a,b,c){var d,e,f;if(this._monthsParseExact)return ha.call(this,a,b,c);
|
||||
// TODO: add sorting
|
||||
// Sorting makes sure if one month (or abbr) is a prefix of another
|
||||
// see sorting in computeMonthsParse
|
||||
for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),d=0;d<12;d++){
|
||||
// test the regex
|
||||
if(
|
||||
// make the regex if we don't have it already
|
||||
e=k([2e3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]=new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(f="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(f.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a))return d;if(c&&"MMM"===b&&this._shortMonthsParse[d].test(a))return d;if(!c&&this._monthsParse[d].test(a))return d}}
|
||||
// MOMENTS
|
||||
function ja(a,b){var c;if(!a.isValid())
|
||||
// No op
|
||||
return a;if("string"==typeof b)if(/^\d+$/.test(b))b=u(b);else
|
||||
// TODO: Another silent failure?
|
||||
if(b=a.localeData().monthsParse(b),!f(b))return a;return c=Math.min(a.date(),ea(a.year(),b)),a._d["set"+(a._isUTC?"UTC":"")+"Month"](b,c),a}function ka(b){return null!=b?(ja(this,b),a.updateOffset(this,!0),this):P(this,"Month")}function la(){return ea(this.year(),this.month())}function ma(a){return this._monthsParseExact?(i(this,"_monthsRegex")||oa.call(this),a?this._monthsShortStrictRegex:this._monthsShortRegex):(i(this,"_monthsShortRegex")||(this._monthsShortRegex=ne),this._monthsShortStrictRegex&&a?this._monthsShortStrictRegex:this._monthsShortRegex)}function na(a){return this._monthsParseExact?(i(this,"_monthsRegex")||oa.call(this),a?this._monthsStrictRegex:this._monthsRegex):(i(this,"_monthsRegex")||(this._monthsRegex=oe),this._monthsStrictRegex&&a?this._monthsStrictRegex:this._monthsRegex)}function oa(){function a(a,b){return b.length-a.length}var b,c,d=[],e=[],f=[];for(b=0;b<12;b++)
|
||||
// make the regex if we don't have it already
|
||||
c=k([2e3,b]),d.push(this.monthsShort(c,"")),e.push(this.months(c,"")),f.push(this.months(c,"")),f.push(this.monthsShort(c,""));for(
|
||||
// Sorting makes sure if one month (or abbr) is a prefix of another it
|
||||
// will match the longer piece.
|
||||
d.sort(a),e.sort(a),f.sort(a),b=0;b<12;b++)d[b]=aa(d[b]),e[b]=aa(e[b]);for(b=0;b<24;b++)f[b]=aa(f[b]);this._monthsRegex=new RegExp("^("+f.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+e.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+d.join("|")+")","i")}
|
||||
// HELPERS
|
||||
function pa(a){return qa(a)?366:365}function qa(a){return a%4===0&&a%100!==0||a%400===0}function ra(){return qa(this.year())}function sa(a,b,c,d,e,f,g){
|
||||
//can't just apply() to create a date:
|
||||
//http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply
|
||||
var h=new Date(a,b,c,d,e,f,g);
|
||||
//the date constructor remaps years 0-99 to 1900-1999
|
||||
return a<100&&a>=0&&isFinite(h.getFullYear())&&h.setFullYear(a),h}function ta(a){var b=new Date(Date.UTC.apply(null,arguments));
|
||||
//the Date.UTC function remaps years 0-99 to 1900-1999
|
||||
return a<100&&a>=0&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a),b}
|
||||
// start-of-first-week - start-of-year
|
||||
function ua(a,b,c){var// first-week day -- which january is always in the first week (4 for iso, 1 for other)
|
||||
d=7+b-c,
|
||||
// first-week day local weekday -- which local weekday is fwd
|
||||
e=(7+ta(a,0,d).getUTCDay()-b)%7;return-e+d-1}
|
||||
//http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
|
||||
function va(a,b,c,d,e){var f,g,h=(7+c-d)%7,i=ua(a,d,e),j=1+7*(b-1)+h+i;return j<=0?(f=a-1,g=pa(f)+j):j>pa(a)?(f=a+1,g=j-pa(a)):(f=a,g=j),{year:f,dayOfYear:g}}function wa(a,b,c){var d,e,f=ua(a.year(),b,c),g=Math.floor((a.dayOfYear()-f-1)/7)+1;return g<1?(e=a.year()-1,d=g+xa(e,b,c)):g>xa(a.year(),b,c)?(d=g-xa(a.year(),b,c),e=a.year()+1):(e=a.year(),d=g),{week:d,year:e}}function xa(a,b,c){var d=ua(a,b,c),e=ua(a+1,b,c);return(pa(a)-d+e)/7}
|
||||
// HELPERS
|
||||
// LOCALES
|
||||
function ya(a){return wa(a,this._week.dow,this._week.doy).week}function za(){return this._week.dow}function Aa(){return this._week.doy}
|
||||
// MOMENTS
|
||||
function Ba(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")}function Ca(a){var b=wa(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")}
|
||||
// HELPERS
|
||||
function Da(a,b){return"string"!=typeof a?a:isNaN(a)?(a=b.weekdaysParse(a),"number"==typeof a?a:null):parseInt(a,10)}function Ea(a,b){return"string"==typeof a?b.weekdaysParse(a)%7||7:isNaN(a)?null:a}function Fa(a,b){return a?c(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:this._weekdays}function Ga(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort}function Ha(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin}function Ia(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;d<7;++d)f=k([2e3,1]).day(d),this._minWeekdaysParse[d]=this.weekdaysMin(f,"").toLocaleLowerCase(),this._shortWeekdaysParse[d]=this.weekdaysShort(f,"").toLocaleLowerCase(),this._weekdaysParse[d]=this.weekdays(f,"").toLocaleLowerCase();return c?"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:null):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null):"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null)))}function Ja(a,b,c){var d,e,f;if(this._weekdaysParseExact)return Ia.call(this,a,b,c);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),d=0;d<7;d++){
|
||||
// test the regex
|
||||
if(
|
||||
// make the regex if we don't have it already
|
||||
e=k([2e3,1]).day(d),c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e,"").replace(".",".?")+"$","i")),this._weekdaysParse[d]||(f="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(f.replace(".",""),"i")),c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a))return d;if(c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a))return d;if(c&&"dd"===b&&this._minWeekdaysParse[d].test(a))return d;if(!c&&this._weekdaysParse[d].test(a))return d}}
|
||||
// MOMENTS
|
||||
function Ka(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=Da(a,this.localeData()),this.add(a-b,"d")):b}function La(a){if(!this.isValid())return null!=a?this:NaN;var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")}function Ma(a){if(!this.isValid())return null!=a?this:NaN;
|
||||
// behaves the same as moment#day except
|
||||
// as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
|
||||
// as a setter, sunday should belong to the previous week.
|
||||
if(null!=a){var b=Ea(a,this.localeData());return this.day(this.day()%7?b:b-7)}return this.day()||7}function Na(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysStrictRegex:this._weekdaysRegex):(i(this,"_weekdaysRegex")||(this._weekdaysRegex=ue),this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex)}function Oa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(i(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ve),this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Pa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(i(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=we),this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qa(){function a(a,b){return b.length-a.length}var b,c,d,e,f,g=[],h=[],i=[],j=[];for(b=0;b<7;b++)
|
||||
// make the regex if we don't have it already
|
||||
c=k([2e3,1]).day(b),d=this.weekdaysMin(c,""),e=this.weekdaysShort(c,""),f=this.weekdays(c,""),g.push(d),h.push(e),i.push(f),j.push(d),j.push(e),j.push(f);for(
|
||||
// Sorting makes sure if one weekday (or abbr) is a prefix of another it
|
||||
// will match the longer piece.
|
||||
g.sort(a),h.sort(a),i.sort(a),j.sort(a),b=0;b<7;b++)h[b]=aa(h[b]),i[b]=aa(i[b]),j[b]=aa(j[b]);this._weekdaysRegex=new RegExp("^("+j.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+g.join("|")+")","i")}
|
||||
// FORMATTING
|
||||
function Ra(){return this.hours()%12||12}function Sa(){return this.hours()||24}function Ta(a,b){U(a,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),b)})}
|
||||
// PARSING
|
||||
function Ua(a,b){return b._meridiemParse}
|
||||
// LOCALES
|
||||
function Va(a){
|
||||
// IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
|
||||
// Using charAt should be more compatible.
|
||||
return"p"===(a+"").toLowerCase().charAt(0)}function Wa(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"}function Xa(a){return a?a.toLowerCase().replace("_","-"):a}
|
||||
// pick the locale from the array
|
||||
// try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
|
||||
// substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
|
||||
function Ya(a){for(var b,c,d,e,f=0;f<a.length;){for(e=Xa(a[f]).split("-"),b=e.length,c=Xa(a[f+1]),c=c?c.split("-"):null;b>0;){if(d=Za(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1)
|
||||
//the next array item is better than a shallower substring of this one
|
||||
break;b--}f++}return null}function Za(a){var b=null;
|
||||
// TODO: Find a better way to register and load all the locales in Node
|
||||
if(!Be[a]&&"undefined"!=typeof module&&module&&module.exports)try{b=xe._abbr,require("./locale/"+a),
|
||||
// because defineLocale currently also sets the global locale, we
|
||||
// want to undo that for lazy loaded locales
|
||||
$a(b)}catch(a){}return Be[a]}
|
||||
// This function will load locale and then set the global locale. If
|
||||
// no arguments are passed in, it will simply return the current global
|
||||
// locale key.
|
||||
function $a(a,b){var c;
|
||||
// moment.duration._locale = moment._locale = data;
|
||||
return a&&(c=p(b)?bb(a):_a(a,b),c&&(xe=c)),xe._abbr}function _a(a,b){if(null!==b){var c=Ae;if(b.abbr=a,null!=Be[a])y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),c=Be[a]._config;else if(null!=b.parentLocale){if(null==Be[b.parentLocale])return Ce[b.parentLocale]||(Ce[b.parentLocale]=[]),Ce[b.parentLocale].push({name:a,config:b}),null;c=Be[b.parentLocale]._config}
|
||||
// backwards compat for now: also set the locale
|
||||
// make sure we set the locale AFTER all child locales have been
|
||||
// created, so we won't end up with the child locale set.
|
||||
return Be[a]=new C(B(c,b)),Ce[a]&&Ce[a].forEach(function(a){_a(a.name,a.config)}),$a(a),Be[a]}
|
||||
// useful for testing
|
||||
return delete Be[a],null}function ab(a,b){if(null!=b){var c,d=Ae;
|
||||
// MERGE
|
||||
null!=Be[a]&&(d=Be[a]._config),b=B(d,b),c=new C(b),c.parentLocale=Be[a],Be[a]=c,
|
||||
// backwards compat for now: also set the locale
|
||||
$a(a)}else
|
||||
// pass null for config to unupdate, useful for tests
|
||||
null!=Be[a]&&(null!=Be[a].parentLocale?Be[a]=Be[a].parentLocale:null!=Be[a]&&delete Be[a]);return Be[a]}
|
||||
// returns locale data
|
||||
function bb(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return xe;if(!c(a)){if(
|
||||
//short-circuit everything else
|
||||
b=Za(a))return b;a=[a]}return Ya(a)}function cb(){return wd(Be)}function db(a){var b,c=a._a;return c&&m(a).overflow===-2&&(b=c[be]<0||c[be]>11?be:c[ce]<1||c[ce]>ea(c[ae],c[be])?ce:c[de]<0||c[de]>24||24===c[de]&&(0!==c[ee]||0!==c[fe]||0!==c[ge])?de:c[ee]<0||c[ee]>59?ee:c[fe]<0||c[fe]>59?fe:c[ge]<0||c[ge]>999?ge:-1,m(a)._overflowDayOfYear&&(b<ae||b>ce)&&(b=ce),m(a)._overflowWeeks&&b===-1&&(b=he),m(a)._overflowWeekday&&b===-1&&(b=ie),m(a).overflow=b),a}
|
||||
// date from iso format
|
||||
function eb(a){var b,c,d,e,f,g,h=a._i,i=De.exec(h)||Ee.exec(h);if(i){for(m(a).iso=!0,b=0,c=Ge.length;b<c;b++)if(Ge[b][1].exec(i[1])){e=Ge[b][0],d=Ge[b][2]!==!1;break}if(null==e)return void(a._isValid=!1);if(i[3]){for(b=0,c=He.length;b<c;b++)if(He[b][1].exec(i[3])){
|
||||
// match[2] should be 'T' or space
|
||||
f=(i[2]||" ")+He[b][0];break}if(null==f)return void(a._isValid=!1)}if(!d&&null!=f)return void(a._isValid=!1);if(i[4]){if(!Fe.exec(i[4]))return void(a._isValid=!1);g="Z"}a._f=e+(f||"")+(g||""),kb(a)}else a._isValid=!1}
|
||||
// date from iso format or fallback
|
||||
function fb(b){var c=Ie.exec(b._i);return null!==c?void(b._d=new Date(+c[1])):(eb(b),void(b._isValid===!1&&(delete b._isValid,a.createFromInputFallback(b))))}
|
||||
// Pick the first defined of two or three arguments.
|
||||
function gb(a,b,c){return null!=a?a:null!=b?b:c}function hb(b){
|
||||
// hooks is actually the exported moment object
|
||||
var c=new Date(a.now());return b._useUTC?[c.getUTCFullYear(),c.getUTCMonth(),c.getUTCDate()]:[c.getFullYear(),c.getMonth(),c.getDate()]}
|
||||
// convert an array to a date.
|
||||
// the array should mirror the parameters below
|
||||
// note: all values past the year are optional and will default to the lowest possible value.
|
||||
// [year, month, day , hour, minute, second, millisecond]
|
||||
function ib(a){var b,c,d,e,f=[];if(!a._d){
|
||||
// Default to current date.
|
||||
// * if no year, month, day of month are given, default to today
|
||||
// * if day of month is given, default month and year
|
||||
// * if month is given, default only year
|
||||
// * if year is given, don't default anything
|
||||
for(d=hb(a),
|
||||
//compute day of the year from weeks and weekdays
|
||||
a._w&&null==a._a[ce]&&null==a._a[be]&&jb(a),
|
||||
//if the day of the year is set, figure out what it is
|
||||
a._dayOfYear&&(e=gb(a._a[ae],d[ae]),a._dayOfYear>pa(e)&&(m(a)._overflowDayOfYear=!0),c=ta(e,0,a._dayOfYear),a._a[be]=c.getUTCMonth(),a._a[ce]=c.getUTCDate()),b=0;b<3&&null==a._a[b];++b)a._a[b]=f[b]=d[b];
|
||||
// Zero out whatever was not defaulted, including time
|
||||
for(;b<7;b++)a._a[b]=f[b]=null==a._a[b]?2===b?1:0:a._a[b];
|
||||
// Check for 24:00:00.000
|
||||
24===a._a[de]&&0===a._a[ee]&&0===a._a[fe]&&0===a._a[ge]&&(a._nextDay=!0,a._a[de]=0),a._d=(a._useUTC?ta:sa).apply(null,f),
|
||||
// Apply timezone offset from input. The actual utcOffset can be changed
|
||||
// with parseZone.
|
||||
null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[de]=24)}}function jb(a){var b,c,d,e,f,g,h,i;if(b=a._w,null!=b.GG||null!=b.W||null!=b.E)f=1,g=4,
|
||||
// TODO: We need to take the current isoWeekYear, but that depends on
|
||||
// how we interpret now (local, utc, fixed offset). So create
|
||||
// a now version of current config (take local/utc/offset flags, and
|
||||
// create now).
|
||||
c=gb(b.GG,a._a[ae],wa(sb(),1,4).year),d=gb(b.W,1),e=gb(b.E,1),(e<1||e>7)&&(i=!0);else{f=a._locale._week.dow,g=a._locale._week.doy;var j=wa(sb(),f,g);c=gb(b.gg,a._a[ae],j.year),
|
||||
// Default to current week.
|
||||
d=gb(b.w,j.week),null!=b.d?(
|
||||
// weekday -- low day numbers are considered next week
|
||||
e=b.d,(e<0||e>6)&&(i=!0)):null!=b.e?(
|
||||
// local weekday -- counting starts from begining of week
|
||||
e=b.e+f,(b.e<0||b.e>6)&&(i=!0)):
|
||||
// default to begining of week
|
||||
e=f}d<1||d>xa(c,f,g)?m(a)._overflowWeeks=!0:null!=i?m(a)._overflowWeekday=!0:(h=va(c,d,e,f,g),a._a[ae]=h.year,a._dayOfYear=h.dayOfYear)}
|
||||
// date from string and format string
|
||||
function kb(b){
|
||||
// TODO: Move this to another part of the creation flow to prevent circular deps
|
||||
if(b._f===a.ISO_8601)return void eb(b);b._a=[],m(b).empty=!0;
|
||||
// This array is used to make a Date, either with `new Date` or `Date.UTC`
|
||||
var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Y(b._f,b._locale).match(Fd)||[],c=0;c<e.length;c++)f=e[c],d=(h.match($(f,b))||[])[0],
|
||||
// console.log('token', token, 'parsedInput', parsedInput,
|
||||
// 'regex', getParseRegexForToken(token, config));
|
||||
d&&(g=h.substr(0,h.indexOf(d)),g.length>0&&m(b).unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),
|
||||
// don't parse if it's not a known token
|
||||
Id[f]?(d?m(b).empty=!1:m(b).unusedTokens.push(f),da(f,d,b)):b._strict&&!d&&m(b).unusedTokens.push(f);
|
||||
// add remaining unparsed input length to the string
|
||||
m(b).charsLeftOver=i-j,h.length>0&&m(b).unusedInput.push(h),
|
||||
// clear _12h flag if hour is <= 12
|
||||
b._a[de]<=12&&m(b).bigHour===!0&&b._a[de]>0&&(m(b).bigHour=void 0),m(b).parsedDateParts=b._a.slice(0),m(b).meridiem=b._meridiem,
|
||||
// handle meridiem
|
||||
b._a[de]=lb(b._locale,b._a[de],b._meridiem),ib(b),db(b)}function lb(a,b,c){var d;
|
||||
// Fallback
|
||||
return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&b<12&&(b+=12),d||12!==b||(b=0),b):b}
|
||||
// date from string and array of format strings
|
||||
function mb(a){var b,c,d,e,f;if(0===a._f.length)return m(a).invalidFormat=!0,void(a._d=new Date(NaN));for(e=0;e<a._f.length;e++)f=0,b=q({},a),null!=a._useUTC&&(b._useUTC=a._useUTC),b._f=a._f[e],kb(b),n(b)&&(
|
||||
// if there is any input that was not parsed add a penalty for that format
|
||||
f+=m(b).charsLeftOver,
|
||||
//or tokens
|
||||
f+=10*m(b).unusedTokens.length,m(b).score=f,(null==d||f<d)&&(d=f,c=b));j(a,c||b)}function nb(a){if(!a._d){var b=L(a._i);a._a=h([b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],function(a){return a&&parseInt(a,10)}),ib(a)}}function ob(a){var b=new r(db(pb(a)));
|
||||
// Adding is smart enough around DST
|
||||
return b._nextDay&&(b.add(1,"d"),b._nextDay=void 0),b}function pb(a){var b=a._i,d=a._f;return a._locale=a._locale||bb(a._l),null===b||void 0===d&&""===b?o({nullInput:!0}):("string"==typeof b&&(a._i=b=a._locale.preparse(b)),s(b)?new r(db(b)):(g(b)?a._d=b:c(d)?mb(a):d?kb(a):qb(a),n(a)||(a._d=null),a))}function qb(b){var d=b._i;void 0===d?b._d=new Date(a.now()):g(d)?b._d=new Date(d.valueOf()):"string"==typeof d?fb(b):c(d)?(b._a=h(d.slice(0),function(a){return parseInt(a,10)}),ib(b)):"object"==typeof d?nb(b):f(d)?
|
||||
// from milliseconds
|
||||
b._d=new Date(d):a.createFromInputFallback(b)}function rb(a,b,f,g,h){var i={};
|
||||
// object construction must be done this way.
|
||||
// https://github.com/moment/moment/issues/1423
|
||||
return f!==!0&&f!==!1||(g=f,f=void 0),(d(a)&&e(a)||c(a)&&0===a.length)&&(a=void 0),i._isAMomentObject=!0,i._useUTC=i._isUTC=h,i._l=f,i._i=a,i._f=b,i._strict=g,ob(i)}function sb(a,b,c,d){return rb(a,b,c,d,!1)}
|
||||
// Pick a moment m from moments so that m[fn](other) is true for all
|
||||
// other. This relies on the function fn to be transitive.
|
||||
//
|
||||
// moments should either be an array of moment objects or an array, whose
|
||||
// first element is an array of moment objects.
|
||||
function tb(a,b){var d,e;if(1===b.length&&c(b[0])&&(b=b[0]),!b.length)return sb();for(d=b[0],e=1;e<b.length;++e)b[e].isValid()&&!b[e][a](d)||(d=b[e]);return d}
|
||||
// TODO: Use [].sort instead?
|
||||
function ub(){var a=[].slice.call(arguments,0);return tb("isBefore",a)}function vb(){var a=[].slice.call(arguments,0);return tb("isAfter",a)}function wb(a){var b=L(a),c=b.year||0,d=b.quarter||0,e=b.month||0,f=b.week||0,g=b.day||0,h=b.hour||0,i=b.minute||0,j=b.second||0,k=b.millisecond||0;
|
||||
// representation for dateAddRemove
|
||||
this._milliseconds=+k+1e3*j+// 1000
|
||||
6e4*i+// 1000 * 60
|
||||
1e3*h*60*60,//using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978
|
||||
// Because of dateAddRemove treats 24 hours as different from a
|
||||
// day when working around DST, we need to store them separately
|
||||
this._days=+g+7*f,
|
||||
// It is impossible translate months into days without knowing
|
||||
// which months you are are talking about, so we have to store
|
||||
// it separately.
|
||||
this._months=+e+3*d+12*c,this._data={},this._locale=bb(),this._bubble()}function xb(a){return a instanceof wb}function yb(a){return a<0?Math.round(-1*a)*-1:Math.round(a)}
|
||||
// FORMATTING
|
||||
function zb(a,b){U(a,0,0,function(){var a=this.utcOffset(),c="+";return a<0&&(a=-a,c="-"),c+T(~~(a/60),2)+b+T(~~a%60,2)})}function Ab(a,b){var c=(b||"").match(a);if(null===c)return null;var d=c[c.length-1]||[],e=(d+"").match(Me)||["-",0,0],f=+(60*e[1])+u(e[2]);return 0===f?0:"+"===e[0]?f:-f}
|
||||
// Return a moment from input, that is local/utc/zone equivalent to model.
|
||||
function Bb(b,c){var d,e;
|
||||
// Use low-level api, because this fn is low-level api.
|
||||
return c._isUTC?(d=c.clone(),e=(s(b)||g(b)?b.valueOf():sb(b).valueOf())-d.valueOf(),d._d.setTime(d._d.valueOf()+e),a.updateOffset(d,!1),d):sb(b).local()}function Cb(a){
|
||||
// On Firefox.24 Date#getTimezoneOffset returns a floating point.
|
||||
// https://github.com/moment/moment/pull/1871
|
||||
return 15*-Math.round(a._d.getTimezoneOffset()/15)}
|
||||
// MOMENTS
|
||||
// keepLocalTime = true means only change the timezone, without
|
||||
// affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->
|
||||
// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset
|
||||
// +0200, so we adjust the time as needed, to be valid.
|
||||
//
|
||||
// Keeping the time actually adds/subtracts (one hour)
|
||||
// from the actual represented time. That is why we call updateOffset
|
||||
// a second time. In case it wants us to change the offset again
|
||||
// _changeInProgress == true case, then we have to adjust, because
|
||||
// there is no such time in the given timezone.
|
||||
function Db(b,c){var d,e=this._offset||0;if(!this.isValid())return null!=b?this:NaN;if(null!=b){if("string"==typeof b){if(b=Ab(Xd,b),null===b)return this}else Math.abs(b)<16&&(b=60*b);return!this._isUTC&&c&&(d=Cb(this)),this._offset=b,this._isUTC=!0,null!=d&&this.add(d,"m"),e!==b&&(!c||this._changeInProgress?Tb(this,Ob(b-e,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,a.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?e:Cb(this)}function Eb(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}function Fb(a){return this.utcOffset(0,a)}function Gb(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(Cb(this),"m")),this}function Hb(){if(null!=this._tzm)this.utcOffset(this._tzm);else if("string"==typeof this._i){var a=Ab(Wd,this._i);null!=a?this.utcOffset(a):this.utcOffset(0,!0)}return this}function Ib(a){return!!this.isValid()&&(a=a?sb(a).utcOffset():0,(this.utcOffset()-a)%60===0)}function Jb(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Kb(){if(!p(this._isDSTShifted))return this._isDSTShifted;var a={};if(q(a,this),a=pb(a),a._a){var b=a._isUTC?k(a._a):sb(a._a);this._isDSTShifted=this.isValid()&&v(a._a,b.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Lb(){return!!this.isValid()&&!this._isUTC}function Mb(){return!!this.isValid()&&this._isUTC}function Nb(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Ob(a,b){var c,d,e,g=a,
|
||||
// matching against regexp is expensive, do it on demand
|
||||
h=null;// checks for null or undefined
|
||||
return xb(a)?g={ms:a._milliseconds,d:a._days,M:a._months}:f(a)?(g={},b?g[b]=a:g.milliseconds=a):(h=Ne.exec(a))?(c="-"===h[1]?-1:1,g={y:0,d:u(h[ce])*c,h:u(h[de])*c,m:u(h[ee])*c,s:u(h[fe])*c,ms:u(yb(1e3*h[ge]))*c}):(h=Oe.exec(a))?(c="-"===h[1]?-1:1,g={y:Pb(h[2],c),M:Pb(h[3],c),w:Pb(h[4],c),d:Pb(h[5],c),h:Pb(h[6],c),m:Pb(h[7],c),s:Pb(h[8],c)}):null==g?g={}:"object"==typeof g&&("from"in g||"to"in g)&&(e=Rb(sb(g.from),sb(g.to)),g={},g.ms=e.milliseconds,g.M=e.months),d=new wb(g),xb(a)&&i(a,"_locale")&&(d._locale=a._locale),d}function Pb(a,b){
|
||||
// We'd normally use ~~inp for this, but unfortunately it also
|
||||
// converts floats to ints.
|
||||
// inp may be undefined, so careful calling replace on it.
|
||||
var c=a&&parseFloat(a.replace(",","."));
|
||||
// apply sign while we're at it
|
||||
return(isNaN(c)?0:c)*b}function Qb(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function Rb(a,b){var c;return a.isValid()&&b.isValid()?(b=Bb(b,a),a.isBefore(b)?c=Qb(a,b):(c=Qb(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c):{milliseconds:0,months:0}}
|
||||
// TODO: remove 'name' arg after deprecation is removed
|
||||
function Sb(a,b){return function(c,d){var e,f;
|
||||
//invert the arguments, but complain about it
|
||||
return null===d||isNaN(+d)||(y(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=Ob(c,d),Tb(this,e,a),this}}function Tb(b,c,d,e){var f=c._milliseconds,g=yb(c._days),h=yb(c._months);b.isValid()&&(e=null==e||e,f&&b._d.setTime(b._d.valueOf()+f*d),g&&Q(b,"Date",P(b,"Date")+g*d),h&&ja(b,P(b,"Month")+h*d),e&&a.updateOffset(b,g||h))}function Ub(a,b){var c=a.diff(b,"days",!0);return c<-6?"sameElse":c<-1?"lastWeek":c<0?"lastDay":c<1?"sameDay":c<2?"nextDay":c<7?"nextWeek":"sameElse"}function Vb(b,c){
|
||||
// We want to compare the start of today, vs this.
|
||||
// Getting start-of-today depends on whether we're local/utc/offset or not.
|
||||
var d=b||sb(),e=Bb(d,this).startOf("day"),f=a.calendarFormat(this,e)||"sameElse",g=c&&(z(c[f])?c[f].call(this,d):c[f]);return this.format(g||this.localeData().calendar(f,this,sb(d)))}function Wb(){return new r(this)}function Xb(a,b){var c=s(a)?a:sb(a);return!(!this.isValid()||!c.isValid())&&(b=K(p(b)?"millisecond":b),"millisecond"===b?this.valueOf()>c.valueOf():c.valueOf()<this.clone().startOf(b).valueOf())}function Yb(a,b){var c=s(a)?a:sb(a);return!(!this.isValid()||!c.isValid())&&(b=K(p(b)?"millisecond":b),"millisecond"===b?this.valueOf()<c.valueOf():this.clone().endOf(b).valueOf()<c.valueOf())}function Zb(a,b,c,d){return d=d||"()",("("===d[0]?this.isAfter(a,c):!this.isBefore(a,c))&&(")"===d[1]?this.isBefore(b,c):!this.isAfter(b,c))}function $b(a,b){var c,d=s(a)?a:sb(a);return!(!this.isValid()||!d.isValid())&&(b=K(b||"millisecond"),"millisecond"===b?this.valueOf()===d.valueOf():(c=d.valueOf(),this.clone().startOf(b).valueOf()<=c&&c<=this.clone().endOf(b).valueOf()))}function _b(a,b){return this.isSame(a,b)||this.isAfter(a,b)}function ac(a,b){return this.isSame(a,b)||this.isBefore(a,b)}function bc(a,b,c){var d,e,f,g;// 1000
|
||||
// 1000 * 60
|
||||
// 1000 * 60 * 60
|
||||
// 1000 * 60 * 60 * 24, negate dst
|
||||
// 1000 * 60 * 60 * 24 * 7, negate dst
|
||||
return this.isValid()?(d=Bb(a,this),d.isValid()?(e=6e4*(d.utcOffset()-this.utcOffset()),b=K(b),"year"===b||"month"===b||"quarter"===b?(g=cc(this,d),"quarter"===b?g/=3:"year"===b&&(g/=12)):(f=this-d,g="second"===b?f/1e3:"minute"===b?f/6e4:"hour"===b?f/36e5:"day"===b?(f-e)/864e5:"week"===b?(f-e)/6048e5:f),c?g:t(g)):NaN):NaN}function cc(a,b){
|
||||
// difference in months
|
||||
var c,d,e=12*(b.year()-a.year())+(b.month()-a.month()),
|
||||
// b is in (anchor - 1 month, anchor + 1 month)
|
||||
f=a.clone().add(e,"months");
|
||||
//check for negative zero, return zero if negative zero
|
||||
// linear across the month
|
||||
// linear across the month
|
||||
return b-f<0?(c=a.clone().add(e-1,"months"),d=(b-f)/(f-c)):(c=a.clone().add(e+1,"months"),d=(b-f)/(c-f)),-(e+d)||0}function dc(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function ec(){var a=this.clone().utc();return 0<a.year()&&a.year()<=9999?z(Date.prototype.toISOString)?this.toDate().toISOString():X(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):X(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")}/**
|
||||
* Return a human readable representation of a moment that can
|
||||
* also be evaluated to get a new moment which is the same
|
||||
*
|
||||
* @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects
|
||||
*/
|
||||
function fc(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var a="moment",b="";this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",b="Z");var c="["+a+'("]',d=0<this.year()&&this.year()<=9999?"YYYY":"YYYYYY",e="-MM-DD[T]HH:mm:ss.SSS",f=b+'[")]';return this.format(c+d+e+f)}function gc(b){b||(b=this.isUtc()?a.defaultFormatUtc:a.defaultFormat);var c=X(this,b);return this.localeData().postformat(c)}function hc(a,b){return this.isValid()&&(s(a)&&a.isValid()||sb(a).isValid())?Ob({to:this,from:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function ic(a){return this.from(sb(),a)}function jc(a,b){return this.isValid()&&(s(a)&&a.isValid()||sb(a).isValid())?Ob({from:this,to:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function kc(a){return this.to(sb(),a)}
|
||||
// If passed a locale key, it will set the locale for this
|
||||
// instance. Otherwise, it will return the locale configuration
|
||||
// variables for this instance.
|
||||
function lc(a){var b;return void 0===a?this._locale._abbr:(b=bb(a),null!=b&&(this._locale=b),this)}function mc(){return this._locale}function nc(a){
|
||||
// the following switch intentionally omits break keywords
|
||||
// to utilize falling through the cases.
|
||||
switch(a=K(a)){case"year":this.month(0);/* falls through */
|
||||
case"quarter":case"month":this.date(1);/* falls through */
|
||||
case"week":case"isoWeek":case"day":case"date":this.hours(0);/* falls through */
|
||||
case"hour":this.minutes(0);/* falls through */
|
||||
case"minute":this.seconds(0);/* falls through */
|
||||
case"second":this.milliseconds(0)}
|
||||
// weeks are a special case
|
||||
// quarters are also special
|
||||
return"week"===a&&this.weekday(0),"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this}function oc(a){
|
||||
// 'date' is an alias for 'day', so it should be considered as such.
|
||||
return a=K(a),void 0===a||"millisecond"===a?this:("date"===a&&(a="day"),this.startOf(a).add(1,"isoWeek"===a?"week":a).subtract(1,"ms"))}function pc(){return this._d.valueOf()-6e4*(this._offset||0)}function qc(){return Math.floor(this.valueOf()/1e3)}function rc(){return new Date(this.valueOf())}function sc(){var a=this;return[a.year(),a.month(),a.date(),a.hour(),a.minute(),a.second(),a.millisecond()]}function tc(){var a=this;return{years:a.year(),months:a.month(),date:a.date(),hours:a.hours(),minutes:a.minutes(),seconds:a.seconds(),milliseconds:a.milliseconds()}}function uc(){
|
||||
// new Date(NaN).toJSON() === null
|
||||
return this.isValid()?this.toISOString():null}function vc(){return n(this)}function wc(){return j({},m(this))}function xc(){return m(this).overflow}function yc(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function zc(a,b){U(0,[a,a.length],0,b)}
|
||||
// MOMENTS
|
||||
function Ac(a){return Ec.call(this,a,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Bc(a){return Ec.call(this,a,this.isoWeek(),this.isoWeekday(),1,4)}function Cc(){return xa(this.year(),1,4)}function Dc(){var a=this.localeData()._week;return xa(this.year(),a.dow,a.doy)}function Ec(a,b,c,d,e){var f;return null==a?wa(this,d,e).year:(f=xa(a,d,e),b>f&&(b=f),Fc.call(this,a,b,c,d,e))}function Fc(a,b,c,d,e){var f=va(a,b,c,d,e),g=ta(f.year,0,f.dayOfYear);return this.year(g.getUTCFullYear()),this.month(g.getUTCMonth()),this.date(g.getUTCDate()),this}
|
||||
// MOMENTS
|
||||
function Gc(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)}
|
||||
// HELPERS
|
||||
// MOMENTS
|
||||
function Hc(a){var b=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")}function Ic(a,b){b[ge]=u(1e3*("0."+a))}
|
||||
// MOMENTS
|
||||
function Jc(){return this._isUTC?"UTC":""}function Kc(){return this._isUTC?"Coordinated Universal Time":""}function Lc(a){return sb(1e3*a)}function Mc(){return sb.apply(null,arguments).parseZone()}function Nc(a){return a}function Oc(a,b,c,d){var e=bb(),f=k().set(d,b);return e[c](f,a)}function Pc(a,b,c){if(f(a)&&(b=a,a=void 0),a=a||"",null!=b)return Oc(a,b,c,"month");var d,e=[];for(d=0;d<12;d++)e[d]=Oc(a,d,c,"month");return e}
|
||||
// ()
|
||||
// (5)
|
||||
// (fmt, 5)
|
||||
// (fmt)
|
||||
// (true)
|
||||
// (true, 5)
|
||||
// (true, fmt, 5)
|
||||
// (true, fmt)
|
||||
function Qc(a,b,c,d){"boolean"==typeof a?(f(b)&&(c=b,b=void 0),b=b||""):(b=a,c=b,a=!1,f(b)&&(c=b,b=void 0),b=b||"");var e=bb(),g=a?e._week.dow:0;if(null!=c)return Oc(b,(c+g)%7,d,"day");var h,i=[];for(h=0;h<7;h++)i[h]=Oc(b,(h+g)%7,d,"day");return i}function Rc(a,b){return Pc(a,b,"months")}function Sc(a,b){return Pc(a,b,"monthsShort")}function Tc(a,b,c){return Qc(a,b,c,"weekdays")}function Uc(a,b,c){return Qc(a,b,c,"weekdaysShort")}function Vc(a,b,c){return Qc(a,b,c,"weekdaysMin")}function Wc(){var a=this._data;return this._milliseconds=Ze(this._milliseconds),this._days=Ze(this._days),this._months=Ze(this._months),a.milliseconds=Ze(a.milliseconds),a.seconds=Ze(a.seconds),a.minutes=Ze(a.minutes),a.hours=Ze(a.hours),a.months=Ze(a.months),a.years=Ze(a.years),this}function Xc(a,b,c,d){var e=Ob(b,c);return a._milliseconds+=d*e._milliseconds,a._days+=d*e._days,a._months+=d*e._months,a._bubble()}
|
||||
// supports only 2.0-style add(1, 's') or add(duration)
|
||||
function Yc(a,b){return Xc(this,a,b,1)}
|
||||
// supports only 2.0-style subtract(1, 's') or subtract(duration)
|
||||
function Zc(a,b){return Xc(this,a,b,-1)}function $c(a){return a<0?Math.floor(a):Math.ceil(a)}function _c(){var a,b,c,d,e,f=this._milliseconds,g=this._days,h=this._months,i=this._data;
|
||||
// if we have a mix of positive and negative values, bubble down first
|
||||
// check: https://github.com/moment/moment/issues/2166
|
||||
// The following code bubbles up values, see the tests for
|
||||
// examples of what that means.
|
||||
// convert days to months
|
||||
// 12 months -> 1 year
|
||||
return f>=0&&g>=0&&h>=0||f<=0&&g<=0&&h<=0||(f+=864e5*$c(bd(h)+g),g=0,h=0),i.milliseconds=f%1e3,a=t(f/1e3),i.seconds=a%60,b=t(a/60),i.minutes=b%60,c=t(b/60),i.hours=c%24,g+=t(c/24),e=t(ad(g)),h+=e,g-=$c(bd(e)),d=t(h/12),h%=12,i.days=g,i.months=h,i.years=d,this}function ad(a){
|
||||
// 400 years have 146097 days (taking into account leap year rules)
|
||||
// 400 years have 12 months === 4800
|
||||
return 4800*a/146097}function bd(a){
|
||||
// the reverse of daysToMonths
|
||||
return 146097*a/4800}function cd(a){var b,c,d=this._milliseconds;if(a=K(a),"month"===a||"year"===a)return b=this._days+d/864e5,c=this._months+ad(b),"month"===a?c:c/12;switch(
|
||||
// handle milliseconds separately because of floating point math errors (issue #1867)
|
||||
b=this._days+Math.round(bd(this._months)),a){case"week":return b/7+d/6048e5;case"day":return b+d/864e5;case"hour":return 24*b+d/36e5;case"minute":return 1440*b+d/6e4;case"second":return 86400*b+d/1e3;
|
||||
// Math.floor prevents floating point math errors here
|
||||
case"millisecond":return Math.floor(864e5*b)+d;default:throw new Error("Unknown unit "+a)}}
|
||||
// TODO: Use this.as('ms')?
|
||||
function dd(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*u(this._months/12)}function ed(a){return function(){return this.as(a)}}function fd(a){return a=K(a),this[a+"s"]()}function gd(a){return function(){return this._data[a]}}function hd(){return t(this.days()/7)}
|
||||
// helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
|
||||
function id(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function jd(a,b,c){var d=Ob(a).abs(),e=of(d.as("s")),f=of(d.as("m")),g=of(d.as("h")),h=of(d.as("d")),i=of(d.as("M")),j=of(d.as("y")),k=e<pf.s&&["s",e]||f<=1&&["m"]||f<pf.m&&["mm",f]||g<=1&&["h"]||g<pf.h&&["hh",g]||h<=1&&["d"]||h<pf.d&&["dd",h]||i<=1&&["M"]||i<pf.M&&["MM",i]||j<=1&&["y"]||["yy",j];return k[2]=b,k[3]=+a>0,k[4]=c,id.apply(null,k)}
|
||||
// This function allows you to set the rounding function for relative time strings
|
||||
function kd(a){return void 0===a?of:"function"==typeof a&&(of=a,!0)}
|
||||
// This function allows you to set a threshold for relative time strings
|
||||
function ld(a,b){return void 0!==pf[a]&&(void 0===b?pf[a]:(pf[a]=b,!0))}function md(a){var b=this.localeData(),c=jd(this,!a,b);return a&&(c=b.pastFuture(+this,c)),b.postformat(c)}function nd(){
|
||||
// for ISO strings we do not use the normal bubbling rules:
|
||||
// * milliseconds bubble up until they become hours
|
||||
// * days do not bubble at all
|
||||
// * months bubble up until they become years
|
||||
// This is because there is no context-free conversion between hours and days
|
||||
// (think of clock changes)
|
||||
// and also not between days and months (28-31 days per month)
|
||||
var a,b,c,d=qf(this._milliseconds)/1e3,e=qf(this._days),f=qf(this._months);
|
||||
// 3600 seconds -> 60 minutes -> 1 hour
|
||||
a=t(d/60),b=t(a/60),d%=60,a%=60,
|
||||
// 12 months -> 1 year
|
||||
c=t(f/12),f%=12;
|
||||
// inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
|
||||
var g=c,h=f,i=e,j=b,k=a,l=d,m=this.asSeconds();return m?(m<0?"-":"")+"P"+(g?g+"Y":"")+(h?h+"M":"")+(i?i+"D":"")+(j||k||l?"T":"")+(j?j+"H":"")+(k?k+"M":"")+(l?l+"S":""):"P0D"}var od,pd;pd=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0,d=0;d<c;d++)if(d in b&&a.call(this,b[d],d,b))return!0;return!1};var qd=pd,rd=a.momentProperties=[],sd=!1,td={};a.suppressDeprecationWarnings=!1,a.deprecationHandler=null;var ud;ud=Object.keys?Object.keys:function(a){var b,c=[];for(b in a)i(a,b)&&c.push(b);return c};var vd,wd=ud,xd={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},yd={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},zd="Invalid date",Ad="%d",Bd=/\d{1,2}/,Cd={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},Dd={},Ed={},Fd=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Gd=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Hd={},Id={},Jd=/\d/,Kd=/\d\d/,Ld=/\d{3}/,Md=/\d{4}/,Nd=/[+-]?\d{6}/,Od=/\d\d?/,Pd=/\d\d\d\d?/,Qd=/\d\d\d\d\d\d?/,Rd=/\d{1,3}/,Sd=/\d{1,4}/,Td=/[+-]?\d{1,6}/,Ud=/\d+/,Vd=/[+-]?\d+/,Wd=/Z|[+-]\d\d:?\d\d/gi,Xd=/Z|[+-]\d\d(?::?\d\d)?/gi,Yd=/[+-]?\d+(\.\d{1,3})?/,Zd=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,$d={},_d={},ae=0,be=1,ce=2,de=3,ee=4,fe=5,ge=6,he=7,ie=8;vd=Array.prototype.indexOf?Array.prototype.indexOf:function(a){
|
||||
// I know
|
||||
var b;for(b=0;b<this.length;++b)if(this[b]===a)return b;return-1};var je=vd;
|
||||
// FORMATTING
|
||||
U("M",["MM",2],"Mo",function(){return this.month()+1}),U("MMM",0,0,function(a){return this.localeData().monthsShort(this,a)}),U("MMMM",0,0,function(a){return this.localeData().months(this,a)}),
|
||||
// ALIASES
|
||||
J("month","M"),
|
||||
// PRIORITY
|
||||
M("month",8),
|
||||
// PARSING
|
||||
Z("M",Od),Z("MM",Od,Kd),Z("MMM",function(a,b){return b.monthsShortRegex(a)}),Z("MMMM",function(a,b){return b.monthsRegex(a)}),ba(["M","MM"],function(a,b){b[be]=u(a)-1}),ba(["MMM","MMMM"],function(a,b,c,d){var e=c._locale.monthsParse(a,d,c._strict);
|
||||
// if we didn't find a month name, mark the date as invalid.
|
||||
null!=e?b[be]=e:m(c).invalidMonth=a});
|
||||
// LOCALES
|
||||
var ke=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,le="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),me="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ne=Zd,oe=Zd;
|
||||
// FORMATTING
|
||||
U("Y",0,0,function(){var a=this.year();return a<=9999?""+a:"+"+a}),U(0,["YY",2],0,function(){return this.year()%100}),U(0,["YYYY",4],0,"year"),U(0,["YYYYY",5],0,"year"),U(0,["YYYYYY",6,!0],0,"year"),
|
||||
// ALIASES
|
||||
J("year","y"),
|
||||
// PRIORITIES
|
||||
M("year",1),
|
||||
// PARSING
|
||||
Z("Y",Vd),Z("YY",Od,Kd),Z("YYYY",Sd,Md),Z("YYYYY",Td,Nd),Z("YYYYYY",Td,Nd),ba(["YYYYY","YYYYYY"],ae),ba("YYYY",function(b,c){c[ae]=2===b.length?a.parseTwoDigitYear(b):u(b)}),ba("YY",function(b,c){c[ae]=a.parseTwoDigitYear(b)}),ba("Y",function(a,b){b[ae]=parseInt(a,10)}),
|
||||
// HOOKS
|
||||
a.parseTwoDigitYear=function(a){return u(a)+(u(a)>68?1900:2e3)};
|
||||
// MOMENTS
|
||||
var pe=O("FullYear",!0);
|
||||
// FORMATTING
|
||||
U("w",["ww",2],"wo","week"),U("W",["WW",2],"Wo","isoWeek"),
|
||||
// ALIASES
|
||||
J("week","w"),J("isoWeek","W"),
|
||||
// PRIORITIES
|
||||
M("week",5),M("isoWeek",5),
|
||||
// PARSING
|
||||
Z("w",Od),Z("ww",Od,Kd),Z("W",Od),Z("WW",Od,Kd),ca(["w","ww","W","WW"],function(a,b,c,d){b[d.substr(0,1)]=u(a)});var qe={dow:0,// Sunday is the first day of the week.
|
||||
doy:6};
|
||||
// FORMATTING
|
||||
U("d",0,"do","day"),U("dd",0,0,function(a){return this.localeData().weekdaysMin(this,a)}),U("ddd",0,0,function(a){return this.localeData().weekdaysShort(this,a)}),U("dddd",0,0,function(a){return this.localeData().weekdays(this,a)}),U("e",0,0,"weekday"),U("E",0,0,"isoWeekday"),
|
||||
// ALIASES
|
||||
J("day","d"),J("weekday","e"),J("isoWeekday","E"),
|
||||
// PRIORITY
|
||||
M("day",11),M("weekday",11),M("isoWeekday",11),
|
||||
// PARSING
|
||||
Z("d",Od),Z("e",Od),Z("E",Od),Z("dd",function(a,b){return b.weekdaysMinRegex(a)}),Z("ddd",function(a,b){return b.weekdaysShortRegex(a)}),Z("dddd",function(a,b){return b.weekdaysRegex(a)}),ca(["dd","ddd","dddd"],function(a,b,c,d){var e=c._locale.weekdaysParse(a,d,c._strict);
|
||||
// if we didn't get a weekday name, mark the date as invalid
|
||||
null!=e?b.d=e:m(c).invalidWeekday=a}),ca(["d","e","E"],function(a,b,c,d){b[d]=u(a)});
|
||||
// LOCALES
|
||||
var re="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),se="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),te="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ue=Zd,ve=Zd,we=Zd;U("H",["HH",2],0,"hour"),U("h",["hh",2],0,Ra),U("k",["kk",2],0,Sa),U("hmm",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)}),U("hmmss",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),U("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),U("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ta("a",!0),Ta("A",!1),
|
||||
// ALIASES
|
||||
J("hour","h"),
|
||||
// PRIORITY
|
||||
M("hour",13),Z("a",Ua),Z("A",Ua),Z("H",Od),Z("h",Od),Z("HH",Od,Kd),Z("hh",Od,Kd),Z("hmm",Pd),Z("hmmss",Qd),Z("Hmm",Pd),Z("Hmmss",Qd),ba(["H","HH"],de),ba(["a","A"],function(a,b,c){c._isPm=c._locale.isPM(a),c._meridiem=a}),ba(["h","hh"],function(a,b,c){b[de]=u(a),m(c).bigHour=!0}),ba("hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d)),m(c).bigHour=!0}),ba("hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e)),m(c).bigHour=!0}),ba("Hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d))}),ba("Hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e))});var xe,ye=/[ap]\.?m?\.?/i,ze=O("Hours",!0),Ae={calendar:xd,longDateFormat:yd,invalidDate:zd,ordinal:Ad,ordinalParse:Bd,relativeTime:Cd,months:le,monthsShort:me,week:qe,weekdays:re,weekdaysMin:te,weekdaysShort:se,meridiemParse:ye},Be={},Ce={},De=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Ee=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Fe=/Z|[+-]\d\d(?::?\d\d)?/,Ge=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],
|
||||
// YYYYMM is NOT allowed by the standard
|
||||
["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],He=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Ie=/^\/?Date\((\-?\d+)/i;a.createFromInputFallback=x("value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),
|
||||
// constant that refers to the ISO standard
|
||||
a.ISO_8601=function(){};var Je=x("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=sb.apply(null,arguments);return this.isValid()&&a.isValid()?a<this?this:a:o()}),Ke=x("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=sb.apply(null,arguments);return this.isValid()&&a.isValid()?a>this?this:a:o()}),Le=function(){return Date.now?Date.now():+new Date};zb("Z",":"),zb("ZZ",""),
|
||||
// PARSING
|
||||
Z("Z",Xd),Z("ZZ",Xd),ba(["Z","ZZ"],function(a,b,c){c._useUTC=!0,c._tzm=Ab(Xd,a)});
|
||||
// HELPERS
|
||||
// timezone chunker
|
||||
// '+10:00' > ['10', '00']
|
||||
// '-1530' > ['-15', '30']
|
||||
var Me=/([\+\-]|\d\d)/gi;
|
||||
// HOOKS
|
||||
// This function will be called whenever a moment is mutated.
|
||||
// It is intended to keep the offset in sync with the timezone.
|
||||
a.updateOffset=function(){};
|
||||
// ASP.NET json date format regex
|
||||
var Ne=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Oe=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Ob.fn=wb.prototype;var Pe=Sb(1,"add"),Qe=Sb(-1,"subtract");a.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",a.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Re=x("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)});
|
||||
// FORMATTING
|
||||
U(0,["gg",2],0,function(){return this.weekYear()%100}),U(0,["GG",2],0,function(){return this.isoWeekYear()%100}),zc("gggg","weekYear"),zc("ggggg","weekYear"),zc("GGGG","isoWeekYear"),zc("GGGGG","isoWeekYear"),
|
||||
// ALIASES
|
||||
J("weekYear","gg"),J("isoWeekYear","GG"),
|
||||
// PRIORITY
|
||||
M("weekYear",1),M("isoWeekYear",1),
|
||||
// PARSING
|
||||
Z("G",Vd),Z("g",Vd),Z("GG",Od,Kd),Z("gg",Od,Kd),Z("GGGG",Sd,Md),Z("gggg",Sd,Md),Z("GGGGG",Td,Nd),Z("ggggg",Td,Nd),ca(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=u(a)}),ca(["gg","GG"],function(b,c,d,e){c[e]=a.parseTwoDigitYear(b)}),
|
||||
// FORMATTING
|
||||
U("Q",0,"Qo","quarter"),
|
||||
// ALIASES
|
||||
J("quarter","Q"),
|
||||
// PRIORITY
|
||||
M("quarter",7),
|
||||
// PARSING
|
||||
Z("Q",Jd),ba("Q",function(a,b){b[be]=3*(u(a)-1)}),
|
||||
// FORMATTING
|
||||
U("D",["DD",2],"Do","date"),
|
||||
// ALIASES
|
||||
J("date","D"),
|
||||
// PRIOROITY
|
||||
M("date",9),
|
||||
// PARSING
|
||||
Z("D",Od),Z("DD",Od,Kd),Z("Do",function(a,b){return a?b._ordinalParse:b._ordinalParseLenient}),ba(["D","DD"],ce),ba("Do",function(a,b){b[ce]=u(a.match(Od)[0],10)});
|
||||
// MOMENTS
|
||||
var Se=O("Date",!0);
|
||||
// FORMATTING
|
||||
U("DDD",["DDDD",3],"DDDo","dayOfYear"),
|
||||
// ALIASES
|
||||
J("dayOfYear","DDD"),
|
||||
// PRIORITY
|
||||
M("dayOfYear",4),
|
||||
// PARSING
|
||||
Z("DDD",Rd),Z("DDDD",Ld),ba(["DDD","DDDD"],function(a,b,c){c._dayOfYear=u(a)}),
|
||||
// FORMATTING
|
||||
U("m",["mm",2],0,"minute"),
|
||||
// ALIASES
|
||||
J("minute","m"),
|
||||
// PRIORITY
|
||||
M("minute",14),
|
||||
// PARSING
|
||||
Z("m",Od),Z("mm",Od,Kd),ba(["m","mm"],ee);
|
||||
// MOMENTS
|
||||
var Te=O("Minutes",!1);
|
||||
// FORMATTING
|
||||
U("s",["ss",2],0,"second"),
|
||||
// ALIASES
|
||||
J("second","s"),
|
||||
// PRIORITY
|
||||
M("second",15),
|
||||
// PARSING
|
||||
Z("s",Od),Z("ss",Od,Kd),ba(["s","ss"],fe);
|
||||
// MOMENTS
|
||||
var Ue=O("Seconds",!1);
|
||||
// FORMATTING
|
||||
U("S",0,0,function(){return~~(this.millisecond()/100)}),U(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),U(0,["SSS",3],0,"millisecond"),U(0,["SSSS",4],0,function(){return 10*this.millisecond()}),U(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),U(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),U(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),U(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),U(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),
|
||||
// ALIASES
|
||||
J("millisecond","ms"),
|
||||
// PRIORITY
|
||||
M("millisecond",16),
|
||||
// PARSING
|
||||
Z("S",Rd,Jd),Z("SS",Rd,Kd),Z("SSS",Rd,Ld);var Ve;for(Ve="SSSS";Ve.length<=9;Ve+="S")Z(Ve,Ud);for(Ve="S";Ve.length<=9;Ve+="S")ba(Ve,Ic);
|
||||
// MOMENTS
|
||||
var We=O("Milliseconds",!1);
|
||||
// FORMATTING
|
||||
U("z",0,0,"zoneAbbr"),U("zz",0,0,"zoneName");var Xe=r.prototype;Xe.add=Pe,Xe.calendar=Vb,Xe.clone=Wb,Xe.diff=bc,Xe.endOf=oc,Xe.format=gc,Xe.from=hc,Xe.fromNow=ic,Xe.to=jc,Xe.toNow=kc,Xe.get=R,Xe.invalidAt=xc,Xe.isAfter=Xb,Xe.isBefore=Yb,Xe.isBetween=Zb,Xe.isSame=$b,Xe.isSameOrAfter=_b,Xe.isSameOrBefore=ac,Xe.isValid=vc,Xe.lang=Re,Xe.locale=lc,Xe.localeData=mc,Xe.max=Ke,Xe.min=Je,Xe.parsingFlags=wc,Xe.set=S,Xe.startOf=nc,Xe.subtract=Qe,Xe.toArray=sc,Xe.toObject=tc,Xe.toDate=rc,Xe.toISOString=ec,Xe.inspect=fc,Xe.toJSON=uc,Xe.toString=dc,Xe.unix=qc,Xe.valueOf=pc,Xe.creationData=yc,
|
||||
// Year
|
||||
Xe.year=pe,Xe.isLeapYear=ra,
|
||||
// Week Year
|
||||
Xe.weekYear=Ac,Xe.isoWeekYear=Bc,
|
||||
// Quarter
|
||||
Xe.quarter=Xe.quarters=Gc,
|
||||
// Month
|
||||
Xe.month=ka,Xe.daysInMonth=la,
|
||||
// Week
|
||||
Xe.week=Xe.weeks=Ba,Xe.isoWeek=Xe.isoWeeks=Ca,Xe.weeksInYear=Dc,Xe.isoWeeksInYear=Cc,
|
||||
// Day
|
||||
Xe.date=Se,Xe.day=Xe.days=Ka,Xe.weekday=La,Xe.isoWeekday=Ma,Xe.dayOfYear=Hc,
|
||||
// Hour
|
||||
Xe.hour=Xe.hours=ze,
|
||||
// Minute
|
||||
Xe.minute=Xe.minutes=Te,
|
||||
// Second
|
||||
Xe.second=Xe.seconds=Ue,
|
||||
// Millisecond
|
||||
Xe.millisecond=Xe.milliseconds=We,
|
||||
// Offset
|
||||
Xe.utcOffset=Db,Xe.utc=Fb,Xe.local=Gb,Xe.parseZone=Hb,Xe.hasAlignedHourOffset=Ib,Xe.isDST=Jb,Xe.isLocal=Lb,Xe.isUtcOffset=Mb,Xe.isUtc=Nb,Xe.isUTC=Nb,
|
||||
// Timezone
|
||||
Xe.zoneAbbr=Jc,Xe.zoneName=Kc,
|
||||
// Deprecations
|
||||
Xe.dates=x("dates accessor is deprecated. Use date instead.",Se),Xe.months=x("months accessor is deprecated. Use month instead",ka),Xe.years=x("years accessor is deprecated. Use year instead",pe),Xe.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Eb),Xe.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Kb);var Ye=C.prototype;Ye.calendar=D,Ye.longDateFormat=E,Ye.invalidDate=F,Ye.ordinal=G,Ye.preparse=Nc,Ye.postformat=Nc,Ye.relativeTime=H,Ye.pastFuture=I,Ye.set=A,
|
||||
// Month
|
||||
Ye.months=fa,Ye.monthsShort=ga,Ye.monthsParse=ia,Ye.monthsRegex=na,Ye.monthsShortRegex=ma,
|
||||
// Week
|
||||
Ye.week=ya,Ye.firstDayOfYear=Aa,Ye.firstDayOfWeek=za,
|
||||
// Day of Week
|
||||
Ye.weekdays=Fa,Ye.weekdaysMin=Ha,Ye.weekdaysShort=Ga,Ye.weekdaysParse=Ja,Ye.weekdaysRegex=Na,Ye.weekdaysShortRegex=Oa,Ye.weekdaysMinRegex=Pa,
|
||||
// Hours
|
||||
Ye.isPM=Va,Ye.meridiem=Wa,$a("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===u(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),
|
||||
// Side effect imports
|
||||
a.lang=x("moment.lang is deprecated. Use moment.locale instead.",$a),a.langData=x("moment.langData is deprecated. Use moment.localeData instead.",bb);var Ze=Math.abs,$e=ed("ms"),_e=ed("s"),af=ed("m"),bf=ed("h"),cf=ed("d"),df=ed("w"),ef=ed("M"),ff=ed("y"),gf=gd("milliseconds"),hf=gd("seconds"),jf=gd("minutes"),kf=gd("hours"),lf=gd("days"),mf=gd("months"),nf=gd("years"),of=Math.round,pf={s:45,// seconds to minute
|
||||
m:45,// minutes to hour
|
||||
h:22,// hours to day
|
||||
d:26,// days to month
|
||||
M:11},qf=Math.abs,rf=wb.prototype;
|
||||
// Deprecations
|
||||
// Side effect imports
|
||||
// FORMATTING
|
||||
// PARSING
|
||||
// Side effect imports
|
||||
return rf.abs=Wc,rf.add=Yc,rf.subtract=Zc,rf.as=cd,rf.asMilliseconds=$e,rf.asSeconds=_e,rf.asMinutes=af,rf.asHours=bf,rf.asDays=cf,rf.asWeeks=df,rf.asMonths=ef,rf.asYears=ff,rf.valueOf=dd,rf._bubble=_c,rf.get=fd,rf.milliseconds=gf,rf.seconds=hf,rf.minutes=jf,rf.hours=kf,rf.days=lf,rf.weeks=hd,rf.months=mf,rf.years=nf,rf.humanize=md,rf.toISOString=nd,rf.toString=nd,rf.toJSON=nd,rf.locale=lc,rf.localeData=mc,rf.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",nd),rf.lang=Re,U("X",0,0,"unix"),U("x",0,0,"valueOf"),Z("x",Vd),Z("X",Yd),ba("X",function(a,b,c){c._d=new Date(1e3*parseFloat(a,10))}),ba("x",function(a,b,c){c._d=new Date(u(a))}),a.version="2.17.1",b(sb),a.fn=Xe,a.min=ub,a.max=vb,a.now=Le,a.utc=k,a.unix=Lc,a.months=Rc,a.isDate=g,a.locale=$a,a.invalid=o,a.duration=Ob,a.isMoment=s,a.weekdays=Tc,a.parseZone=Mc,a.localeData=bb,a.isDuration=xb,a.monthsShort=Sc,a.weekdaysMin=Vc,a.defineLocale=_a,a.updateLocale=ab,a.locales=cb,a.weekdaysShort=Uc,a.normalizeUnits=K,a.relativeTimeRounding=kd,a.relativeTimeThreshold=ld,a.calendarFormat=Ub,a.prototype=Xe,a});
|
||||
|
|
@ -0,0 +1,194 @@
|
|||
@charset "UTF-8";
|
||||
|
||||
// Default Variables
|
||||
|
||||
// Slick icon entity codes outputs the following
|
||||
// "\2190" outputs ascii character "←"
|
||||
// "\2192" outputs ascii character "→"
|
||||
// "\2022" outputs ascii character "•"
|
||||
|
||||
$slick-font-path: "./fonts/" !default;
|
||||
$slick-font-family: "slick" !default;
|
||||
$slick-loader-path: "./" !default;
|
||||
$slick-arrow-color: white !default;
|
||||
$slick-dot-color: black !default;
|
||||
$slick-dot-color-active: $slick-dot-color !default;
|
||||
$slick-prev-character: "\2190" !default;
|
||||
$slick-next-character: "\2192" !default;
|
||||
$slick-dot-character: "\2022" !default;
|
||||
$slick-dot-size: 6px !default;
|
||||
$slick-opacity-default: 0.75 !default;
|
||||
$slick-opacity-on-hover: 1 !default;
|
||||
$slick-opacity-not-active: 0.25 !default;
|
||||
|
||||
@function slick-image-url($url) {
|
||||
@if function-exists(image-url) {
|
||||
@return image-url($url);
|
||||
}
|
||||
@else {
|
||||
@return url($slick-loader-path + $url);
|
||||
}
|
||||
}
|
||||
|
||||
@function slick-font-url($url) {
|
||||
@if function-exists(font-url) {
|
||||
@return font-url($url);
|
||||
}
|
||||
@else {
|
||||
@return url($slick-font-path + $url);
|
||||
}
|
||||
}
|
||||
|
||||
/* Slider */
|
||||
|
||||
.slick-list {
|
||||
.slick-loading & {
|
||||
background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
|
||||
}
|
||||
}
|
||||
|
||||
/* Icons */
|
||||
// @if $slick-font-family == "slick" {
|
||||
// @font-face {
|
||||
// font-family: "slick";
|
||||
// src: slick-font-url("slick.eot");
|
||||
// src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
|
||||
// font-weight: normal;
|
||||
// font-style: normal;
|
||||
// }
|
||||
// }
|
||||
|
||||
/* Arrows */
|
||||
|
||||
.slick-prev,
|
||||
.slick-next {
|
||||
position: absolute;
|
||||
display: block;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
line-height: 0px;
|
||||
font-size: 0px;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
color: transparent;
|
||||
top: 50%;
|
||||
-webkit-transform: translate(0, -50%);
|
||||
-ms-transform: translate(0, -50%);
|
||||
transform: translate(0, -50%);
|
||||
padding: 0;
|
||||
border: none;
|
||||
outline: none;
|
||||
&:hover, &:focus {
|
||||
outline: none;
|
||||
background: transparent;
|
||||
color: transparent;
|
||||
&:before {
|
||||
opacity: $slick-opacity-on-hover;
|
||||
}
|
||||
}
|
||||
&.slick-disabled:before {
|
||||
opacity: $slick-opacity-not-active;
|
||||
}
|
||||
&:before {
|
||||
font-family: $slick-font-family;
|
||||
font-size: 20px;
|
||||
line-height: 1;
|
||||
color: $slick-arrow-color;
|
||||
opacity: $slick-opacity-default;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-prev {
|
||||
left: -25px;
|
||||
[dir="rtl"] & {
|
||||
left: auto;
|
||||
right: -25px;
|
||||
}
|
||||
&:before {
|
||||
content: $slick-prev-character;
|
||||
[dir="rtl"] & {
|
||||
content: $slick-next-character;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.slick-next {
|
||||
right: -25px;
|
||||
[dir="rtl"] & {
|
||||
left: -25px;
|
||||
right: auto;
|
||||
}
|
||||
&:before {
|
||||
content: $slick-next-character;
|
||||
[dir="rtl"] & {
|
||||
content: $slick-prev-character;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Dots */
|
||||
|
||||
.slick-dotted.slick-slider {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.slick-dots {
|
||||
position: absolute;
|
||||
bottom: -25px;
|
||||
list-style: none;
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
margin: 0 5px;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
button {
|
||||
border: 0;
|
||||
background: transparent;
|
||||
display: block;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
outline: none;
|
||||
line-height: 0px;
|
||||
font-size: 0px;
|
||||
color: transparent;
|
||||
padding: 5px;
|
||||
cursor: pointer;
|
||||
&:hover, &:focus {
|
||||
outline: none;
|
||||
&:before {
|
||||
opacity: $slick-opacity-on-hover;
|
||||
}
|
||||
}
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
content: $slick-dot-character;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
font-family: $slick-font-family;
|
||||
font-size: $slick-dot-size;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
color: $slick-dot-color;
|
||||
opacity: $slick-opacity-not-active;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
}
|
||||
&.slick-active button:before {
|
||||
color: $slick-dot-color-active;
|
||||
opacity: $slick-opacity-default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
/* Slider */
|
||||
|
||||
.slick-slider {
|
||||
position: relative;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-ms-touch-action: pan-y;
|
||||
touch-action: pan-y;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
.slick-list {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
&.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;
|
||||
left: 0;
|
||||
top: 0;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
&:before,
|
||||
&:after {
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
|
||||
&:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.slick-loading & {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.slick-slide {
|
||||
float: left;
|
||||
height: 100%;
|
||||
min-height: 1px;
|
||||
[dir="rtl"] & {
|
||||
float: right;
|
||||
}
|
||||
img {
|
||||
display: block;
|
||||
}
|
||||
&.slick-loading img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
display: none;
|
||||
|
||||
&.dragging img {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.slick-initialized & {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.slick-loading & {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.slick-vertical & {
|
||||
display: block;
|
||||
height: auto;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
}
|
||||
.slick-arrow.slick-hidden {
|
||||
display: none;
|
||||
}
|
||||