+ + +
+ ++ + +
+ ++ + +
+ +diff --git a/css/components/style.css b/css/components/style.css
index b77e64d..e911059 100644
--- a/css/components/style.css
+++ b/css/components/style.css
@@ -1,317 +1 @@
-button,
-.button {
- border: 0;
- background: transparent;
- appearance: none;
- box-shadow: none;
- cursor: pointer;
- box-sizing: border-box;
- padding: 0px 15px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- height: 40px;
- font-weight: 600;
- font-size: 15px;
- line-height: 20px;
-}
-.button {
- color: var(--blue);
- background: #fff;
-}
-.button:disabled {
- opacity: 0.48;
- cursor: default;
-}
-.button.icon:before {
- content: "";
- display: block;
- width: 16px;
- height: 16px;
- margin-right: 12px;
-}
-.button.button-blue {
- background: var(--blue);
- color: #fff;
-}
-.button.button-blue.icon:before {
- background: url("/images/icons/btn_icon_white.svg") no-repeat center;
-}
-.button.button-blue.transparent {
- color: var(--blue);
- background: transparent;
-}
-.button.button-blue.transparent.icon:before {
- background: url("/images/icons/btn_icon_blue.svg") no-repeat center;
-}
-.button.button-gray {
- color: var(--gray);
- background: var(--gray-light);
-}
-.button.button-gray.transparent {
- color: var(--gray);
- background: transparent;
-}
-.button.button-gray.icon:before {
- background: url("/images/icons/btn_icon_gray.svg") no-repeat center;
-}
-.button.button-compact {
- width: 40px;
- height: 40px;
- text-indent: -9999px;
- overflow: hidden;
-}
-.button.button-compact.icon:before {
- margin-right: 0;
-}
-input[type="checkbox"] {
- display: none;
- visibility: hidden;
-}
-input[type="checkbox"] + label {
- display: flex;
- align-items: center;
- cursor: pointer;
-}
-input[type="checkbox"] + label:before {
- content: "";
- display: block;
- width: 16px;
- min-width: 16px;
- height: 16px;
- border: 1px solid rgba(0, 16, 61, 0.12);
- box-sizing: border-box;
- border-radius: 4px;
- margin-right: 12px;
-}
-input[type="checkbox"]:checked + label:before {
- background: url("/images/icons/checkbox_white.svg") no-repeat center var(--primary);
- border-color: var(--primary);
-}
-input[type="checkbox"]:disabled + label:before {
- background: url("/images/icons/checkbox_gray.svg") no-repeat center var(--gray-light);
- cursor: none;
-}
-input[type="radio"] {
- display: none;
- visibility: hidden;
-}
-input[type="radio"] + label {
- display: block;
- padding-left: 28px;
- cursor: pointer;
-}
-input[type="radio"] + label:before {
- content: "";
- display: block;
- border: 1px solid rgba(0, 16, 61, 0.12);
- box-sizing: border-box;
- border-radius: 100%;
-}
-input[type="radio"]:checked + label:before {
- background: #fff;
-}
-input[type="radio"]:disabled + label:before {
- background: var(--gray);
- cursor: none;
-}
-.selected_item {
- display: flex;
- align-items: center;
- justify-content: center;
- background: var(--gray-light);
- box-sizing: border-box;
- padding: 0 2px;
-}
-.selected_item img {
- width: 24px;
- height: 24px;
- object-fit: cover;
- object-position: center;
- margin-right: 8px;
-}
-.selected_item .delete {
- margin-left: 8px;
- width: 28px;
- height: 28px;
- background: url("/images/icons/delete_gray.svg") no-repeat center;
-}
-.list-column {
- column-gap: 20px;
- list-style: disc;
- margin: 15px 0 15px 15px;
-}
-.list-column li {
- line-height: 25px;
-}
-.list-column[data-column="2"] {
- column-count: 2;
-}
-.list-column[data-column="3"] {
- column-count: 3;
-}
-.form_field {
- position: relative;
-}
-.form_field .clear {
- position: absolute;
- top: 0;
- right: 0;
- width: 40px;
- height: 40px;
- background: url("/images/icons/delete_black.svg") no-repeat center;
- z-index: 2;
-}
-.form_field input,
-.form_field textarea,
-.form_field select {
- border: 1px solid rgba(0, 16, 61, 0.12);
- box-sizing: border-box;
- height: 40px;
- background: #fff;
- padding: 0 12px;
- width: 100%;
- outline: none;
- font-size: 15px;
-}
-.form_field input.error,
-.form_field textarea.error,
-.form_field select.error {
- border-color: var(--red);
-}
-.form_field input.filled,
-.form_field textarea.filled,
-.form_field select.filled {
- border-color: rgba(0, 16, 61, 0.48);
-}
-.form_field input:disabled,
-.form_field textarea:disabled,
-.form_field select:disabled {
- background: var(--gray-light);
-}
-.form_field input[type="search"],
-.form_field textarea[type="search"],
-.form_field select[type="search"] {
- padding-left: 32px;
- background-image: url("/images/icons/icon-search.svg");
- background-repeat: no-repeat;
- background-position: 8px 50%;
-}
-.form_field input[type="date"],
-.form_field textarea[type="date"],
-.form_field select[type="date"],
-.form_field input.date_input,
-.form_field textarea.date_input,
-.form_field select.date_input {
- padding-left: 32px;
- background-image: url("/images/icons/icon-date.svg");
- background-repeat: no-repeat;
- background-position: 8px 50%;
-}
-.form_field input[type="date"]::-webkit-inner-spin-button,
-.form_field textarea[type="date"]::-webkit-inner-spin-button,
-.form_field select[type="date"]::-webkit-inner-spin-button,
-.form_field input.date_input::-webkit-inner-spin-button,
-.form_field textarea.date_input::-webkit-inner-spin-button,
-.form_field select.date_input::-webkit-inner-spin-button,
-.form_field input[type="date"]::-webkit-calendar-picker-indicator,
-.form_field textarea[type="date"]::-webkit-calendar-picker-indicator,
-.form_field select[type="date"]::-webkit-calendar-picker-indicator,
-.form_field input.date_input::-webkit-calendar-picker-indicator,
-.form_field textarea.date_input::-webkit-calendar-picker-indicator,
-.form_field select.date_input::-webkit-calendar-picker-indicator {
- display: none;
- -webkit-appearance: none;
-}
-.form_field select {
- background-image: url("/images/icons/icon-select.svg");
- background-repeat: no-repeat;
- background-position: calc(100% - 16px) 50%;
- -webkit-appearance: none;
- -moz-appearance: none;
-}
-.form_field select::-ms-expand {
- display: none;
-}
-.form_field textarea {
- padding-top: 10px;
- height: 80px;
-}
-.fieldgroup {
- display: flex;
- justify-content: space-between;
-}
-.socials {
- display: flex;
-}
-.socials a {
- display: block;
- width: 32px;
- height: 32px;
- text-decoration: none;
-}
-.socials a:not(:last-child) {
- margin-right: 22px;
-}
-.tabs {
- display: flex;
-}
-.tabs .tab {
- line-height: 40px;
- margin-right: 8px;
- padding: 0 20px;
- cursor: pointer;
-}
-.tabs .tab.active {
- background: var(--blue);
- color: #fff;
- font-weight: 700;
- cursor: default;
-}
-.pagination {
- margin-top: 40px;
-}
-.pagination ul {
- display: flex;
- align-items: flex-end;
- justify-content: flex-end;
-}
-.pagination ul li {
- font-size: 26px;
- line-height: 35px;
- color: var(--blue);
-}
-.pagination ul li a {
- display: block;
- padding: 0 5px;
-}
-.image-full {
- width: 100%;
- margin-bottom: 50px;
- height: 450px;
- background: var(--gray-light);
-}
-.image-full img {
- width: 100%;
- height: 100%;
- object-fit: cover;
-}
-ul.custom-dots {
- list-style: none;
- padding: 0;
-}
-ul.custom-dots li {
- padding-left: 15px;
- position: relative;
-}
-ul.custom-dots li:before {
- content: "";
- display: block;
- position: absolute;
- width: 2px;
- height: 2px;
- background: #000;
- border-radius: 2px;
- top: 9px;
- left: 5px;
-}
+.bx-breadcrumb{display:flex;flex-wrap:wrap;width:100%;max-width:1310px;margin:25px auto -40px auto;position:relative;z-index:2}.bx-breadcrumb .bx-breadcrumb-item{color:rgba(0,0,0,0.5)}.bx-breadcrumb .bx-breadcrumb-item a{text-decoration:none;color:rgba(0,0,0,0.5)}.bx-breadcrumb .bx-breadcrumb-item a:hover{color:#000}.bx-breadcrumb .bx-breadcrumb-item:before{content:"<";display:inline-block;margin:0 4px}@media all and (max-width:1420px){.bx-breadcrumb{width:calc(100% - 160px);margin:25px 80px -40px 80px}}@media all and (max-width:960px){.bx-breadcrumb{margin:25px 80px -25px 80px}}@media all and (max-width:768px){.bx-breadcrumb{margin:12px 16px -25px 16px;width:calc(100% - 32px)}}hr{display:block;width:100%;height:1px;background:#EDEFF5;border:0;margin:20px 0}button,.button{border:0;background:transparent;appearance:none;box-shadow:none;cursor:pointer;box-sizing:border-box;padding:0px 15px;display:inline-flex;align-items:center;justify-content:center;height:40px;font-weight:600;font-size:15px;line-height:20px}@media all and (max-width:1280px){button,.button{font-size:13px}}.button{color:var(--blue);background:#fff}.button:disabled{opacity:.48;cursor:default}.button.icon:before{content:"";display:block;width:16px;height:16px;margin-right:12px}.button.button-blue{background:var(--blue);color:#fff}.button.button-blue.icon:before{background:url("/assets/images/icons/btn_icon_white.svg") no-repeat center}.button.button-blue.transparent{color:var(--blue);background:transparent}.button.button-blue.transparent.icon:before{background:url("/assets/images/icons/btn_icon_blue.svg") no-repeat center}.button.button-gray{color:var(--gray);background:var(--gray-light)}.button.button-gray.transparent{color:var(--gray);background:transparent}.button.button-gray.icon:before{background:url("/assets/images/icons/btn_icon_gray.svg") no-repeat center}.button.button-compact{width:40px;height:40px;text-indent:-9999px;overflow:hidden}.button.button-compact.icon:before{margin-right:0}input[type="checkbox"]{display:none;visibility:hidden}input[type="checkbox"]+label{display:flex;align-items:center;cursor:pointer}input[type="checkbox"]+label:before{content:"";display:block;width:16px;min-width:16px;height:16px;border:1px solid rgba(0,16,61,0.12);box-sizing:border-box;border-radius:4px;margin-right:12px}input[type="checkbox"]:checked+label:before{background:url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--primary);border-color:var(--primary)}input[type="checkbox"]:disabled+label:before{background:url("/assets/images/icons/checkbox_gray.svg") no-repeat center var(--gray-light);cursor:none}input[type="radio"]{display:none;visibility:hidden}input[type="radio"]+label{display:block;padding-left:28px;cursor:pointer}input[type="radio"]+label:before{content:"";display:block;border:1px solid rgba(0,16,61,0.12);box-sizing:border-box;border-radius:100%}input[type="radio"]:checked+label:before{background:#fff}input[type="radio"]:disabled+label:before{background:var(--gray);cursor:none}.selected_item{display:flex;align-items:center;justify-content:center;background:var(--gray-light);box-sizing:border-box;padding:0 2px}.selected_item img{width:24px;height:24px;object-fit:cover;object-position:center;margin-right:8px}.selected_item .delete{margin-left:8px;width:28px;height:28px;background:url("/assets/images/icons/delete_gray.svg") no-repeat center}.list-column{column-gap:20px;list-style:disc;margin:15px 0 15px 20px}.list-column li{line-height:25px}.list-column[data-column="2"]{column-count:2}@media all and (max-width:768px){.list-column[data-column="2"]{column-count:1}}.list-column[data-column="3"]{column-count:3}@media all and (max-width:768px){.list-column[data-column="3"]{column-count:1}}.form_field{position:relative}.form_field .clear{position:absolute;top:0;right:0;width:40px;height:40px;background:url("/assets/images/icons/delete_black.svg") no-repeat center;z-index:2}.form_field input,.form_field textarea,.form_field select{border:1px solid rgba(0,16,61,0.12);box-sizing:border-box;height:40px;background:#fff;padding:0 12px;width:100%;outline:none;font-size:15px}.form_field input.error,.form_field textarea.error,.form_field select.error{border-color:var(--red)}.form_field input.filled,.form_field textarea.filled,.form_field select.filled{border-color:rgba(0,16,61,0.48)}.form_field input:disabled,.form_field textarea:disabled,.form_field select:disabled{background:var(--gray-light)}.form_field input[type="search"],.form_field textarea[type="search"],.form_field select[type="search"]{padding-left:32px;background-image:url("/assets/images/icons/icon-search.svg");background-repeat:no-repeat;background-position:8px 50%}.form_field input[type="date"],.form_field textarea[type="date"],.form_field select[type="date"],.form_field input.date_input,.form_field textarea.date_input,.form_field select.date_input{padding-left:32px;background-image:url("/assets/images/icons/icon-date.svg");background-repeat:no-repeat;background-position:8px 50%}.form_field input[type="date"]::-webkit-inner-spin-button,.form_field textarea[type="date"]::-webkit-inner-spin-button,.form_field select[type="date"]::-webkit-inner-spin-button,.form_field input.date_input::-webkit-inner-spin-button,.form_field textarea.date_input::-webkit-inner-spin-button,.form_field select.date_input::-webkit-inner-spin-button,.form_field input[type="date"]::-webkit-calendar-picker-indicator,.form_field textarea[type="date"]::-webkit-calendar-picker-indicator,.form_field select[type="date"]::-webkit-calendar-picker-indicator,.form_field input.date_input::-webkit-calendar-picker-indicator,.form_field textarea.date_input::-webkit-calendar-picker-indicator,.form_field select.date_input::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}@media all and (max-width:960px){.form_field input,.form_field textarea,.form_field select{font-size:13px}}.form_field select{background-image:url("/assets/images/icons/icon-select.svg");background-repeat:no-repeat;background-position:calc(100% - 16px) 50%;-webkit-appearance:none;-moz-appearance:none}.form_field select::-ms-expand{display:none}.form_field textarea{padding-top:10px;height:80px}.fieldgroup{display:flex;justify-content:space-between}.socials{display:flex}.socials a{display:block;width:32px;height:32px;text-decoration:none}.socials a:not(:last-child){margin-right:22px}@media all and (max-width:1280px){.socials a:not(:last-child){margin-right:6px}}.tabs{display:flex}.tabs .tab{line-height:40px;margin-right:8px;padding:0 20px;cursor:pointer}.tabs .tab.active{background:var(--blue);color:#fff;font-weight:700;cursor:default}@media all and (max-width:960px){.tabs .tab{font-size:10px;line-height:35px}.tabs .tab.active{font-weight:400}}@media all and (max-width:768px){.tabs .tab{margin-right:0;padding:0 16px}}.pagination{margin-top:40px}.pagination ul{display:flex;align-items:flex-end;justify-content:flex-end}.pagination ul li{font-size:26px;line-height:35px;color:var(--blue)}.pagination ul li a{display:block;padding:0 5px}@media all and (max-width:1280px){.pagination ul{justify-content:center}.pagination ul li{font-size:13px;line-height:28px;min-width:30px}.pagination ul li a{text-align:center;font-weight:600}}.image-full{width:100%;margin-bottom:50px;height:450px;background:var(--gray-light)}.image-full img{width:100%;height:100%;object-fit:cover}ul.custom-dots{list-style:none;padding:0}ul.custom-dots li{padding-left:15px;position:relative}ul.custom-dots li:before{content:"";display:block;position:absolute;width:2px;height:2px;background:#000;border-radius:2px;top:9px;left:5px}/*# sourceMappingURL=./style.css.map */
\ No newline at end of file
diff --git a/css/components/style.css.map b/css/components/style.css.map
index 5dd8f46..407d51f 100644
--- a/css/components/style.css.map
+++ b/css/components/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["style.less"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"sources":["style.less"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/css/components/style.less b/css/components/style.less
index 179cad4..086218a 100644
--- a/css/components/style.less
+++ b/css/components/style.less
@@ -1,3 +1,62 @@
+// Breadcrumbs
+.bx-breadcrumb {
+ display: flex;
+ flex-wrap: wrap;
+ width: 100%;
+ max-width: 1310px;
+ margin: 25px auto -40px auto;
+ position: relative;
+ z-index: 2;
+
+
+ .bx-breadcrumb-item {
+ color: rgba(0, 0, 0, 0.5);
+
+ a {
+ text-decoration: none;
+ color: rgba(0, 0, 0, 0.5);
+
+ &:hover {
+ color: #000;
+ }
+ }
+
+ span {
+
+ }
+
+ &:before {
+ content: "<";
+ display: inline-block;
+ margin: 0 4px;
+ }
+ }
+
+ @media all and (max-width: 1420px) {
+ width: calc(100% - 160px);
+ margin: 25px 80px -40px 80px;
+ }
+
+ @media all and (max-width: 960px) {
+ margin: 25px 80px -25px 80px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin: 12px 16px -25px 16px;
+ width: calc(100% - 32px);
+ }
+}
+
+// Line
+hr {
+ display: block;
+ width: 100%;
+ height: 1px;
+ background: #EDEFF5;
+ border: 0;
+ margin: 20px 0;
+}
+
// Buttons
button,
.button {
@@ -15,6 +74,10 @@ button,
font-weight: 600;
font-size: 15px;
line-height: 20px;
+
+ @media all and (max-width: 1280px) {
+ font-size: 13px;
+ }
}
.button {
@@ -37,12 +100,12 @@ button,
}
}
- &.button-blue {
- background: var(--blue);
+ &.button-blue {
+ background: var(--blue);
color: #fff;
&.icon:before {
- background: url("/images/icons/btn_icon_white.svg") no-repeat center;
+ background: url("/assets/images/icons/btn_icon_white.svg") no-repeat center;
}
&.transparent {
@@ -50,7 +113,7 @@ button,
background: transparent;
&.icon:before {
- background: url("/images/icons/btn_icon_blue.svg") no-repeat center;
+ background: url("/assets/images/icons/btn_icon_blue.svg") no-repeat center;
}
}
}
@@ -65,7 +128,7 @@ button,
}
&.icon:before {
- background: url("/images/icons/btn_icon_gray.svg") no-repeat center;
+ background: url("/assets/images/icons/btn_icon_gray.svg") no-repeat center;
}
}
@@ -107,13 +170,13 @@ input[type="checkbox"] {
&:checked + label {
&:before {
- background: url("/images/icons/checkbox_white.svg") no-repeat center var(--primary);
+ background: url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--primary);
border-color: var(--primary);
}
}
&:disabled + label {
&:before {
- background: url("/images/icons/checkbox_gray.svg") no-repeat center var(--gray-light);
+ background: url("/assets/images/icons/checkbox_gray.svg") no-repeat center var(--gray-light);
cursor: none;
}
}
@@ -171,7 +234,7 @@ input[type="radio"] {
margin-left: 8px;
width: 28px;
height: 28px;
- background: url("/images/icons/delete_gray.svg") no-repeat center;
+ background: url("/assets/images/icons/delete_gray.svg") no-repeat center;
}
}
@@ -179,7 +242,7 @@ input[type="radio"] {
.list-column {
column-gap: 20px;
list-style: disc;
- margin: 15px 0 15px 15px;
+ margin: 15px 0 15px 20px;
li {
line-height: 25px;
@@ -187,10 +250,18 @@ input[type="radio"] {
&[data-column="2"] {
column-count: 2;
+
+ @media all and (max-width: 768px) {
+ column-count: 1;
+ }
}
&[data-column="3"] {
column-count: 3;
+
+ @media all and (max-width: 768px) {
+ column-count: 1;
+ }
}
}
@@ -204,7 +275,7 @@ input[type="radio"] {
right: 0;
width: 40px;
height: 40px;
- background: url("/images/icons/delete_black.svg") no-repeat center;
+ background: url("/assets/images/icons/delete_black.svg") no-repeat center;
z-index: 2;
}
@@ -232,7 +303,7 @@ input[type="radio"] {
&[type="search"] {
padding-left: 32px;
- background-image: url("/images/icons/icon-search.svg");
+ background-image: url("/assets/images/icons/icon-search.svg");
background-repeat: no-repeat;
background-position: 8px 50%;
}
@@ -240,7 +311,7 @@ input[type="radio"] {
&[type="date"],
&.date_input {
padding-left: 32px;
- background-image: url("/images/icons/icon-date.svg");
+ background-image: url("/assets/images/icons/icon-date.svg");
background-repeat: no-repeat;
background-position: 8px 50%;
@@ -250,10 +321,14 @@ input[type="radio"] {
-webkit-appearance: none;
}
}
+
+ @media all and (max-width: 960px) {
+ font-size: 13px;
+ }
}
select {
- background-image: url("/images/icons/icon-select.svg");
+ background-image: url("/assets/images/icons/icon-select.svg");
background-repeat: no-repeat;
background-position: calc(100% - 16px) 50%;
-webkit-appearance: none;
@@ -288,6 +363,10 @@ input[type="radio"] {
&:not(:last-child) {
margin-right: 22px;
+
+ @media all and (max-width: 1280px) {
+ margin-right: 6px;
+ }
}
}
}
@@ -308,6 +387,20 @@ input[type="radio"] {
font-weight: 700;
cursor: default;
}
+
+ @media all and (max-width: 960px) {
+ font-size: 10px;
+ line-height: 35px;
+
+ &.active {
+ font-weight: 400;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ margin-right: 0;
+ padding: 0 16px;
+ }
}
}
@@ -331,6 +424,23 @@ input[type="radio"] {
}
}
}
+
+ @media all and (max-width: 1280px) {
+ ul {
+ justify-content: center;
+
+ li {
+ font-size: 13px;
+ line-height: 28px;
+ min-width: 30px;
+
+ a {
+ text-align: center;
+ font-weight: 600;
+ }
+ }
+ }
+ }
}
// Превью изображения
@@ -368,4 +478,4 @@ ul.custom-dots {
left: 5px;
}
}
-}
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/css/footer/style.css b/css/footer/style.css
index 887813e..5ff094e 100644
--- a/css/footer/style.css
+++ b/css/footer/style.css
@@ -1,48 +1 @@
-footer {
- background: #EDEFF5;
- padding: 45px 0;
- box-sizing: border-box;
-}
-footer .container {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- background: transparent;
-}
-footer .column {
- width: 270px;
-}
-footer .column li:not(:last-child) {
- margin-bottom: 13px;
-}
-footer .column li a {
- color: #000;
-}
-footer .column p {
- color: #8E94A7;
- line-height: 32px;
-}
-footer .column a[href^="tel"] {
- display: inline-block;
- font-size: 16px;
- line-height: 32px;
- color: #000;
- padding-left: 40px;
- background: url("/images/icons/icon-phone.svg") no-repeat left center;
-}
-footer .column a[href^="mailto"] {
- display: inline-block;
- font-size: 16px;
- line-height: 24px;
- color: #000;
- padding-left: 40px;
- background: url("/images/icons/icon-mail.svg") no-repeat left center;
-}
-footer .column div:nth-child(1),
-footer .column div:nth-child(2),
-footer .column div.socials {
- margin-bottom: 40px;
-}
-footer .column div a {
- line-height: 32px;
-}
+footer{background:#EDEFF5;padding:45px 0;box-sizing:border-box}@media all and (max-width:768px){footer{margin-top:40px;pading:25px 0}}footer .container{display:flex;justify-content:space-between;align-items:flex-start;background:transparent}@media all and (max-width:1280px){footer .container{padding:0;flex-wrap:wrap}}footer .column{width:270px;box-sizing:border-box}@media all and (max-width:1280px){footer .column{width:33.333%}footer .column:last-child{width:100%;display:flex;flex-wrap:wrap}footer .column:last-child>div,footer .column:last-child>p{width:33.333%;margin-top:35px;padding-right:30px;box-sizing:border-box;margin-bottom:0 !important}}@media all and (max-width:768px){footer .column{width:100%;margin-bottom:16px}footer .column:last-child>div,footer .column:last-child>p{width:100%;margin-top:15px;padding-right:0}}footer .column:not(:last-child){padding-right:15px}footer .column li:not(:last-child){margin-bottom:13px}@media all and (max-width:768px){footer .column li:not(:last-child){margin-bottom:8px}}footer .column li a{color:#000}footer .column p{color:#8E94A7;line-height:32px}footer .column a[href^="tel"]{display:inline-block;font-size:16px;line-height:32px;color:#000;padding-left:40px;background:url("/assets/images/icons/icon-phone.svg") no-repeat left center}@media all and (max-width:1280px){footer .column a[href^="tel"]{font-size:13px;background-size:24px;padding-left:37px}}footer .column a[href^="mailto"]{display:inline-block;font-size:16px;line-height:24px;color:#000;padding-left:40px;background:url("/assets/images/icons/icon-mail.svg") no-repeat left center}@media all and (max-width:1280px){footer .column a[href^="mailto"]{font-size:13px;background-size:24px;padding-left:37px}}footer .column div:nth-child(1),footer .column div:nth-child(2),footer .column div.socials{margin-bottom:40px}footer .column div a{line-height:32px}@media all and (max-width:1280px){footer .column div a{line-height:1.45}}/*# sourceMappingURL=./style.css.map */
\ No newline at end of file
diff --git a/css/footer/style.css.map b/css/footer/style.css.map
index d80b017..b2275dd 100644
--- a/css/footer/style.css.map
+++ b/css/footer/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,OACI,kBAAA,CACA,cAAA,CACA,sBAHJ,MAKI,YACI,YAAA,CACA,6BAAA,CACA,sBAAA,CACA,uBATR,MAYI,SACI,YAGQ,MAJZ,QAGQ,GACK,IAAI,cACD,mBAjBpB,MAYI,QAGQ,GAKI,GACI,WArBpB,MAYI,QAcQ,GACI,aAAA,CACA,iBAIA,MApBZ,QAmBQ,EACK,cACG,oBAAA,CACA,cAAA,CACA,gBAAA,CACA,UAAA,CACA,iBAAA,CACA,eAAgB,2DAGpB,MA7BZ,QAmBQ,EAUK,iBACG,oBAAA,CACA,cAAA,CACA,gBAAA,CACA,UAAA,CACA,iBAAA,CACA,eAAgB,0DAKpB,MAxCZ,QAuCQ,IACK,UAAU,IACX,MAzCZ,QAuCQ,IAEK,UAAU,IACX,MA1CZ,QAuCQ,IAGK,SAAU,mBAtD3B,MAYI,QAuCQ,IAKI,GACI"}
\ No newline at end of file
+{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,OACI,kBAAA,CACA,cAAA,CACA,sBAEA,gBAAkC,iBAAlC,OACI,eAAA,CACA,eAPR,MAUI,YACI,YAAA,CACA,6BAAA,CACA,sBAAA,CACA,uBAEA,gBAAmC,kBAAnC,MANJ,YAOQ,SAAA,CACA,gBAlBZ,MAsBI,SACI,WAAA,CACA,sBAEA,gBAAmC,kBAAnC,MAJJ,SAKQ,cAEA,MAPR,QAOS,YACG,UAAA,CACA,YAAA,CACA,eAHJ,MAPR,QAOS,WAKG,KALJ,MAPR,QAOS,WAKU,GACH,aAAA,CACA,eAAA,CACA,kBAAA,CACA,qBAAA,CACA,4BAKZ,gBAAkC,iBAAlC,MAtBJ,SAuBQ,UAAA,CACA,mBAEA,MA1BR,QA0BS,WACG,KADJ,MA1BR,QA0BS,WACU,GACH,UAAA,CACA,eAAA,CACA,iBAKZ,MAnCJ,QAmCK,IAAI,cACD,mBAII,MAxCZ,QAuCQ,GACK,IAAI,cACD,mBAEA,gBAAkC,iBAAlC,MA3ChB,QAuCQ,GACK,IAAI,cAIG,mBAlExB,MAsBI,QAuCQ,GASI,GACI,WAvEpB,MAsBI,QAsDQ,GACI,aAAA,CACA,iBAIA,MA5DZ,QA2DQ,EACK,cACG,oBAAA,CACA,cAAA,CACA,gBAAA,CACA,UAAA,CACA,iBAAA,CACA,eAAgB,6DAEhB,gBAAmC,kBAAnC,MApEhB,QA2DQ,EACK,cASO,cAAA,CACA,oBAAA,CACA,mBAIR,MA3EZ,QA2DQ,EAgBK,iBACG,oBAAA,CACA,cAAA,CACA,gBAAA,CACA,UAAA,CACA,iBAAA,CACA,eAAgB,4DAEhB,gBAAmC,kBAAnC,MAnFhB,QA2DQ,EAgBK,iBASO,cAAA,CACA,oBAAA,CACA,mBAMR,MA5FZ,QA2FQ,IACK,UAAU,IACX,MA7FZ,QA2FQ,IAEK,UAAU,IACX,MA9FZ,QA2FQ,IAGK,SAAU,mBApH3B,MAsBI,QA2FQ,IAKI,GACI,iBAEA,gBAAmC,kBAAnC,MAnGhB,QA2FQ,IAKI,GAIQ"}
\ No newline at end of file
diff --git a/css/footer/style.less b/css/footer/style.less
index 48f0796..fe78582 100644
--- a/css/footer/style.less
+++ b/css/footer/style.less
@@ -3,19 +3,69 @@ footer {
padding: 45px 0;
box-sizing: border-box;
+ @media all and (max-width: 768px) {
+ margin-top: 40px;
+ pading: 25px 0;
+ }
+
.container {
display: flex;
justify-content: space-between;
align-items: flex-start;
background: transparent;
+
+ @media all and (max-width: 1280px) {
+ padding: 0;
+ flex-wrap: wrap;
+ }
}
.column {
width: 270px;
+ box-sizing: border-box;
+
+ @media all and (max-width: 1280px) {
+ width: 33.333%;
+
+ &:last-child {
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+
+ > div, > p {
+ width: 33.333%;
+ margin-top: 35px;
+ padding-right: 30px;
+ box-sizing: border-box;
+ margin-bottom: 0 !important;
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ margin-bottom: 16px;
+
+ &:last-child {
+ > div, > p {
+ width: 100%;
+ margin-top: 15px;
+ padding-right: 0;
+ }
+ }
+ }
+
+ &:not(:last-child) {
+ padding-right: 15px;
+ }
li{
&:not(:last-child) {
margin-bottom: 13px;
+
+ @media all and (max-width: 768px) {
+ margin-bottom: 8px;
+ }
}
a {
@@ -36,7 +86,13 @@ footer {
line-height: 32px;
color: #000;
padding-left: 40px;
- background: url("/images/icons/icon-phone.svg") no-repeat left center;
+ background: url("/assets/images/icons/icon-phone.svg") no-repeat left center;
+
+ @media all and (max-width: 1280px) {
+ font-size: 13px;
+ background-size: 24px;
+ padding-left: 37px;
+ }
}
&[href^="mailto"] {
@@ -45,7 +101,13 @@ footer {
line-height: 24px;
color: #000;
padding-left: 40px;
- background: url("/images/icons/icon-mail.svg") no-repeat left center;
+ background: url("/assets/images/icons/icon-mail.svg") no-repeat left center;
+
+ @media all and (max-width: 1280px) {
+ font-size: 13px;
+ background-size: 24px;
+ padding-left: 37px;
+ }
}
}
@@ -56,6 +118,10 @@ footer {
a {
line-height: 32px;
+
+ @media all and (max-width: 1280px) {
+ line-height: 1.45;
+ }
}
}
}
diff --git a/css/forms/style.css b/css/forms/style.css
index 6c436cf..273f844 100644
--- a/css/forms/style.css
+++ b/css/forms/style.css
@@ -1,152 +1 @@
-#filter.filter_in_catalog:not(.visible) {
- display: none;
-}
-#filter.filter_in_catalog .container {
- padding-top: 0;
- padding-bottom: 0;
- margin-bottom: 40px;
-}
-#filter .filter_header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 40px;
-}
-#filter .filter_header .button {
- width: calc(33.333% - 21px);
-}
-#filter .filter_body {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
-}
-#filter .filter_body .form_field {
- width: calc(33.333% - 21px);
- margin-bottom: 10px;
-}
-#filter .filter_body .fieldgroup {
- width: calc(33.333% - 21px);
-}
-#filter .filter_body .fieldgroup .form_field {
- width: calc(50% - 20px);
-}
-#catalog_small_filter {
- margin-bottom: 40px;
-}
-#catalog_small_filter.hidden {
- display: none;
-}
-#catalog_small_filter .filter_body {
- display: flex;
- justify-content: flex-end;
-}
-#catalog_small_filter .filter_body select {
- margin-right: 30px;
- width: 306px;
-}
-#catalog_small_filter .filter_body button {
- width: 220px;
-}
-#order .order_form {
- position: relative;
- margin: 0 -25px;
-}
-#order .order_form .order_email {
- display: flex;
- align-items: center;
- position: absolute;
- z-index: 1;
- background: #EDEFF5;
- height: 235px;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto;
-}
-#order .order_form .order_email p {
- width: 320px;
- font-size: 24px;
- line-height: 45px;
- padding: 0 20px;
-}
-#order .order_form form {
- width: 750px;
- background: var(--blue);
- box-sizing: border-box;
- padding: 55px 90px;
- margin: auto;
- margin-left: 390px;
- position: relative;
- z-index: 2;
-}
-#order .order_form form input {
- margin-bottom: 32px;
- background: rgba(255, 255, 255, 0.2);
- color: #fff;
-}
-#order .order_form form input::placeholder {
- color: #fff;
-}
-#order .order_form form .policy {
- position: relative;
- z-index: 2;
- margin: -16px 25px 45px 25px;
-}
-#order .order_form form .policy label {
- color: #fff;
- font-weight: 300;
-}
-#order .order_form form .policy label:before {
- background: #fff;
- border-radius: 0;
-}
-#order .order_form form .policy input:checked + label:before {
- border-color: #fff;
- background: url("/images/icons/checkbox_blue.svg") no-repeat center #fff;
-}
-#order .order_form form .button {
- display: inherit;
- margin-left: auto;
-}
-.login {
- max-width: 410px;
-}
-.login .form_field {
- margin-bottom: 15px;
-}
-.login input[name="login"] {
- padding-left: 32px;
- background: url("/images/icons/icon-login.svg") no-repeat 8px 50%;
-}
-.login input[name="pass"] {
- padding-left: 32px;
- background: url("/images/icons/icon-pass.svg") no-repeat 8px 50%;
-}
-.login .button {
- width: 90px;
- display: block;
- margin-left: auto;
-}
-.contract_search {
- margin-bottom: 55px;
-}
-.contract_search form {
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-.contract_search form .form_field:first-child {
- width: calc(50% - 15px);
- min-width: calc(50% - 15px);
- margin-right: 15px;
-}
-.contract_search form .form_field:nth-child(2),
-.contract_search form .form_field:nth-child(3) {
- width: 100%;
- margin-right: 15px;
-}
-.contract_search form .form_field .button {
- width: 158px;
- min-width: 158px;
-}
+#filter{position:relative}#filter .container{position:relative}#filter.filter_in_catalog:not(.visible){display:none}#filter.filter_in_catalog .container{padding-top:0;padding-bottom:0;margin-bottom:40px}@media all and (max-width:1420px){#filter.filter_in_catalog .container{margin-left:0;margin-right:0;width:100%}#filter.filter_in_catalog .container .filter_header .button{bottom:10px}}@media all and (max-width:768px){#filter.filter_in_catalog .container{bottom:40px}}#filter .filter_header{display:flex;align-items:center;justify-content:space-between;margin-bottom:40px}#filter .filter_header .button{width:calc(33.333% - 21px)}@media all and (max-width:1279px){#filter .filter_header .button{width:calc(50% - 15px);position:absolute;right:0;bottom:90px}}@media all and (max-width:1280px){#filter .filter_header .button{bottom:50px}}@media all and (max-width:768px){#filter .filter_header .button{width:100%;bottom:60px}}#filter .filter_body{display:flex;flex-wrap:wrap;justify-content:space-between}#filter .filter_body .filter_column{width:calc(33.333% - 21px)}@media all and (max-width:1279px){#filter .filter_body .filter_column{width:calc(50% - 15px);margin-bottom:35px}#filter .filter_body .filter_column:nth-child(3){margin-bottom:0}}@media all and (max-width:768px){#filter .filter_body .filter_column{width:100%;margin-bottom:24px}#filter .filter_body .filter_column:last-child{margin-bottom:100px}}#filter .filter_body .form_field{width:100%;margin-bottom:10px}#filter .filter_body .fieldgroup{width:100%}#filter .filter_body .fieldgroup .form_field{width:calc(50% - 20px)}@media all and (max-width:768px){#filter .filter_body .fieldgroup .form_field{width:calc(50% - 4px)}}#catalog_small_filter{margin-bottom:40px}#catalog_small_filter.hidden{display:none}#catalog_small_filter .filter_body{display:flex;justify-content:flex-end}#catalog_small_filter .filter_body select{margin-right:30px;width:306px}#catalog_small_filter .filter_body button{width:220px}@media all and (max-width:1280px){#catalog_small_filter .filter_body{justify-content:space-between}#catalog_small_filter .filter_body .form_field{width:calc(33.333% - 30px)}#catalog_small_filter .filter_body .form_field select{width:100%}#catalog_small_filter .filter_body button{width:33.3333%}}@media all and (max-width:768px){#catalog_small_filter .filter_body{display:block}#catalog_small_filter .filter_body .form_field,#catalog_small_filter .filter_body button{width:100%;margin-bottom:8px}}#order .order_form{position:relative;margin:0 -25px}@media all and (max-width:960px){#order .order_form{margin-top:-60px}}@media all and (max-width:768px){#order .order_form{margin:0}}#order .order_form .order_email{display:flex;align-items:center;position:absolute;z-index:1;background:#EDEFF5;height:235px;left:0;right:0;top:0;bottom:0;margin:auto}#order .order_form .order_email p{width:320px;font-size:24px;line-height:45px;padding:0 20px}@media all and (max-width:1280px){#order .order_form .order_email p{width:220px;font-size:13px;line-height:20px}}@media all and (max-width:768px){#order .order_form .order_email{position:relative;height:auto;margin-bottom:25px}#order .order_form .order_email p{padding:0}}#order .order_form form{width:750px;background:var(--blue);box-sizing:border-box;padding:55px 90px;margin:auto;margin-left:390px;position:relative;z-index:2}@media all and (max-width:1420px){#order .order_form form{width:550px;margin-left:320px}}@media all and (max-width:960px){#order .order_form form{width:50%;padding:15px 25px;margin-left:285px}}@media all and (max-width:768px){#order .order_form form{width:auto;margin-left:-16px;margin-right:-16px;padding:25px 16px}}#order .order_form form input{margin-bottom:32px;background:rgba(255,255,255,0.2);color:#fff}#order .order_form form input::placeholder{color:#fff}@media all and (max-width:1280px){#order .order_form form input{margin-bottom:15px}}#order .order_form form .policy{position:relative;z-index:2;margin:-16px 25px 45px 25px}@media all and (max-width:1280px){#order .order_form form .policy{margin-top:-5px;margin-bottom:25px;margin-left:0;margin-right:0}}#order .order_form form .policy label{color:#fff;font-weight:300}#order .order_form form .policy label:before{background:#fff;border-radius:0}#order .order_form form .policy input:checked+label:before{border-color:#fff;background:url("/assets/images/icons/checkbox_blue.svg") no-repeat center #fff}#order .order_form form .button{display:inherit;margin-left:auto}.login{max-width:610px}.login .login_with{display:flex;align-items:center;margin-bottom:50px;justify-content:flex-start}.login .login_with p{margin-right:20px}.login .login_with .tabs .tab{margin-right:0}.login .login_with .tabs .tab:not(.active){background-color:var(--inactive)}.login .button-group{display:flex;align-items:center;justify-content:flex-end}.login .button-group .button{margin-left:30px;display:flex}.login .button-group .button:first-child{width:auto}.login .form_field{margin-bottom:15px}.login input[name="login"]{padding-left:32px;background:url("/assets/images/icons/icon-login.svg") no-repeat 8px 50%}.login input[name="pass"]{padding-left:32px;background:url("/assets/images/icons/icon-pass.svg") no-repeat 8px 50%}.login .button{width:90px;display:block;margin-left:auto}@media all and (max-width:960px){.login{max-width:440px}.login form{max-width:400px}}@media all and (max-width:768px){.login .login_with{display:block;margin-bottom:30px}.login .login_with p{margin-bottom:10px}.login .login_with .tabs{width:100%}.login .login_with .tabs .tab{width:50%;text-align:center}.login .button-group{flex-wrap:wrap;justify-content:center}.login .button-group .button{margin-left:0}.login .button-group button{order:1;width:100%}.login .button-group a{order:2;display:inline-flex}}.login.recovery{max-width:815px}.login.recovery .message{margin-bottom:15px}.login.recovery form{display:flex;justify-content:space-between}.login.recovery form .form_field{width:calc(100% - 205px)}.login.recovery form .button{width:175px}.login.recovery .resend{display:flex;align-items:center;justify-content:flex-start}.login.recovery .resend p{margin-right:30px}.login.recovery .resend .button{margin-left:0;width:auto}@media all and (max-width:960px){.login.recovery form{max-width:100%}}@media all and (max-width:768px){.login.recovery form{display:block}.login.recovery form .form_field,.login.recovery form .button{width:100%}.login.recovery .resend{display:block;text-align:center;margin-top:15px}.login.recovery .resend p{margin-right:0}.login.recovery .resend .button{margin-left:auto;margin-right:auto}}.contract_search{margin-bottom:55px}.contract_search form{display:flex;align-items:center;justify-content:space-between}.contract_search form .form_field:first-child{width:calc(50% - 15px);min-width:calc(50% - 15px);margin-right:15px}.contract_search form .form_field:nth-child(2),.contract_search form .form_field:nth-child(3){width:100%;margin-right:15px}.contract_search form .form_field.single{width:100%;margin-right:80px}.contract_search form .form_field .button{width:158px;min-width:158px}@media all and (max-width:960px){.contract_search{margin-bottom:40px}.contract_search form{flex-wrap:wrap;justify-content:flex-start}.contract_search form .form_field:first-child{margin-bottom:15px;width:100%}.contract_search form .form_field:first-child.single{width:calc(100% - 105px);margin-right:30px;margin-bottom:0}.contract_search form .form_field:nth-child(2),.contract_search form .form_field:nth-child(3){width:25%;margin-right:30px}.contract_search form .button{margin-left:auto}}@media all and (max-width:768px){.contract_search form{justify-content:space-between}.contract_search form .form_field{margin-right:0}.contract_search form .form_field:first-child{margin-right:0;margin-bottom:15px;width:100%}.contract_search form .form_field:first-child.single{width:100%;margin-right:0px}.contract_search form .form_field:nth-child(2),.contract_search form .form_field:nth-child(3){width:calc(50% - 4px);margin-right:0px}.contract_search form .button{margin-left:auto;width:100%;margin-top:15px;background:var(--blue);color:#fff}.contract_search form .button:disabled{opacity:.48}}.reconciliation_form.small{display:flex;flex-wrap:wrap;justify-content:space-between;max-width:420px}@media all and (max-width:768px){.reconciliation_form.small{max-width:100%}}.reconciliation_form.small .form_field{width:calc(50% - 8px)}@media all and (max-width:768px){.reconciliation_form.small .form_field{width:calc(50% - 4px)}}.reconciliation_form.small button{margin-top:35px;width:calc(45% - 8px)}.reconciliation_form.small button:last-child{width:calc(55% - 8px)}@media all and (max-width:768px){.reconciliation_form.small button{width:calc(50% - 4px) !important;margin-top:15px}}.fade{position:fixed;z-index:99999;top:0;left:0;width:100%;height:100%;overflow:auto;background:rgba(0,0,0,0.5);display:block}.fade:not(.opened){display:none}.fade .modal{max-width:640px;width:100%;background:#fff;margin:100px auto;padding:45px 80px}.fade .modal .modal_footer{text-align:right;margin-top:30px}.fade .modal .modal_footer .button{margin-left:auto}@media all and (max-width:768px){.fade .modal{padding:25px 20px;margin:0}}/*# sourceMappingURL=./style.css.map */
\ No newline at end of file
diff --git a/css/forms/style.css.map b/css/forms/style.css.map
index 4b01e27..4830d79 100644
--- a/css/forms/style.css.map
+++ b/css/forms/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["style.less"],"names":[],"mappings":"AAGQ,OAAC,kBAAkB,IAAI,WACnB,aAGJ,OAAC,kBACG,YACI,aAAA,CACA,gBAAA,CACA,mBAVZ,OAcI,gBACI,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,mBAlBR,OAcI,eAMI,SACI,MAAO,qBArBnB,OAyBI,cACI,YAAA,CACA,cAAA,CACA,8BA5BR,OAyBI,aAKI,aACI,MAAO,oBAAP,CACA,mBAhCZ,OAyBI,aAUI,aACI,MAAO,qBApCnB,OAyBI,aAUI,YAGI,aACI,MAAO,iBAO3B,sBACI,mBAEA,qBAAC,QACG,aAJR,qBAOI,cACI,YAAA,CACA,yBATR,qBAOI,aAII,QACI,iBAAA,CACA,YAbZ,qBAOI,aASI,QACI,YAMZ,MAEI,aACI,iBAAA,CACA,eAJR,MAEI,YAII,cACI,YAAA,CACA,kBAAA,CACA,iBAAA,CACA,SAAA,CACA,kBAAA,CACA,YAAA,CACA,MAAA,CACA,OAAA,CACA,KAAA,CACA,QAAA,CACA,YAjBZ,MAEI,YAII,aAaI,GACI,WAAA,CACA,cAAA,CACA,gBAAA,CACA,eAvBhB,MAEI,YAyBI,MACI,WAAA,CACA,WAAY,WAAZ,CACA,qBAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,iBAAA,CACA,UAnCZ,MAEI,YAyBI,KAUI,OACI,kBAAA,CACA,gCAAA,CACA,WAEA,MAxCZ,YAyBI,KAUI,MAKK,cACG,WA3CpB,MAEI,YAyBI,KAoBI,SACI,iBAAA,CACA,SAAA,CACA,4BAlDhB,MAEI,YAyBI,KAoBI,QAKI,OACI,UAAA,CACA,gBAEA,MAtDhB,YAyBI,KAoBI,QAKI,MAIK,QACG,eAAA,CACA,gBA1DxB,MAEI,YAyBI,KAoBI,QAeI,MAAK,QAAS,MAAO,QACjB,iBAAA,CACA,eAAgB,8DAhEpC,MAEI,YAyBI,KAyCI,SACI,eAAA,CACA,iBAOhB,OACI,gBADJ,MAGI,aACI,mBAJR,MAOI,MAAK,eACD,iBAAA,CACA,eAAgB,uDATxB,MAYI,MAAK,cACD,iBAAA,CACA,eAAgB,sDAdxB,MAiBI,SACI,UAAA,CACA,aAAA,CACA,iBAMR,iBACI,mBADJ,gBAEI,MACI,YAAA,CACA,kBAAA,CACA,8BAGI,gBANR,KAKI,YACK,aACG,MAAO,gBAAP,CACA,UAAW,gBAAX,CACA,kBAGJ,gBAZR,KAKI,YAOK,UAAU,IACX,gBAbR,KAKI,YAQK,UAAU,IACP,UAAA,CACA,kBAjBhB,gBAEI,KAKI,YAaI,SACI,WAAA,CACA"}
\ No newline at end of file
+{"version":3,"sources":["style.less"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/css/forms/style.less b/css/forms/style.less
index 37b94c5..6e598df 100644
--- a/css/forms/style.less
+++ b/css/forms/style.less
@@ -1,48 +1,111 @@
// Filter {
- #filter {
+#filter {
+ position: relative;
- &.filter_in_catalog:not(.visible) {
- display: none;
- }
+ .container {
+ position: relative;
+ }
- &.filter_in_catalog {
- .container {
- padding-top: 0;
- padding-bottom: 0;
- margin-bottom: 40px;
- }
- }
+ &.filter_in_catalog:not(.visible) {
+ display: none;
+ }
- .filter_header {
- display: flex;
- align-items: center;
- justify-content: space-between;
+ &.filter_in_catalog {
+ .container {
+ padding-top: 0;
+ padding-bottom: 0;
margin-bottom: 40px;
- .button {
- width: calc(33.333% - 21px);
+ @media all and (max-width: 1420px) {
+ margin-left: 0;
+ margin-right: 0;
+ width: 100%;
+
+ .filter_header .button {
+ bottom: 10px;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ bottom: 40px;
+ }
+ }
+ }
+
+ .filter_header {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin-bottom: 40px;
+
+ .button {
+ width: calc(33.333% - 21px);
+
+ @media all and (max-width: 1279px) {
+ width: calc(50% - 15px);
+ position: absolute;
+ right: 0;
+ bottom: 90px;
+ }
+
+ @media all and (max-width: 1280px) {
+ bottom: 50px;
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ bottom: 60px;
+ }
+ }
+ }
+
+ .filter_body {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+
+ .filter_column {
+ width: calc(33.333% - 21px);
+
+ @media all and (max-width: 1279px) {
+ width: calc(50% - 15px);
+ margin-bottom: 35px;
+
+ &:nth-child(3) {
+ margin-bottom: 0;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ margin-bottom: 24px;
+
+ &:last-child {
+ margin-bottom: 100px;
+ }
}
}
- .filter_body {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
+ .form_field {
+ width: 100%;
+ margin-bottom: 10px;
+
+
+ }
+
+ .fieldgroup {
+ width: 100%;
.form_field {
- width: calc(33.333% - 21px);
- margin-bottom: 10px;
- }
+ width: calc(50% - 20px);
- .fieldgroup {
- width: calc(33.333% - 21px);
-
- .form_field {
- width: calc(50% - 20px);
+ @media all and (max-width: 768px) {
+ width: calc(50% - 4px);
}
}
}
}
+}
// Catalog smamm filter
#catalog_small_filter {
@@ -64,16 +127,50 @@
button {
width: 220px;
}
+
+ @media all and (max-width: 1280px) {
+ justify-content: space-between;
+
+ .form_field {
+ width: calc(33.333% - 30px);
+
+ select {
+ width: 100%;
+ }
+ }
+
+ button {
+ width: 33.3333%;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ display: block;
+
+ .form_field,
+ button {
+ width: 100%;
+ margin-bottom: 8px;
+ }
+ }
}
}
// Order
#order {
-
+
.order_form {
position: relative;
margin: 0 -25px;
+ @media all and (max-width: 960px) {
+ margin-top: -60px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin: 0;
+ }
+
.order_email {
display: flex;
align-items: center;
@@ -92,8 +189,24 @@
font-size: 24px;
line-height: 45px;
padding: 0 20px;
+
+ @media all and (max-width: 1280px) {
+ width: 220px;
+ font-size: 13px;
+ line-height: 20px;
+ }
}
- }
+
+ @media all and (max-width: 768px) {
+ position: relative;
+ height: auto;
+ margin-bottom: 25px;
+
+ p {
+ padding: 0;
+ }
+ }
+ }
form {
width: 750px;
@@ -105,6 +218,24 @@
position: relative;
z-index: 2;
+ @media all and (max-width: 1420px) {
+ width: 550px;
+ margin-left: 320px;
+ }
+
+ @media all and (max-width: 960px) {
+ width: 50%;
+ padding: 15px 25px;
+ margin-left: 285px;
+ }
+
+ @media all and (max-width: 768px) {
+ width: auto;
+ margin-left: -16px;
+ margin-right: -16px;
+ padding: 25px 16px;
+ }
+
input {
margin-bottom: 32px;
background: rgba(255, 255, 255, 0.2);
@@ -113,6 +244,10 @@
&::placeholder {
color: #fff;
}
+
+ @media all and (max-width: 1280px) {
+ margin-bottom: 15px;
+ }
}
.policy {
@@ -120,6 +255,13 @@
z-index: 2;
margin: -16px 25px 45px 25px;
+ @media all and (max-width: 1280px) {
+ margin-top: -5px;
+ margin-bottom: 25px;
+ margin-left: 0;
+ margin-right: 0;
+ }
+
label {
color: #fff;
font-weight: 300;
@@ -130,9 +272,9 @@
}
}
- input:checked + label:before {
+ input:checked+label:before {
border-color: #fff;
- background: url("/images/icons/checkbox_blue.svg") no-repeat center #fff;
+ background: url("/assets/images/icons/checkbox_blue.svg") no-repeat center #fff;
}
}
@@ -146,7 +288,42 @@
// Login
.login {
- max-width: 410px;
+ max-width: 610px;
+
+ .login_with {
+ display: flex;
+ align-items: center;
+ margin-bottom: 50px;
+ justify-content: flex-start;
+
+ p {
+ margin-right: 20px;
+ }
+
+ .tabs {
+ .tab {
+ margin-right: 0;
+ &:not(.active) {
+ background-color: var(--inactive);
+ }
+ }
+ }
+ }
+
+ .button-group {
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+
+ .button {
+ margin-left: 30px;
+ display: flex;
+
+ &:first-child {
+ width: auto;
+ }
+ }
+ }
.form_field {
margin-bottom: 15px;
@@ -154,12 +331,12 @@
input[name="login"] {
padding-left: 32px;
- background: url("/images/icons/icon-login.svg") no-repeat 8px 50%;
+ background: url("/assets/images/icons/icon-login.svg") no-repeat 8px 50%;
}
input[name="pass"] {
padding-left: 32px;
- background: url("/images/icons/icon-pass.svg") no-repeat 8px 50%;
+ background: url("/assets/images/icons/icon-pass.svg") no-repeat 8px 50%;
}
.button {
@@ -167,19 +344,132 @@
display: block;
margin-left: auto;
}
+
+ @media all and (max-width: 960px) {
+ max-width: 440px;
+ form {
+ max-width: 400px;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ .login_with {
+ display: block;
+ margin-bottom: 30px;
+
+ p {
+ margin-bottom: 10px;
+ }
+
+ .tabs {
+ width: 100%;
+ .tab {
+ width: 50%;
+ text-align: center;
+ }
+ }
+ }
+
+ .button-group {
+ flex-wrap: wrap;
+ justify-content: center;
+
+ .button {
+ margin-left: 0;
+ }
+
+ button {
+ order: 1;
+ width: 100%;
+ }
+
+ a {
+ order: 2;
+ display: inline-flex;
+ }
+ }
+ }
+
+ &.recovery {
+ max-width: 815px;
+
+ .message {
+ margin-bottom: 15px;
+ }
+
+ form {
+ display: flex;
+ justify-content: space-between;
+
+ .form_field {
+ width: calc(100% - 205px);
+ }
+
+ .button {
+ width: 175px
+ }
+ }
+
+ .resend {
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+
+ p {
+ margin-right: 30px;
+ }
+
+ .button {
+ margin-left: 0;
+ width: auto;
+ }
+ }
+
+ @media all and (max-width: 960px) {
+ form {
+ max-width: 100%;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ form {
+ display: block;
+
+ .form_field, .button {
+ width: 100%;
+ }
+ }
+
+ .resend {
+ display: block;
+ text-align: center;
+ margin-top: 15px;
+
+ p {
+ margin-right: 0;
+ }
+
+ .button {
+ margin-left: auto;
+ margin-right: auto;
+ }
+ }
+ }
+ }
}
// Поиск договора в лк
.contract_search {
margin-bottom: 55px;
+
form {
display: flex;
align-items: center;
justify-content: space-between;
.form_field {
- &:first-child {
+ &:first-child {
width: calc(50% - 15px);
min-width: calc(50% - 15px);
margin-right: 15px;
@@ -191,10 +481,170 @@
margin-right: 15px;
}
+ &.single {
+ width: 100%;
+ margin-right: 80px;
+ }
+
.button {
width: 158px;
- min-width: 158px;
+ min-width: 158px;
}
}
}
+
+ @media all and (max-width: 960px) {
+ margin-bottom: 40px;
+ form {
+ flex-wrap: wrap;
+ justify-content: flex-start;
+
+ .form_field {
+ &:first-child {
+ margin-bottom: 15px;
+ width: 100%;
+
+ &.single {
+ width: calc(100% - 105px);
+ margin-right: 30px;
+ margin-bottom: 0;
+ }
+ }
+
+ &:nth-child(2),
+ &:nth-child(3) {
+ width: 25%;
+ margin-right: 30px;
+ }
+ }
+
+ .button {
+ margin-left: auto;
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ form {
+ justify-content: space-between;
+
+ .form_field {
+ margin-right: 0;
+
+ &:first-child {
+ margin-right: 0;
+ margin-bottom: 15px;
+ width: 100%;
+
+ &.single {
+ width: 100%;
+ margin-right: 0px;
+ }
+ }
+
+ &:nth-child(2),
+ &:nth-child(3) {
+ width: calc(50% - 4px);
+ margin-right: 0px;
+
+ input {
+ }
+ }
+ }
+
+ .button {
+ margin-left: auto;
+ width: 100%;
+ margin-top: 15px;
+ background: var(--blue);
+ color: #fff;
+
+ &:disabled {
+ opacity: 0.48;
+ }
+ }
+ }
+ }
+}
+
+// Акты сверок
+.reconciliation_form {
+
+ &.small {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ max-width: 420px;
+
+ @media all and (max-width: 768px) {
+ max-width: 100%;
+ }
+
+ .form_field {
+ width: ~"calc(50% - 8px)";
+
+ @media all and (max-width: 768px) {
+ width: calc(50% - 4px);
+ }
+ }
+
+ button {
+ margin-top: 35px;
+ width: ~"calc(45% - 8px)";
+
+ &:last-child {
+ width: ~"calc(55% - 8px)";
+ }
+
+ @media all and (max-width: 768px) {
+ width: calc(50% - 4px) !important;
+ margin-top: 15px;
+ }
+
+ }
+ }
+}
+
+
+// Модаль
+
+.fade {
+ position: fixed;
+ z-index: 99999;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background: rgba(0, 0, 0, 0.5);
+ display: block;
+
+ &:not(.opened) {
+ display: none;
+ }
+
+ .modal {
+ max-width: 640px;
+ width: 100%;
+ background: #fff;
+ margin: 100px auto;
+ padding: 45px 80px;
+
+ .modal_footer {
+ text-align: right;
+ margin-top: 30px;
+
+ .button {
+ margin-left: auto;
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+
+ .modal {
+ padding: 25px 20px;
+ margin: 0;
+ }
+ }
}
\ No newline at end of file
diff --git a/css/header/style.css b/css/header/style.css
index 952b03f..68c45e6 100644
--- a/css/header/style.css
+++ b/css/header/style.css
@@ -1,61 +1 @@
-header {
- background: #fff;
- position: fixed;
- z-index: 99;
- left: 0;
- right: 0;
- height: 112px;
- font-size: 16px;
- line-height: 24px;
- box-shadow: 8px 8px 16px 4px rgba(133, 139, 146, 0.06);
-}
-header .container {
- height: inherit;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0;
- background: #fff;
-}
-header .container:after {
- display: none;
-}
-header a {
- text-decoration: none;
- color: #000;
-}
-header a.logo {
- transform: translateY(4px);
-}
-header .header_menu {
- margin: 0 32px;
- padding: 0 32px;
- border-left: 1px solid #E7E9F0;
- border-right: 1px solid #E7E9F0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 32px;
- width: 100%;
-}
-header .header_menu nav ul {
- display: flex;
-}
-header .header_menu nav ul li:not(:last-child) {
- margin-right: 24px;
-}
-header .header_menu nav ul li:last-child {
- margin-right: 63px;
-}
-header .header_menu nav ul li a.active {
- color: var(--blue);
- font-weight: 700;
-}
-header .lk {
- display: block;
- text-decoration: none;
- min-width: 32px;
- width: 32px;
- height: 32px;
- background: url("/images/icons/icon-lk.svg") no-repeat center;
-}
+header{background:#fff;position:fixed;z-index:99;left:0;right:0;height:112px;font-size:16px;line-height:24px;box-shadow:8px 8px 16px 4px rgba(133,139,146,0.06)}header .container{height:inherit;display:flex;align-items:center;justify-content:space-between;padding:0;background:#fff}header .container:after{display:none}header a{text-decoration:none;color:#000}header a.logo{transform:translateY(4px)}header .header_menu{margin:0 32px;padding:0 32px;border-left:1px solid #e7e9f0;border-right:1px solid #e7e9f0;display:flex;align-items:center;justify-content:space-between;height:32px;width:100%}header .header_menu:last-child{border-right:0;padding-right:0;margin-right:0}header .header_menu nav .nav_toggle{display:none}header .header_menu nav ul{display:flex}header .header_menu nav ul li:not(:last-child){margin-right:24px}header .header_menu nav ul li:last-child{margin-right:63px}header .header_menu nav ul li a.active{color:var(--blue);font-weight:700}header .header_menu nav ul li.active a{color:var(--blue);font-weight:700}header .lk{display:block;text-decoration:none;min-width:32px;width:32px;height:32px;background:url("/assets/images/icons/icon-lk.svg") no-repeat center}@media all and (max-width:1420px){header{font-size:15px;line-height:24px}header a.logo img{width:180px;height:26px;object-fit:contain}header .header_menu{padding:0 16px;margin:0 16px}header .header_menu nav ul li:not(:last-child){margin-right:15px}header .header_menu nav ul li:last-child{margin-right:30px}}@media all and (max-width:1279px){header{font-size:15px;line-height:24px;height:86px}header a.logo img{width:130px;height:20px}header .header_menu{padding:0 16px 0 32px;margin:0 16px 0 32px}header .header_menu nav{height:23px;position:relative}header .header_menu nav .nav_toggle{display:block;height:23px;z-index:3;background-image:url("/assets/images/icons/icon-select.svg");background-repeat:no-repeat;background-position:100% 50%;font-size:15px;color:var(--blue);font-weight:700;padding-right:24px;padding-left:0;cursor:pointer}header .header_menu nav ul{display:block;position:absolute;background:#fff;padding:15px 20px;top:25px;left:-20px;width:320px}header .header_menu nav ul:not(.open){display:none}header .header_menu nav ul li:not(:last-child){margin-bottom:6px}header .header_menu nav ul li a{font-size:15px}header .header_menu a[href^="tel:"]{width:32px;height:32px;background:url("/assets/images/icons/icon-header-phone.svg") no-repeat center;text-indent:-9999px;overflow:hidden;margin-left:auto}}@media all and (max-width:768px){header{height:84px}header .container{padding-bottom:35px}header .header_menu{border-left:0;padding-left:0;margin-left:0;height:24px}header .header_menu nav{position:absolute;left:0;bottom:9px}header .header_menu a[href^="tel:"]{width:24px;height:24px;background-size:contain}header .lk{width:24px;height:24px;min-width:24px;background-size:contain}}/*# sourceMappingURL=./style.css.map */
\ No newline at end of file
diff --git a/css/header/style.css.map b/css/header/style.css.map
index 7ea5dfd..c721cea 100644
--- a/css/header/style.css.map
+++ b/css/header/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,OACI,eAAA,CACA,cAAA,CACA,UAAA,CACA,MAAA,CACA,OAAA,CAEA,YAAA,CACA,cAAA,CACA,gBAAA,CACA,mDAVJ,MAYI,YACI,cAAA,CACA,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,SAAA,CACA,gBAEA,MARJ,WAQK,OACG,aArBZ,MAyBI,GACI,oBAAA,CACA,WAEA,MAJJ,EAIK,MACG,UAAW,gBA9BvB,MAkCI,cACI,aAAA,CACA,cAAA,CACA,6BAAA,CACA,8BAAA,CACA,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,WAAA,CACA,WA3CR,MAkCI,aAWI,IACI,IACI,aAGI,MAhBhB,aAWI,IACI,GAGI,GACK,IAAI,cACD,kBAGJ,MApBhB,aAWI,IACI,GAGI,GAKK,YACG,kBAIA,MAzBpB,aAWI,IACI,GAGI,GASI,EACK,QACG,MAAO,WAAP,CACA,gBA7D5B,MAqEI,KACI,aAAA,CACA,oBAAA,CACA,cAAA,CACA,UAAA,CACA,WAAA,CACA,eAAgB"}
\ No newline at end of file
+{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,OACE,eAAA,CACA,cAAA,CACA,UAAA,CACA,MAAA,CACA,OAAA,CAEA,YAAA,CACA,cAAA,CACA,gBAAA,CACA,mDAVF,MAYE,YACE,cAAA,CACA,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,SAAA,CACA,gBAEA,MARF,WAQG,OACC,aArBN,MAyBE,GACE,oBAAA,CACA,WAEA,MAJF,EAIG,MACC,UAAW,gBA9BjB,MAkCE,cACE,aAAA,CACA,cAAA,CACA,6BAAA,CACA,8BAAA,CACA,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,WAAA,CACA,WAEA,MAXF,aAWG,YACC,cAAA,CACA,eAAA,CACA,eAhDN,MAkCE,aAiBE,IACE,aACE,aArDR,MAkCE,aAiBE,IAKE,IACE,aAGE,MA1BR,aAiBE,IAKE,GAGE,GACG,IAAI,cACH,kBAGF,MA9BR,aAiBE,IAKE,GAGE,GAKG,YACC,kBAjEZ,MAkCE,aAiBE,IAKE,GAGE,GASE,EAAC,QACC,MAAO,WAAP,CACA,gBAGF,MAvCR,aAiBE,IAKE,GAGE,GAcG,OACC,GACE,MAAO,WAAP,CACA,gBA5Ed,MAoFE,KACE,aAAA,CACA,oBAAA,CACA,cAAA,CACA,UAAA,CACA,WAAA,CACA,eAAgB,qDAGlB,gBAAmC,kBAAnC,OACE,cAAA,CACA,iBAGI,MADJ,EACK,KACG,KACI,WAAA,CACA,WAAA,CACA,mBATd,MAcE,cACI,cAAA,CACA,cAKE,MAPN,aAIE,IAEE,GAAG,GACA,IAAI,cACH,kBAGF,MAXN,aAIE,IAEE,GAAG,GAKA,YACC,mBAOV,gBAAmC,kBAAnC,OACE,cAAA,CACA,gBAAA,CACA,YAGI,MADJ,EACK,KACG,KACI,WAAA,CACA,YATd,MAcE,cACI,qBAAA,CACA,qBAhBN,MAcE,aAME,KACE,WAAA,CACA,kBAtBN,MAcE,aAME,IAKE,aACE,aAAA,CACA,WAAA,CACA,SAAA,CACA,qBAAsB,uCAAtB,CACA,2BAAA,CACA,4BAAA,CACA,cAAA,CACA,MAAO,WAAP,CACA,eAAA,CACA,kBAAA,CACA,cAAA,CACA,eArCR,MAcE,aAME,IAoBI,IACE,aAAA,CACA,iBAAA,CACA,eAAA,CACA,iBAAA,CACA,QAAA,CACA,UAAA,CACA,YAEA,MAnCR,aAME,IAoBI,GASG,IAAI,QACH,aAIA,MAxCV,aAME,IAoBI,GAaE,GACG,IAAI,cACH,kBAvDd,MAcE,aAME,IAoBI,GAaE,GAKE,GACE,eA3Dd,MAcE,aAmDE,EAAC,eACE,UAAA,CACA,WAAA,CACA,eAAgB,8DAAhB,CACA,mBAAA,CACA,eAAA,CACA,kBAKP,gBAAkC,iBAAlC,OACE,YADF,MAGE,YACE,oBAJJ,MAOE,cACE,aAAA,CACA,cAAA,CACA,aAAA,CACA,YAXJ,MAOE,aAME,KACE,iBAAA,CACA,MAAA,CACA,WAhBN,MAOE,aAYE,EAAC,eACC,UAAA,CACA,WAAA,CACA,wBAtBN,MA0BE,KACE,UAAA,CACA,WAAA,CACA,cAAA,CACA"}
\ No newline at end of file
diff --git a/css/header/style.less b/css/header/style.less
index d73d5b7..3192a41 100644
--- a/css/header/style.less
+++ b/css/header/style.less
@@ -1,78 +1,236 @@
header {
- background: #fff;
- position: fixed;
- z-index: 99;
- left: 0;
- right: 0;
+ background: #fff;
+ position: fixed;
+ z-index: 99;
+ left: 0;
+ right: 0;
- height: 112px;
- font-size: 16px;
- line-height: 24px;
- box-shadow: 8px 8px 16px 4px rgba(133, 139, 146, 0.06);
+ height: 112px;
+ font-size: 16px;
+ line-height: 24px;
+ box-shadow: 8px 8px 16px 4px rgba(133, 139, 146, 0.06);
- .container {
- height: inherit;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0;
- background: #fff;
+ .container {
+ height: inherit;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0;
+ background: #fff;
- &:after {
- display: none;
- }
+ &:after {
+ display: none;
}
+ }
+
+ a {
+ text-decoration: none;
+ color: #000;
+
+ &.logo {
+ transform: translateY(4px);
+ }
+ }
+
+ .header_menu {
+ margin: 0 32px;
+ padding: 0 32px;
+ border-left: 1px solid #e7e9f0;
+ border-right: 1px solid #e7e9f0;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ height: 32px;
+ width: 100%;
+
+ &:last-child {
+ border-right: 0;
+ padding-right: 0;
+ margin-right: 0;
+ }
+
+ nav {
+ .nav_toggle {
+ display: none;
+ }
+
+ ul {
+ display: flex;
+
+ li {
+ &:not(:last-child) {
+ margin-right: 24px;
+ }
+
+ &:last-child {
+ margin-right: 63px;
+ }
+
+ a.active {
+ color: var(--blue);
+ font-weight: 700;
+ }
+
+ &.active {
+ a {
+ color: var(--blue);
+ font-weight: 700;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ .lk {
+ display: block;
+ text-decoration: none;
+ min-width: 32px;
+ width: 32px;
+ height: 32px;
+ background: url("/assets/images/icons/icon-lk.svg") no-repeat center;
+ }
+
+ @media all and (max-width: 1420px) {
+ font-size: 15px;
+ line-height: 24px;
a {
- text-decoration: none;
- color: #000;
-
&.logo {
- transform: translateY(4px);
- }
- }
-
- .header_menu {
- margin: 0 32px;
- padding: 0 32px;
- border-left: 1px solid #E7E9F0;
- border-right: 1px solid #E7E9F0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 32px;
- width: 100%;
-
- nav {
- ul {
- display: flex;
-
- li {
- &:not(:last-child) {
- margin-right: 24px;
- }
-
- &:last-child {
- margin-right: 63px;
- }
-
- a {
- &.active {
- color: var(--blue);
- font-weight: 700;
- }
- }
- }
+ img {
+ width: 180px;
+ height: 26px;
+ object-fit: contain;
}
}
}
- .lk {
- display: block;
- text-decoration: none;
- min-width: 32px;
- width: 32px;
- height: 32px;
- background: url("/images/icons/icon-lk.svg") no-repeat center;
+ .header_menu {
+ padding: 0 16px;
+ margin: 0 16px;
+
+ nav {
+
+ ul li {
+ &:not(:last-child) {
+ margin-right: 15px;
+ }
+
+ &:last-child {
+ margin-right: 30px;
+ }
+ }
+ }
}
-}
\ No newline at end of file
+ }
+
+ @media all and (max-width: 1279px) {
+ font-size: 15px;
+ line-height: 24px;
+ height: 86px;
+
+ a {
+ &.logo {
+ img {
+ width: 130px;
+ height: 20px;
+ }
+ }
+ }
+
+ .header_menu {
+ padding: 0 16px 0 32px;
+ margin: 0 16px 0 32px;
+
+
+
+ nav {
+ height: 23px;
+ position: relative;
+
+
+ .nav_toggle {
+ display: block;
+ height: 23px;
+ z-index: 3;
+ background-image: url("/assets/images/icons/icon-select.svg");
+ background-repeat: no-repeat;
+ background-position: 100% 50%;
+ font-size: 15px;
+ color: var(--blue);
+ font-weight: 700;
+ padding-right: 24px;
+ padding-left: 0;
+ cursor: pointer;
+ }
+
+ ul {
+ display: block;
+ position: absolute;
+ background: #fff;
+ padding: 15px 20px;
+ top: 25px;
+ left: -20px;
+ width: 320px;
+
+ &:not(.open) {
+ display: none;
+ }
+
+ li {
+ &:not(:last-child) {
+ margin-bottom: 6px;
+ }
+
+ a {
+ font-size: 15px;
+ }
+ }
+ }
+ }
+
+ a[href^="tel:"] {
+ width: 32px;
+ height: 32px;
+ background: url("/assets/images/icons/icon-header-phone.svg") no-repeat center;
+ text-indent: -9999px;
+ overflow: hidden;
+ margin-left: auto;
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ height: 84px;
+
+ .container {
+ padding-bottom: 35px;
+ }
+
+ .header_menu {
+ border-left: 0;
+ padding-left: 0;
+ margin-left: 0;
+ height: 24px;
+
+ nav {
+ position: absolute;
+ left: 0;
+ bottom: 9px;
+ }
+
+ a[href^="tel:"] {
+ width: 24px;
+ height: 24px;
+ background-size: contain;
+ }
+ }
+
+ .lk {
+ width: 24px;
+ height: 24px;
+ min-width: 24px;
+ background-size: contain;
+ }
+ }
+}
diff --git a/css/main.css b/css/main.css
new file mode 100644
index 0000000..2dafd72
--- /dev/null
+++ b/css/main.css
@@ -0,0 +1,2254 @@
+* {
+ box-sizing: border-box;
+}
+body {
+ font-size: 14px;
+}
+.v800_8217 {
+ width: 100%;
+ height: 3920px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8254 {
+ width: 100%;
+ height: 1831px;
+ background: url("../images/v800_8254.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 1823px;
+ left: 158px;
+ overflow: hidden;
+}
+.v800_8255 {
+ width: 230px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 138px;
+ left: 26px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 50px;
+ opacity: 1;
+ text-align: left;
+}
+.name {
+ color: #fff;
+}
+.v800_8256 {
+ height: 100%;
+ background: url("../images/v800_8256.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 393px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8257 {
+ width: 0px;
+ height: 100%;
+ background: url("../images/v800_8257.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8258 {
+ width: 0px;
+ height: 100%;
+ background: url("../images/v800_8258.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 761px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8259 {
+ height: 100%;
+ background: url("../images/v800_8259.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 1146px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8260 {
+ width: 100%;
+ height: 551px;
+ background: url("../images/v800_8260.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 1px;
+ opacity: 1;
+ position: absolute;
+ top: 219px;
+ left: 26px;
+ overflow: hidden;
+}
+.v800_8261 {
+ width: 367px;
+ height: 551px;
+ background: url("../images/v800_8261.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8262 {
+ width: 367px;
+ height: 551px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+.name {
+ color: #fff;
+}
+.v800_8265 {
+ width: 305px;
+ height: 2px;
+ background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0));
+ position: absolute;
+ top: 66px;
+ left: 20px;
+ overflow: hidden;
+}
+.v800_8266 {
+ width: 106px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 37px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8267 {
+ width: 317px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 401px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8268 {
+ width: 308px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 96px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8269 {
+ width: 233px;
+ height: 234px;
+ background: url("../images/v800_8269.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 146px;
+ left: 23px;
+ overflow: hidden;
+}
+.v800_8270 {
+ width: 233px;
+ height: 234px;
+ background: rgba(196,196,196,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8271 {
+ width: 246px;
+ height: 246px;
+ background: url("../images/v800_8271.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 7px;
+ overflow: hidden;
+}
+.v800_8272 {
+ width: 369px;
+ height: 551px;
+ background: url("../images/v800_8272.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 368px;
+ overflow: hidden;
+}
+.v800_8273 {
+ width: 369px;
+ height: 551px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+.name {
+ color: #fff;
+}
+.v800_8275 {
+ width: 106px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 37px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8276 {
+ width: 317px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 401px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8277 {
+ width: 296px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 96px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8278 {
+ width: 233px;
+ height: 234px;
+ background: url("../images/v800_8278.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 146px;
+ left: 23px;
+ overflow: hidden;
+}
+.v800_8279 {
+ width: 233px;
+ height: 234px;
+ background: rgba(196,196,196,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8280 {
+ width: 246px;
+ height: 246px;
+ background: url("../images/v800_8280.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 7px;
+ overflow: hidden;
+}
+.v800_8281 {
+ width: 384px;
+ height: 551px;
+ background: url("../images/v800_8281.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 738px;
+ overflow: hidden;
+}
+.v800_8282 {
+ width: 384px;
+ height: 551px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+.name {
+ color: #fff;
+}
+.v800_8284 {
+ width: 106px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 37px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8285 {
+ width: 317px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 401px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8286 {
+ width: 274px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 96px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8287 {
+ width: 233px;
+ height: 234px;
+ background: url("../images/v800_8287.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 146px;
+ left: 23px;
+ overflow: hidden;
+}
+.v800_8288 {
+ width: 233px;
+ height: 234px;
+ background: rgba(196,196,196,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8289 {
+ width: 246px;
+ height: 246px;
+ background: url("../images/v800_8289.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 7px;
+ overflow: hidden;
+}
+.v800_8290 {
+ width: 376px;
+ height: 551px;
+ background: url("../images/v800_8290.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 1123px;
+ overflow: hidden;
+}
+.v800_8291 {
+ width: 376px;
+ height: 551px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+.name {
+ color: #fff;
+}
+.v800_8293 {
+ width: 106px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 37px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8294 {
+ width: 317px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 401px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8295 {
+ width: 325px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 68px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8296 {
+ width: 233px;
+ height: 234px;
+ background: url("../images/v800_8296.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 146px;
+ left: 23px;
+ overflow: hidden;
+}
+.v800_8297 {
+ width: 233px;
+ height: 234px;
+ background: rgba(196,196,196,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8298 {
+ width: 246px;
+ height: 246px;
+ background: url("../images/v800_8298.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 7px;
+ overflow: hidden;
+}
+.v800_8299 {
+ width: 193px;
+ height: 28px;
+ background: url("../images/v800_8299.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 146px;
+ left: 1146px;
+ overflow: hidden;
+}
+.v800_8574 {
+ width: 96px;
+ height: 28px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 97px;
+ overflow: hidden;
+}
+.v800_8575 {
+ width: 97px;
+ height: 28px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8303 {
+ width: 6px;
+ height: 10px;
+ background: url("../images/v800_8303.png");
+ opacity: 1;
+ position: absolute;
+ top: 9px;
+ left: 177px;
+ border: 2px solid rgba(255,255,255,1);
+}
+.v800_8304 {
+ width: 6px;
+ height: 10px;
+ background: url("../images/v800_8304.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 165px;
+ left: 1197px;
+ transform: rotate(-179deg);
+ overflow: hidden;
+}
+.v800_8305 {
+ width: 6px;
+ height: 10px;
+ background: url("../images/v800_8305.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ border: 2px solid rgba(142,147,166,1);
+ transform: rotate(-179deg);
+}
+.v1405_16041 {
+ width: 100%;
+ height: 1141px;
+ background: url("../images/v1405_16041.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 2779px;
+ left: 0px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.v800_8306 {
+ width: 100%;
+ height: 583px;
+ background: url("../images/v800_8306.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 182px;
+ overflow: hidden;
+}
+.v800_8308 {
+ width: 100%;
+ height: 320px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: absolute;
+ top: 178px;
+ left: 2px;
+ overflow: hidden;
+}
+.v800_8309 {
+ width: 320px;
+ color: url("../images/v800_8309.png");
+ position: absolute;
+ top: 262px;
+ left: 25px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8310 {
+ width: 753px;
+ height: 490px;
+ background: url("../images/v800_8310.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 93px;
+ left: 369px;
+ overflow: hidden;
+}
+.v800_8311 {
+ width: 753px;
+ height: 490px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8312 {
+ width: 577px;
+ height: 256px;
+ background: url("../images/v800_8312.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 32px;
+ opacity: 1;
+ position: absolute;
+ top: 57px;
+ left: 88px;
+ overflow: hidden;
+}
+.v800_8313 {
+ width: 577px;
+ height: 40px;
+ background: rgba(255,255,255,0.20000000298023224);
+ padding: 10px 12px;
+ margin: 10px;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8314 {
+ width: 517px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 10px;
+ left: 12px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8315 {
+ width: 577px;
+ height: 40px;
+ background: rgba(255,255,255,0.20000000298023224);
+ padding: 10px 12px;
+ margin: 10px;
+ opacity: 1;
+ position: absolute;
+ top: 72px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8316 {
+ width: 517px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 10px;
+ left: 12px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8317 {
+ width: 577px;
+ height: 40px;
+ background: rgba(255,255,255,0.20000000298023224);
+ padding: 10px 12px;
+ margin: 10px;
+ opacity: 1;
+ position: absolute;
+ top: 144px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8318 {
+ width: 517px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 10px;
+ left: 12px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8319 {
+ width: 577px;
+ height: 40px;
+ background: rgba(255,255,255,0.20000000298023224);
+ padding: 10px 12px;
+ margin: 10px;
+ opacity: 1;
+ position: absolute;
+ top: 216px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8320 {
+ width: 517px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 10px;
+ left: 12px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8321 {
+ width: 577px;
+ height: 40px;
+ background: rgba(255,255,255,1);
+ padding: 10px 0px;
+ margin: 12px;
+ opacity: 1;
+ position: absolute;
+ top: 331px;
+ left: 116px;
+ overflow: hidden;
+}
+.v800_8322 {
+ width: 16px;
+ height: 18px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 10px;
+ left: 0px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.v800_8324 {
+ width: 549px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 10px;
+ left: 28px;
+ font-family: Montserrat;
+ font-weight: Light;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.name {
+ color: #fff;
+}
+.v800_8326 {
+ width: 642px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 50px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8327 {
+ width: 100%;
+ height: 518px;
+ background: url("../images/v800_8327.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 540px;
+ left: 184px;
+ overflow: hidden;
+}
+.v800_8329 {
+ height: 350px;
+ background: url("../images/v800_8329.png");
+ opacity: 1;
+ position: absolute;
+ top: 168px;
+ left: 466px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8331 {
+ height: 329px;
+ background: url("../images/v800_8331.png");
+ opacity: 1;
+ position: absolute;
+ top: 189px;
+ left: 0px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8333 {
+ height: 350px;
+ background: url("../images/v800_8333.png");
+ opacity: 1;
+ position: absolute;
+ top: 168px;
+ left: 944px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8334 {
+ height: 518px;
+ background: url("../images/v800_8334.png");
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 1311px;
+ border: 1px solid rgba(237,238,244,1);
+}
+.v800_8335 {
+ width: 100%;
+ height: 210px;
+ background: url("../images/v800_8335.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 237px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8336 {
+ width: 278px;
+ height: 37px;
+ background: url("../images/v800_8336.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 1px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8337 {
+ width: 278px;
+ height: 37px;
+ background: url("../images/v800_8337.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ padding: 4px 0px;
+ margin: 8px;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8338 {
+ width: 97px;
+ height: 29px;
+ background: url("../images/v800_8338.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 16px;
+ opacity: 1;
+ position: absolute;
+ top: 4px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8339 {
+ width: 97px;
+ height: 42px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 5px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8340 {
+ width: 54px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 5px;
+ left: 22px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8341 {
+ width: 112px;
+ height: 25px;
+ background: url("../images/v800_8341.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 16px;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 105px;
+ overflow: hidden;
+}
+.v800_8342 {
+ width: 4px;
+ height: 25px;
+ background: rgba(196,196,196,1);
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8343 {
+ width: 92px;
+ color: rgba(50,60,71,1);
+ position: absolute;
+ top: 0px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8344 {
+ width: 49px;
+ height: 25px;
+ background: url("../images/v800_8344.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 16px;
+ opacity: 1;
+ position: absolute;
+ top: 6px;
+ left: 225px;
+ overflow: hidden;
+}
+.v800_8345 {
+ width: 4px;
+ height: 25px;
+ background: rgba(196,196,196,1);
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8346 {
+ width: 29px;
+ color: rgba(50,60,71,1);
+ position: absolute;
+ top: 0px;
+ left: 20px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8347 {
+ width: 100%;
+ height: 128px;
+ background: url("../images/v800_8347.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 32px;
+ opacity: 1;
+ position: absolute;
+ top: 82px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8348 {
+ width: 448px;
+ height: 128px;
+ background: url("../images/v800_8348.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.v800_8353 {
+ width: 448px;
+ height: 90px;
+ background: url("../images/v800_8353.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 480px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.v800_8357 {
+ width: 351px;
+ height: 90px;
+ background: url("../images/v800_8357.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 960px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.name {
+ color: #fff;
+}
+.v800_8362 {
+ width: 100%;
+ height: 708px;
+ background: url("../images/v800_8362.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8363 {
+ width: 100%;
+ height: 519px;
+ background: url("../images/v800_8363.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 110px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8364 {
+ width: 100%;
+ height: 519px;
+ background: url("../images/v800_8364.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8365 {
+ width: 100%;
+ height: 519px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
+.v800_8367 {
+ width: 100%;
+ height: 708px;
+ background: url("../images/v800_8367.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8368 {
+ width: 100%;
+ height: 708px;
+ background: rgba(196,196,196,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8369 {
+ width: 100%;
+ height: 885px;
+ background: url("../images/v800_8369.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 5px;
+ left: 550px;
+ overflow: hidden;
+}
+.v800_8370 {
+ width: 100%;
+ height: 660px;
+ background: url("../images/v800_8370.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 48px;
+ left: 24px;
+ overflow: hidden;
+}
+.v800_8371 {
+ width: 100%;
+ background: url("../images/v800_8371.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 409px;
+ left: 3px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8372 {
+ height: 593px;
+ background: url("../images/v800_8372.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 115px;
+ left: 1044px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8373 {
+ height: 593px;
+ background: url("../images/v800_8373.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 115px;
+ left: 186px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8374 {
+ height: 593px;
+ background: url("../images/v800_8374.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 115px;
+ left: 1330px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8375 {
+ height: 593px;
+ background: url("../images/v800_8375.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 115px;
+ left: 472px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8376 {
+ height: 593px;
+ background: url("../images/v800_8376.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 114px;
+ left: 1616px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8377 {
+ height: 593px;
+ background: url("../images/v800_8377.png");
+ opacity: 0.10000000149011612;
+ position: absolute;
+ top: 114px;
+ left: 758px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8378 {
+ width: 458px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 174px;
+ left: 189px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 43px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8379 {
+ width: 100%;
+ height: 301px;
+ background: url("../images/v800_8379.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 407px;
+ left: 186px;
+ overflow: hidden;
+}
+.v800_8380 {
+ width: 286px;
+ height: 301px;
+ background: url("../images/v800_8380.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8381 {
+ width: 286px;
+ height: 301px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v1148_10647 {
+ width: 249px;
+ height: 126px;
+ background: url("../images/v1148_10647.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 161px;
+ left: 5px;
+ overflow: hidden;
+}
+.v800_8382 {
+ width: 78px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 0px;
+ left: 20px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8383 {
+ width: 14px;
+ height: 44px;
+ background: url("../images/v800_8383.png");
+ opacity: 1;
+ position: absolute;
+ top: 5px;
+ left: 235px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.name {
+ color: #fff;
+}
+.v800_8384 {
+ width: 286px;
+ height: 87px;
+ background: url("../images/v800_8384.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 214px;
+ left: 286px;
+ overflow: hidden;
+}
+.v800_8385 {
+ width: 286px;
+ height: 1px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 86px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8386 {
+ width: 203px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 0px;
+ left: 25px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8387 {
+ width: 14px;
+ height: 22px;
+ background: url("../images/v800_8387.png");
+ opacity: 1;
+ position: absolute;
+ top: 33px;
+ left: 256px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8388 {
+ width: 286px;
+ height: 301px;
+ background: url("../images/v800_8388.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 572px;
+ overflow: hidden;
+}
+.v800_8389 {
+ width: 286px;
+ height: 301px;
+ background: rgba(28,1,169,1);
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8390 {
+ width: 203px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 214px;
+ left: 25px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8391 {
+ width: 14px;
+ height: 22px;
+ background: url("../images/v800_8391.png");
+ opacity: 1;
+ position: absolute;
+ top: 247px;
+ left: 256px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8392 {
+ width: 286px;
+ height: 301px;
+ background: url("../images/v800_8392.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 858px;
+ overflow: hidden;
+}
+.v800_8393 {
+ width: 286px;
+ height: 301px;
+ background: rgba(28,1,169,1);
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8394 {
+ width: 203px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 214px;
+ left: 25px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8395 {
+ width: 14px;
+ height: 22px;
+ background: url("../images/v800_8395.png");
+ opacity: 1;
+ position: absolute;
+ top: 247px;
+ left: 256px;
+ border: 1px solid rgba(255,255,255,1);
+}
+.v800_8396 {
+ width: 286px;
+ height: 301px;
+ background: url("../images/v800_8396.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 1144px;
+ overflow: hidden;
+}
+.v800_8397 {
+ width: 286px;
+ height: 301px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+}
+.v800_8398 {
+ width: 286px;
+ height: 301px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+}
+.v800_8399 {
+ width: 203px;
+ color: rgba(255,255,255,1);
+ position: absolute;
+ top: 214px;
+ left: 25px;
+ font-family: PF DinDisplay Pro;
+ font-weight: Bold;
+ font-size: 24px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8400 {
+ width: 14px;
+ height: 22px;
+ background: url("../images/v800_8400.png");
+ opacity: 1;
+ position: absolute;
+ top: 247px;
+ left: 256px;
+ border: 1px solid rgba(28,1,169,1);
+}
+.v800_8401 {
+ width: 100%;
+ height: 764px;
+ background: url("../images/v800_8401.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 1058px;
+ left: 158px;
+ overflow: hidden;
+}
+.v800_8402 {
+ width: 100%;
+ height: 764px;
+ background: url("../images/v800_8402.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8403 {
+ width: 100%;
+ height: 764px;
+ background: url("../images/v800_8403.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8404 {
+ width: 100%;
+ height: 764px;
+ background: rgba(237,238,244,1);
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+}
+.name {
+ color: #fff;
+}
+.v800_8405 {
+ width: 830px;
+ height: 496px;
+ background: url("../images/v800_8405.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ margin: 48px;
+ opacity: 1;
+ position: absolute;
+ top: 219px;
+ left: 28px;
+ overflow: hidden;
+}
+.v800_8406 {
+ width: 830px;
+ height: 88px;
+ background: url("../images/v800_8406.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v803_8578 {
+ width: 830px;
+ height: 57px;
+ background: rgba(255,255,255,1);
+ opacity: 0.6000000238418579;
+ position: relative;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v803_8579 {
+ width: 812px;
+ height: 5px;
+ background: rgba(142,147,166,1);
+ opacity: 0.4000000059604645;
+ position: absolute;
+ top: 52px;
+ left: 11px;
+ overflow: hidden;
+}
+.v803_8580 {
+ width: 122px;
+ height: 10px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 47px;
+ left: 11px;
+ overflow: hidden;
+}
+.v844_13201 {
+ width: 16px;
+ height: 16px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 68px;
+ left: 122px;
+ transform: rotate(-45deg);
+}
+.v800_8407 {
+ width: 46px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 11px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: center;
+}
+.v800_8408 {
+ width: 51px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 772px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.name {
+ color: #fff;
+}
+.v809_8318 {
+ width: 93px;
+ height: 23px;
+ background: url("../images/v809_8318.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 15px;
+ left: 730px;
+ overflow: hidden;
+}
+.v803_8582 {
+ width: 12px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 81px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v803_8586 {
+ width: 75px;
+ color: rgba(11,11,11,1);
+ position: relative;
+ top: 0px;
+ left: 0px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8285 {
+ width: 830px;
+ height: 88px;
+ background: url("../images/v805_8285.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 136px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8286 {
+ width: 830px;
+ height: 57px;
+ background: rgba(255,255,255,1);
+ opacity: 0.6000000238418579;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8287 {
+ width: 812px;
+ height: 5px;
+ background: rgba(142,147,166,1);
+ opacity: 0.4000000059604645;
+ position: absolute;
+ top: 52px;
+ left: 11px;
+ overflow: hidden;
+}
+.v805_8288 {
+ width: 264px;
+ height: 10px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 47px;
+ left: 11px;
+ overflow: hidden;
+}
+.v844_13195 {
+ width: 16px;
+ height: 16px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 68px;
+ left: 263px;
+ transform: rotate(-45deg);
+}
+.v805_8289 {
+ width: 27px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 14px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v805_8290 {
+ width: 38px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 785px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.name {
+ color: #fff;
+}
+.v809_8319 {
+ width: 39px;
+ height: 23px;
+ background: url("../images/v809_8319.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 15px;
+ left: 784px;
+ overflow: hidden;
+}
+.v805_8292 {
+ width: 14px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 25px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8293 {
+ width: 21px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8295 {
+ width: 830px;
+ height: 88px;
+ background: url("../images/v805_8295.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 272px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8296 {
+ width: 830px;
+ height: 57px;
+ background: rgba(255,255,255,1);
+ opacity: 0.6000000238418579;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8297 {
+ width: 812px;
+ height: 5px;
+ background: rgba(142,147,166,1);
+ opacity: 0.4000000059604645;
+ position: absolute;
+ top: 52px;
+ left: 11px;
+ overflow: hidden;
+}
+.v805_8298 {
+ width: 264px;
+ height: 10px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 47px;
+ left: 11px;
+ overflow: hidden;
+}
+.v844_13202 {
+ width: 16px;
+ height: 16px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 68px;
+ left: 264px;
+ transform: rotate(-45deg);
+}
+.v805_8299 {
+ width: 47px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 14px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v805_8300 {
+ width: 57px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 766px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.name {
+ color: #fff;
+}
+.v809_8320 {
+ width: 62px;
+ height: 23px;
+ background: url("../images/v809_8320.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 15px;
+ left: 761px;
+ overflow: hidden;
+}
+.v805_8302 {
+ width: 35px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 27px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8303 {
+ width: 21px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8305 {
+ width: 830px;
+ height: 88px;
+ background: url("../images/v805_8305.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 408px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8306 {
+ width: 830px;
+ height: 57px;
+ background: rgba(255,255,255,1);
+ opacity: 0.6000000238418579;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v805_8307 {
+ width: 812px;
+ height: 5px;
+ background: rgba(142,147,166,1);
+ opacity: 0.4000000059604645;
+ position: absolute;
+ top: 52px;
+ left: 11px;
+ overflow: hidden;
+}
+.v805_8308 {
+ width: 42px;
+ height: 10px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 47px;
+ left: 11px;
+ overflow: hidden;
+}
+.v844_13203 {
+ width: 16px;
+ height: 16px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 68px;
+ left: 42px;
+ transform: rotate(-45deg);
+}
+.v805_8309 {
+ width: 23px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 14px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v805_8310 {
+ width: 27px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 64px;
+ left: 796px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.name {
+ color: #fff;
+}
+.v809_8321 {
+ width: 27px;
+ height: 23px;
+ background: url("../images/v809_8321.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 15px;
+ left: 796px;
+ overflow: hidden;
+}
+.v805_8312 {
+ width: 14px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 13px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.v805_8313 {
+ width: 9px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: right;
+}
+.name {
+ color: #fff;
+}
+.v800_8435 {
+ width: 213px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 219px;
+ left: 986px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8436 {
+ width: 26px;
+ color: rgba(142,147,166,1);
+ position: absolute;
+ top: 254px;
+ left: 1182px;
+ font-family: Montserrat;
+ font-weight: Light;
+ font-size: 12px;
+ opacity: 1;
+ text-align: right;
+}
+.v800_8437 {
+ width: 348px;
+ color: rgba(142,147,166,1);
+ position: absolute;
+ top: 581px;
+ left: 990px;
+ font-family: Montserrat;
+ font-weight: Regular;
+ font-size: 13px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8438 {
+ width: 189px;
+ color: rgba(28,1,169,1);
+ position: absolute;
+ top: 272px;
+ left: 989px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 41px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8439 {
+ width: 220px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 362px;
+ left: 990px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 15px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8440 {
+ width: 196px;
+ color: rgba(11,11,11,1);
+ position: absolute;
+ top: 415px;
+ left: 990px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 41px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8441 {
+ width: 812px;
+ color: rgba(0,0,0,1);
+ position: absolute;
+ top: 73px;
+ left: 26px;
+ font-family: Montserrat;
+ font-weight: Bold;
+ font-size: 50px;
+ opacity: 1;
+ text-align: left;
+}
+.v800_8442 {
+ width: 450px;
+ height: 272px;
+ background: url("../images/v800_8442.png");
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: cover;
+ opacity: 1;
+ position: absolute;
+ top: 386px;
+ left: 216px;
+ overflow: hidden;
+}
+.v800_8445 {
+ width: 7px;
+ height: 16px;
+ background: rgba(28,1,169,1);
+ opacity: 1;
+ position: absolute;
+ top: 28px;
+ left: 55px;
+ overflow: hidden;
+}
+.v800_8446 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 447px;
+ overflow: hidden;
+}
+.v800_8447 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 193px;
+ overflow: hidden;
+}
+.v800_8448 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8449 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 130px;
+ left: 447px;
+ overflow: hidden;
+}
+.v800_8450 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 130px;
+ left: 193px;
+ overflow: hidden;
+}
+.v800_8451 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 130px;
+ left: 0px;
+ overflow: hidden;
+}
+.v800_8452 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 260px;
+ left: 447px;
+ overflow: hidden;
+}
+.v800_8453 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 260px;
+ left: 193px;
+ overflow: hidden;
+}
+.v800_8454 {
+ width: 3px;
+ height: 12px;
+ background: rgba(255,255,255,1);
+ opacity: 1;
+ position: absolute;
+ top: 260px;
+ left: 0px;
+ overflow: hidden;
+}
+.name {
+ color: #fff;
+}
diff --git a/css/main/style.css b/css/main/style.css
index edb1ff4..b5870ee 100644
--- a/css/main/style.css
+++ b/css/main/style.css
@@ -1,1433 +1 @@
-main {
- overflow: hidden;
-}
-main section.gray {
- background: var(--inactive);
-}
-main .title_wrapper {
- display: flex;
- justify-content: space-between;
- margin-bottom: 50px;
-}
-main .title_wrapper h1,
-main .title_wrapper h2,
-main .title_wrapper h3,
-main .title_wrapper h4,
-main .title_wrapper h5 {
- margin-bottom: 0;
- line-height: 1;
-}
-main .title_wrapper .title_link {
- font-weight: 600;
- display: inline-block;
- margin-left: 55px;
- align-self: flex-end;
- line-height: 24px;
-}
-main .title_wrapper .left {
- display: flex;
-}
-main .title_wrapper .right {
- display: flex;
-}
-main #main_slider {
- height: 708px;
- background: var(--gray-light);
- padding: 0;
- position: relative;
-}
-main #main_slider .container {
- position: relative;
- height: 100%;
- background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 2px, transparent 20%);
-}
-main #main_slider .slider_active_title {
- font-weight: bold;
- font-size: 43px;
- line-height: 63px;
- letter-spacing: 2px;
- color: #fff;
- max-width: 560px;
- position: absolute;
- top: 176px;
- left: 0;
- text-transform: uppercase;
- font-family: 'PF Din Display Pro Bold';
-}
-main #main_slider .slider_list {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
-}
-main #main_slider .slider_list .slider_item {
- width: 20%;
- max-width: 20%;
- height: 300px;
- padding: 15px 25px;
- display: flex;
- flex-wrap: wrap;
- align-items: flex-end;
- align-content: flex-end;
- cursor: pointer;
- position: relative;
- overflow: hidden;
-}
-main #main_slider .slider_list .slider_item:after {
- content: "";
- display: block;
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- z-index: 1;
- width: 100%;
- height: 100%;
- transform: translateY(100%);
- transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
-}
-main #main_slider .slider_list .slider_item .item_name {
- font-size: 24px;
- line-height: 24px;
- text-transform: uppercase;
- color: #fff;
- width: 100%;
- display: flex;
- height: 86px;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
- transform: translateY(57px);
- position: relative;
- z-index: 2;
- margin-right: 15px;
- font-family: 'PF Din Display Pro Bold';
-}
-main #main_slider .slider_list .slider_item .item_name:after {
- content: "";
- display: block;
- width: 22px;
- min-width: 22px;
- height: 14px;
- background: url("/images/icons/slider_arrow.svg") no-repeat center;
-}
-main #main_slider .slider_list .slider_item a {
- display: inline-block;
- line-height: 40px;
- color: #fff;
- font-weight: 600;
- transition: 175ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
- transform: translateY(57px);
- position: relative;
- z-index: 2;
-}
-main #main_slider .slider_list .slider_item.active {
- background: currentColor;
-}
-main #main_slider .slider_list .slider_item.active .item_name,
-main #main_slider .slider_list .slider_item.active a {
- transform: translateY(0px);
-}
-main #main_slider .slider_list .slider_item.active .item_name:after {
- width: 44px;
- background: url("/images/icons/slider_arrow-hover.svg") no-repeat center;
- transform: rotate(-90deg) translate(15px, 15px);
-}
-main #main_slider .slider_list .slider_item:hover .item_name,
-main #main_slider .slider_list .slider_item:hover a {
- transform: translateY(0px);
-}
-main #main_slider .slider_list .slider_item:hover:after {
- transform: translateY(0px);
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, currentColor 100%);
-}
-main #main_slider .slider_list .slider_navto {
- width: 20%;
- max-width: 20%;
- height: 300px;
-}
-main #main_slider .slider_list .slider_navto a {
- background: #fff;
- width: 100%;
- height: 100%;
- clip-path: polygon(100% 0, 0% 100%, 100% 100%);
- transition: 175ms background cubic-bezier(0.25, 0.46, 0.45, 0.94);
- box-sizing: border-box;
- padding: 0 25px;
- display: flex;
- align-items: flex-end;
- justify-content: flex-end;
-}
-main #main_slider .slider_list .slider_navto a:after {
- content: "";
- display: block;
- width: 22px;
- min-width: 22px;
- height: 86px;
- transition: 175ms all cubic-bezier(0.25, 0.46, 0.45, 0.94);
- background: url("/images/icons/slider_arrow-blue.svg") no-repeat center;
-}
-main #main_slider .slider_list .slider_navto a:hover {
- background: #04a8a4;
-}
-main #main_slider .slider_list .slider_navto a:hover:after {
- width: 90px;
- background: url("/images/icons/arrow-navto.svg") no-repeat center;
-}
-main #calc .container {
- background: url("/images/calc-bg.jpg") no-repeat right center #EDEFF5;
- padding: 70px 25px;
- position: relative;
-}
-main #calc .container:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- bottom: 0;
- right: -100%;
- width: 100%;
- left: auto;
- background-color: inherit;
-}
-main #calc .calc_body {
- display: flex;
- justify-content: space-between;
-}
-main #calc .calc_body .calc_settings {
- width: 830px;
-}
-main #calc .calc_body .calc_settings .settings_box {
- background: rgba(255, 255, 255, 0.6);
- border-radius: 4px;
- height: 57px;
- margin-bottom: 80px;
- position: relative;
- display: flex;
- flex-wrap: wrap;
- align-items: flex-end;
- justify-content: space-between;
- padding: 10px;
-}
-main #calc .calc_body .calc_settings .settings_box:last-child {
- margin-bottom: 20px;
-}
-main #calc .calc_body .calc_settings .settings_box p {
- margin-bottom: 15px;
- font-weight: 700;
-}
-main #calc .calc_body .calc_settings .settings_box p.min {
- position: absolute;
- top: 65px;
- font-weight: 400;
- left: 10px;
- margin: 0;
-}
-main #calc .calc_body .calc_settings .settings_box p.max {
- position: absolute;
- top: 65px;
- font-weight: 400;
- right: 10px;
- margin: 0;
-}
-main #calc .calc_body .calc_settings .settings_box .line {
- position: relative;
- width: 100%;
- background: rgba(142, 148, 167, 0.4);
- height: 5px;
- z-index: 2;
-}
-main #calc .calc_body .calc_settings .settings_box .line .active_line {
- background: var(--blue);
- position: absolute;
- left: 0;
- bottom: 0;
- height: 10px;
-}
-main #calc .calc_body .calc_settings .settings_box .line .dragble {
- position: absolute;
- top: 8px;
- left: 0;
- width: 16px;
- height: 16px;
- transform: rotate(45deg) translate(-6px, 6px);
- cursor: pointer;
- background: var(--blue);
-}
-main #calc .calc_body .calc_result {
- width: 350px;
- align-items: stretch;
- align-content: stretch;
- display: flex;
- flex-wrap: wrap;
-}
-main #calc .calc_body .calc_result .result_box p {
- font-weight: 700;
-}
-main #calc .calc_body .calc_result .result_box p.price {
- font-size: 41px;
- line-height: 1;
-}
-main #calc .calc_body .calc_result .result_box p.price sup {
- font-weight: 300;
- font-size: 12px;
- line-height: 18px;
- color: #8E94A7;
- vertical-align: super;
-}
-main #calc .calc_body .calc_result .button {
- width: 100%;
- align-self: center;
-}
-main #calc .calc_body .calc_result .secondary {
- align-self: flex-end;
-}
-main .news_arrows {
- display: flex;
- align-content: center;
-}
-main .news_arrows button {
- width: 97px;
- height: 28px;
- background-color: var(--blue);
- box-sizing: border-box;
- padding: 0 10px;
- transition: 175ms background ease-in-out;
-}
-main .news_arrows button svg {
- width: 8px;
- height: 12px;
- margin-left: auto;
-}
-main .news_arrows button svg path {
- stroke: #fff;
- transition: 175ms stroke ease-in-out;
-}
-main .news_arrows button:disabled,
-main .news_arrows button.slick-disabled {
- cursor: default;
- background-color: var(--inactive);
- background-position: center;
-}
-main .news_arrows button:disabled svg,
-main .news_arrows button.slick-disabled svg {
- margin-left: 0;
-}
-main .news_arrows button:disabled svg path,
-main .news_arrows button.slick-disabled svg path {
- stroke: #8E94A7;
-}
-main .news_list,
-main .career_list {
- display: flex;
- white-space: nowrap;
- width: 100%;
-}
-main .news_list .slick-list,
-main .career_list .slick-list {
- width: 100%;
-}
-main .news_list .slick-list .slick-track,
-main .career_list .slick-list .slick-track {
- white-space: nowrap;
- display: flex;
- padding-right: 100px;
-}
-main .news_list .slick-list .slick-track:after,
-main .career_list .slick-list .slick-track:after {
- content: "";
- display: block;
- width: 365px;
- min-width: 365px;
- height: 200px;
-}
-main .news_list .news_item,
-main .career_list .news_item,
-main .news_list .career_item,
-main .career_list .career_item {
- width: 365px;
- min-width: 365px;
- padding: 35px 20px;
- background: #EDEFF5;
- position: relative;
-}
-main .news_list .news_item p,
-main .career_list .news_item p,
-main .news_list .career_item p,
-main .career_list .career_item p {
- white-space: normal;
- margin-bottom: 22px;
- line-height: 24px;
- transition: 175ms color ease-in-out;
-}
-main .news_list .news_item .news_date,
-main .career_list .news_item .news_date,
-main .news_list .career_item .news_date,
-main .career_list .career_item .news_date {
- margin-bottom: 35px;
-}
-main .news_list .news_item img,
-main .career_list .news_item img,
-main .news_list .career_item img,
-main .career_list .career_item img {
- display: block;
- margin-bottom: 22px;
- object-fit: cover;
-}
-main .news_list .news_item .news_title,
-main .career_list .news_item .news_title,
-main .news_list .career_item .news_title,
-main .career_list .career_item .news_title,
-main .news_list .news_item .career_title,
-main .career_list .news_item .career_title,
-main .news_list .career_item .career_title,
-main .career_list .career_item .career_title {
- color: #0C0C0C;
- font-size: 24px;
- line-height: 28px;
- font-weight: 700;
-}
-main .news_list .news_item .news_link,
-main .career_list .news_item .news_link,
-main .news_list .career_item .news_link,
-main .career_list .career_item .news_link,
-main .news_list .news_item .career_link,
-main .career_list .news_item .career_link,
-main .news_list .career_item .career_link,
-main .career_list .career_item .career_link {
- margin-bottom: 0;
- color: var(--blue);
-}
-main .news_list .news_item a,
-main .career_list .news_item a,
-main .news_list .career_item a,
-main .career_list .career_item a {
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 3;
-}
-main .news_list .news_item:after,
-main .career_list .news_item:after,
-main .news_list .career_item:after,
-main .career_list .career_item:after {
- content: "";
- display: block;
- position: absolute;
- top: -24px;
- left: 0;
- right: 0;
- bottom: -24px;
- opacity: 0;
- visibility: hidden;
- transition: 175ms all ease-in-out;
-}
-main .news_list .news_item:hover,
-main .career_list .news_item:hover,
-main .news_list .career_item:hover,
-main .career_list .career_item:hover {
- z-index: 2;
-}
-main .news_list .news_item:hover:after,
-main .career_list .news_item:hover:after,
-main .news_list .career_item:hover:after,
-main .career_list .career_item:hover:after {
- opacity: 1;
- visibility: visible;
- background: var(--green);
- z-index: 0;
-}
-main .news_list .news_item:hover p,
-main .career_list .news_item:hover p,
-main .news_list .career_item:hover p,
-main .career_list .career_item:hover p,
-main .news_list .news_item:hover img,
-main .career_list .news_item:hover img,
-main .news_list .career_item:hover img,
-main .career_list .career_item:hover img {
- color: #fff;
- z-index: 2;
- position: relative;
-}
-main .news_list .news_item:hover .news_date:after,
-main .career_list .news_item:hover .news_date:after,
-main .news_list .career_item:hover .news_date:after,
-main .career_list .career_item:hover .news_date:after {
- content: "";
- position: absolute;
- bottom: -8px;
- height: 2px;
- left: 0;
- right: 0;
- background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
-}
-main .news_list.masongry_columns,
-main .career_list.masongry_columns {
- display: flex;
- justify-content: space-between;
-}
-main .news_list.masongry_columns .column,
-main .career_list.masongry_columns .column {
- width: calc(50% - 15px);
-}
-main .news_list.masongry_columns .news_item,
-main .career_list.masongry_columns .news_item,
-main .news_list.masongry_columns .career_item,
-main .career_list.masongry_columns .career_item {
- width: 100%;
- margin-bottom: 30px;
-}
-main .programs_list,
-main .services_list {
- display: flex;
- flex-wrap: wrap;
-}
-main .programs_list .program_item,
-main .services_list .program_item,
-main .programs_list .service_item,
-main .services_list .service_item {
- margin-top: 40px;
- margin-bottom: 40px;
- width: calc(25% - 23px);
- position: relative;
- background: #EDEFF5;
- transform-origin: left;
- transition: all 175ms ease-in-out;
- height: 390px;
-}
-main .programs_list .program_item:after,
-main .services_list .program_item:after,
-main .programs_list .service_item:after,
-main .services_list .service_item:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #eeeff4;
- z-index: 0;
- transition: all 125ms ease-in-out;
-}
-main .programs_list .program_item a,
-main .services_list .program_item a,
-main .programs_list .service_item a,
-main .services_list .service_item a {
- height: 100%;
- display: block;
- box-sizing: border-box;
- padding: 36px 18px;
- position: relative;
- z-index: 2;
-}
-main .programs_list .program_item a span,
-main .services_list .program_item a span,
-main .programs_list .service_item a span,
-main .services_list .service_item a span {
- display: inline-block;
-}
-main .programs_list .program_item:not(:nth-child(4n)),
-main .services_list .program_item:not(:nth-child(4n)),
-main .programs_list .service_item:not(:nth-child(4n)),
-main .services_list .service_item:not(:nth-child(4n)) {
- margin-right: 30px;
-}
-main .programs_list .program_item .program_name,
-main .services_list .program_item .program_name,
-main .programs_list .service_item .program_name,
-main .services_list .service_item .program_name,
-main .programs_list .program_item .service_name,
-main .services_list .program_item .service_name,
-main .programs_list .service_item .service_name,
-main .services_list .service_item .service_name {
- font-weight: 700;
- font-size: 26px;
- line-height: 36px;
- color: #000;
- position: relative;
- z-index: 2;
- transform: translateY(0px);
- transition: 125ms transform ease-in-out;
- max-width: 70%;
-}
-main .programs_list .program_item .program_link,
-main .services_list .program_item .program_link,
-main .programs_list .service_item .program_link,
-main .services_list .service_item .program_link,
-main .programs_list .program_item .service_link,
-main .services_list .program_item .service_link,
-main .programs_list .service_item .service_link,
-main .services_list .service_item .service_link {
- position: absolute;
- right: 0px;
- bottom: -10px;
- color: var(--blue);
- font-weight: 600;
- font-size: 15px;
- line-height: 20px;
- opacity: 0;
- z-index: 2;
- transform: translate(0, 0);
- transition: 125ms all ease-in-out;
-}
-main .programs_list .program_item img,
-main .services_list .program_item img,
-main .programs_list .service_item img,
-main .services_list .service_item img {
- position: absolute;
- right: 0;
- bottom: 0;
- transform: translate(0, 0);
- transition: 125ms all ease-in-out;
-}
-main .programs_list .program_item:hover:after,
-main .services_list .program_item:hover:after,
-main .programs_list .service_item:hover:after,
-main .services_list .service_item:hover:after {
- top: -35px;
- right: -20px;
- bottom: -35px;
-}
-main .programs_list .program_item:hover img,
-main .services_list .program_item:hover img,
-main .programs_list .service_item:hover img,
-main .services_list .service_item:hover img {
- transform: translate(20px, -35px);
-}
-main .programs_list .program_item:hover .program_name,
-main .services_list .program_item:hover .program_name,
-main .programs_list .service_item:hover .program_name,
-main .services_list .service_item:hover .program_name,
-main .programs_list .program_item:hover .service_name,
-main .services_list .program_item:hover .service_name,
-main .programs_list .service_item:hover .service_name,
-main .services_list .service_item:hover .service_name {
- transform: translateY(-30px);
-}
-main .programs_list .program_item:hover .program_link,
-main .services_list .program_item:hover .program_link,
-main .programs_list .service_item:hover .program_link,
-main .services_list .service_item:hover .program_link,
-main .programs_list .program_item:hover .service_link,
-main .services_list .program_item:hover .service_link,
-main .programs_list .service_item:hover .service_link,
-main .services_list .service_item:hover .service_link {
- opacity: 1;
- transform: translate(-10px, -10px);
-}
-main .services_list {
- justify-content: center;
-}
-main .services_list .service_item {
- width: calc(33.333% - 20px);
-}
-main .services_list .service_item:after {
- background: #f1f2f7;
-}
-main .services_list .service_item .service_name {
- max-width: 50%;
-}
-main .services_list .service_item:not(:nth-child(3n)) {
- margin-right: 30px;
-}
-main .services_list .service_item:nth-child(3n) {
- margin-right: 0;
-}
-main .services_list .service_item:nth-child(4n) {
- margin-right: 30px;
-}
-main .special_list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
-}
-main .special_list .special_item {
- position: relative;
- width: calc(50% - 18px);
- min-width: calc(50% - 18px);
- margin-bottom: 80px;
-}
-main .special_list .special_item a {
- display: block;
- color: #0C0C0C;
- position: relative;
- z-index: 2;
- box-sizing: border-box;
- padding: 25px calc(50% + 20px) 25px 20px;
-}
-main .special_list .special_item a .special_name {
- font-size: 26px;
- line-height: 35px;
- font-weight: 700;
- color: #0C0C0C;
- margin-bottom: 25px;
- display: block;
- transition: all 220ms ease-in-out;
-}
-main .special_list .special_item a .speacial_text {
- display: block;
- margin-bottom: 10px;
- font-weight: 700;
- color: #0C0C0C;
- transform: translate(0px, 0px);
- transition: all 220ms ease-in-out;
-}
-main .special_list .special_item a .special_desc {
- font-size: 15px;
- line-height: 24px;
- transform: translate(0px, 0px);
- transition: all 220ms ease-in-out;
-}
-main .special_list .special_item a .special_link {
- display: inline-block;
- font-weight: 600;
- opacity: 0;
- transform: translate(10px, 10px);
- transition: all 220ms ease-in-out;
- color: #fff;
-}
-main .special_list .special_item:after {
- content: "";
- display: block;
- position: absolute;
- top: 20px;
- bottom: 30px;
- right: 30px;
- left: 30%;
- transition: all 220ms ease-in-out;
- background: var(--inactive);
- z-index: 0;
-}
-main .special_list .special_item img {
- display: block;
- position: absolute;
- top: 0;
- bottom: 0;
- width: 50%;
- height: 100%;
- right: 0;
- object-fit: cover;
- z-index: 1;
-}
-main .special_list .special_item:hover a .special_name {
- color: #fff;
-}
-main .special_list .special_item:hover a .speacial_text,
-main .special_list .special_item:hover a .special_desc {
- transform: translate(0px, -10px);
- color: #fff;
-}
-main .special_list .special_item:hover a .special_link {
- opacity: 1;
- color: #fff;
- transform: translate(0px, 0px);
-}
-main .special_list .special_item:hover:after {
- background: var(--green);
- top: 0;
- left: 0;
- bottom: 0;
-}
-main .special_list.swiped {
- flex-wrap: unset;
- white-space: nowrap;
-}
-main .special_list.swiped .special_item {
- margin-top: 30px;
- margin-bottom: 30px;
- margin-right: 30px;
-}
-main .special_list.swiped .special_item > * {
- white-space: normal;
-}
-main .special_list.swiped .special_item a .special_link {
- color: var(--blue);
- opacity: 1;
-}
-main .special_list.swiped .special_item:hover a .special_link {
- color: #fff;
-}
-main .brand_select {
- max-width: 306px;
- margin-left: auto;
- margin-top: 35px;
- margin-bottom: 35px;
-}
-main .special_detail .special_offer {
- position: relative;
- padding: 25px calc(100% - 390px) 0 25px;
- margin-bottom: 45px;
-}
-main .special_detail .special_offer h2 {
- font-size: 26px;
- line-height: 35px;
- color: #0C0C0C;
- font-weight: 700;
- margin-bottom: 25px;
-}
-main .special_detail .special_offer h2 span {
- color: #A8026B;
- font-size: 58px;
- line-height: 58px;
-}
-main .special_detail .special_offer h2 mark {
- color: #A8026B;
- background: transparent;
-}
-main .special_detail .special_offer .button {
- width: 100%;
- margin-top: 40px;
-}
-main .special_detail .special_offer:after {
- content: "";
- display: block;
- position: absolute;
- z-index: 1;
- left: 420px;
- top: 15px;
- bottom: 25px;
- right: 0;
- background: var(--inactive);
-}
-main .special_detail .special_offer img {
- display: block;
- height: 100%;
- width: calc(100% - 502px);
- position: absolute;
- right: 0;
- bottom: 0;
- z-index: 2;
-}
-main .special_detail .special_offer-text {
- margin-bottom: 80px;
- padding: 0 25px;
-}
-main .special_detail .aside_container {
- margin-top: 60px;
-}
-main .leasing_offer h3 {
- padding: 0 25px;
- margin-bottom: 15px;
-}
-main .leasing_offer .leasing_list {
- display: flex;
- flex-wrap: wrap;
-}
-main .leasing_offer .leasing_list .leasing_item {
- width: calc(33.333% - 20px);
- margin-bottom: 30px;
-}
-main .leasing_offer .leasing_list .leasing_item:not(:nth-child(3n)) {
- margin-right: 30px;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper {
- display: block;
- padding-bottom: 35px;
- background: #fff;
- transition: background-color 175ms ease-in-out;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper img {
- display: block;
- width: 100%;
- height: 220px;
- object-fit: cover;
- margin-bottom: 30px;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper span {
- display: block;
- color: #000;
- transition: color 175ms ease-in-out;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_model {
- padding: 0 30px;
- margin-bottom: 5px;
- font-weight: 700;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_desc {
- padding: 0 30px;
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover {
- background: var(--green);
-}
-main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_model,
-main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_desc {
- color: #fff;
-}
-main .leasing_offer .leasing_offer-detail {
- display: flex;
- justify-content: space-between;
- margin-top: 100px;
-}
-main .leasing_offer .leasing_offer-detail .image_slider {
- height: 425px;
- width: calc(100% - 560px);
-}
-main .leasing_offer .leasing_offer-detail .image_slider .slide {
- height: 100%;
-}
-main .leasing_offer .leasing_offer-detail .image_slider .slide img {
- width: 100%;
- height: 100%;
- object-fit: cover;
-}
-main .leasing_offer .leasing_offer-detail .offer_desc {
- width: 530px;
- padding-bottom: 40px;
- position: relative;
-}
-main .leasing_offer .leasing_offer-detail .offer_desc .offer_name {
- font-size: 26px;
- line-height: 35px;
- text-transform: uppercase;
- font-weight: 700;
- margin-bottom: 30px;
-}
-main .leasing_offer .leasing_offer-detail .offer_desc ul {
- margin-bottom: 20px;
-}
-main .leasing_offer .leasing_offer-detail .offer_desc ul li {
- line-height: 25px;
-}
-main .leasing_offer .leasing_offer-detail .offer_desc .button {
- margin-top: 40px;
- width: 390px;
- position: absolute;
- bottom: 0;
- left: 0;
-}
-main .faq_search {
- margin-bottom: 40px;
-}
-main .faq_search .form_field {
- width: 100%;
- max-width: 635px;
- margin-left: auto;
-}
-main .dropdown_blocks_list {
- font-size: 15px;
- line-height: 24px;
-}
-main .dropdown_blocks_list .dropdown_block:not(:last-child) {
- border-bottom: 1px solid #EDEFF5;
-}
-main .dropdown_blocks_list .dropdown_block .block_header {
- padding: 15px 0;
- height: 70px;
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-main .dropdown_blocks_list .dropdown_block .block_header p {
- margin-bottom: 0;
- margin-right: 20px;
- font-weight: 700;
-}
-main .dropdown_blocks_list .dropdown_block .block_header p.with-icon {
- display: inline-flex;
- align-items: center;
-}
-main .dropdown_blocks_list .dropdown_block .block_header p.with-icon img {
- margin-right: 20px;
-}
-main .dropdown_blocks_list .dropdown_block .block_header button {
- width: 22px;
- height: 22px;
- min-width: 22px;
- cursor: pointer;
- background: url("/images/icons/dropdown-blue.svg") no-repeat center;
-}
-main .dropdown_blocks_list .dropdown_block .block_body {
- display: none;
-}
-main .dropdown_blocks_list .dropdown_block.open .block_header button {
- background: url("/images/icons/close-blue.svg") no-repeat center;
-}
-main .dropdown_blocks_list .dropdown_block.open .block_body {
- display: block;
- margin-top: 25px;
-}
-main .dropdown_blocks_list .dropdown_block.open .block_body p {
- margin-bottom: 35px;
-}
-main .dropdown_blocks_list.filled .dropdown_block.open .block_header {
- background: var(--inactive);
- color: var(--blue);
-}
-main .dropdown_blocks_list.filled .dropdown_block .block_body {
- margin-top: 0;
-}
-main aside .aside_nav {
- list-style: none;
- padding: 0;
- margin: 0 0 30px 0;
-}
-main aside .aside_nav li {
- margin-bottom: 8px;
-}
-main aside .aside_nav li a {
- display: flex;
- align-items: center;
- min-height: 56px;
- color: #000;
- font-size: 15px;
- line-height: 23px;
- font-weight: 700;
- box-sizing: border-box;
- padding: 0 15px;
-}
-main aside .aside_nav li a.active {
- background: var(--green);
- color: #fff;
-}
-main aside .button {
- width: 100%;
-}
-main #order .container {
- padding-bottom: 180px;
-}
-.model_container {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-top: 60px;
-}
-.model_container .col {
- width: calc(50% - 15px);
-}
-.model_container .col .model_desc {
- margin-top: 35px;
-}
-.model_container .col .model_desc p {
- margin-bottom: 10px;
-}
-.model_container #calc {
- background: var(--inactive);
- padding: 35px 30px;
- position: relative;
-}
-.model_container #calc:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- right: -100%;
- bottom: 0;
- width: 100%;
- background: inherit;
-}
-.model_container #calc .calc_body {
- flex-wrap: wrap;
-}
-.model_container #calc .calc_body .calc_settings {
- width: 100%;
- margin-bottom: 35px;
-}
-.model_container #calc .calc_body .calc_result {
- width: 100%;
-}
-.model_container #calc .calc_body .calc_result .result_box {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15px;
-}
-.model_container #calc .calc_body .calc_result .result_box p {
- font-weight: 400;
-}
-.model_container #calc .calc_body .calc_result .result_box.bolder {
- margin-bottom: 35px;
-}
-.model_container #calc .calc_body .calc_result .result_box.bolder p {
- font-weight: 700;
- font-size: 26px;
- line-height: 35px;
-}
-.model_container #calc .calc_body .calc_result .calc_footer {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 20px;
-}
-.model_container #calc .calc_body .calc_result .calc_footer .button {
- width: calc(50% - 13px);
-}
-.model_container .aside_container {
- width: 100%;
- margin-top: 0px;
- border-top: 1px solid #EDEFF5;
-}
-.model_container .aside_container aside {
- width: 305px;
- padding-top: 40px;
-}
-.model_container .aside_container article {
- width: calc(100% - 305px);
- padding-top: 40px;
- border-left: 1px solid #EDEFF5;
-}
-.model_container .aside_container article .dropdown_blocks_list .dropdown_block {
- padding: 0 40px;
-}
-.catalog_list {
- display: flex;
- flex-wrap: wrap;
-}
-.catalog_list .catalog_item {
- width: calc(33.333% - 20px);
- margin-bottom: 110px;
-}
-.catalog_list .catalog_item:not(:nth-child(3n)) {
- margin-right: 30px;
-}
-.catalog_list .catalog_item img {
- width: 100%;
- height: 220px;
- object-fit: cover;
- margin-bottom: 30px;
-}
-.catalog_list .catalog_item .item_class {
- font-size: 26px;
- line-height: 35px;
- color: #0C0C0C;
- font-weight: 700;
- margin-bottom: 8px;
-}
-.catalog_list .catalog_item .item_model {
- font-size: 14px;
-}
-.catalog_list .catalog_item .item_model b {
- display: block;
- font-size: 15px;
-}
-.catalog_list .catalog_item ul li {
- display: flex;
- justify-content: space-between;
- line-height: 29px;
-}
-.catalog_list .catalog_item ul li p {
- margin: 0;
-}
-.catalog_list .catalog_item ul li.pay {
- font-weight: 700;
- margin: 25px 0;
-}
-.catalog_list .catalog_item .item_footer {
- text-align: right;
- margin-top: 30px;
-}
-.requisites {
- padding: 0 110px;
-}
-.requisites .requisites_row {
- display: flex;
- justify-content: flex-start;
- margin-bottom: 25px;
-}
-.requisites .requisites_row p {
- margin: 0;
- max-width: calc(50% - 15px);
- text-align: left;
-}
-.requisites .requisites_row p:first-child {
- font-weight: 700;
- margin-right: 30px;
- width: 180px;
-}
-.requisites .button {
- margin-top: 40px;
-}
-#choose_region {
- display: flex;
- align-items: center;
-}
-#choose_region p {
- margin-right: 30px;
- max-width: 340px;
-}
-#choose_region .form_field {
- width: 415px;
-}
-#map {
- display: none;
- width: 100%;
- height: 615px;
- margin: 45px 0;
- background: var(--gray-light);
-}
-#map.visible {
- display: block;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1010;
- display: block;
- padding: 1px;
- text-align: left;
- white-space: normal;
- background: var(--blue);
- color: #fff;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
- padding: 30px 20px;
- max-width: 500px;
-}
-.popover .close {
- position: absolute;
- top: 8px;
- right: 8px;
- width: 24px;
- height: 24px;
- font-size: 0;
- cursor: pointer;
- background: url("/images/icons/close-white.svg") no-repeat center;
-}
-.popover p {
- margin: 5px 0;
-}
-.popover .arrow {
- position: absolute;
- left: 0;
- right: 0;
- bottom: -25px;
- margin: auto;
- width: 43px;
- height: 54px;
- background: url("/images/pin-open.svg") no-repeat center;
-}
-.offices_list {
- display: flex;
- justify-content: space-between;
- border-top: 1px solid #EDEFF5;
-}
-.offices_list#offices:not(.visible) {
- display: none;
-}
-.offices_list .column {
- width: calc(50% - 15px);
-}
-.offices_list .column .dropdown_block.open .block_body p {
- margin-bottom: 8px;
-}
-.offices_list .column .dropdown_block.open .block_body a {
- display: inline-block;
- font-weight: 700;
- margin: 20px 0 20px 28px;
-}
-.dosc_list .row {
- margin-bottom: 35px;
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-.dosc_list .row p {
- margin-bottom: 0;
-}
-.dosc_list .row .doc_name {
- font-weight: 700;
- min-height: 56px;
- display: inline-flex;
- flex-wrap: wrap;
- align-items: center;
- margin-right: 30px;
- max-width: 50%;
-}
-.dosc_list .row .doc_name span {
- display: block;
- font-weight: 400;
- margin-top: 8px;
-}
-.dosc_list .row .doc_date {
- margin-right: 30px;
- margin-left: 30px;
- white-space: nowrap;
-}
-.dosc_list .row .button {
- width: 104px;
-}
-.contract_table {
- margin-bottom: 80px;
-}
-.contract_table .table_row {
- min-height: 80px;
- display: flex;
- width: 100%;
-}
-.contract_table .table_row .table_cell {
- padding: 16px 8px;
- border: 1px solid #EDEFF5;
- width: 14%;
-}
-.contract_table .table_row .table_cell:nth-child(3) {
- width: 16%;
-}
-.contract_table .table_row .table_cell p {
- margin: 0;
-}
-.contract_table .table_row .table_cell p.closed {
- color: var(--text_not_active);
-}
-.contract_table .table_row .table_cell p.opened {
- color: var(--green);
-}
-.contract_table .table_row .table_cell b {
- display: block;
-}
-.contract_table .table_header .table_cell {
- border: 0;
- color: var(--text_not_active);
- font-weight: 700;
- display: flex;
- align-items: center;
-}
-.contract_table .table_header .table_cell.caret {
- cursor: pointer;
-}
-.contract_table .table_header .table_cell.caret:after {
- content: "";
- display: inline-block;
- width: 16px;
- min-width: 16px;
- height: 16px;
- margin-left: 6px;
- background: url("/images/icons/icon-select.svg") no-repeat center;
-}
-.contract_table.schedule .show_more {
- width: 100%;
- height: 60px;
- text-align: center;
- background: var(--inactive);
- color: var(--blue);
- font-weight: 600;
-}
-.contract_table.schedule .table_row .table_cell {
- width: 25%;
-}
-.contract_table.schedule .table_row .table_cell:nth-child(1),
-.contract_table.schedule .table_row .table_cell:nth-child(2),
-.contract_table.schedule .table_row .table_cell:nth-child(4) {
- width: 14%;
-}
-.contract_table.schedule .table_row[data-status="overpayment-2"] {
- background: rgba(28, 1, 169, 0.1);
-}
-.contract_table.schedule .table_row[data-status="overpayment-1"] {
- background: rgba(168, 2, 107, 0.1);
-}
-.contract_table.schedule .table_row[data-status="paid"] {
- background: rgba(4, 168, 164, 0.1);
-}
-.logo_list {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- margin: 35px 0;
-}
-.logo_list .logo_item {
- width: calc(16.666% - 25px);
- height: 97px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 15px 0;
-}
-.logo_list .logo_item img {
- max-width: 100%;
- max-height: 100%;
- object-fit: contain;
-}
-.leasing_offers_list {
- display: flex;
- justify-content: space-between;
- margin-top: 60px;
-}
-.leasing_offers_list .offer_item {
- width: calc(33.333% - 20px);
- padding-left: 80px;
- position: relative;
-}
-.leasing_offers_list .offer_item p {
- margin-bottom: 15px;
-}
-.leasing_offers_list .offer_item img {
- position: absolute;
- top: 0;
- left: 0;
-}
-.leasing_offers_list .offer_item ul li:not(:last-child) {
- margin-bottom: 6px;
-}
-.catalog_sort {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- margin-bottom: 65px;
-}
-.catalog_sort .sort_container {
- margin-left: 40px;
- position: relative;
-}
-.catalog_sort .sort_container button {
- height: 40px;
- padding: 0 20px 0 48px;
- color: var(--blue);
-}
-.catalog_sort .sort_container button.i-filter {
- background: url("/images/icons/icon-filter.svg") no-repeat 20px 50%;
-}
-.catalog_sort .sort_container button.i-sort {
- background: url("/images/icons/icon-sort.svg") no-repeat 20px 50%;
-}
-.news_cotnainer {
- display: flex;
- justify-content: space-between;
-}
-.news_cotnainer .left {
- width: 525px;
-}
-.news_cotnainer .left .image {
- width: 100%;
- height: 525px;
- background: var(--gray-light);
- margin-bottom: 30px;
-}
-.news_cotnainer .left .image img {
- width: 100%;
- height: 100%;
- object-fit: cover;
-}
-.news_cotnainer .left .socials a {
- width: 48px;
- height: 48px;
- margin-right: 15px;
-}
-.news_cotnainer .right {
- width: calc(100% - 555px);
-}
-.news_cotnainer .right h1 {
- margin-bottom: 20px;
-}
-.news_cotnainer .right .date {
- display: block;
- text-transform: uppercase;
- margin-bottom: 35px;
-}
-.news_cotnainer .right p,
-.news_cotnainer .right ul,
-.news_cotnainer .right ol {
- margin-bottom: 20px;
-}
+main{overflow:hidden;padding-top:112px}@media all and (max-width:1280px){main{padding-top:86px}}main section.gray{background:var(--inactive)}main .title_wrapper{display:flex;justify-content:space-between;margin-bottom:50px}@media all and (max-width:1280px){main .title_wrapper{margin-bottom:20px}}@media all and (max-width:768px){main .title_wrapper{flex-wrap:wrap}}main .title_wrapper h1,main .title_wrapper h2,main .title_wrapper h3,main .title_wrapper h4,main .title_wrapper h5{margin-bottom:0}@media all and (max-width:768px){main .title_wrapper .section_title:not(:only-child){margin-right:10px}}main .title_wrapper .title_link{font-weight:600;display:inline-block;margin-left:55px;align-self:flex-end;line-height:24px}@media all and (max-width:1280px){main .title_wrapper .title_link{font-size:13px;margin-left:12px;line-height:30px}}@media all and (max-width:768px){main .title_wrapper .title_link{margin-left:0}}main .title_wrapper .left{display:flex}main .title_wrapper .right{display:flex}@media all and (max-width:768px){main .title_wrapper .right{width:100%;text-align:left;margin-top:8px}main .title_wrapper .right p{font-size:10px;line-height:15px;text-align:left}}main #main_slider{height:600px;background:var(--gray-light);padding:0;position:relative}@media all and (max-width:1279px){main #main_slider{height:395px}}main #main_slider .container{position:relative;height:100%;background:repeating-linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 1px, transparent 2px, transparent 20%)}@media all and (max-width:768px){main #main_slider .container{background:transparent}}main #main_slider .slider_active_title{font-weight:bold;font-size:43px;line-height:63px;letter-spacing:2px;color:#fff;max-width:560px;position:absolute;top:55px;left:0;text-transform:uppercase;font-family:'PF Din Display Pro Bold'}@media all and (max-width:1279px){main #main_slider .slider_active_title{font-size:20px;line-height:35px;max-width:280px;top:25px}}main #main_slider .slider_list{position:absolute;bottom:0;left:0;right:0;display:flex}@media all and (max-width:1279px){main #main_slider .slider_list{height:135px}}@media all and (max-width:768px){main #main_slider .slider_list{display:none}}main #main_slider .slider_list .slider_item{width:20%;max-width:20%;height:300px;padding:15px 25px;display:flex;flex-wrap:wrap;align-items:flex-end;align-content:flex-end;cursor:pointer;position:relative;overflow:hidden}@media all and (max-width:1279px){main #main_slider .slider_list .slider_item{height:135px;padding:15px 20px}}main #main_slider .slider_list .slider_item:after{content:"";display:block;position:absolute;left:0;right:0;top:0;z-index:1;width:100%;height:100%;transform:translateY(100%);transition:175ms transform cubic-bezier(.25, .46, .45, .94)}main #main_slider .slider_list .slider_item .item_name{font-size:24px;line-height:24px;text-transform:uppercase;color:#fff;width:100%;display:flex;height:86px;align-content:center;align-items:center;justify-content:space-between;transition:175ms transform cubic-bezier(.25, .46, .45, .94);transform:translateY(57px);position:relative;z-index:2;margin-right:15px;font-family:'PF Din Display Pro Bold'}@media all and (max-width:1279px){main #main_slider .slider_list .slider_item .item_name{font-size:20px;height:80px}}main #main_slider .slider_list .slider_item .item_name:after{content:"";display:block;width:22px;min-width:22px;height:14px;background:url("/assets/images/icons/slider_arrow.svg") no-repeat center}main #main_slider .slider_list .slider_item a{display:inline-block;line-height:40px;color:#fff;font-weight:600;transition:175ms transform cubic-bezier(.25, .46, .45, .94);transform:translateY(57px);position:relative;z-index:2}@media all and (max-width:1279px){main #main_slider .slider_list .slider_item a{font-size:13px}}main #main_slider .slider_list .slider_item.active{background:currentColor}main #main_slider .slider_list .slider_item.active .item_name,main #main_slider .slider_list .slider_item.active a{transform:translateY(0)}main #main_slider .slider_list .slider_item.active .item_name:after{width:44px;background:url("/assets/images/icons/slider_arrow-hover.svg") no-repeat center;transform:rotate(-90deg) translate(15px, 15px)}@media all and (max-width:1279px){main #main_slider .slider_list .slider_item.active .item_name:after{transform:rotate(-90deg) translate(-15px, 15px)}}main #main_slider .slider_list .slider_item:hover .item_name,main #main_slider .slider_list .slider_item:hover a{transform:translateY(0)}main #main_slider .slider_list .slider_item:hover:after{transform:translateY(0);background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, currentColor 100%)}main #main_slider .slider_list .slider_navto{width:20%;max-width:20%;height:300px}main #main_slider .slider_list .slider_navto a{background:#fff;width:100%;height:100%;clip-path:polygon(100% 0, 0% 100%, 100% 100%);transition:175ms background cubic-bezier(.25, .46, .45, .94);box-sizing:border-box;padding:0 25px;display:flex;align-items:flex-end;justify-content:flex-end}main #main_slider .slider_list .slider_navto a:after{content:"";display:block;width:22px;min-width:22px;height:86px;transition:175ms all cubic-bezier(.25, .46, .45, .94);background:url("/assets/images/icons/slider_arrow-blue.svg") no-repeat center}main #main_slider .slider_list .slider_navto a:hover{background:#04a8a4}main #main_slider .slider_list .slider_navto a:hover:after{width:90px;background:url("/assets/images/icons/arrow-navto.svg") no-repeat center}@media all and (max-width:768px){main #calc{background:#EDEFF5}}main #calc .container{background:url("/assets/images/calc-bg.jpg") no-repeat right center #EDEFF5;padding:70px 25px;position:relative}main #calc .container:after{content:"";display:block;position:absolute;top:0;bottom:0;right:-100%;width:100%;left:auto;background-color:inherit}@media all and (max-width:1279px){main #calc .container{padding:50px 25px}}@media all and (max-width:1280px){main #calc .container{background:#EDEFF5}}@media all and (max-width:768px){main #calc .container{padding:25px 0}}main #calc .calc_body{display:flex;justify-content:space-between}@media all and (max-width:768px){main #calc .calc_body{display:block}}main #calc .calc_body .calc_settings{width:830px}@media all and (max-width:1420px){main #calc .calc_body .calc_settings{width:calc(100% - 410px)}}@media all and (max-width:1280px){main #calc .calc_body .calc_settings{width:calc(50% - 15px)}}@media all and (max-width:768px){main #calc .calc_body .calc_settings{width:100%}}main #calc .calc_body .calc_settings .settings_box{background:rgba(255,255,255,0.6);border-radius:4px;height:57px;margin-bottom:80px;position:relative;display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;padding:10px}main #calc .calc_body .calc_settings .settings_box output[hidden]{display:none}main #calc .calc_body .calc_settings .settings_box:last-child{margin-bottom:20px}@media all and (max-width:1280px){main #calc .calc_body .calc_settings .settings_box{margin-bottom:45px;height:48px;padding:8px}}main #calc .calc_body .calc_settings .settings_box p{margin-bottom:15px;font-weight:700}@media all and (max-width:1280px){main #calc .calc_body .calc_settings .settings_box p{font-size:13px}}main #calc .calc_body .calc_settings .settings_box p.min{position:absolute;top:65px;font-weight:400;left:10px;margin:0}@media all and (max-width:960px){main #calc .calc_body .calc_settings .settings_box p.min{display:none}}main #calc .calc_body .calc_settings .settings_box p.max{position:absolute;top:65px;font-weight:400;right:10px;margin:0}@media all and (max-width:960px){main #calc .calc_body .calc_settings .settings_box p.max{top:30px}}main #calc .calc_body .calc_settings .settings_box .line{width:100%;background:rgba(142,148,167,0.4)}@media all and (max-width:960px){main #calc .calc_body .calc_settings .settings_box .line{width:calc(100% - 55px)}}main #calc .calc_body .calc_settings .settings_box .line,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal{position:relative;height:5px;z-index:2}main #calc .calc_body .calc_settings .settings_box .line .active_line,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .active_line,main #calc .calc_body .calc_settings .settings_box .line .rangeslider__fill,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .rangeslider__fill{background:var(--blue);position:absolute;left:0;bottom:0;height:10px}main #calc .calc_body .calc_settings .settings_box .line .dragble,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .dragble,main #calc .calc_body .calc_settings .settings_box .line .rangeslider__handle,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .rangeslider__handle{width:1px;height:16px;cursor:pointer;position:absolute;top:8px;left:0}main #calc .calc_body .calc_settings .settings_box .line .dragble:after,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .dragble:after,main #calc .calc_body .calc_settings .settings_box .line .rangeslider__handle:after,main #calc .calc_body .calc_settings .settings_box .rangeslider.rangeslider--horizontal .rangeslider__handle:after{content:"";display:block;transform:rotate(45deg) translate(-6px, 6px);width:16px;height:16px;background:var(--blue)}main #calc .calc_body .calc_result{width:350px;align-items:stretch;align-content:stretch;display:flex;flex-wrap:wrap}@media all and (max-width:1420px){main #calc .calc_body .calc_result{width:320px}}@media all and (max-width:1280px){main #calc .calc_body .calc_result{width:calc(50% - 15px)}}@media all and (max-width:768px){main #calc .calc_body .calc_result{width:100%;margin-top:35px}}main #calc .calc_body .calc_result .result_box{width:100%}main #calc .calc_body .calc_result .result_box p{font-weight:700}@media all and (max-width:1280px){main #calc .calc_body .calc_result .result_box p{font-weight:400;font-size:13px;line-height:20px;margin-bottom:20px}}@media all and (max-width:768px){main #calc .calc_body .calc_result .result_box p{margin-bottom:8px}}main #calc .calc_body .calc_result .result_box p.price{font-size:41px;line-height:1}main #calc .calc_body .calc_result .result_box p.price sup{font-weight:300;font-size:12px;line-height:18px;color:#8E94A7;vertical-align:super}@media all and (max-width:1279px){main #calc .calc_body .calc_result .result_box p.price{font-size:32px}}@media all and (max-width:1280px){main #calc .calc_body .calc_result .result_box p.price{font-size:20px;margin-bottom:0;font-weight:700}}@media all and (max-width:768px){main #calc .calc_body .calc_result .result_box{width:50%}}main #calc .calc_body .calc_result .button{width:100%;align-self:center}@media all and (max-width:768px){main #calc .calc_body .calc_result .button{margin-top:30px;margin-bottom:15px}}main #calc .calc_body .calc_result .secondary{align-self:flex-end}main .news_arrows{display:flex;align-content:center}@media all and (max-width:1280px){main .news_arrows{display:none !important}}main .news_arrows button{width:97px;height:28px;background-color:var(--blue);box-sizing:border-box;padding:0 10px;transition:175ms background ease-in-out}main .news_arrows button svg{width:8px;height:12px;margin-left:auto}main .news_arrows button svg path{stroke:#fff;transition:175ms stroke ease-in-out}main .news_arrows button:disabled,main .news_arrows button.slick-disabled{cursor:default;background-color:var(--inactive);background-position:center}main .news_arrows button:disabled svg,main .news_arrows button.slick-disabled svg{margin-left:0}main .news_arrows button:disabled svg path,main .news_arrows button.slick-disabled svg path{stroke:#8E94A7}@media all and (max-width:768px){main #news .news_slider_wrapper{margin:0 -16px}}main .news_list,main .career_list{display:flex;white-space:nowrap;width:100%}main .news_list .slick-list,main .career_list .slick-list{width:100%}main .news_list .slick-list .slick-track,main .career_list .slick-list .slick-track{white-space:nowrap;display:flex;padding-right:100px}main .news_list .slick-list .slick-track:after,main .career_list .slick-list .slick-track:after{content:"";display:block;width:365px;min-width:365px;height:200px}main .news_list .news_item,main .career_list .news_item,main .news_list .career_item,main .career_list .career_item{width:365px;min-width:365px;padding:35px 20px;background:#EDEFF5;position:relative}@media all and (max-width:1280px){main .news_list .news_item,main .career_list .news_item,main .news_list .career_item,main .career_list .career_item{width:214px;min-width:214px;padding:25px 15px}}@media all and (max-width:768px){main .news_list .news_item,main .career_list .news_item,main .news_list .career_item,main .career_list .career_item{margin-right:1px}}main .news_list .news_item p,main .career_list .news_item p,main .news_list .career_item p,main .career_list .career_item p{white-space:normal;margin-bottom:22px;line-height:24px;transition:175ms color ease-in-out}main .news_list .news_item .news_date,main .career_list .news_item .news_date,main .news_list .career_item .news_date,main .career_list .career_item .news_date{margin-bottom:35px}@media all and (max-width:1280px){main .news_list .news_item .news_date,main .career_list .news_item .news_date,main .news_list .career_item .news_date,main .career_list .career_item .news_date{margin-bottom:15px}}main .news_list .news_item img,main .career_list .news_item img,main .news_list .career_item img,main .career_list .career_item img{display:block;margin-bottom:22px;object-fit:cover}@media all and (max-width:1280px){main .news_list .news_item img,main .career_list .news_item img,main .news_list .career_item img,main .career_list .career_item img{height:178px;width:100%;margin-bottom:15px}}main .news_list .news_item .news_title,main .career_list .news_item .news_title,main .news_list .career_item .news_title,main .career_list .career_item .news_title,main .news_list .news_item .career_title,main .career_list .news_item .career_title,main .news_list .career_item .career_title,main .career_list .career_item .career_title{color:#0C0C0C;font-size:24px;line-height:28px;font-weight:700}@media all and (max-width:1280px){main .news_list .news_item .news_title,main .career_list .news_item .news_title,main .news_list .career_item .news_title,main .career_list .career_item .news_title,main .news_list .news_item .career_title,main .career_list .news_item .career_title,main .news_list .career_item .career_title,main .career_list .career_item .career_title{font-size:19px;line-height:26px;margin-bottom:15px}}main .news_list .news_item .news_link,main .career_list .news_item .news_link,main .news_list .career_item .news_link,main .career_list .career_item .news_link,main .news_list .news_item .career_link,main .career_list .news_item .career_link,main .news_list .career_item .career_link,main .career_list .career_item .career_link{margin-bottom:0;color:var(--blue)}@media all and (max-width:1280px){main .news_list .news_item .news_link,main .career_list .news_item .news_link,main .news_list .career_item .news_link,main .career_list .career_item .news_link,main .news_list .news_item .career_link,main .career_list .news_item .career_link,main .news_list .career_item .career_link,main .career_list .career_item .career_link{font-weight:700;font-size:13px}}main .news_list .news_item a,main .career_list .news_item a,main .news_list .career_item a,main .career_list .career_item a{display:block;position:absolute;top:0;left:0;right:0;bottom:0;z-index:3}main .news_list .news_item:after,main .career_list .news_item:after,main .news_list .career_item:after,main .career_list .career_item:after{content:"";display:block;position:absolute;top:-24px;left:0;right:0;bottom:-24px;opacity:0;visibility:hidden;transition:175ms all ease-in-out}main .news_list .news_item:hover,main .career_list .news_item:hover,main .news_list .career_item:hover,main .career_list .career_item:hover{z-index:2}main .news_list .news_item:hover:after,main .career_list .news_item:hover:after,main .news_list .career_item:hover:after,main .career_list .career_item:hover:after{opacity:1;visibility:visible;background:var(--green);z-index:0}main .news_list .news_item:hover p,main .career_list .news_item:hover p,main .news_list .career_item:hover p,main .career_list .career_item:hover p,main .news_list .news_item:hover img,main .career_list .news_item:hover img,main .news_list .career_item:hover img,main .career_list .career_item:hover img{color:#fff;z-index:2;position:relative}main .news_list .news_item:hover .news_date:after,main .career_list .news_item:hover .news_date:after,main .news_list .career_item:hover .news_date:after,main .career_list .career_item:hover .news_date:after{content:"";position:absolute;bottom:-8px;height:2px;left:0;right:0;background:linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%)}main .news_list.masongry_columns,main .career_list.masongry_columns{display:flex;justify-content:space-between}main .news_list.masongry_columns .column,main .career_list.masongry_columns .column{width:calc(50% - 15px)}main .news_list.masongry_columns .news_item,main .career_list.masongry_columns .news_item,main .news_list.masongry_columns .career_item,main .career_list.masongry_columns .career_item{width:100%;margin-bottom:30px}@media all and (max-width:768px){main .news_list.masongry_columns,main .career_list.masongry_columns{display:block}main .news_list.masongry_columns .column,main .career_list.masongry_columns .column{width:100%}}main .programs_list,main .services_list{display:flex;flex-wrap:wrap}@media all and (max-width:1280px){main .programs_list,main .services_list{justify-content:space-between}}main .programs_list .program_item,main .services_list .program_item,main .programs_list .service_item,main .services_list .service_item{margin-top:40px;margin-bottom:40px;width:calc(25% - 23px);position:relative;background:#EDEFF5;transform-origin:left;transition:all 175ms ease-in-out;height:390px}@media all and (max-width:1420px){main .programs_list .program_item,main .services_list .program_item,main .programs_list .service_item,main .services_list .service_item{overflow:hidden}}@media all and (max-width:1280px){main .programs_list .program_item,main .services_list .program_item,main .programs_list .service_item,main .services_list .service_item{width:calc(50% - 15px);margin-right:0 !important;margin-bottom:30px;margin-top:0;height:258px;overflow:hidden}}@media all and (max-width:768px){main .programs_list .program_item,main .services_list .program_item,main .programs_list .service_item,main .services_list .service_item{width:100%}}main .programs_list .program_item:after,main .services_list .program_item:after,main .programs_list .service_item:after,main .services_list .service_item:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:#eeeff4;z-index:0;transition:all 125ms ease-in-out}main .programs_list .program_item a,main .services_list .program_item a,main .programs_list .service_item a,main .services_list .service_item a{height:100%;display:block;box-sizing:border-box;padding:36px 18px;position:relative;z-index:2}@media all and (max-width:1280px){main .programs_list .program_item a,main .services_list .program_item a,main .programs_list .service_item a,main .services_list .service_item a{padding:24px 18px}}main .programs_list .program_item a span,main .services_list .program_item a span,main .programs_list .service_item a span,main .services_list .service_item a span{display:inline-block}main .programs_list .program_item:not(:nth-child(4n)),main .services_list .program_item:not(:nth-child(4n)),main .programs_list .service_item:not(:nth-child(4n)),main .services_list .service_item:not(:nth-child(4n)){margin-right:30px}main .programs_list .program_item .program_name,main .services_list .program_item .program_name,main .programs_list .service_item .program_name,main .services_list .service_item .program_name,main .programs_list .program_item .service_name,main .services_list .program_item .service_name,main .programs_list .service_item .service_name,main .services_list .service_item .service_name{font-weight:700;font-size:26px;line-height:36px;color:#000;position:relative;z-index:2;transform:translateY(0);transition:125ms transform ease-in-out;max-width:70%}@media all and (max-width:1280px){main .programs_list .program_item .program_name,main .services_list .program_item .program_name,main .programs_list .service_item .program_name,main .services_list .service_item .program_name,main .programs_list .program_item .service_name,main .services_list .program_item .service_name,main .programs_list .service_item .service_name,main .services_list .service_item .service_name{font-size:19px;line-height:26px}}main .programs_list .program_item .program_link,main .services_list .program_item .program_link,main .programs_list .service_item .program_link,main .services_list .service_item .program_link,main .programs_list .program_item .service_link,main .services_list .program_item .service_link,main .programs_list .service_item .service_link,main .services_list .service_item .service_link{position:absolute;right:0px;bottom:-10px;color:var(--blue);font-weight:600;font-size:15px;line-height:20px;opacity:0;z-index:2;transform:translate(0, 0);transition:125ms all ease-in-out}main .programs_list .program_item img,main .services_list .program_item img,main .programs_list .service_item img,main .services_list .service_item img{position:absolute;right:0;bottom:0;transform:translate(0, 0);transition:125ms all ease-in-out}@media all and (max-width:1420px) and (min-width:1280px){main .programs_list .program_item img,main .services_list .program_item img,main .programs_list .service_item img,main .services_list .service_item img{max-width:100%}}@media all and (max-width:1280px){main .programs_list .program_item img,main .services_list .program_item img,main .programs_list .service_item img,main .services_list .service_item img{max-height:120%}}@media all and (min-width:1280px){main .programs_list .program_item:hover,main .services_list .program_item:hover,main .programs_list .service_item:hover,main .services_list .service_item:hover{overflow:visible}main .programs_list .program_item:hover:after,main .services_list .program_item:hover:after,main .programs_list .service_item:hover:after,main .services_list .service_item:hover:after{top:-35px;right:-20px;bottom:-35px}main .programs_list .program_item:hover img,main .services_list .program_item:hover img,main .programs_list .service_item:hover img,main .services_list .service_item:hover img{transform:translate(20px, -35px)}main .programs_list .program_item:hover .program_name,main .services_list .program_item:hover .program_name,main .programs_list .service_item:hover .program_name,main .services_list .service_item:hover .program_name,main .programs_list .program_item:hover .service_name,main .services_list .program_item:hover .service_name,main .programs_list .service_item:hover .service_name,main .services_list .service_item:hover .service_name{transform:translateY(-30px)}main .programs_list .program_item:hover .program_link,main .services_list .program_item:hover .program_link,main .programs_list .service_item:hover .program_link,main .services_list .service_item:hover .program_link,main .programs_list .program_item:hover .service_link,main .services_list .program_item:hover .service_link,main .programs_list .service_item:hover .service_link,main .services_list .service_item:hover .service_link{opacity:1;transform:translate(-10px, -10px)}}main .services_list{justify-content:center}@media all and (max-width:1280px){main .services_list{justify-content:space-between}}main .services_list .service_item{width:calc(33.333% - 20px)}main .services_list .service_item:after{background:#f1f2f7}main .services_list .service_item .service_name{max-width:50%}main .services_list .service_item:not(:nth-child(3n)){margin-right:30px}main .services_list .service_item:nth-child(3n){margin-right:0}main .services_list .service_item:nth-child(4n){margin-right:30px}@media all and (max-width:1280px){main .services_list .service_item{width:calc(50% - 15px)}main .services_list .service_item img{max-height:100%}}@media all and (max-width:768px){main .services_list .service_item{width:100%}}main .special_list{display:flex;flex-wrap:wrap;justify-content:space-between}main .special_list .special_item{position:relative;width:calc(50% - 18px);min-width:calc(50% - 18px);margin-bottom:80px}main .special_list .special_item a{display:block;color:#0C0C0C;position:relative;z-index:2;box-sizing:border-box;padding:25px calc(50% + 20px) 25px 20px}main .special_list .special_item a .special_name{font-size:26px;line-height:35px;font-weight:700;color:#0C0C0C;margin-bottom:25px;display:block;transition:all 220ms ease-in-out}main .special_list .special_item a .speacial_text{display:block;margin-bottom:10px;font-weight:700;color:#0C0C0C;transform:translate(0, 0);transition:all 220ms ease-in-out}main .special_list .special_item a .special_desc{font-size:15px;line-height:24px;transform:translate(0, 0);transition:all 220ms ease-in-out}main .special_list .special_item a .special_link{display:inline-block;font-weight:600;opacity:0;transform:translate(10px, 10px);transition:all 220ms ease-in-out;color:#fff}main .special_list .special_item:after{content:"";display:block;position:absolute;top:20px;bottom:30px;right:30px;left:30%;transition:all 220ms ease-in-out;background:var(--inactive);z-index:0}main .special_list .special_item img{display:block;position:absolute;top:0;bottom:0;width:50%;height:100%;right:0;object-fit:cover;z-index:1}@media all and (min-width:1280px){main .special_list .special_item:hover a .special_name{color:#fff}main .special_list .special_item:hover a .speacial_text,main .special_list .special_item:hover a .special_desc{transform:translate(0, -10px);color:#fff}main .special_list .special_item:hover a .special_link{opacity:1;color:#fff;transform:translate(0, 0)}main .special_list .special_item:hover:after{background:var(--green);top:0;left:0;bottom:0}}@media all and (max-width:1280px){main .special_list .special_item{width:calc(50% - 15px);min-width:calc(50% - 15px);margin-bottom:30px}main .special_list .special_item a{padding:30px 0 0 0;display:flex;flex-wrap:wrap}main .special_list .special_item a .special_name{font-size:19px;line-height:26px}main .special_list .special_item a .special_desc{font-size:13px;line-height:20px;width:100%}main .special_list .special_item a .speacial_text{width:100%}main .special_list .special_item a .special_link{opacity:1;transform:translate(0, 0);color:var(--blue)}main .special_list .special_item a img{position:relative;width:100%;height:155px;object-fit:cover;object-position:center}main .special_list .special_item:after{width:182px;top:0;left:auto;right:0;height:120px}}@media all and (max-width:768px){main .special_list .special_item{width:100%;min-width:100%;margin-bottom:25px}}main .special_list.swiped{flex-wrap:unset;white-space:nowrap}main .special_list.swiped .special_item{margin-top:30px;margin-bottom:30px;margin-right:30px}main .special_list.swiped .special_item>*{white-space:normal}main .special_list.swiped .special_item a .special_link{color:var(--blue);opacity:1}main .special_list.swiped .special_item:hover a .special_link{color:#fff}main .brand_select{max-width:306px;margin-left:auto;margin-top:35px;margin-bottom:35px}@media all and (max-width:768px){main .brand_select{max-width:100%;margin-top:10px;margin-bottom:25px}}main .special_detail .special_offer{position:relative;padding:25px calc(100% - 390px) 0 25px;margin-bottom:45px}main .special_detail .special_offer h2{font-size:26px;line-height:35px;color:#0C0C0C;font-weight:700;margin-bottom:25px}main .special_detail .special_offer h2 span{color:#A8026B;font-size:58px;line-height:58px}main .special_detail .special_offer h2 mark{color:#A8026B;background:transparent}main .special_detail .special_offer .button{width:100%;margin-top:40px}main .special_detail .special_offer:after{content:"";display:block;position:absolute;z-index:1;left:420px;top:15px;bottom:25px;right:0;background:var(--inactive)}main .special_detail .special_offer img{display:block;height:100%;width:calc(100% - 502px);position:absolute;right:0;bottom:0;z-index:2;object-fit:cover}@media all and (max-width:1420px){main .special_detail .special_offer{padding-left:0}}@media all and (max-width:1280px){main .special_detail .special_offer{padding:0 calc(50% + 15px) 0 0}main .special_detail .special_offer h2{font-size:19px;line-height:26px;width:100%;order:2;margin-bottom:0}main .special_detail .special_offer h2 span{font-size:19px;line-height:26px}main .special_detail .special_offer img{width:calc(50% - 15px)}main .special_detail .special_offer:after{left:calc(50% - 120px);z-index:-1}}@media all and (max-width:768px){main .special_detail .special_offer{padding:0;display:flex;flex-wrap:wrap}main .special_detail .special_offer img{order:1;width:100%;position:relative;height:155px;margin-bottom:10px}main .special_detail .special_offer .list-column{order:3;margin-top:20px;margin-bottom:30px}main .special_detail .special_offer button.button{order:4;margin-top:0}main .special_detail .special_offer:after{width:182px;left:auto;right:0;top:0;bottom:50px;z-index:-1}}main .special_detail .special_offer-text{margin-bottom:80px;padding:0 25px}@media all and (max-width:768px){main .special_detail .special_offer-text{padding:0;margin-bottom:40px}}main .special_detail .aside_container{margin-top:60px}@media all and (max-width:768px){main .special_detail .aside_container{margin-top:30px;padding-top:30px;border-top:1px solid #EDEFF5}}main .leasing_offer h3{padding:0 25px;margin-bottom:15px;font-size:26px;line-height:35px}@media all and (max-width:768px){main .leasing_offer h3{padding:0;font-size:17px;line-height:24px}}main .leasing_offer .leasing_list{display:flex;flex-wrap:wrap}main .leasing_offer .leasing_list .leasing_item{width:calc(33.333% - 20px);margin-bottom:30px}main .leasing_offer .leasing_list .leasing_item:not(:nth-child(3n)){margin-right:30px}main .leasing_offer .leasing_list .leasing_item .item_wrapper{display:block;padding-bottom:35px;background:#fff;transition:background-color 175ms ease-in-out}main .leasing_offer .leasing_list .leasing_item .item_wrapper img{display:block;width:100%;height:220px;object-fit:cover;margin-bottom:30px}main .leasing_offer .leasing_list .leasing_item .item_wrapper span{display:block;color:#000;transition:color 175ms ease-in-out}main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_model{padding:0 30px;margin-bottom:5px;font-weight:700}main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_desc{padding:0 30px}main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover{background:var(--green)}main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_model,main .leasing_offer .leasing_list .leasing_item .item_wrapper:hover .leasing_desc{color:#fff}@media all and (max-width:1280px){main .leasing_offer .leasing_list{overflow-x:scroll;flex-wrap:unset;margin-right:-80px}main .leasing_offer .leasing_list .leasing_item{min-width:210px;margin-right:5px !important}main .leasing_offer .leasing_list .leasing_item .item_wrapper{padding-bottom:12px}main .leasing_offer .leasing_list .leasing_item .item_wrapper img{margin-bottom:12px;height:135px}main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_model,main .leasing_offer .leasing_list .leasing_item .item_wrapper .leasing_desc{padding:0 18px}}@media all and (max-width:768px){main .leasing_offer .leasing_list{margin:0 -16px;padding:0 16px}}main .leasing_offer .leasing_offer-detail{display:flex;justify-content:space-between;margin-top:100px}main .leasing_offer .leasing_offer-detail .image_slider{height:425px;width:calc(100% - 560px)}main .leasing_offer .leasing_offer-detail .image_slider .slide{height:100%}main .leasing_offer .leasing_offer-detail .image_slider .slide img{width:100%;height:100%;object-fit:cover}main .leasing_offer .leasing_offer-detail .offer_desc{width:530px;padding-bottom:40px;position:relative}main .leasing_offer .leasing_offer-detail .offer_desc .offer_name{font-size:26px;line-height:35px;text-transform:uppercase;font-weight:700;margin-bottom:30px}main .leasing_offer .leasing_offer-detail .offer_desc ul{margin-bottom:20px}main .leasing_offer .leasing_offer-detail .offer_desc ul li{line-height:25px}main .leasing_offer .leasing_offer-detail .offer_desc .button{margin-top:40px;width:390px;position:absolute;bottom:0;left:0}@media all and (max-width:1280px){main .leasing_offer .leasing_offer-detail .image_slider{height:300px}main .leasing_offer .leasing_offer-detail .image_slider,main .leasing_offer .leasing_offer-detail .offer_desc{width:calc(50% - 15px)}main .leasing_offer .leasing_offer-detail .image_slider .button,main .leasing_offer .leasing_offer-detail .offer_desc .button{position:relative}}@media all and (max-width:768px){main .leasing_offer .leasing_offer-detail{margin-top:18px;display:block}main .leasing_offer .leasing_offer-detail .image_slider{width:100%;height:168px}main .leasing_offer .leasing_offer-detail .offer_desc{width:100%;padding-bottom:0}main .leasing_offer .leasing_offer-detail .offer_desc .offer_name{font-size:19px;line-height:26px;margin-bottom:13px}main .leasing_offer .leasing_offer-detail .offer_desc .button{width:100%;position:relative}}main .faq_search{margin-bottom:40px}main .faq_search .form_field{width:100%;max-width:635px;margin-left:auto}main .dropdown_blocks_list .dropdown_block:not(:last-child){border-bottom:1px solid #EDEFF5}main .dropdown_blocks_list .dropdown_block .block_header{padding:15px 0;height:70px;display:flex;align-items:center;justify-content:space-between}main .dropdown_blocks_list .dropdown_block .block_header p{margin-bottom:0;margin-right:20px;font-weight:700}main .dropdown_blocks_list .dropdown_block .block_header p.with-icon{display:inline-flex;align-items:center}main .dropdown_blocks_list .dropdown_block .block_header p.with-icon img{margin-right:20px}main .dropdown_blocks_list .dropdown_block .block_header button{width:22px;height:22px;min-width:22px;cursor:pointer;background:url("/assets/images/icons/dropdown-blue.svg") no-repeat center}main .dropdown_blocks_list .dropdown_block .block_body{display:none}main .dropdown_blocks_list .dropdown_block .block_body .company{display:flex;margin-bottom:30px}main .dropdown_blocks_list .dropdown_block .block_body .company .title{text-transform:uppercase;font-size:26px;line-height:35px;font-weight:700}main .dropdown_blocks_list .dropdown_block .block_body .company ul{margin-left:80px}main .dropdown_blocks_list .dropdown_block .block_body .company ul li{line-height:1.5;margin-bottom:6px}main .dropdown_blocks_list .dropdown_block.open .block_header button{background:url("/assets/images/icons/close-blue.svg") no-repeat center}main .dropdown_blocks_list .dropdown_block.open .block_body{display:block;margin-top:25px}main .dropdown_blocks_list .dropdown_block.open .block_body p{margin-bottom:35px}@media all and (max-width:768px){main .dropdown_blocks_list .dropdown_block.open .block_body{margin-top:0}main .dropdown_blocks_list .dropdown_block.open .block_body p{margin-bottom:15px}}main .dropdown_blocks_list.filled .dropdown_block.open .block_header{background:var(--inactive);color:var(--blue)}main aside .aside_nav{list-style:none;padding:0;margin:0 0 30px 0}main aside .aside_nav li{margin-bottom:8px}main aside .aside_nav li a{display:flex;align-items:center;min-height:56px;color:#000;font-size:15px;line-height:23px;font-weight:700;box-sizing:border-box;padding:0 15px}main aside .aside_nav li a.active{background:var(--green);color:#fff;font-weight:700}@media all and (max-width:1280px){main aside .aside_nav{display:flex;margin-left:-16px;margin-right:-16px;overflow-x:auto;padding-left:16px;padding-right:16px}main aside .aside_nav li{background:#EDEFF5;margin-bottom:0}main aside .aside_nav li a{white-space:nowrap;font-size:13px;line-height:20px;min-height:40px;font-weight:400}}main aside .button{width:100%}main #order .container{padding-bottom:180px}@media all and (max-width:1280px){main #order .container{padding-bottom:60px}}@media all and (max-width:768px){main #order{background:#EDEFF5}main #order .container{padding:40px 0 0 0}}.model_container{display:flex;flex-wrap:wrap;justify-content:space-between;margin-top:60px}.model_container .col{width:calc(50% - 15px)}.model_container .col img{max-width:100%}.model_container .col .model_desc{margin-top:35px}.model_container .col .model_desc p{margin-bottom:10px}.model_container #calc{background:var(--inactive);padding:35px 30px;position:relative}.model_container #calc:after{content:"";display:block;position:absolute;top:0;right:-100%;bottom:0;width:100%;background:inherit}.model_container #calc .calc_body{flex-wrap:wrap}.model_container #calc .calc_body .calc_settings{width:100%;margin-bottom:35px}.model_container #calc .calc_body .calc_result{width:100%}.model_container #calc .calc_body .calc_result .result_box{width:100%;display:flex;justify-content:space-between;align-items:center;margin-bottom:15px}.model_container #calc .calc_body .calc_result .result_box p{font-weight:400}.model_container #calc .calc_body .calc_result .result_box.bolder{margin-bottom:35px}.model_container #calc .calc_body .calc_result .result_box.bolder p{font-weight:700;font-size:26px;line-height:35px}.model_container #calc .calc_body .calc_result .calc_footer{width:100%;display:flex;justify-content:space-between;align-items:center;margin-top:20px}.model_container #calc .calc_body .calc_result .calc_footer .button{width:calc(50% - 13px);padding:0;font-weight:400}.model_container .aside_container{width:100%;margin-top:0px;border-top:1px solid #EDEFF5}.model_container .aside_container aside{width:305px;padding-top:40px}.model_container .aside_container article{width:calc(100% - 305px);padding-top:40px;border-left:1px solid #EDEFF5}.model_container .aside_container article .dropdown_blocks_list .dropdown_block{padding:0 40px}@media all and (max-width:768px){.model_container{margin-top:20px}.model_container .col{width:100%;margin-bottom:10px}.model_container .col img{margin:0 -16px;width:calc(100% + 32px)}.model_container .col .model_desc{margin-top:12px}.model_container .col #calc{margin:0 -16px;padding:25px 16px}.model_container .col #calc .calc_body .calc_result .result_box.bolder p{font-size:19px;line-height:26px}.model_container .col #calc .calc_body .calc_result .calc_footer{margin-top:0;display:block}.model_container .col #calc .calc_body .calc_result .calc_footer button{width:100%;margin-bottom:0}.model_container .col #calc .calc_body .calc_result .calc_footer button:first-child{margin-top:0}.model_container .aside_container{border-top:0}.model_container .aside_container aside{display:none}.model_container .aside_container article{width:100%;border:0;padding-top:0}.model_container .aside_container article .dropdown_blocks_list .dropdown_block{padding:0}}.catalog_list{display:flex;flex-wrap:wrap}@media all and (max-width:1280px){.catalog_list{justify-content:space-between;width:100%}}.catalog_list .catalog_item{width:calc(33.333% - 20px);margin-bottom:110px}.catalog_list .catalog_item:not(:nth-child(3n)){margin-right:30px}.catalog_list .catalog_item img{width:100%;height:220px;object-fit:cover;margin-bottom:30px}.catalog_list .catalog_item .item_class{font-size:26px;line-height:35px;color:#0C0C0C;font-weight:700;margin-bottom:8px}.catalog_list .catalog_item .item_model{font-size:14px}.catalog_list .catalog_item .item_model b{display:block;font-size:15px}.catalog_list .catalog_item ul li{display:flex;justify-content:space-between;line-height:29px}.catalog_list .catalog_item ul li p{margin:0}.catalog_list .catalog_item ul li.pay{font-weight:700;margin:25px 0}.catalog_list .catalog_item .item_footer{text-align:right;margin-top:30px}@media all and (max-width:1280px){.catalog_list .catalog_item{width:calc(50% - 15px);margin-right:0 !important;margin-bottom:66px}.catalog_list .catalog_item .item_class{font-size:19px;line-height:26px}.catalog_list .catalog_item .item_model{font-size:13px;margin-top:10px}.catalog_list .catalog_item .item_model b{font-size:13px}.catalog_list .catalog_item ul li{line-height:20px;margin-bottom:10px}.catalog_list .catalog_item ul li.pay{margin:15px 0}}@media all and (max-width:768px){.catalog_list .catalog_item{width:100%}.catalog_list .catalog_item img{margin-left:-16px;margin-right:-16px;width:calc(100% + 32px)}.catalog_list .catalog_item ul li{margin-bottom:0px}}.requisites{padding:0 110px}.requisites .requisites_row{display:flex;justify-content:flex-start;margin-bottom:25px}.requisites .requisites_row p{margin:0;max-width:calc(50% - 15px);text-align:left}.requisites .requisites_row p:first-child{font-weight:700;margin-right:30px;width:180px}.requisites .button{margin-top:40px}@media all and (max-width:1420px){.requisites{padding:0}}@media all and (max-width:1280px){.requisites .requisites_row{display:block;margin-bottom:8px}.requisites .requisites_row p{width:100%;margin-bottom:8px}.requisites .button{width:286px}}#choose_region{display:flex;align-items:center}#choose_region p{margin-right:30px;max-width:340px}#choose_region .form_field{width:415px}@media all and (max-width:1280px){#officeViewToggle{justify-content:flex-end}}@media all and (max-width:768px){#officeViewToggle .tab{width:50%;text-align:center}}#map{display:none;width:100%;height:615px;margin:45px 0;background:var(--gray-light)}#map.visible{display:block}@media all and (max-width:1280px){#map{height:320px;margin:20px 0}}.popover{position:absolute;top:0;left:0;z-index:1010;display:block;padding:1px;text-align:left;white-space:normal;background:var(--blue);color:#fff;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;padding:30px 20px;max-width:500px}.popover .close{position:absolute;top:8px;right:8px;width:24px;height:24px;font-size:0;cursor:pointer;background:url("/assets/images/icons/close-white.svg") no-repeat center}.popover p{margin:5px 0}.popover .arrow{position:absolute;left:0;right:0;bottom:-25px;margin:auto;width:43px;height:54px;background:url("/assets/images/pin-open.svg") no-repeat center}.offices_list{display:flex;justify-content:space-between;border-top:1px solid #EDEFF5;margin-top:30px}.offices_list#offices:not(.visible){display:none}.offices_list .column{width:calc(50% - 15px)}.offices_list .column .dropdown_block.open .block_body p{margin-bottom:8px}.offices_list .column .dropdown_block.open .block_body a{display:inline-block;font-weight:700;margin:20px 0 20px 28px}@media all and (max-width:768px){.offices_list{display:block;padding-top:35px;margin-top:35px}.offices_list .column{width:100%}}.dosc_list .row{margin-bottom:35px;display:flex;align-items:center;justify-content:space-between}.dosc_list .row p{margin-bottom:0}.dosc_list .row .doc_name{font-weight:700;min-height:56px;display:inline-flex;flex-wrap:wrap;align-items:center;margin-right:30px;max-width:50%}.dosc_list .row .doc_name a{text-decoration:underline}.dosc_list .row .doc_name a:hover{text-decoration:none}.dosc_list .row .doc_name span{display:block;font-weight:400;margin-top:8px}.dosc_list .row .doc_date{margin-right:30px;margin-left:30px;white-space:nowrap}.dosc_list .row .button{width:104px}.dosc_list.medium-icon .row{margin-bottom:15px;width:100%}.dosc_list.medium-icon .doc_name{min-height:32px;background-size:32px;padding-left:48px}.dosc_list.acts_list-checkbox .row{margin-bottom:15px;width:100%}.dosc_list.acts_list-checkbox .row .doc_name{background-size:32px;padding-left:0;background-position:30px 50%;min-height:32px;max-width:none}.dosc_list.acts_list-checkbox .row .doc_name input[type="checkbox"]+label:before{margin-right:56px}.dosc_list.acts_list-checkbox .row .doc_name:not(.i-pdf){min-height:0}.dosc_list.acts_list-checkbox .row .doc_name:not(.i-pdf) input[type="checkbox"]+label:before{margin-right:16px}@media all and (max-width:768px){.dosc_list .row{flex-wrap:wrap}.dosc_list .row .doc_name{max-width:100%;width:100%}.dosc_list .row .button{margin-left:55px;margin-top:8px;width:96px}}.contract_table{margin-bottom:80px}.contract_table .table_row{min-height:80px;display:flex;width:100%}.contract_table .table_row .table_cell{padding:16px 8px;border:1px solid #EDEFF5;width:14%}.contract_table .table_row .table_cell:nth-child(3){width:16%}.contract_table .table_row .table_cell p{margin:0}.contract_table .table_row .table_cell p.closed{color:var(--text_not_active)}.contract_table .table_row .table_cell p.opened{color:var(--green)}.contract_table .table_row .table_cell b{display:block}.contract_table .table_header .table_cell{border:0;color:var(--text_not_active);font-weight:700;display:flex;align-items:center}.contract_table .table_header .table_cell.caret{cursor:pointer}.contract_table .table_header .table_cell.caret:after{content:"";display:inline-block;width:16px;min-width:16px;height:16px;margin-left:6px;background:url("/assets/images/icons/icon-select.svg") no-repeat center}.contract_table.schedule .show_more{width:100%;height:60px;text-align:center;background:var(--inactive);color:var(--blue);font-weight:600}.contract_table.schedule .table_row .table_cell{width:25%}.contract_table.schedule .table_row .table_cell:nth-child(1),.contract_table.schedule .table_row .table_cell:nth-child(2),.contract_table.schedule .table_row .table_cell:nth-child(4){width:14%}.contract_table.schedule .table_row[data-status="overpayment-2"]{background:rgba(28,1,169,0.1)}.contract_table.schedule .table_row[data-status="overpayment-1"]{background:rgba(168,2,107,0.1)}.contract_table.schedule .table_row[data-status="paid"]{background:rgba(4,168,164,0.1)}@media all and (max-width:1279px){.contract_table.schedule .table_row .table_cell{width:100%}.contract_table.schedule .table_row .table_cell:nth-child(1),.contract_table.schedule .table_row .table_cell:nth-child(2),.contract_table.schedule .table_row .table_cell:nth-child(3),.contract_table.schedule .table_row .table_cell:nth-child(4),.contract_table.schedule .table_row .table_cell:nth-child(5),.contract_table.schedule .table_row .table_cell:nth-child(6){width:100%;text-align:left;font-size:13px;padding-top:0;border:none;margin:5px 0}.contract_table.schedule .table_row .table_cell:nth-child(1):before,.contract_table.schedule .table_row .table_cell:nth-child(2):before,.contract_table.schedule .table_row .table_cell:nth-child(3):before,.contract_table.schedule .table_row .table_cell:nth-child(4):before,.contract_table.schedule .table_row .table_cell:nth-child(5):before,.contract_table.schedule .table_row .table_cell:nth-child(6):before{content:attr(data-title);display:inline-block;margin-right:6px;font-weight:600;height:auto;position:static;background:transparent}.contract_table.schedule .table_row .table_cell:nth-child(3){margin:0;font-weight:400}}@media all and (max-width:1279px){.contract_table{display:flex;flex-wrap:wrap;justify-content:space-between}.contract_table .table_row{width:calc(50% - 15px);margin-bottom:30px;border:1px solid #EDEFF5;display:flex;flex-wrap:wrap;justify-content:space-between;padding:25px 15px}.contract_table .table_row.table_header{display:none}.contract_table .table_row .table_cell{border:0;width:100%;font-size:13px;line-height:20px;padding:0}.contract_table .table_row .table_cell:nth-child(1),.contract_table .table_row .table_cell:nth-child(4){font-size:10px;line-height:15px;width:50%;text-align:left}.contract_table .table_row .table_cell:nth-child(2),.contract_table .table_row .table_cell:nth-child(5){font-size:10px;line-height:15px;width:40%;text-align:right}.contract_table .table_row .table_cell:nth-child(3){font-weight:700;margin:15px 0;width:100%}.contract_table .table_row .table_cell:nth-child(6){width:40%;margin-top:15px;padding-top:15px;position:relative}.contract_table .table_row .table_cell:nth-child(6):before{content:"";position:absolute;top:0;left:-15px;right:0;width:auto;height:1px;background:#EDEFF5}.contract_table .table_row .table_cell:nth-child(7){display:flex;align-items:center;width:60%;text-align:right;justify-content:flex-end;margin-top:15px;padding-top:15px;position:relative}.contract_table .table_row .table_cell:nth-child(7):before{content:"";position:absolute;top:0;right:-15px;left:0;width:auto;height:1px;background:#EDEFF5}.contract_table .table_row .table_cell:nth-child(7) .price{margin-left:15px}}@media all and (max-width:768px){.contract_table .table_row{width:100%;margin-bottom:15px}}.logo_list{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;margin:35px 0}.logo_list .logo_item{width:calc(16.666% - 25px);height:97px;display:flex;align-items:center;justify-content:center;margin:15px 0}.logo_list .logo_item img{max-width:100%;max-height:100%;object-fit:contain}.leasing_offers_list{display:flex;justify-content:space-between;margin-top:60px}.leasing_offers_list .offer_item{width:calc(33.333% - 20px);padding-left:80px;position:relative}.leasing_offers_list .offer_item p{margin-bottom:15px}.leasing_offers_list .offer_item img{position:absolute;top:0;left:0}.leasing_offers_list .offer_item ul li:not(:last-child){margin-bottom:6px}.catalog_sort{display:flex;align-items:center;justify-content:flex-end;margin-bottom:65px}.catalog_sort .sort_container{margin-left:40px;position:relative}.catalog_sort .sort_container button{height:40px;padding:0 20px 0 48px;color:var(--blue)}.catalog_sort .sort_container button.i-filter{background:url("/assets/images/icons/icon-filter.svg") no-repeat 20px 50%}.catalog_sort .sort_container button.i-sort{background:url("/assets/images/icons/icon-sort.svg") no-repeat 20px 50%}.news_cotnainer{display:flex;justify-content:space-between}.news_cotnainer .left{width:525px}.news_cotnainer .left .image{width:100%;height:525px;background:var(--gray-light);margin-bottom:30px}.news_cotnainer .left .image img{width:100%;height:100%;object-fit:cover}.news_cotnainer .left .socials a{width:48px;height:48px;margin-right:15px}.news_cotnainer .right{width:calc(100% - 555px)}.news_cotnainer .right h1{margin-bottom:20px}.news_cotnainer .right .date{display:block;text-transform:uppercase;margin-bottom:35px}.news_cotnainer .right p,.news_cotnainer .right ul,.news_cotnainer .right ol{margin-bottom:20px}.calendar_wrapper #calendar_month{margin-left:auto;max-width:235px;padding-left:32px;display:block;background:url("/assets/images/icons/icon-date.svg") no-repeat 8px 50%,url("/assets/images/icons/icon-select.svg") no-repeat calc(100% - 16px) 50%}@media all and (max-width:960px){.calendar_wrapper #calendar_month{margin-left:0;max-width:284px}}@media all and (max-width:768px){.calendar_wrapper #calendar_month{max-width:100%}}.calendar_wrapper .calendar_nav{display:none}@media all and (max-width:768px){.calendar_wrapper .calendar_nav{display:flex;align-items:center;justify-content:space-between;margin-top:15px}.calendar_wrapper .calendar_nav button{max-width:48%;height:28px;font-size:10px;color:var(--blue);padding:0}.calendar_wrapper .calendar_nav button:first-child:before{content:"<";display:inline-block;width:20px;height:28px;line-height:28px;text-align:left}.calendar_wrapper .calendar_nav button:last-child:after{content:">";display:inline-block;width:20px;height:28px;line-height:28px;text-align:right}}.calendar_wrapper .calendar_grid{margin-top:30px}.calendar_wrapper .calendar_grid .grid_header{display:flex;flex-wrap:wrap}.calendar_wrapper .calendar_grid .grid_header .grid_cell{padding:15px;text-transform:uppercase;font-weight:bold;font-size:15px;line-height:23px;color:#0C0C0C;width:14.2%}.calendar_wrapper .calendar_grid .grid_body{display:flex;flex-wrap:wrap;border:1px solid #E0E0E0}.calendar_wrapper .calendar_grid .grid_body .grid_week{width:100%;display:flex}.calendar_wrapper .calendar_grid .grid_body .grid_cell{padding:15px;width:14.282%;height:150px;border:1px solid #E0E0E0;box-sizing:border-box;display:flex;flex-wrap:wrap;align-items:stretch}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_header{color:#87878E;align-self:flex-start}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_header span{font-size:26px;line-height:35px;font-weight:700;color:#000;padding-right:4px}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_body{align-self:flex-end}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_body p{color:#000}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_body p span{display:block;font-weight:700}.calendar_wrapper .calendar_grid .grid_body .grid_cell.disabled{background:#EDEFF5;opacity:.4}.calendar_wrapper .calendar_grid .grid_body .grid_cell.current{background:var(--blue)}.calendar_wrapper .calendar_grid .grid_body .grid_cell.current .cell_header{color:#fff}.calendar_wrapper .calendar_grid .grid_body .grid_cell.current .cell_header span{color:inherit}.calendar_wrapper .calendar_grid .grid_body .grid_cell.current .cell_body p{color:#fff}@media all and (max-width:960px){.calendar_wrapper .calendar_grid{position:relative;margin-right:-80px}.calendar_wrapper .calendar_grid .grid_header{width:22px;position:absolute;left:0;top:0}.calendar_wrapper .calendar_grid .grid_header .grid_cell{width:100%;height:72px;padding:14px 0;text-align:center;font-size:13px;line-height:20px}.calendar_wrapper .calendar_grid .grid_body{margin-left:30px;overflow-x:auto}.calendar_wrapper .calendar_grid .grid_body .grid_week{width:auto}.calendar_wrapper .calendar_grid .grid_body .grid_cell{height:72px;padding:10px;width:33.333%;min-width:256px;font-size:13px;line-height:20px;align-items:flex-start;display:block}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_header span{font-size:13px;line-height:20px}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_body{width:100%}.calendar_wrapper .calendar_grid .grid_body .grid_cell .cell_body p{width:100%;display:flex;align-items:center;justify-content:space-between}}@media all and (max-width:768px){.calendar_wrapper .calendar_grid{margin-top:15px;margin-right:0}.calendar_wrapper .calendar_grid .grid_body .grid_week{width:100%;flex-wrap:wrap}.calendar_wrapper .calendar_grid .grid_body .grid_week:not(.active){display:none}.calendar_wrapper .calendar_grid .grid_body .grid_week .grid_cell{display:flex;width:100%}}.calendar_payment{display:flex}.calendar_payment .day{color:#87878E;font-size:26px;line-height:35px;font-weight:700;margin-right:50px}.calendar_payment .day span{display:block;font-size:50px;line-height:1;color:#000}.calendar_payment .payment_table{display:table;margin-top:12px}.calendar_payment .payment_table .table_row{display:table-row}.calendar_payment .payment_table .table_row .table_cell{display:table-cell;padding:2px 10px}.calendar_payment .payment_table .table_row .table_cell a{font-weight:700}.calendar_payment .payment_table .table_row.table_header .table_cell{color:#87878E;padding:12px 10px}@media all and (max-width:768px){.calendar_payment{display:block}}.acts_wrapper{display:flex;justify-content:space-between}.acts_wrapper .acts_list-checkbox,.acts_wrapper .reconciliation_form{width:calc(50% - 10px)}@media all and (max-width:768px){.acts_wrapper{flex-wrap:wrap}.acts_wrapper .acts_list-checkbox{width:100%;order:2;margin-top:40px}.acts_wrapper .reconciliation_form{order:1;width:100%}}main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail{margin:30px 0}main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail p{margin-bottom:10px}main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail ul{max-width:60%;display:flex;flex-wrap:wrap}main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail ul li{width:50%}.dropdown_block+.dosc_list{margin-top:30px}/*# sourceMappingURL=./style.css.map */
\ No newline at end of file
diff --git a/css/main/style.css.map b/css/main/style.css.map
index 3dcaab9..7c40d42 100644
--- a/css/main/style.css.map
+++ b/css/main/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["style.less"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,KACI,eAAA,CACA,kBAEA,gBAAmC,kBAAnC,KACI,kBAOA,IAHJ,QAGK,MACG,WAAY,gBAbxB,IAiBI,gBACI,YAAA,CACA,6BAAA,CACA,mBAEA,gBAAmC,kBAAnC,IALJ,gBAMQ,oBAGJ,gBAAkC,iBAAlC,IATJ,gBAUQ,gBA3BZ,IAiBI,eAaI,IA9BR,IAiBI,eAcI,IA/BR,IAiBI,eAeI,IAhCR,IAiBI,eAgBI,IAjCR,IAiBI,eAiBI,IACI,gBAIA,gBAAkC,iBAC9B,IAvBZ,eAqBI,eAES,IAAI,cACD,mBAzCpB,IAiBI,eA6BI,aACI,eAAA,CACA,oBAAA,CACA,gBAAA,CACA,mBAAA,CACA,iBAEA,gBAAmC,kBAAnC,IApCR,eA6BI,aAQQ,cAAA,CACA,gBAAA,CACA,kBAGJ,gBAAkC,iBAAlC,IA1CR,eA6BI,aAcQ,eA5DhB,IAiBI,eA+CI,OACI,aAjEZ,IAiBI,eAoDI,QACI,aAEA,gBAAkC,iBAAlC,IAvDR,eAoDI,QAIQ,UAAA,CACA,eAAA,CACA,eAHJ,IAvDR,eAoDI,OAQQ,GACI,cAAA,CACA,gBAAA,CACA,iBAhFpB,IAuFI,cACI,YAAA,CACA,WAAY,iBAAZ,CACA,SAAA,CACA,kBAEA,gBAAmC,kBAAnC,IANJ,cAOQ,cA9FZ,IAuFI,aAUI,YACI,iBAAA,CACA,WAAA,CACA,WAAY,qHAEZ,gBAAkC,iBAAlC,IAfR,aAUI,YAMQ,wBAvGhB,IAuFI,aAoBI,sBACI,gBAAA,CACA,cAAA,CACA,gBAAA,CACA,kBAAA,CACA,UAAA,CACA,eAAA,CACA,iBAAA,CACA,QAAA,CACA,MAAA,CACA,wBAAA,CACA,YAAa,0BAEb,gBAAmC,kBAAnC,IAjCR,aAoBI,sBAcQ,cAAA,CACA,gBAAA,CACA,eAAA,CACA,UA5HhB,IAuFI,aAyCI,cACI,iBAAA,CACA,QAAA,CACA,MAAA,CACA,OAAA,CACA,aAEA,gBAAmC,kBAAnC,IAhDR,aAyCI,cAQQ,cAGJ,gBAAkC,iBAAlC,IApDR,aAyCI,cAYQ,cA5IhB,IAuFI,aAyCI,aAeI,cACI,SAAA,CACA,aAAA,CACA,YAAA,CACA,iBAAA,CACA,YAAA,CACA,cAAA,CACA,oBAAA,CACA,sBAAA,CACA,cAAA,CACA,iBAAA,CACA,gBAEA,gBAAmC,kBAAnC,IArEZ,aAyCI,aAeI,cAcQ,YAAA,CACA,mBAGJ,IA1EZ,aAyCI,aAeI,aAkBK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,MAAA,CACA,OAAA,CACA,KAAA,CACA,SAAA,CACA,UAAA,CACA,WAAA,CACA,UAAW,gBAAX,CACA,2BAA4B,iCA5KhD,IAuFI,aAyCI,aAeI,aAgCI,YACI,cAAA,CACA,gBAAA,CACA,wBAAA,CACA,UAAA,CACA,UAAA,CACA,YAAA,CACA,WAAA,CACA,oBAAA,CACA,kBAAA,CACA,6BAAA,CACA,2BAA4B,gCAA5B,CACA,UAAW,gBAAX,CACA,iBAAA,CACA,SAAA,CACA,iBAAA,CACA,YAAa,0BAEb,gBAAmC,kBAAnC,IA1GhB,aAyCI,aAeI,aAgCI,YAmBQ,cAAA,CACA,aAGJ,IA/GhB,aAyCI,aAeI,aAgCI,WAuBK,OACG,QAAS,EAAT,CACA,aAAA,CACA,UAAA,CACA,cAAA,CACA,WAAA,CACA,eAAgB,0DA5MxC,IAuFI,aAyCI,aAeI,aAiEI,GACI,oBAAA,CACA,gBAAA,CACA,UAAA,CACA,eAAA,CACA,2BAA4B,gCAA5B,CACA,UAAW,gBAAX,CACA,iBAAA,CACA,UAEA,gBAAmC,kBAAnC,IAnIhB,aAyCI,aAeI,aAiEI,GAWQ,gBAIR,IAxIZ,aAyCI,aAeI,aAgFK,QACG,wBADJ,IAxIZ,aAyCI,aAeI,aAgFK,OAGG,YAHJ,IAxIZ,aAyCI,aAeI,aAgFK,OAIG,GACI,UAAW,cALnB,IAxIZ,aAyCI,aAeI,aAgFK,OAQG,WAAU,OACN,UAAA,CACA,eAAgB,+DAAhB,CACA,UAAW,eAAe,sBAE1B,gBAAmC,kBAAnC,IArJpB,aAyCI,aAeI,aAgFK,OAQG,WAAU,OAMF,UAAW,eAAe,wBAKtC,IA3JZ,aAyCI,aAeI,aAmGK,MAEG,YAFJ,IA3JZ,aAyCI,aAeI,aAmGK,MAGG,GACI,UAAW,cAGf,IAlKhB,aAyCI,aAeI,aAmGK,MAOI,OACG,UAAW,aAAX,CACA,WAAY,sEA3PpC,IAuFI,aAyCI,aAiII,eACI,SAAA,CACA,aAAA,CACA,aApQhB,IAuFI,aAyCI,aAiII,cAKI,GAEI,eAAA,CACA,UAAA,CACA,WAAA,CACA,UAAW,mCAAX,CACA,4BAA6B,gCAA7B,CACA,qBAAA,CACA,cAAA,CACA,YAAA,CACA,oBAAA,CACA,yBAEA,IA5LhB,aAyCI,aAiII,cAKI,EAaK,OACG,QAAS,EAAT,CACA,aAAA,CACA,UAAA,CACA,cAAA,CACA,WAAA,CACA,qBAAsB,gCAAtB,CACA,eAAgB,+DAGpB,IAtMhB,aAyCI,aAiII,cAKI,EAuBK,OACG,mBAEA,IAzMpB,aAyCI,aAiII,cAKI,EAuBK,MAGI,OACG,UAAA,CACA,eAAgB,yDAUpC,gBAAkC,iBAAlC,IADJ,OAEQ,oBA7SZ,IA2SI,MAKI,YACI,eAAgB,4DAAhB,CACA,iBAAA,CACA,kBAEA,IAVR,MAKI,WAKK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,KAAA,CACA,QAAA,CACA,WAAA,CACA,UAAA,CACA,SAAA,CACA,yBAGJ,gBAAmC,kBAAnC,IAtBR,MAKI,YAkBQ,mBAGJ,gBAAmC,kBAAnC,IA1BR,MAKI,YAsBQ,oBAGJ,gBAAkC,iBAAlC,IA9BR,MAKI,YA0BQ,gBA1UhB,IA2SI,MAmCI,YACI,YAAA,CACA,8BAEA,gBAAkC,iBAAlC,IAvCR,MAmCI,YAKQ,eAnVhB,IA2SI,MAmCI,WAQI,gBACI,YAEA,gBAAmC,kBAAnC,IA9CZ,MAmCI,WAQI,gBAIQ,MAAO,oBAGX,gBAAmC,kBAAnC,IAlDZ,MAmCI,WAQI,gBAQQ,MAAO,kBAGX,gBAAkC,iBAAlC,IAtDZ,MAmCI,WAQI,gBAYQ,YAlWpB,IA2SI,MAmCI,WAQI,eAeI,eACI,gCAAA,CACA,iBAAA,CACA,WAAA,CACA,kBAAA,CACA,iBAAA,CACA,YAAA,CACA,cAAA,CACA,oBAAA,CACA,6BAAA,CACA,aA/WpB,IA2SI,MAmCI,WAQI,eAeI,cAYI,OAAM,SACF,aAGJ,IA1EhB,MAmCI,WAQI,eAeI,cAgBK,YACG,mBAGJ,gBAAmC,kBAAnC,IA9EhB,MAmCI,WAQI,eAeI,eAqBQ,kBAAA,CACA,WAAA,CACA,aA5XxB,IA2SI,MAmCI,WAQI,eAeI,cA0BI,GACI,kBAAA,CACA,gBAEA,gBAAmC,kBAAnC,IAxFpB,MAmCI,WAQI,eAeI,cA0BI,GAKQ,gBAGJ,IA5FpB,MAmCI,WAQI,eAeI,cA0BI,EAQK,KACG,iBAAA,CACA,QAAA,CACA,eAAA,CACA,SAAA,CACA,SAEA,gBAAkC,iBAAlC,IAnGxB,MAmCI,WAQI,eAeI,cA0BI,EAQK,KAQO,cAIR,IAxGpB,MAmCI,WAQI,eAeI,cA0BI,EAoBK,KACG,iBAAA,CACA,QAAA,CACA,eAAA,CACA,UAAA,CACA,SAEA,gBAAkC,iBAAlC,IA/GxB,MAmCI,WAQI,eAeI,cA0BI,EAoBK,KAQO,UA3ZhC,IA2SI,MAmCI,WAQI,eAeI,cA2DI,OACI,UAAA,CACA,iCAEA,gBAAkC,iBAAlC,IAzHpB,MAmCI,WAQI,eAeI,cA2DI,OAKQ,MAAO,mBAranC,IA2SI,MAmCI,WAQI,eAeI,cAoEI,OAzapB,IA2SI,MAmCI,WAQI,eAeI,cAoEW,aAAY,yBACf,iBAAA,CACA,UAAA,CACA,UA5axB,IA2SI,MAmCI,WAQI,eAeI,cAoEI,MAOI,cAhbxB,IA2SI,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAOf,cAhbxB,IA2SI,MAmCI,WAQI,eAeI,cAoEI,MAOkB,oBAhbtC,IA2SI,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAOD,oBACV,WAAY,WAAZ,CACA,iBAAA,CACA,MAAA,CACA,QAAA,CACA,YArb5B,IA2SI,MAmCI,WAQI,eAeI,cAoEI,MAeI,UAxbxB,IA2SI,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAef,UAxbxB,IA2SI,MAmCI,WAQI,eAeI,cAoEI,MAec,sBAxblC,IA2SI,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAeL,sBACN,SAAA,CACA,WAAA,CACA,cAAA,CACA,iBAAA,CACA,OAAA,CACA,OAEA,IArJxB,MAmCI,WAQI,eAeI,cAoEI,MAeI,SAQK,OAAD,IArJxB,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAef,SAQK,OAAD,IArJxB,MAmCI,WAQI,eAeI,cAoEI,MAec,qBAQL,OAAD,IArJxB,MAmCI,WAQI,eAeI,cAoEW,aAAY,wBAeL,qBAQL,OACG,QAAS,EAAT,CACA,aAAA,CACA,UAAW,cAAc,oBAAzB,CACA,UAAA,CACA,WAAA,CACA,WAAY,YAtc5C,IA2SI,MAmCI,WA+HI,cACI,WAAA,CACA,mBAAA,CACA,qBAAA,CACA,YAAA,CACA,eAEA,gBAAmC,kBAAnC,IAzKZ,MAmCI,WA+HI,cAQQ,aAGJ,gBAAmC,kBAAnC,IA7KZ,MAmCI,WA+HI,cAYQ,MAAO,kBAGX,gBAAkC,iBAAlC,IAjLZ,MAmCI,WA+HI,cAgBQ,UAAA,CACA,iBA9dpB,IA2SI,MAmCI,WA+HI,aAoBI,aACI,WAlepB,IA2SI,MAmCI,WA+HI,aAoBI,YAGI,GACI,gBAEA,gBAAmC,kBAAnC,IA5LpB,MAmCI,WA+HI,aAoBI,YAGI,GAIY,eAAA,CACA,cAAA,CACA,gBAAA,CACA,oBAGR,gBAAkC,iBAAlC,IAnMpB,MAmCI,WA+HI,aAoBI,YAGI,GAWQ,mBAGJ,IAvMpB,MAmCI,WA+HI,aAoBI,YAGI,EAcK,OACG,cAAA,CACA,cAFJ,IAvMpB,MAmCI,WA+HI,aAoBI,YAGI,EAcK,MAIG,KACI,eAAA,CACA,cAAA,CACA,gBAAA,CACA,aAAA,CACA,qBAGJ,gBAAmC,kBAAnC,IAnNxB,MAmCI,WA+HI,aAoBI,YAGI,EAcK,OAaO,gBAGJ,gBAAmC,kBAAnC,IAvNxB,MAmCI,WA+HI,aAoBI,YAGI,EAcK,OAiBO,cAAA,CACA,eAAA,CACA,iBAMZ,gBAAkC,iBAAlC,IAhOhB,MAmCI,WA+HI,aAoBI,aA2CQ,WA5gBxB,IA2SI,MAmCI,WA+HI,aAmEI,SACI,UAAA,CACA,kBAEA,gBAAkC,iBAAlC,IAzOhB,MAmCI,WA+HI,aAmEI,SAKQ,eAAA,CACA,oBAthBxB,IA2SI,MAmCI,WA+HI,aA6EI,YACI,oBA3hBpB,IAiiBI,cACI,YAAA,CACA,qBAEA,gBAAmC,kBAAnC,IAJJ,cAKQ,yBAtiBZ,IAiiBI,aAQI,QACI,UAAA,CACA,WAAA,CACA,iBAAkB,WAAlB,CACA,qBAAA,CACA,cAAA,CACA,wCA/iBZ,IAiiBI,aAQI,OAQI,KACI,SAAA,CACA,WAAA,CACA,iBApjBhB,IAiiBI,aAQI,OAQI,IAKI,MACI,WAAA,CACA,oCAQR,IA/BR,aAQI,OAuBK,UACD,IAhCR,aAQI,OAwBK,gBACG,cAAA,CACA,iBAAkB,eAAlB,CACA,2BAJJ,IA/BR,aAQI,OAuBK,SAMG,KALJ,IAhCR,aAQI,OAwBK,eAKG,KACI,cAPR,IA/BR,aAQI,OAuBK,SAMG,IAGI,MARR,IAhCR,aAQI,OAwBK,eAKG,IAGI,MACI,eAUZ,gBAAkC,iBAAlC,IAFR,MACI,sBAEQ,gBArlBhB,IA0lBI,YA1lBJ,IA2lBI,cACI,YAAA,CACA,kBAAA,CACA,WA9lBR,IA0lBI,WAMI,aAhmBR,IA2lBI,aAKI,aAEI,WAlmBZ,IA0lBI,WAMI,YAII,cApmBZ,IA2lBI,aAKI,YAII,cACI,kBAAA,CACA,YAAA,CACA,oBAEA,IAfZ,WAMI,YAII,aAKK,OAAD,IAdZ,aAKI,YAII,aAKK,OACG,QAAS,EAAT,CACA,aAAA,CACA,WAAA,CACA,eAAA,CACA,aA9mBpB,IA0lBI,WAyBI,YAnnBR,IA2lBI,aAwBI,YAnnBR,IA0lBI,WA0BI,cApnBR,IA2lBI,aAyBI,cACI,WAAA,CACA,eAAA,CACA,iBAAA,CACA,kBAAA,CACA,kBAEA,gBAAmC,kBAAnC,IAjCR,WAyBI,YAQI,IAhCR,aAwBI,YAQI,IAjCR,WA0BI,cAOI,IAhCR,aAyBI,cAQQ,WAAA,CACA,eAAA,CACA,mBAGJ,gBAAkC,iBAAlC,IAvCR,WAyBI,YAcI,IAtCR,aAwBI,YAcI,IAvCR,WA0BI,cAaI,IAtCR,aAyBI,cAcQ,kBAloBhB,IA0lBI,WAyBI,WAkBI,GAroBZ,IA2lBI,aAwBI,WAkBI,GAroBZ,IA0lBI,WA0BI,aAiBI,GAroBZ,IA2lBI,aAyBI,aAiBI,GACI,kBAAA,CACA,kBAAA,CACA,gBAAA,CACA,mCAzoBhB,IA0lBI,WAyBI,WAyBI,YA5oBZ,IA2lBI,aAwBI,WAyBI,YA5oBZ,IA0lBI,WA0BI,aAwBI,YA5oBZ,IA2lBI,aAyBI,aAwBI,YACI,mBAEA,gBAAmC,kBAAnC,IArDZ,WAyBI,WAyBI,YAGI,IApDZ,aAwBI,WAyBI,YAGI,IArDZ,WA0BI,aAwBI,YAGI,IApDZ,aAyBI,aAwBI,YAIQ,oBAhpBpB,IA0lBI,WAyBI,WAiCI,KAppBZ,IA2lBI,aAwBI,WAiCI,KAppBZ,IA0lBI,WA0BI,aAgCI,KAppBZ,IA2lBI,aAyBI,aAgCI,KACI,aAAA,CACA,kBAAA,CACA,iBAEA,gBAAmC,kBAAnC,IA/DZ,WAyBI,WAiCI,KAKI,IA9DZ,aAwBI,WAiCI,KAKI,IA/DZ,WA0BI,aAgCI,KAKI,IA9DZ,aAyBI,aAgCI,KAMQ,YAAA,CACA,UAAA,CACA,oBA5pBpB,IA0lBI,WAyBI,WA8CI,aAjqBZ,IA2lBI,aAwBI,WA8CI,aAjqBZ,IA0lBI,WA0BI,aA6CI,aAjqBZ,IA2lBI,aAyBI,aA6CI,aAjqBZ,IA0lBI,WAyBI,WA+CI,eAlqBZ,IA2lBI,aAwBI,WA+CI,eAlqBZ,IA0lBI,WA0BI,aA8CI,eAlqBZ,IA2lBI,aAyBI,aA8CI,eACI,aAAA,CACA,cAAA,CACA,gBAAA,CACA,gBAEA,gBAAmC,kBAAnC,IA9EZ,WAyBI,WA8CI,aAOI,IA7EZ,aAwBI,WA8CI,aAOI,IA9EZ,WA0BI,aA6CI,aAOI,IA7EZ,aAyBI,aA6CI,aAOI,IA9EZ,WAyBI,WA+CI,eAMI,IA7EZ,aAwBI,WA+CI,eAMI,IA9EZ,WA0BI,aA8CI,eAMI,IA7EZ,aAyBI,aA8CI,eAOQ,cAAA,CACA,gBAAA,CACA,oBA3qBpB,IA0lBI,WAyBI,WAiEI,YAprBZ,IA2lBI,aAwBI,WAiEI,YAprBZ,IA0lBI,WA0BI,aAgEI,YAprBZ,IA2lBI,aAyBI,aAgEI,YAprBZ,IA0lBI,WAyBI,WAkEI,cArrBZ,IA2lBI,aAwBI,WAkEI,cArrBZ,IA0lBI,WA0BI,aAiEI,cArrBZ,IA2lBI,aAyBI,aAiEI,cACI,eAAA,CACA,MAAO,YAEP,gBAAmC,kBAAnC,IA/FZ,WAyBI,WAiEI,YAKI,IA9FZ,aAwBI,WAiEI,YAKI,IA/FZ,WA0BI,aAgEI,YAKI,IA9FZ,aAyBI,aAgEI,YAKI,IA/FZ,WAyBI,WAkEI,cAII,IA9FZ,aAwBI,WAkEI,cAII,IA/FZ,WA0BI,aAiEI,cAII,IA9FZ,aAyBI,aAiEI,cAKQ,eAAA,CACA,gBA3rBpB,IA0lBI,WAyBI,WA4EI,GA/rBZ,IA2lBI,aAwBI,WA4EI,GA/rBZ,IA0lBI,WA0BI,aA2EI,GA/rBZ,IA2lBI,aAyBI,aA2EI,GACI,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAKJ,IAjHR,WAyBI,WAwFK,OAAD,IAhHR,aAwBI,WAwFK,OAAD,IAjHR,WA0BI,aAuFK,OAAD,IAhHR,aAyBI,aAuFK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,SAAA,CACA,MAAA,CACA,OAAA,CACA,YAAA,CACA,SAAA,CACA,iBAAA,CACA,iCAGJ,IA9HR,WAyBI,WAqGK,OAAD,IA7HR,aAwBI,WAqGK,OAAD,IA9HR,WA0BI,aAoGK,OAAD,IA7HR,aAyBI,aAoGK,OACG,UAEA,IAjIZ,WAyBI,WAqGK,MAGI,OAAD,IAhIZ,aAwBI,WAqGK,MAGI,OAAD,IAjIZ,WA0BI,aAoGK,MAGI,OAAD,IAhIZ,aAyBI,aAoGK,MAGI,OACG,SAAA,CACA,kBAAA,CACA,WAAY,YAAZ,CACA,UAPR,IA9HR,WAyBI,WAqGK,MAUG,GAVJ,IA7HR,aAwBI,WAqGK,MAUG,GAVJ,IA9HR,WA0BI,aAoGK,MAUG,GAVJ,IA7HR,aAyBI,aAoGK,MAUG,GAVJ,IA9HR,WAyBI,WAqGK,MAWG,KAXJ,IA7HR,aAwBI,WAqGK,MAWG,KAXJ,IA9HR,WA0BI,aAoGK,MAWG,KAXJ,IA7HR,aAyBI,aAoGK,MAWG,KACI,UAAA,CACA,SAAA,CACA,kBAIA,IAhJhB,WAyBI,WAqGK,MAiBG,WACK,OAAD,IA/IhB,aAwBI,WAqGK,MAiBG,WACK,OAAD,IAhJhB,WA0BI,aAoGK,MAiBG,WACK,OAAD,IA/IhB,aAyBI,aAoGK,MAiBG,WACK,OACG,QAAS,EAAT,CACA,iBAAA,CACA,WAAA,CACA,UAAA,CACA,MAAA,CACA,OAAA,CACA,WAAY,gEAM5B,IA7JJ,WA6JK,kBAAD,IA5JJ,aA4JK,kBACG,YAAA,CACA,8BAFJ,IA7JJ,WA6JK,iBAIG,SAJJ,IA5JJ,aA4JK,iBAIG,SACI,MAAO,iBALf,IA7JJ,WA6JK,iBAQG,YARJ,IA5JJ,aA4JK,iBAQG,YARJ,IA7JJ,WA6JK,iBASG,cATJ,IA5JJ,aA4JK,iBASG,cACI,UAAA,CACA,mBAGJ,gBAAkC,iBAAlC,IA3KR,WA6JK,kBAcG,IA1KR,aA4JK,kBAeO,cADJ,IA3KR,WA6JK,iBAiBO,SAHJ,IA1KR,aA4JK,iBAiBO,SACI,YAzwBpB,IA+wBI,gBA/wBJ,IAgxBI,gBACI,YAAA,CACA,eAEA,gBAAmC,kBAAnC,IALJ,gBAKI,IAJJ,gBAKQ,+BArxBZ,IA+wBI,eASI,eAxxBR,IAgxBI,eAQI,eAxxBR,IA+wBI,eAUI,eAzxBR,IAgxBI,eASI,eACI,eAAA,CACA,kBAAA,CACA,MAAO,gBAAP,CACA,iBAAA,CACA,kBAAA,CACA,qBAAA,CACA,gCAAA,CACA,aAEA,gBAAmC,kBAAnC,IApBR,eASI,eAWI,IAnBR,eAQI,eAWI,IApBR,eAUI,eAUI,IAnBR,eASI,eAWQ,iBAGJ,gBAAmC,kBAAnC,IAxBR,eASI,eAeI,IAvBR,eAQI,eAeI,IAxBR,eAUI,eAcI,IAvBR,eASI,eAeQ,MAAO,gBAAP,CACA,yBAAA,CACA,kBAAA,CACA,YAAA,CACA,YAAA,CACA,iBAGJ,gBAAkC,iBAAlC,IAjCR,eASI,eAwBI,IAhCR,eAQI,eAwBI,IAjCR,eAUI,eAuBI,IAhCR,eASI,eAwBQ,YAIJ,IAtCR,eASI,cA6BK,OAAD,IArCR,eAQI,cA6BK,OAAD,IAtCR,eAUI,cA4BK,OAAD,IArCR,eASI,cA4BK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,SAAA,CACA,iCA/zBhB,IA+wBI,eASI,cA0CI,GAl0BZ,IAgxBI,eAQI,cA0CI,GAl0BZ,IA+wBI,eAUI,cAyCI,GAl0BZ,IAgxBI,eASI,cAyCI,GACI,WAAA,CACA,aAAA,CACA,qBAAA,CACA,iBAAA,CACA,iBAAA,CACA,UAEA,gBAAmC,kBAAnC,IA3DZ,eASI,cA0CI,GAQI,IA1DZ,eAQI,cA0CI,GAQI,IA3DZ,eAUI,cAyCI,GAQI,IA1DZ,eASI,cAyCI,GASQ,mBA30BpB,IA+wBI,eASI,cA0CI,EAYI,MA90BhB,IAgxBI,eAQI,cA0CI,EAYI,MA90BhB,IA+wBI,eAUI,cAyCI,EAYI,MA90BhB,IAgxBI,eASI,cAyCI,EAYI,MACI,qBAIR,IApER,eASI,cA2DK,IAAI,iBAAL,IAnER,eAQI,cA2DK,IAAI,iBAAL,IApER,eAUI,cA0DK,IAAI,iBAAL,IAnER,eASI,cA0DK,IAAI,iBACD,kBAp1BhB,IA+wBI,eASI,cA+DI,eAv1BZ,IAgxBI,eAQI,cA+DI,eAv1BZ,IA+wBI,eAUI,cA8DI,eAv1BZ,IAgxBI,eASI,cA8DI,eAv1BZ,IA+wBI,eASI,cAgEI,eAx1BZ,IAgxBI,eAQI,cAgEI,eAx1BZ,IA+wBI,eAUI,cA+DI,eAx1BZ,IAgxBI,eASI,cA+DI,eACI,eAAA,CACA,cAAA,CACA,gBAAA,CACA,UAAA,CACA,iBAAA,CACA,SAAA,CACA,UAAW,aAAX,CACA,sCAAA,CACA,cAEA,gBAAmC,kBAAnC,IApFZ,eASI,cA+DI,eAYI,IAnFZ,eAQI,cA+DI,eAYI,IApFZ,eAUI,cA8DI,eAYI,IAnFZ,eASI,cA8DI,eAYI,IApFZ,eASI,cAgEI,eAWI,IAnFZ,eAQI,cAgEI,eAWI,IApFZ,eAUI,cA+DI,eAWI,IAnFZ,eASI,cA+DI,eAYQ,cAAA,CACA,kBAr2BpB,IA+wBI,eASI,cAiFI,eAz2BZ,IAgxBI,eAQI,cAiFI,eAz2BZ,IA+wBI,eAUI,cAgFI,eAz2BZ,IAgxBI,eASI,cAgFI,eAz2BZ,IA+wBI,eASI,cAkFI,eA12BZ,IAgxBI,eAQI,cAkFI,eA12BZ,IA+wBI,eAUI,cAiFI,eA12BZ,IAgxBI,eASI,cAiFI,eACI,iBAAA,CACA,SAAA,CACA,YAAA,CACA,MAAO,WAAP,CACA,eAAA,CACA,cAAA,CACA,gBAAA,CACA,SAAA,CACA,SAAA,CACA,UAAW,eAAX,CACA,iCAr3BhB,IA+wBI,eASI,cAgGI,KAx3BZ,IAgxBI,eAQI,cAgGI,KAx3BZ,IA+wBI,eAUI,cA+FI,KAx3BZ,IAgxBI,eASI,cA+FI,KACI,iBAAA,CACA,OAAA,CACA,QAAA,CACA,UAAW,eAAX,CACA,iCAEA,gBAAmC,uBAAwB,kBAA3D,IAhHZ,eASI,cAgGI,KAOI,IA/GZ,eAQI,cAgGI,KAOI,IAhHZ,eAUI,cA+FI,KAOI,IA/GZ,eASI,cA+FI,KAQQ,gBAGJ,gBAAmC,kBAAnC,IApHZ,eASI,cAgGI,KAWI,IAnHZ,eAQI,cAgGI,KAWI,IApHZ,eAUI,cA+FI,KAWI,IAnHZ,eASI,cA+FI,KAYQ,iBAOJ,gBAAmC,kBAAnC,IA5HZ,eASI,cAgHK,OAGG,IA3HZ,eAQI,cAgHK,OAGG,IA5HZ,eAUI,cA+GK,OAGG,IA3HZ,eASI,cA+GK,OAIO,iBAEA,IA/HhB,eASI,cAgHK,MAMQ,OAAD,IA9HhB,eAQI,cAgHK,MAMQ,OAAD,IA/HhB,eAUI,cA+GK,MAMQ,OAAD,IA9HhB,eASI,cA+GK,MAMQ,OACG,SAAA,CACA,WAAA,CACA,aANR,IA5HZ,eASI,cAgHK,MAYO,KATJ,IA3HZ,eAQI,cAgHK,MAYO,KATJ,IA5HZ,eAUI,cA+GK,MAYO,KATJ,IA3HZ,eASI,cA+GK,MAYO,KACI,UAAW,uBAVnB,IA5HZ,eASI,cAgHK,MAgBO,eAbJ,IA3HZ,eAQI,cAgHK,MAgBO,eAbJ,IA5HZ,eAUI,cA+GK,MAgBO,eAbJ,IA3HZ,eASI,cA+GK,MAgBO,eAbJ,IA5HZ,eASI,cAgHK,MAiBO,eAdJ,IA3HZ,eAQI,cAgHK,MAiBO,eAdJ,IA5HZ,eAUI,cA+GK,MAiBO,eAdJ,IA3HZ,eASI,cA+GK,MAiBO,eACI,UAAW,kBAfnB,IA5HZ,eASI,cAgHK,MAqBO,eAlBJ,IA3HZ,eAQI,cAgHK,MAqBO,eAlBJ,IA5HZ,eAUI,cA+GK,MAqBO,eAlBJ,IA3HZ,eASI,cA+GK,MAqBO,eAlBJ,IA5HZ,eASI,cAgHK,MAsBO,eAnBJ,IA3HZ,eAQI,cAgHK,MAsBO,eAnBJ,IA5HZ,eAUI,cA+GK,MAsBO,eAnBJ,IA3HZ,eASI,cA+GK,MAsBO,eACI,SAAA,CACA,UAAW,yBAh6BnC,IAu6BI,gBACI,uBAEA,gBAAmC,kBAAnC,IAHJ,gBAIQ,+BA36BZ,IAu6BI,eAOI,eAqBI,MAAO,qBApBP,IARR,eAOI,cACK,OACG,mBAh7BhB,IAu6BI,eAOI,cAKI,eACI,cAGJ,IAhBR,eAOI,cASK,IAAI,iBACD,kBAGJ,IApBR,eAOI,cAaK,UAAU,KACP,eAGJ,IAxBR,eAOI,cAiBK,UAAU,KACP,kBAKJ,gBAAmC,kBAAnC,IA9BR,eAOI,eAwBQ,MAAO,iBADX,IA9BR,eAOI,cA0BQ,KACI,iBAIR,gBAAkC,iBAAlC,IAtCR,eAOI,eAgCQ,YA98BhB,IAm9BI,eACI,YAAA,CACA,cAAA,CACA,8BAt9BR,IAm9BI,cAKI,eACI,iBAAA,CACA,MAAO,gBAAP,CACA,UAAW,gBAAX,CACA,mBA59BZ,IAm9BI,cAKI,cAMI,GACI,aAAA,CACA,aAAA,CACA,iBAAA,CACA,SAAA,CACA,qBAAA,CACA,aAAc,2BAp+B9B,IAm9BI,cAKI,cAMI,EAQI,eACI,cAAA,CACA,gBAAA,CACA,eAAA,CACA,aAAA,CACA,kBAAA,CACA,aAAA,CACA,iCA7+BpB,IAm9BI,cAKI,cAMI,EAkBI,gBACI,aAAA,CACA,kBAAA,CACA,eAAA,CACA,aAAA,CACA,UAAW,eAAX,CACA,iCAt/BpB,IAm9BI,cAKI,cAMI,EA2BI,eACI,cAAA,CACA,gBAAA,CACA,UAAW,eAAX,CACA,iCA7/BpB,IAm9BI,cAKI,cAMI,EAkCI,eACI,oBAAA,CACA,eAAA,CACA,SAAA,CACA,UAAW,qBAAX,CACA,gCAAA,CACA,WAIR,IAvDR,cAKI,cAkDK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,QAAA,CACA,WAAA,CACA,UAAA,CACA,QAAA,CACA,gCAAA,CACA,WAAY,eAAZ,CACA,UAphChB,IAm9BI,cAKI,cA+DI,KACI,aAAA,CACA,iBAAA,CACA,KAAA,CACA,QAAA,CACA,SAAA,CACA,WAAA,CACA,OAAA,CACA,gBAAA,CACA,UAIA,gBAAmC,kBAAnC,IAjFZ,cAKI,cA2EK,MAEG,EACI,eACI,WAHR,IAjFZ,cAKI,cA2EK,MAEG,EAMI,gBAPJ,IAjFZ,cAKI,cA2EK,MAEG,EAOI,eACI,UAAW,mBAAX,CACA,WAVR,IAjFZ,cAKI,cA2EK,MAEG,EAaI,eACI,SAAA,CACA,UAAA,CACA,UAAW,gBAInB,IAtGZ,cAKI,cA2EK,MAsBI,OACG,WAAY,YAAZ,CACA,KAAA,CACA,MAAA,CACA,UAMR,gBAAmC,kBAAnC,IAhHR,cAKI,eA4GQ,MAAO,gBAAP,CACA,UAAW,gBAAX,CACA,mBAHJ,IAhHR,cAKI,cAgHQ,GACI,kBAAA,CACA,YAAA,CACA,eARR,IAhHR,cAKI,cAgHQ,EAKI,eACI,cAAA,CACA,iBAZZ,IAhHR,cAKI,cAgHQ,EAUI,eACI,cAAA,CACA,gBAAA,CACA,WAlBZ,IAhHR,cAKI,cAgHQ,EAgBI,gBACI,WAtBZ,IAhHR,cAKI,cAgHQ,EAoBI,eACI,SAAA,CACA,UAAW,eAAX,CACA,MAAO,YA5BnB,IAhHR,cAKI,cAgHQ,EA2BI,KACI,iBAAA,CACA,UAAA,CACA,YAAA,CACA,gBAAA,CACA,uBAIR,IAzJZ,cAKI,cAoJS,OACG,WAAA,CACA,KAAA,CACA,SAAA,CACA,OAAA,CACA,cAIR,gBAAkC,iBAAlC,IAlKR,cAKI,eA8JQ,UAAA,CACA,cAAA,CACA,oBAIR,IAzKJ,cAyKK,QACG,eAAA,CACA,mBAFJ,IAzKJ,cAyKK,OAIG,eACI,eAAA,CACA,kBAAA,CACA,kBAPR,IAzKJ,cAyKK,OAIG,cAKI,GACI,mBAVZ,IAzKJ,cAyKK,OAIG,cASI,EACI,eACI,MAAO,WAAP,CACA,UAIR,IA7LZ,cAyKK,OAIG,cAgBK,MACG,EAAE,eACE,WAlpCxB,IAypCI,eACI,eAAA,CACA,gBAAA,CACA,eAAA,CACA,mBAEA,gBAAkC,iBAAlC,IANJ,eAOQ,cAAA,CACA,eAAA,CACA,oBAlqCZ,IAsqCI,gBACI,gBACI,iBAAA,CACA,aAAc,yBAAd,CACA,mBA1qCZ,IAsqCI,gBACI,eAKI,IACI,cAAA,CACA,gBAAA,CACA,aAAA,CACA,eAAA,CACA,mBAjrChB,IAsqCI,gBACI,eAKI,GAOI,MACI,aAAA,CACA,cAAA,CACA,iBAtrCpB,IAsqCI,gBACI,eAKI,GAaI,MACI,aAAA,CACA,uBA3rCpB,IAsqCI,gBACI,eAwBI,SACI,UAAA,CACA,gBAGJ,IA9BR,gBACI,eA6BK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,SAAA,CACA,UAAA,CACA,QAAA,CACA,WAAA,CACA,OAAA,CACA,WAAY,gBA7sC5B,IAsqCI,gBACI,eAyCI,KACI,aAAA,CACA,WAAA,CACA,MAAO,kBAAP,CACA,iBAAA,CACA,OAAA,CACA,QAAA,CACA,SAAA,CACA,iBAGJ,gBAAmC,kBAAnC,IArDR,gBACI,gBAqDQ,gBAGJ,gBAAmC,kBAAnC,IAzDR,gBACI,gBAyDQ,UAAW,qBADf,IAzDR,gBACI,eA2DQ,IACI,cAAA,CACA,gBAAA,CACA,UAAA,CACA,OAAA,CACA,gBARR,IAzDR,gBACI,eA2DQ,GAOI,MACI,cAAA,CACA,iBAZZ,IAzDR,gBACI,eAwEQ,KACI,MAAO,iBAIX,IA9EZ,gBACI,eA6ES,OACG,KAAM,iBAAN,CACA,YAIR,gBAAkC,iBAAlC,IApFR,gBACI,gBAoFQ,SAAA,CACA,YAAA,CACA,eAHJ,IApFR,gBACI,eA0FQ,KACI,OAAA,CACA,UAAA,CACA,iBAAA,CACA,YAAA,CACA,mBAZR,IApFR,gBACI,eAkGQ,cACI,OAAA,CACA,eAAA,CACA,mBAlBR,IApFR,gBACI,eAwGQ,OAAM,QACF,OAAA,CACA,aAGJ,IA9GZ,gBACI,eA6GS,OACG,WAAA,CACA,SAAA,CACA,OAAA,CACA,KAAA,CACA,WAAA,CACA,YA1xCpB,IAsqCI,gBAyHI,qBACI,kBAAA,CACA,eAGA,gBAAkC,iBAAlC,IA9HR,gBAyHI,qBAMQ,SAAA,CACA,oBAtyChB,IAsqCI,gBAoII,kBACI,gBAEA,gBAAkC,iBAAlC,IAvIR,gBAoII,kBAIQ,eAAA,CACA,gBAAA,CACA,8BAhzChB,IAqzCI,eAEI,IACI,cAAA,CACA,kBAAA,CACA,cAAA,CACA,iBAEA,gBAAkC,iBAAlC,IARR,eAEI,IAOQ,SAAA,CACA,cAAA,CACA,kBAh0ChB,IAqzCI,eAeI,eACI,YAAA,CACA,eAt0CZ,IAqzCI,eAeI,cAII,eACI,MAAO,oBAAP,CACA,mBAEA,IAvBZ,eAeI,cAII,cAIK,IAAI,iBACD,kBA70CpB,IAqzCI,eAeI,cAII,cAQI,eACI,aAAA,CACA,mBAAA,CACA,eAAA,CACA,8CAp1CpB,IAqzCI,eAeI,cAII,cAQI,cAMI,KACI,aAAA,CACA,UAAA,CACA,YAAA,CACA,gBAAA,CACA,mBA31CxB,IAqzCI,eAeI,cAII,cAQI,cAcI,MACI,aAAA,CACA,UAAA,CACA,mCAj2CxB,IAqzCI,eAeI,cAII,cAQI,cAoBI,gBACI,cAAA,CACA,iBAAA,CACA,gBAv2CxB,IAqzCI,eAeI,cAII,cAQI,cA0BI,eACI,eAGJ,IAzDhB,eAeI,cAII,cAQI,cA8BK,OACG,WAAY,aADhB,IAzDhB,eAeI,cAII,cAQI,cA8BK,MAGG,gBAHJ,IAzDhB,eAeI,cAII,cAQI,cA8BK,MAIG,eACI,WAMhB,gBAAmC,kBAAnC,IApER,eAeI,eAsDQ,iBAAA,CACA,eAAA,CACA,mBAHJ,IApER,eAeI,cA0DQ,eACI,eAAA,CACA,4BAPR,IApER,eAeI,cA0DQ,cAGI,eACI,oBATZ,IApER,eAeI,cA0DQ,cAGI,cAGI,KACI,kBAAA,CACA,aAbhB,IApER,eAeI,cA0DQ,cAGI,cAQI,gBAhBZ,IApER,eAeI,cA0DQ,cAGI,cASI,eACI,gBAMhB,gBAAkC,iBAAlC,IA5FR,eAeI,eA8EQ,cAAA,CACA,gBAn5ChB,IAqzCI,eAkGI,uBACI,YAAA,CACA,6BAAA,CACA,iBA15CZ,IAqzCI,eAkGI,sBAKI,eACI,YAAA,CACA,MAAO,mBA95CvB,IAqzCI,eAkGI,sBAKI,cAII,QACI,YAj6CpB,IAqzCI,eAkGI,sBAKI,cAII,OAGI,KACI,UAAA,CACA,WAAA,CACA,iBAt6CxB,IAqzCI,eAkGI,sBAoBI,aACI,WAAA,CACA,mBAAA,CACA,kBA96ChB,IAqzCI,eAkGI,sBAoBI,YAKI,aACI,cAAA,CACA,gBAAA,CACA,wBAAA,CACA,eAAA,CACA,mBAr7CpB,IAqzCI,eAkGI,sBAoBI,YAaI,IAKI,mBA77CpB,IAqzCI,eAkGI,sBAoBI,YAaI,GACI,IACI,iBA17CxB,IAqzCI,eAkGI,sBAoBI,YAqBI,SACI,eAAA,CACA,WAAA,CACA,iBAAA,CACA,QAAA,CACA,OAIR,gBAAmC,kBAAnC,IApJR,eAkGI,sBAmDQ,eACI,aAFR,IApJR,eAkGI,sBAsDQ,eAJJ,IApJR,eAkGI,sBAsDuB,aACX,MAAO,iBALf,IApJR,eAkGI,sBAsDQ,cAGI,SAPR,IApJR,eAkGI,sBAsDuB,YAGX,SACI,mBAKZ,gBAAkC,iBAAlC,IAjKR,eAkGI,uBAgEQ,eAAA,CACA,cAFJ,IAjKR,eAkGI,sBAmEQ,eACI,UAAA,CACA,aANR,IAjKR,eAkGI,sBAwEQ,aACI,UAAA,CACA,iBAXR,IAjKR,eAkGI,sBAwEQ,YAII,aACI,cAAA,CACA,gBAAA,CACA,mBAhBZ,IAjKR,eAkGI,sBAwEQ,YAUI,SACI,UAAA,CACA,mBA3+CxB,IAo/CI,aACI,mBAr/CR,IAo/CI,YAGI,aACI,UAAA,CACA,eAAA,CACA,iBAQA,IAJR,sBAGI,gBACK,IAAI,cACD,gCAngDhB,IA8/CI,sBAGI,gBAKI,eACI,cAAA,CACA,WAAA,CACA,YAAA,CACA,kBAAA,CACA,8BA3gDhB,IA8/CI,sBAGI,gBAKI,cAOI,GACI,eAAA,CACA,iBAAA,CACA,gBAEA,IApBhB,sBAGI,gBAKI,cAOI,EAKK,WACG,mBAAA,CACA,mBAFJ,IApBhB,sBAGI,gBAKI,cAOI,EAKK,UAIG,KACI,kBAvhD5B,IA8/CI,sBAGI,gBAKI,cAsBI,QACI,UAAA,CACA,WAAA,CACA,cAAA,CACA,cAAA,CACA,eAAgB,2DAjiDpC,IA8/CI,sBAGI,gBAoCI,aACI,aAtiDhB,IA8/CI,sBAGI,gBAoCI,YAGI,UACI,YAAA,CACA,mBA1iDpB,IA8/CI,sBAGI,gBAoCI,YAGI,SAII,QACI,wBAAA,CACA,cAAA,CACA,gBAAA,CACA,gBAhjDxB,IA8/CI,sBAGI,gBAoCI,YAGI,SAWI,IACI,iBApjDxB,IA8/CI,sBAGI,gBAoCI,YAGI,SAWI,GAGI,IACI,eAAA,CACA,kBAMhB,IAhER,sBAGI,gBA6DK,KACG,cACI,QACI,eAAgB,wDAH5B,IAhER,sBAGI,gBA6DK,KAOG,aACI,aAAA,CACA,gBATR,IAhER,sBAGI,gBA6DK,KAOG,YAII,GACI,mBAGJ,gBAAkC,iBAAlC,IA/EhB,sBAGI,gBA6DK,KAOG,aASQ,aADJ,IA/EhB,sBAGI,gBA6DK,KAOG,YAWQ,GACI,oBAUZ,IA7FZ,sBA0FK,OACG,gBAEK,KACG,eACI,WAAY,eAAZ,CACA,MAAO,YA9lD/B,IAymDI,MACI,YACI,eAAA,CACA,SAAA,CACA,kBA7mDZ,IAymDI,MACI,WAKI,IACI,kBAhnDhB,IAymDI,MACI,WAKI,GAGI,GACI,YAAA,CACA,kBAAA,CACA,eAAA,CACA,UAAA,CACA,cAAA,CACA,gBAAA,CACA,eAAA,CACA,qBAAA,CACA,eAEA,IApBhB,MACI,WAKI,GAGI,EAWK,QACG,WAAY,YAAZ,CACA,UAAA,CACA,gBAKZ,gBAAmC,kBAAnC,IA5BR,MACI,YA4BQ,YAAA,CACA,iBAAA,CACA,kBAAA,CACA,eAAA,CACA,iBAAA,CACA,mBANJ,IA5BR,MACI,WAmCQ,IACI,kBAAA,CACA,gBAVR,IA5BR,MACI,WAmCQ,GAGI,GACI,kBAAA,CACA,cAAA,CACA,gBAAA,CACA,eAAA,CACA,iBArpDxB,IAymDI,MAmDI,SACI,WA7pDZ,IAiqDI,OACI,YACI,qBAEA,gBAAmC,kBAAnC,IAJR,OACI,YAIQ,qBAIR,gBAAkC,iBAAlC,IATJ,QAUQ,mBADJ,IATJ,OAYQ,YACI,oBAOhB,iBACI,YAAA,CACA,cAAA,CACA,6BAAA,CACA,gBAJJ,gBAMI,MACI,MAAO,iBAPf,gBAMI,KAGI,KACI,eAVZ,gBAMI,KAOI,aACI,gBAdZ,gBAMI,KAOI,YAGI,GACI,mBAjBhB,gBAsBI,OACI,WAAY,eAAZ,CACA,iBAAA,CACA,kBAEA,gBALJ,MAKK,OACG,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,KAAA,CACA,WAAA,CACA,QAAA,CACA,UAAA,CACA,mBAnCZ,gBAsBI,MAgBI,YACI,eAvCZ,gBAsBI,MAgBI,WAGI,gBACI,UAAA,CACA,mBA3ChB,gBAsBI,MAgBI,WAQI,cACI,WA/ChB,gBAsBI,MAgBI,WAQI,aAGI,aACI,UAAA,CACA,YAAA,CACA,6BAAA,CACA,kBAAA,CACA,mBAtDpB,gBAsBI,MAgBI,WAQI,aAGI,YAOI,GACI,gBAGJ,gBAtChB,MAgBI,WAQI,aAGI,YAWK,QACG,mBADJ,gBAtChB,MAgBI,WAQI,aAGI,YAWK,OAGG,GACI,eAAA,CACA,cAAA,CACA,iBAlE5B,gBAsBI,MAgBI,WAQI,aAyBI,cACI,UAAA,CACA,YAAA,CACA,6BAAA,CACA,kBAAA,CACA,gBA5EpB,gBAsBI,MAgBI,WAQI,aAyBI,aAOI,SACI,MAAO,gBAAP,CACA,SAAA,CACA,gBAjFxB,gBAwFI,kBACI,UAAA,CACA,cAAA,CAEA,6BA5FR,gBAwFI,iBAMI,OACI,WAAA,CACA,iBAhGZ,gBAwFI,iBAWI,SACI,MAAO,kBAAP,CACA,gBAAA,CACA,8BAtGZ,gBAwFI,iBAWI,QAKI,sBACI,iBACI,eAMhB,gBAAkC,iBAAlC,iBACI,gBADJ,gBAGI,MACI,UAAA,CACA,mBALR,gBAGI,KAII,KACI,cAAA,CACA,MAAO,kBATnB,gBAGI,KASI,aACI,gBAbZ,gBAGI,KAaI,OACI,cAAA,CACA,kBAKY,gBApBpB,KAaI,MAII,WACI,aACI,YACK,OACG,GACI,cAAA,CACA,iBA1BhC,gBAGI,KAaI,MAII,WACI,aAUI,cACI,YAAA,CACA,cAjCxB,gBAGI,KAaI,MAII,WACI,aAUI,aAII,QACI,UAAA,CACA,gBAEA,gBApCxB,KAaI,MAII,WACI,aAUI,aAII,OAIK,aACG,aAxChC,gBAiDI,kBACI,aAlDR,gBAiDI,iBAGI,OACI,aArDZ,gBAiDI,iBAOI,SACI,UAAA,CACA,QAAA,CACA,cA3DZ,gBAiDI,iBAOI,QAKI,sBAAsB,iBAClB,WASpB,cACI,YAAA,CACA,eAEA,gBAAmC,kBAAnC,cACI,6BAAA,CACA,YANR,aASI,eACI,MAAO,oBAAP,CACA,oBAEA,aAJJ,cAIK,IAAI,iBACD,kBAdZ,aASI,cAQI,KACI,UAAA,CACA,YAAA,CACA,gBAAA,CACA,mBArBZ,aASI,cAeI,aACI,cAAA,CACA,gBAAA,CACA,aAAA,CACA,eAAA,CACA,kBA7BZ,aASI,cAuBI,aACI,eAjCZ,aASI,cAuBI,YAGI,GACI,aAAA,CACA,eArChB,aASI,cAgCI,GACI,IACI,YAAA,CACA,6BAAA,CACA,iBA7ChB,aASI,cAgCI,GACI,GAKI,GACI,SAGJ,aA1CZ,cAgCI,GACI,GASK,KACG,eAAA,CACA,cArDpB,aASI,cAiDI,cACI,gBAAA,CACA,gBAKR,gBAAmC,kBAAnC,aACI,eACI,MAAO,gBAAP,CACA,yBAAA,CACA,mBAJR,aACI,cAMI,aACI,cAAA,CACA,iBATZ,aACI,cAWI,aACC,cAAA,CACA,gBAdT,aACI,cAWI,YAII,GACI,eAjBhB,aACI,cAoBI,GACI,IACI,gBAAA,CACA,mBAEA,aAzBZ,cAoBI,GACI,GAIK,KACG,eAOpB,gBAAkC,iBAAlC,aACG,eACI,WAFP,aACG,cAGI,KACC,iBAAA,CACA,kBAAA,CACA,MAAO,kBAPf,aACG,cASI,GAAG,IACF,mBAQZ,YACI,gBADJ,WAGI,iBACI,YAAA,CACA,0BAAA,CACA,mBANR,WAGI,gBAKI,GACI,QAAA,CACA,UAAW,gBAAX,CACA,gBAEA,WAVR,gBAKI,EAKK,aACG,eAAA,CACA,iBAAA,CACA,YAhBhB,WAuBI,SACI,gBAGJ,gBAAmC,kBAAnC,YACI,WAGJ,gBAAmC,kBAAnC,WAGI,iBACI,aAAA,CACA,kBALR,WAGI,gBAII,GACI,UAAA,CACA,kBATZ,WAaI,SACI,aAMZ,eACI,YAAA,CACA,mBAFJ,cAII,GACI,iBAAA,CACA,gBANR,cASI,aACI,YAKJ,gBAAmC,kBAAnC,kBACI,0BAGA,gBAAkC,iBAAlC,iBADJ,MAEQ,SAAA,CACA,mBAKZ,KACI,YAAA,CACA,UAAA,CACA,YAAA,CACA,aAAA,CACA,WAAY,kBAEZ,IAAC,SACG,cAGJ,gBAAmC,kBAAnC,KACI,YAAA,CACA,eAIR,SACI,iBAAA,CACA,KAAA,CACA,MAAA,CACA,YAAA,CACA,aAAA,CACA,WAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAY,WAAZ,CACA,UAAA,CACA,6CAAA,CACA,0CAAA,CACA,qCAAA,CACA,mCAAA,CACA,4BAAA,CACA,2BAAA,CACA,iBAAA,CACA,gBAGJ,QAAS,QACL,iBAAA,CACA,OAAA,CACA,SAAA,CACA,UAAA,CACA,WAAA,CACA,WAAA,CACA,cAAA,CACA,eAAgB,yDAGpB,QAAS,GACL,aAGJ,QAAS,QACL,iBAAA,CACA,MAAA,CACA,OAAA,CACA,YAAA,CACA,WAAA,CACA,UAAA,CACA,WAAA,CACA,eAAgB,gDAGpB,cACI,YAAA,CACA,6BAAA,CACA,4BAAA,CACA,gBAEA,aAAC,QAAQ,IAAI,WACT,aAPR,aAUI,SACI,MAAO,iBAXf,aAUI,QAGI,gBAAe,KACX,YACI,GACI,kBAhBpB,aAUI,QAGI,gBAAe,KACX,YAKI,GACI,oBAAA,CACA,eAAA,CACA,wBAMhB,gBAAkC,iBAAlC,cACI,aAAA,CACA,gBAAA,CACA,gBAHJ,aAKI,SACI,YAOZ,UACI,MACI,kBAAA,CACA,YAAA,CACA,kBAAA,CACA,8BALR,UACI,KAMI,GACI,gBARZ,UACI,KASI,WACI,eAAA,CACA,eAAA,CACA,mBAAA,CACA,cAAA,CACA,kBAAA,CACA,iBAAA,CACA,cAjBZ,UACI,KASI,UASI,GACI,0BAEA,UArBZ,KASI,UASI,EAGK,OACG,qBAvBpB,UACI,KASI,UAiBI,MACI,aAAA,CACA,eAAA,CACA,eA9BhB,UACI,KAkCI,WACI,iBAAA,CACA,gBAAA,CACA,mBAtCZ,UACI,KAwCI,SACI,YAIR,UAAC,YACG,MACI,kBAAA,CACJ,WAHJ,UAAC,YAMG,WACI,eAAA,CACI,oBAAA,CACA,kBAIZ,UAAC,mBACG,MACI,kBAAA,CACA,WAHR,UAAC,mBACG,KAII,WACI,oBAAA,CACA,cAAA,CACA,4BAAA,CACA,eAAA,CACA,eAVZ,UAAC,mBACG,KAII,UAOI,MAAK,iBAAiB,MAAM,QACxB,kBAGJ,UAhBX,mBACG,KAII,UAWK,IAAI,SACD,aADJ,UAhBX,mBACG,KAII,UAWK,IAAI,QAGD,MAAK,iBAAiB,MAAM,QACxB,kBAOpB,gBAAkC,iBAAlC,UACI,MACI,eAFR,UACI,KAEI,WACI,cAAA,CACA,WALZ,UACI,KAOI,SACI,gBAAA,CACA,cAAA,CACA,YAUhB,gBACI,mBADJ,eAEI,YACI,eAAA,CACA,YAAA,CACA,WALR,eAEI,WAKI,aACI,gBAAA,CACA,wBAAA,CACA,UAEA,eAVR,WAKI,YAKK,UAAU,IACP,UAbhB,eAEI,WAKI,YASI,GACI,SAEA,eAjBZ,WAKI,YASI,EAGK,QACG,MAAO,uBAGX,eArBZ,WAKI,YASI,EAOK,QACG,MAAO,aAxB3B,eAEI,WAKI,YAqBI,GACI,cA7BhB,eAkCI,cACI,aACI,QAAA,CACA,MAAO,sBAAP,CACA,eAAA,CACA,YAAA,CACA,mBAEA,eARR,cACI,YAOK,OACG,eAEA,eAXZ,cACI,YAOK,MAGI,OACG,QAAS,EAAT,CACA,oBAAA,CACA,UAAA,CACA,cAAA,CACA,WAAA,CACA,eAAA,CACA,eAAgB,yDAMhC,eAAC,SACG,YACI,UAAA,CACA,WAAA,CACA,iBAAA,CACA,WAAY,eAAZ,CACA,MAAO,WAAP,CACA,gBAPR,eAAC,SAUG,WACI,aACI,UAEA,eAdX,SAUG,WACI,YAGK,UAAU,IACX,eAfX,SAUG,WACI,YAIK,UAAU,IACX,eAhBX,SAUG,WACI,YAKK,UAAU,IACP,UAIR,eArBP,SAUG,WAWK,8BACG,8BAGJ,eAzBP,SAUG,WAeK,8BACG,+BAGJ,eA7BP,SAUG,WAmBK,qBACG,+BAGJ,gBAAmC,kBAAnC,eAjCP,SAUG,WAwBQ,aACI,WAEA,eArCf,SAUG,WAwBQ,YAGK,UAAU,IACX,eAtCf,SAUG,WAwBQ,YAIK,UAAU,IACX,eAvCf,SAUG,WAwBQ,YAKK,UAAU,IACX,eAxCf,SAUG,WAwBQ,YAMK,UAAU,IACX,eAzCf,SAUG,WAwBQ,YAOK,UAAU,IACX,eA1Cf,SAUG,WAwBQ,YAQK,UAAU,IACP,UAAA,CACA,eAAA,CACA,cAAA,CACA,aAAA,CACA,WAAA,CACA,aAEA,eAlDnB,SAUG,WAwBQ,YAGK,UAAU,GAaN,QAAD,eAlDnB,SAUG,WAwBQ,YAIK,UAAU,GAYN,QAAD,eAlDnB,SAUG,WAwBQ,YAKK,UAAU,GAWN,QAAD,eAlDnB,SAUG,WAwBQ,YAMK,UAAU,GAUN,QAAD,eAlDnB,SAUG,WAwBQ,YAOK,UAAU,GASN,QAAD,eAlDnB,SAUG,WAwBQ,YAQK,UAAU,GAQN,QACG,QAAS,gBAAT,CACA,oBAAA,CACA,gBAAA,CACA,eAAA,CACA,WAAA,CACA,eAAA,CACA,uBAIR,eA7Df,SAUG,WAwBQ,YA2BK,UAAU,IACP,QAAA,CACA,iBAOpB,gBAAmC,kBAAnC,gBACI,YAAA,CACA,cAAA,CACA,8BAHJ,eAKI,YACI,MAAO,gBAAP,CACA,kBAAA,CACA,wBAAA,CACA,YAAA,CACA,cAAA,CACA,6BAAA,CACA,kBAEA,eATJ,WASK,cAAe,aAdxB,eAKI,WAWI,aACI,QAAA,CAEA,UAAA,CACA,cAAA,CACA,gBAAA,CACA,UAEA,eAnBR,WAWI,YAQK,UAAU,IACX,eApBR,WAWI,YASK,UAAU,IACP,cAAA,CACA,gBAAA,CACA,SAAA,CACA,gBAEJ,eA1BR,WAWI,YAeK,UAAU,IACX,eA3BR,WAWI,YAgBK,UAAU,IACP,cAAA,CACA,gBAAA,CACA,SAAA,CACA,iBAEJ,eAjCR,WAWI,YAsBK,UAAU,IACP,eAAA,CACA,aAAA,CACA,WAGJ,eAvCR,WAWI,YA4BK,UAAU,IACP,SAAA,CACA,eAAA,CACA,gBAAA,CACA,kBAEA,eA7CZ,WAWI,YA4BK,UAAU,GAMN,QACG,QAAS,EAAT,CACA,iBAAA,CACA,KAAA,CACA,UAAA,CACA,OAAA,CACA,UAAA,CACA,UAAA,CACA,mBAGR,eAxDR,WAWI,YA6CK,UAAU,IACP,YAAA,CACA,kBAAA,CACA,SAAA,CACA,gBAAA,CACA,wBAAA,CACA,eAAA,CACA,gBAAA,CACA,kBAEA,eAlEZ,WAWI,YA6CK,UAAU,GAUN,QACG,QAAS,EAAT,CACA,iBAAA,CACA,KAAA,CACA,WAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,mBAlBR,eAxDR,WAWI,YA6CK,UAAU,GAqBP,QACI,kBAOpB,gBAAkC,iBAAlC,eACI,YACI,UAAA,CACA,oBAMZ,WACI,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,cAAA,CACA,cALJ,UAOI,YACI,MAAO,oBAAP,CACA,WAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,cAbR,UAOI,WAQI,KACI,cAAA,CACA,eAAA,CACA,mBAMZ,qBACI,YAAA,CACA,6BAAA,CACA,gBAHJ,oBAKI,aACI,MAAO,oBAAP,CACA,iBAAA,CACA,kBARR,oBAKI,YAKI,GACI,mBAXZ,oBAKI,YASI,KACI,iBAAA,CACA,KAAA,CACA,OAKI,oBAjBZ,YAeI,GACI,GACK,IAAI,cACD,kBAQpB,cACI,YAAA,CACA,kBAAA,CACA,wBAAA,CACA,mBAJJ,aAMI,iBACI,gBAAA,CACA,kBARR,aAMI,gBAII,QACI,WAAA,CACA,qBAAA,CACA,MAAO,YAEP,aATR,gBAII,OAKK,UACG,eAAgB,2DAGpB,aAbR,gBAII,OASK,QACG,eAAgB,yDAOhC,gBACI,YAAA,CACA,8BAFJ,eAII,OACI,YALR,eAII,MAGI,QACI,UAAA,CACA,YAAA,CACA,WAAY,iBAAZ,CACA,mBAXZ,eAII,MAGI,OAMI,KACI,UAAA,CACA,WAAA,CACA,iBAhBhB,eAII,MAgBI,SACI,GACI,UAAA,CACA,WAAA,CACA,kBAxBhB,eA6BI,QACI,MAAO,mBA9Bf,eA6BI,OAGI,IACI,mBAjCZ,eA6BI,OAOI,OACI,aAAA,CACA,wBAAA,CACA,mBAvCZ,eA6BI,OAaI,GA1CR,eA6BI,OAaO,IA1CX,eA6BI,OAaW,IACH,mBAQZ,iBACI,iBACI,gBAAA,CACA,eAAA,CACA,iBAAA,CACA,aAAA,CACA,eAAgB,4DAA6D,kDAAkD,sBAE/H,gBAAkC,iBAAlC,iBAPJ,iBAQQ,aAAA,CACA,iBAGJ,gBAAkC,iBAAlC,iBAZJ,iBAaQ,gBAdZ,iBAkBI,eACI,aAEA,gBAAkC,iBAAlC,iBAHJ,eAIQ,YAAA,CACA,kBAAA,CACA,6BAAA,CACA,gBAJJ,iBAHJ,cASQ,QACI,aAAA,CACA,WAAA,CACA,cAAA,CACA,MAAO,WAAP,CACA,UAEA,iBAhBZ,cASQ,OAOK,YAAY,QACT,QAAS,GAAT,CACA,oBAAA,CACA,UAAA,CACA,WAAA,CACA,gBAAA,CACA,gBAGJ,iBAzBZ,cASQ,OAgBK,WAAW,OACR,QAAS,GAAT,CACA,oBAAA,CACA,UAAA,CACA,WAAA,CACA,gBAAA,CACA,kBAjDpB,iBAuDI,gBACI,gBAxDR,iBAuDI,eAGI,cACI,YAAA,CACA,eA5DZ,iBAuDI,eAGI,aAII,YACI,YAAA,CACA,wBAAA,CACA,gBAAA,CACA,cAAA,CACA,gBAAA,CACA,aAAA,CACA,YArEhB,iBAuDI,eAkBI,YACI,YAAA,CACA,cAAA,CACA,yBA5EZ,iBAuDI,eAkBI,WAKI,YACI,UAAA,CACA,aAhFhB,iBAuDI,eAkBI,WAUI,YACI,YAAA,CACA,aAAA,CACA,YAAA,CACA,wBAAA,CACA,qBAAA,CACA,YAAA,CACA,cAAA,CACA,oBA3FhB,iBAuDI,eAkBI,WAUI,WAUI,cACI,aAAA,CACA,sBA/FpB,iBAuDI,eAkBI,WAUI,WAUI,aAII,MACI,cAAA,CACA,gBAAA,CACA,eAAA,CACA,UAAA,CACA,kBAtGxB,iBAuDI,eAkBI,WAUI,WAuBI,YACI,oBA3GpB,iBAuDI,eAkBI,WAUI,WAuBI,WAEI,GACI,WA7GxB,iBAuDI,eAkBI,WAUI,WAuBI,WAEI,EAEI,MACI,aAAA,CACA,gBAMZ,iBA/DZ,eAkBI,WAUI,WAmCK,UACG,kBAAA,CACA,WAGJ,iBApEZ,eAkBI,WAUI,WAwCK,SACG,WAAY,YADhB,iBApEZ,eAkBI,WAUI,WAwCK,QAGG,cACI,WAJR,iBApEZ,eAkBI,WAUI,WAwCK,QAGG,aAGI,MAAM,cANd,iBApEZ,eAkBI,WAUI,WAwCK,QASG,WAAW,GAAG,WAK1B,gBAAkC,iBAAlC,iBAlFJ,gBAmFQ,iBAAA,CACA,mBAFJ,iBAlFJ,eAsFQ,cACI,UAAA,CACA,iBAAA,CACA,MAAA,CACA,MARR,iBAlFJ,eAsFQ,aAMI,YACI,UAAA,CACA,WAAA,CACA,cAAA,CACA,iBAAA,CACA,cAAA,CACA,iBAhBZ,iBAlFJ,eAqGQ,YACI,gBAAA,CACA,gBArBR,iBAlFJ,eAqGQ,WAII,YACI,WAxBZ,iBAlFJ,eAqGQ,WAQI,YACI,WAAA,CACA,YAAA,CACA,aAAA,CACA,eAAA,CACA,cAAA,CACA,gBAAA,CACA,sBAAA,CACA,cAnCZ,iBAlFJ,eAqGQ,WAQI,WAUI,aACI,MAAM,cAAA,CAAgB,iBAtCtC,iBAlFJ,eAqGQ,WAQI,WAcI,YACI,WA1ChB,iBAlFJ,eAqGQ,WAQI,WAcI,WAGI,GACI,UAAA,CAEA,YAAA,CACA,kBAAA,CACA,+BAQpB,gBAAkC,iBAAlC,iBA3IJ,gBA4IQ,eAAA,CACA,eAFJ,iBA3IJ,eA+IQ,WACI,YACI,UAAA,CACA,eAEA,iBApJhB,eA+IQ,WACI,WAIK,IAAI,UACD,aAVhB,iBA3IJ,eA+IQ,WACI,WAQI,YACI,YAAA,CACA,YAQxB,kBACI,aADJ,iBAGI,MACI,aAAA,CACA,cAAA,CACA,gBAAA,CACA,eAAA,CACA,kBARR,iBAGI,KAOI,MACI,aAAA,CAEA,cAAA,CACA,aAAA,CACA,WAfZ,iBAkBI,gBACI,aAAA,CACA,gBApBR,iBAkBI,eAII,YACG,kBAvBX,iBAkBI,eAII,WAGI,aACI,kBAAA,CACA,iBA3BhB,iBAkBI,eAII,WAGI,YAII,GACI,gBAIR,iBAhBR,eAII,WAYK,aAEG,aACI,aAAA,CACA,kBAMhB,gBAAkC,iBAAlC,kBACI,eAMR,cACI,YAAA,CACA,8BAFJ,aAII,qBAJJ,aAIyB,sBACjB,uBAGJ,gBAAkC,iBAAlC,cACI,eADJ,aAGI,qBACI,UAAA,CACA,OAAA,CACA,gBANR,aASI,sBACI,OAAA,CACA,YAMZ,IAAK,sBAAsB,gBAAgB,YACvC,qBACI,cAFR,IAAK,sBAAsB,gBAAgB,YACvC,oBAGI,GACI,mBALZ,IAAK,sBAAsB,gBAAgB,YACvC,oBAOI,IACI,aAAA,CACA,YAAA,CACA,eAXZ,IAAK,sBAAsB,gBAAgB,YACvC,oBAOI,GAKI,IACI,UAOhB,eAAgB,YACZ"}
\ No newline at end of file
diff --git a/css/main/style.less b/css/main/style.less
index a49ac4c..76ad36b 100644
--- a/css/main/style.less
+++ b/css/main/style.less
@@ -1,5 +1,11 @@
main {
overflow: hidden;
+ padding-top: 112px;
+
+ @media all and (max-width: 1280px) {
+ padding-top: 86px;
+ }
+
section {
//padding: 80px 0;
@@ -12,7 +18,15 @@ main {
.title_wrapper {
display: flex;
justify-content: space-between;
- margin-bottom: 50px;
+ margin-bottom: 50px;
+
+ @media all and (max-width: 1280px) {
+ margin-bottom: 20px;
+ }
+
+ @media all and (max-width: 768px) {
+ flex-wrap: wrap;
+ }
h1,
h2,
@@ -20,15 +34,32 @@ main {
h4,
h5 {
margin-bottom: 0;
- line-height: 1;
+ }
+
+ .section_title {
+ @media all and (max-width: 768px) {
+ &:not(:only-child) {
+ margin-right: 10px;
+ }
+ }
}
.title_link {
font-weight: 600;
display: inline-block;
margin-left: 55px;
- align-self: flex-end;
- line-height: 24px;
+ align-self: flex-end;
+ line-height: 24px;
+
+ @media all and (max-width: 1280px) {
+ font-size: 13px;
+ margin-left: 12px;
+ line-height: 30px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin-left: 0;
+ }
}
.left {
@@ -38,20 +69,40 @@ main {
.right {
display: flex;
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ text-align: left;
+ margin-top: 8px;
+
+ p {
+ font-size: 10px;
+ line-height: 15px;
+ text-align: left;
+ }
+ }
}
}
// Главный слайдер
#main_slider {
- height: 708px;
+ height: 600px;
background: var(--gray-light);
padding: 0;
position: relative;
+ @media all and (max-width: 1279px) {
+ height: 395px;
+ }
+
.container {
position: relative;
height: 100%;
background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 10%), rgba(255, 255, 255, 10%) 1px, transparent 2px, transparent 20%);
+
+ @media all and (max-width: 768px) {
+ background: transparent;
+ }
}
.slider_active_title {
@@ -62,10 +113,17 @@ main {
color: #fff;
max-width: 560px;
position: absolute;
- top: 176px;
+ top: 55px;
left: 0;
text-transform: uppercase;
font-family: 'PF Din Display Pro Bold';
+
+ @media all and (max-width: 1279px) {
+ font-size: 20px;
+ line-height: 35px;
+ max-width: 280px;
+ top: 25px;
+ }
}
.slider_list {
@@ -75,6 +133,14 @@ main {
right: 0;
display: flex;
+ @media all and (max-width: 1279px) {
+ height: 135px;
+ }
+
+ @media all and (max-width: 768px) {
+ display: none;
+ }
+
.slider_item {
width: 20%;
max-width: 20%;
@@ -88,6 +154,11 @@ main {
position: relative;
overflow: hidden;
+ @media all and (max-width: 1279px) {
+ height: 135px;
+ padding: 15px 20px;
+ }
+
&:after {
content: "";
display: block;
@@ -120,13 +191,18 @@ main {
margin-right: 15px;
font-family: 'PF Din Display Pro Bold';
+ @media all and (max-width: 1279px) {
+ font-size: 20px;
+ height: 80px;
+ }
+
&:after {
content: "";
display: block;
width: 22px;
min-width: 22px;
height: 14px;
- background: url("/images/icons/slider_arrow.svg") no-repeat center;
+ background: url("/assets/images/icons/slider_arrow.svg") no-repeat center;
}
}
@@ -139,6 +215,10 @@ main {
transform: translateY(57px);
position: relative;
z-index: 2;
+
+ @media all and (max-width: 1279px) {
+ font-size: 13px;
+ }
}
&.active {
@@ -151,8 +231,12 @@ main {
.item_name:after {
width: 44px;
- background: url("/images/icons/slider_arrow-hover.svg") no-repeat center;
+ background: url("/assets/images/icons/slider_arrow-hover.svg") no-repeat center;
transform: rotate(-90deg) translate(15px, 15px);
+
+ @media all and (max-width: 1279px) {
+ transform: rotate(-90deg) translate(-15px, 15px);
+ }
}
}
@@ -196,7 +280,7 @@ main {
min-width: 22px;
height: 86px;
transition: 175ms all cubic-bezier(0.25, 0.46, 0.45, 0.94);
- background: url("/images/icons/slider_arrow-blue.svg") no-repeat center;
+ background: url("/assets/images/icons/slider_arrow-blue.svg") no-repeat center;
}
&:hover {
@@ -204,7 +288,7 @@ main {
&:after {
width: 90px;
- background: url("/images/icons/arrow-navto.svg") no-repeat center;
+ background: url("/assets/images/icons/arrow-navto.svg") no-repeat center;
}
}
}
@@ -214,8 +298,12 @@ main {
// Калькулятор
#calc {
+ @media all and (max-width: 768px) {
+ background: #EDEFF5;
+ }
+
.container {
- background: url("/images/calc-bg.jpg") no-repeat right center #EDEFF5;
+ background: url("/assets/images/calc-bg.jpg") no-repeat right center #EDEFF5;
padding: 70px 25px;
position: relative;
@@ -230,15 +318,43 @@ main {
left: auto;
background-color: inherit;
}
+
+ @media all and (max-width: 1279px) {
+ padding: 50px 25px;
+ }
+
+ @media all and (max-width: 1280px) {
+ background: #EDEFF5;
+ }
+
+ @media all and (max-width: 768px) {
+ padding: 25px 0;
+ }
}
.calc_body {
display: flex;
justify-content: space-between;
+ @media all and (max-width: 768px) {
+ display: block;
+ }
+
.calc_settings {
width: 830px;
+ @media all and (max-width: 1420px) {
+ width: calc(100% - 410px);
+ }
+
+ @media all and (max-width: 1280px) {
+ width: calc(50% - 15px);
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ }
+
.settings_box {
background: rgba(255, 255, 255, 0.6);
border-radius: 4px;
@@ -251,20 +367,38 @@ main {
justify-content: space-between;
padding: 10px;
+ output[hidden] {
+ display: none;
+ }
+
&:last-child {
margin-bottom: 20px;
}
+ @media all and (max-width: 1280px) {
+ margin-bottom: 45px;
+ height: 48px;
+ padding: 8px;
+ }
+
p {
margin-bottom: 15px;
font-weight: 700;
+ @media all and (max-width: 1280px) {
+ font-size: 13px;
+ }
+
&.min {
position: absolute;
top: 65px;
font-weight: 400;
left: 10px;
margin: 0;
+
+ @media all and (max-width: 960px) {
+ display: none;
+ }
}
&.max {
@@ -273,17 +407,30 @@ main {
font-weight: 400;
right: 10px;
margin: 0;
+
+ @media all and (max-width: 960px) {
+ top: 30px;
+ }
}
}
.line {
- position: relative;
width: 100%;
background: rgb(142 148 167 / 40%);
+
+ @media all and (max-width: 960px) {
+ width: calc(100% - 55px);
+ }
+ }
+
+ .line, .rangeslider.rangeslider--horizontal {
+ position: relative;
height: 5px;
z-index: 2;
- .active_line {
+
+
+ .active_line, .rangeslider__fill {
background: var(--blue);
position: absolute;
left: 0;
@@ -291,15 +438,22 @@ main {
height: 10px;
}
- .dragble {
+ .dragble, .rangeslider__handle {
+ width: 1px;
+ height: 16px;
+ cursor: pointer;
position: absolute;
top: 8px;
left: 0;
- width: 16px;
- height: 16px;
- transform: rotate(45deg) translate(-6px, 6px);
- cursor: pointer;
- background: var(--blue);
+
+ &:after {
+ content: "";
+ display: block;
+ transform: rotate(45deg) translate(-6px, 6px);
+ width: 16px;
+ height: 16px;
+ background: var(--blue);
+ }
}
}
}
@@ -312,10 +466,36 @@ main {
display: flex;
flex-wrap: wrap;
+ @media all and (max-width: 1420px) {
+ width: 320px;
+ }
+
+ @media all and (max-width: 1280px) {
+ width: calc(50% - 15px);
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ margin-top: 35px;
+ }
+
.result_box {
+ width: 100%;
+
p {
font-weight: 700;
+ @media all and (max-width: 1280px) {
+ font-weight: 400;
+ font-size: 13px;
+ line-height: 20px;
+ margin-bottom: 20px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin-bottom: 8px;
+ }
+
&.price {
font-size: 41px;
line-height: 1;
@@ -327,13 +507,33 @@ main {
color: #8E94A7;
vertical-align: super;
}
+
+ @media all and (max-width: 1279px) {
+ font-size: 32px;
+ }
+
+ @media all and (max-width: 1280px) {
+ font-size: 20px;
+ margin-bottom: 0;
+ font-weight: 700;
+ }
}
}
+
+
+ @media all and (max-width: 768px) {
+ width: 50%;
+ }
}
.button {
width: 100%;
align-self: center;
+
+ @media all and (max-width: 768px) {
+ margin-top: 30px;
+ margin-bottom: 15px;
+ }
}
.secondary {
@@ -347,6 +547,10 @@ main {
display: flex;
align-content: center;
+ @media all and (max-width: 1280px) {
+ display: none !important;
+ }
+
button {
width: 97px;
height: 28px;
@@ -388,6 +592,14 @@ main {
}
}
+ #news {
+ .news_slider_wrapper {
+ @media all and (max-width: 768px) {
+ margin: 0 -16px;
+ }
+ }
+ }
+
.news_list,
.career_list {
display: flex;
@@ -421,6 +633,16 @@ main {
background: #EDEFF5;
position: relative;
+ @media all and (max-width: 1280px) {
+ width: 214px;
+ min-width: 214px;
+ padding: 25px 15px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin-right: 1px;
+ }
+
p {
white-space: normal;
margin-bottom: 22px;
@@ -430,12 +652,23 @@ main {
.news_date {
margin-bottom: 35px;
+
+ @media all and (max-width: 1280px) {
+ margin-bottom: 15px;
+ }
}
img {
display: block;
margin-bottom: 22px;
object-fit: cover;
+
+ @media all and (max-width: 1280px) {
+ height: 178px;
+ width: 100%;
+ margin-bottom: 15px;
+ }
+
}
.news_title,
@@ -444,15 +677,28 @@ main {
font-size: 24px;
line-height: 28px;
font-weight: 700;
+
+ @media all and (max-width: 1280px) {
+ font-size: 19px;
+ line-height: 26px;
+ margin-bottom: 15px;
+ }
}
.news_description,
- .career_description {}
+ .career_description {
+
+ }
.news_link,
.career_link {
margin-bottom: 0;
color: var(--blue);
+
+ @media all and (max-width: 1280px) {
+ font-weight: 700;
+ font-size: 13px;
+ }
}
a {
@@ -463,6 +709,8 @@ main {
right: 0;
bottom: 0;
z-index: 3;
+
+
}
&:after {
@@ -522,6 +770,14 @@ main {
width: 100%;
margin-bottom: 30px;
}
+
+ @media all and (max-width: 768px) {
+ display: block;
+
+ .column {
+ width: 100%;
+ }
+ }
}
}
@@ -530,6 +786,10 @@ main {
display: flex;
flex-wrap: wrap;
+ @media all and (max-width: 1280px) {
+ justify-content: space-between;
+ }
+
.program_item,
.service_item {
margin-top: 40px;
@@ -541,6 +801,24 @@ main {
transition: all 175ms ease-in-out;
height: 390px;
+ @media all and (max-width: 1420px) {
+ overflow: hidden;
+ }
+
+ @media all and (max-width: 1280px) {
+ width: calc(50% - 15px);
+ margin-right: 0 !important;
+ margin-bottom: 30px;
+ margin-top: 0;
+ height: 258px;
+ overflow: hidden;
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+
+ }
+
&:after {
content: "";
display: block;
@@ -562,6 +840,10 @@ main {
position: relative;
z-index: 2;
+ @media all and (max-width: 1280px) {
+ padding: 24px 18px;
+ }
+
span {
display: inline-block;
}
@@ -582,6 +864,11 @@ main {
transform: translateY(0px);
transition: 125ms transform ease-in-out;
max-width: 70%;
+
+ @media all and (max-width: 1280px) {
+ font-size: 19px;
+ line-height: 26px;
+ }
}
.program_link,
@@ -605,28 +892,42 @@ main {
bottom: 0;
transform: translate(0, 0);
transition: 125ms all ease-in-out;
+
+ @media all and (max-width: 1420px) and (min-width: 1280px) {
+ max-width: 100%;
+ }
+
+ @media all and (max-width: 1280px) {
+ max-height: 120%;
+ }
}
&:hover {
- &:after {
- top: -35px;
- right: -20px;
- bottom: -35px;
- }
+
- img {
- transform: translate(20px, -35px);
- }
+ @media all and (min-width: 1280px) {
+ overflow: visible;
- .program_name,
- .service_name {
- transform: translateY(-30px);
- }
+ &:after {
+ top: -35px;
+ right: -20px;
+ bottom: -35px;
+ }
- .program_link,
- .service_link {
- opacity: 1;
- transform: translate(-10px, -10px);
+ img {
+ transform: translate(20px, -35px);
+ }
+
+ .program_name,
+ .service_name {
+ transform: translateY(-30px);
+ }
+
+ .program_link,
+ .service_link {
+ opacity: 1;
+ transform: translate(-10px, -10px);
+ }
}
}
}
@@ -635,6 +936,10 @@ main {
.services_list {
justify-content: center;
+ @media all and (max-width: 1280px) {
+ justify-content: space-between;
+ }
+
.service_item {
&:after {
background: #f1f2f7;
@@ -657,6 +962,18 @@ main {
}
width: calc(33.333% - 20px);
+
+ @media all and (max-width: 1280px) {
+ width: calc(50% - 15px);
+
+ img {
+ max-height: 100%;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ }
}
}
@@ -741,6 +1058,7 @@ main {
}
&:hover {
+ @media all and (min-width: 1280px) {
a {
.special_name {
color: #fff;
@@ -771,6 +1089,63 @@ main {
}
}
+ @media all and (max-width: 1280px) {
+ width: calc(50% - 15px);
+ min-width: calc(50% - 15px);
+ margin-bottom: 30px;
+
+ a {
+ padding: 30px 0 0 0;
+ display: flex;
+ flex-wrap: wrap;
+
+ .special_name {
+ font-size: 19px;
+ line-height: 26px;
+ }
+
+ .special_desc {
+ font-size: 13px;
+ line-height: 20px;
+ width: 100%;
+ }
+
+ .speacial_text {
+ width: 100%;
+ }
+
+ .special_link {
+ opacity: 1;
+ transform: translate(0,0);
+ color: var(--blue);
+
+ }
+
+ img {
+ position: relative;
+ width: 100%;
+ height: 155px;
+ object-fit: cover;
+ object-position: center;
+ }
+ }
+
+ &:after {
+ width: 182px;
+ top: 0;
+ left: auto;
+ right: 0;
+ height: 120px;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ width: 100%;
+ min-width: 100%;
+ margin-bottom: 25px;
+ }
+ }
+
&.swiped {
flex-wrap: unset;
white-space: nowrap;
@@ -805,6 +1180,12 @@ main {
margin-left: auto;
margin-top: 35px;
margin-bottom: 35px;
+
+ @media all and (max-width: 768px) {
+ max-width: 100%;
+ margin-top: 10px;
+ margin-bottom: 25px;
+ }
}
.special_detail {
@@ -857,19 +1238,96 @@ main {
right: 0;
bottom: 0;
z-index: 2;
+ object-fit: cover;
+ }
+ @media all and (max-width: 1420px) {
+ padding-left: 0;
+ }
+
+ @media all and (max-width: 1280px) {
+ padding: 0 calc(50% + 15px) 0 0;
+
+ h2 {
+ font-size: 19px;
+ line-height: 26px;
+ width: 100%;
+ order: 2;
+ margin-bottom: 0;
+
+ span {
+ font-size: 19px;
+ line-height: 26px;
+ }
+ }
+
+ img {
+ width: calc(50% - 15px);
+
+ }
+
+ &:after {
+ left: calc(50% - 120px);
+ z-index: -1;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ padding: 0;
+ display: flex;
+ flex-wrap: wrap;
+
+
+
+ img {
+ order: 1;
+ width: 100%;
+ position: relative;
+ height: 155px;
+ margin-bottom: 10px;
+ }
+
+ .list-column {
+ order: 3;
+ margin-top: 20px;
+ margin-bottom: 30px;
+ }
+
+ button.button {
+ order: 4;
+ margin-top: 0;
+ }
+
+ &:after {
+ width: 182px;
+ left: auto;
+ right: 0;
+ top: 0;
+ bottom: 50px;
+ z-index: -1;
+ }
}
}
.special_offer-text {
margin-bottom: 80px;
padding: 0 25px;
+
+
+ @media all and (max-width: 768px) {
+ padding: 0;
+ margin-bottom: 40px;
+ }
}
.aside_container {
margin-top: 60px;
-
+ @media all and (max-width: 768px) {
+ margin-top: 30px;
+ padding-top: 30px;
+ border-top: 1px solid #EDEFF5;
+ }
}
}
@@ -878,6 +1336,14 @@ main {
h3 {
padding: 0 25px;
margin-bottom: 15px;
+ font-size: 26px;
+ line-height: 35px;
+
+ @media all and (max-width: 768px) {
+ padding: 0;
+ font-size: 17px;
+ line-height: 24px;
+ }
}
.leasing_list {
@@ -932,6 +1398,35 @@ main {
}
}
}
+
+ @media all and (max-width: 1280px) {
+ overflow-x: scroll;
+ flex-wrap: unset;
+ margin-right: -80px;
+
+ .leasing_item {
+ min-width: 210px;
+ margin-right: 5px !important;
+ .item_wrapper {
+ padding-bottom: 12px;
+
+ img {
+ margin-bottom: 12px;
+ height: 135px;
+ }
+
+ .leasing_model,
+ .leasing_desc {
+ padding: 0 18px;
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ margin: 0 -16px;
+ padding: 0 16px;
+ }
}
.leasing_offer-detail {
@@ -983,6 +1478,45 @@ main {
left: 0;
}
}
+
+ @media all and (max-width: 1280px) {
+ .image_slider {
+ height: 300px;
+ }
+ .image_slider, .offer_desc {
+ width: calc(50% - 15px);
+
+ .button {
+ position: relative;
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ margin-top: 18px;
+ display: block;
+
+ .image_slider {
+ width: 100%;
+ height: 168px;
+ }
+
+ .offer_desc {
+ width: 100%;
+ padding-bottom: 0;
+
+ .offer_name {
+ font-size: 19px;
+ line-height: 26px;
+ margin-bottom: 13px;
+ }
+
+ .button {
+ width: 100%;
+ position: relative;
+ }
+ }
+ }
}
}
@@ -999,8 +1533,7 @@ main {
}
.dropdown_blocks_list {
- font-size: 15px;
- line-height: 24px;
+
.dropdown_block {
&:not(:last-child) {
@@ -1034,18 +1567,39 @@ main {
height: 22px;
min-width: 22px;
cursor: pointer;
- background: url("/images/icons/dropdown-blue.svg") no-repeat center;
+ background: url("/assets/images/icons/dropdown-blue.svg") no-repeat center;
}
}
.block_body {
display: none;
+
+ .company {
+ display: flex;
+ margin-bottom: 30px;
+
+ .title {
+ text-transform: uppercase;
+ font-size: 26px;
+ line-height: 35px;
+ font-weight: 700;
+ }
+
+ ul {
+ margin-left: 80px;
+
+ li {
+ line-height: 1.5;
+ margin-bottom: 6px;
+ }
+ }
+ }
}
&.open {
.block_header {
button {
- background: url("/images/icons/close-blue.svg") no-repeat center;
+ background: url("/assets/images/icons/close-blue.svg") no-repeat center;
}
}
@@ -1056,6 +1610,14 @@ main {
p {
margin-bottom: 35px;
}
+
+ @media all and (max-width: 768px) {
+ margin-top: 0;
+
+ p {
+ margin-bottom: 15px;
+ }
+ }
}
}
}
@@ -1071,7 +1633,7 @@ main {
}
.block_body {
- margin-top: 0;
+
}
}
}
@@ -1100,6 +1662,29 @@ main {
&.active {
background: var(--green);
color: #fff;
+ font-weight: 700;
+ }
+ }
+ }
+
+ @media all and (max-width: 1280px) {
+ display: flex;
+ margin-left: -16px;
+ margin-right: -16px;
+ overflow-x: auto;
+ padding-left: 16px;
+ padding-right: 16px;
+
+ li {
+ background: #EDEFF5;
+ margin-bottom: 0;
+ a {
+ white-space: nowrap;
+ font-size: 13px;
+ line-height: 20px;
+ min-height: 40px;
+ font-weight: 400;
+
}
}
}
@@ -1113,6 +1698,18 @@ main {
#order {
.container {
padding-bottom: 180px;
+
+ @media all and (max-width: 1280px) {
+ padding-bottom: 60px;
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ background: #EDEFF5;
+
+ .container {
+ padding: 40px 0 0 0;
+ }
}
}
}
@@ -1127,6 +1724,10 @@ main {
.col {
width: calc(50% - 15px);
+ img {
+ max-width: 100%;
+ }
+
.model_desc {
margin-top: 35px;
@@ -1194,6 +1795,8 @@ main {
.button {
width: calc(50% - 13px);
+ padding: 0;
+ font-weight: 400;
}
}
}
@@ -1223,6 +1826,74 @@ main {
}
}
}
+
+ @media all and (max-width: 768px) {
+ margin-top: 20px;
+
+ .col {
+ width: 100%;
+ margin-bottom: 10px;
+
+ img {
+ margin: 0 -16px;
+ width: calc(100% + 32px);
+ }
+
+ .model_desc {
+ margin-top: 12px;
+ }
+
+ #calc {
+ margin: 0 -16px;
+ padding: 25px 16px;
+
+ .calc_body {
+ .calc_result {
+ .result_box {
+ &.bolder {
+ p {
+ font-size: 19px;
+ line-height: 26px;
+ }
+ }
+ }
+
+ .calc_footer {
+ margin-top: 0;
+ display: block;
+
+ button {
+ width: 100%;
+ margin-bottom: 0;
+
+ &:first-child {
+ margin-top: 0;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ .aside_container {
+ border-top: 0;
+
+ aside {
+ display: none;
+ }
+
+ article {
+ width: 100%;
+ border: 0;
+ padding-top: 0;
+
+ .dropdown_blocks_list .dropdown_block {
+ padding: 0;
+ }
+ }
+ }
+ }
}
@@ -1231,6 +1902,11 @@ main {
display: flex;
flex-wrap: wrap;
+ @media all and (max-width: 1280px) {
+ justify-content: space-between;
+ width: 100%;
+ }
+
.catalog_item {
width: calc(33.333% - 20px);
margin-bottom: 110px;
@@ -1286,6 +1962,57 @@ main {
}
}
+
+ @media all and (max-width: 1280px) {
+ .catalog_item {
+ width: calc(50% - 15px);
+ margin-right: 0 !important;
+ margin-bottom: 66px;
+
+
+ .item_class {
+ font-size: 19px;
+ line-height: 26px;
+ }
+
+ .item_model {
+ font-size: 13px;
+ margin-top: 10px;
+
+ b {
+ font-size: 13px;
+ }
+ }
+
+ ul {
+ li {
+ line-height: 20px;
+ margin-bottom: 10px;
+
+ &.pay {
+ margin: 15px 0;
+ }
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ .catalog_item {
+ width: 100%;
+
+ img {
+ margin-left: -16px;
+ margin-right: -16px;
+ width: calc(100% + 32px);
+ }
+
+ ul li {
+ margin-bottom: 0px;
+ }
+
+ }
+ }
}
// Реквезиты
@@ -1315,6 +2042,28 @@ main {
.button {
margin-top: 40px;
}
+
+ @media all and (max-width: 1420px) {
+ padding: 0;
+ }
+
+ @media all and (max-width: 1280px) {
+
+
+ .requisites_row {
+ display: block;
+ margin-bottom: 8px;
+
+ p {
+ width: 100%;
+ margin-bottom: 8px;
+ }
+ }
+
+ .button {
+ width: 286px;
+ }
+ }
}
// Контакты
@@ -1332,6 +2081,18 @@ main {
}
}
+#officeViewToggle {
+ @media all and (max-width: 1280px) {
+ justify-content: flex-end;
+ }
+ .tab {
+ @media all and (max-width: 768px) {
+ width: 50%;
+ text-align: center;
+ }
+ }
+}
+
#map {
display: none;
width: 100%;
@@ -1342,6 +2103,11 @@ main {
&.visible {
display: block;
}
+
+ @media all and (max-width: 1280px) {
+ height: 320px;
+ margin: 20px 0;
+ }
}
.popover {
@@ -1373,7 +2139,7 @@ main {
height: 24px;
font-size: 0;
cursor: pointer;
- background: url("/images/icons/close-white.svg") no-repeat center;
+ background: url("/assets/images/icons/close-white.svg") no-repeat center;
}
.popover p {
@@ -1388,13 +2154,14 @@ main {
margin: auto;
width: 43px;
height: 54px;
- background: url("/images/pin-open.svg") no-repeat center;
+ background: url("/assets/images/pin-open.svg") no-repeat center;
}
.offices_list {
display: flex;
justify-content: space-between;
border-top: 1px solid #EDEFF5;
+ margin-top: 30px;
offices:not(.visible) {
display: none;
@@ -1417,6 +2184,16 @@ main {
}
}
}
+
+ @media all and (max-width: 768px) {
+ display: block;
+ padding-top: 35px;
+ margin-top: 35px;
+
+ .column {
+ width: 100%;
+ }
+ }
}
@@ -1440,6 +2217,14 @@ main {
margin-right: 30px;
max-width: 50%;
+ a {
+ text-decoration: underline;
+
+ &:hover {
+ text-decoration: none;
+ }
+ }
+
span {
display: block;
font-weight: 400;
@@ -1458,9 +2243,67 @@ main {
width: 104px;
}
}
+
+ &.medium-icon {
+ .row {
+ margin-bottom: 15px;
+ width: 100%;
+ }
+
+ .doc_name {
+ min-height: 32px;
+ background-size: 32px;
+ padding-left: 48px;
+ }
+ }
+
+ &.acts_list-checkbox {
+ .row {
+ margin-bottom: 15px;
+ width: 100%;
+
+ .doc_name {
+ background-size: 32px;
+ padding-left: 0;
+ background-position: 30px 50%;
+ min-height: 32px;
+ max-width: none;
+
+ input[type="checkbox"]+label:before {
+ margin-right: 56px;
+ }
+
+ &:not(.i-pdf) {
+ min-height: 0;
+
+ input[type="checkbox"]+label:before {
+ margin-right: 16px;
+ }
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ .row {
+ flex-wrap: wrap;
+ .doc_name {
+ max-width: 100%;
+ width: 100%;
+ }
+
+ .button {
+ margin-left: 55px;
+ margin-top: 8px;
+ width: 96px;
+ }
+ }
+ }
}
+
+
// Таблица договоров в лк
.contract_table {
margin-bottom: 80px;
@@ -1514,7 +2357,7 @@ main {
min-width: 16px;
height: 16px;
margin-left: 6px;
- background: url("/images/icons/icon-select.svg") no-repeat center;
+ background: url("/assets/images/icons/icon-select.svg") no-repeat center;
}
}
}
@@ -1552,6 +2395,138 @@ main {
&[data-status="paid"] {
background: rgb(4 168 164 / 10%);
}
+
+ @media all and (max-width: 1279px) {
+ .table_cell {
+ width: 100%;
+
+ &:nth-child(1),
+ &:nth-child(2),
+ &:nth-child(3),
+ &:nth-child(4),
+ &:nth-child(5),
+ &:nth-child(6) {
+ width: 100%;
+ text-align: left;
+ font-size: 13px;
+ padding-top: 0;
+ border: none;
+ margin: 5px 0;
+
+ &:before {
+ content: attr(data-title);
+ display: inline-block;
+ margin-right: 6px;
+ font-weight: 600;
+ height: auto;
+ position: static;
+ background: transparent;
+ }
+ }
+
+ &:nth-child(3) {
+ margin: 0;
+ font-weight: 400;
+ }
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 1279px) {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+
+ .table_row {
+ width: calc(50% - 15px);
+ margin-bottom: 30px;
+ border: 1px solid #EDEFF5;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ padding: 25px 15px;
+
+ &.table_header {display: none;}
+
+ .table_cell {
+ border: 0;
+ padding: 0;
+ width: 100%;
+ font-size: 13px;
+ line-height: 20px;
+ padding: 0;
+
+ &:nth-child(1),
+ &:nth-child(4) {
+ font-size: 10px;
+ line-height: 15px;
+ width: 50%;
+ text-align: left;
+ }
+ &:nth-child(2),
+ &:nth-child(5) {
+ font-size: 10px;
+ line-height: 15px;
+ width: 40%;
+ text-align: right;
+ }
+ &:nth-child(3) {
+ font-weight: 700;
+ margin: 15px 0;
+ width: 100%;
+ }
+
+ &:nth-child(6) {
+ width: 40%;
+ margin-top: 15px;
+ padding-top: 15px;
+ position: relative;
+
+ &:before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: -15px;
+ right: 0;
+ width: auto;
+ height: 1px;
+ background: #EDEFF5;
+ }
+ }
+ &:nth-child(7) {
+ display: flex;
+ align-items: center;
+ width: 60%;
+ text-align: right;
+ justify-content: flex-end;
+ margin-top: 15px;
+ padding-top: 15px;
+ position: relative;
+
+ &:before {
+ content: "";
+ position: absolute;
+ top: 0;
+ right: -15px;
+ left: 0;
+ width: auto;
+ height: 1px;
+ background: #EDEFF5;
+ }
+
+ .price {
+ margin-left: 15px;
+ }
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ .table_row {
+ width: 100%;
+ margin-bottom: 15px;
}
}
}
@@ -1628,11 +2603,11 @@ main {
color: var(--blue);
&.i-filter {
- background: url("/images/icons/icon-filter.svg") no-repeat 20px 50%;
+ background: url("/assets/images/icons/icon-filter.svg") no-repeat 20px 50%;
}
&.i-sort {
- background: url("/images/icons/icon-sort.svg") no-repeat 20px 50%;
+ background: url("/assets/images/icons/icon-sort.svg") no-repeat 20px 50%;
}
}
}
@@ -1685,4 +2660,325 @@ main {
margin-bottom: 20px;
}
}
+}
+
+
+
+// Личный кабинет - Календарь
+.calendar_wrapper {
+ #calendar_month {
+ margin-left: auto;
+ max-width: 235px;
+ padding-left: 32px;
+ display: block;
+ background: url("/assets/images/icons/icon-date.svg") no-repeat 8px 50%, url("/assets/images/icons/icon-select.svg") no-repeat calc(100% - 16px) 50%;
+
+ @media all and (max-width: 960px) {
+ margin-left: 0;
+ max-width: 284px;
+ }
+
+ @media all and (max-width: 768px) {
+ max-width: 100%;
+ }
+ }
+
+ .calendar_nav {
+ display: none;
+
+ @media all and (max-width: 768px) {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin-top: 15px;
+
+ button {
+ max-width: 48%;
+ height: 28px;
+ font-size: 10px;
+ color: var(--blue);
+ padding: 0;
+
+ &:first-child:before {
+ content: "<";
+ display: inline-block;
+ width: 20px;
+ height: 28px;
+ line-height: 28px;
+ text-align: left;
+ }
+
+ &:last-child:after {
+ content: ">";
+ display: inline-block;
+ width: 20px;
+ height: 28px;
+ line-height: 28px;
+ text-align: right;
+ }
+ }
+ }
+ }
+
+ .calendar_grid {
+ margin-top: 30px;
+
+ .grid_header {
+ display: flex;
+ flex-wrap: wrap;
+
+ .grid_cell {
+ padding: 15px;
+ text-transform: uppercase;
+ font-weight: bold;
+ font-size: 15px;
+ line-height: 23px;
+ color: #0C0C0C;
+ width: 14.2%;
+ }
+ }
+
+ .grid_body {
+ display: flex;
+ flex-wrap: wrap;
+ border: 1px solid #E0E0E0;
+
+ .grid_week {
+ width: 100%;
+ display: flex;
+ }
+
+ .grid_cell {
+ padding: 15px;
+ width: 14.282%;
+ height: 150px;
+ border: 1px solid #E0E0E0;
+ box-sizing: border-box;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: stretch;
+
+ .cell_header {
+ color: #87878E;
+ align-self: flex-start;
+
+ span {
+ font-size: 26px;
+ line-height: 35px;
+ font-weight: 700;
+ color: #000;
+ padding-right: 4px;
+ }
+ }
+
+ .cell_body {
+ align-self: flex-end;
+ p {
+ color: #000;
+ span {
+ display: block;
+ font-weight: 700;
+ }
+ }
+ }
+
+
+ &.disabled {
+ background: #EDEFF5;
+ opacity: 0.4;
+ }
+
+ &.current {
+ background: var(--blue);
+
+ .cell_header {
+ color: #fff;
+
+ span {color: inherit;}
+ }
+
+ .cell_body p {color: #fff;}
+ }
+ }
+ }
+
+ @media all and (max-width: 960px) {
+ position: relative;
+ margin-right: -80px;
+
+ .grid_header {
+ width: 22px;
+ position: absolute;
+ left: 0;
+ top: 0;
+
+ .grid_cell {
+ width: 100%;
+ height: 72px;
+ padding: 14px 0;
+ text-align: center;
+ font-size: 13px;
+ line-height: 20px;
+ }
+ }
+ .grid_body {
+ margin-left: 30px;
+ overflow-x: auto;
+
+ .grid_week {
+ width: auto;
+ }
+
+ .grid_cell {
+ height: 72px;
+ padding: 10px;
+ width: 33.333%;
+ min-width: 256px;
+ font-size: 13px;
+ line-height: 20px;
+ align-items: flex-start;
+ display: block;
+
+ .cell_header {
+ span {font-size: 13px;line-height: 20px;}
+ }
+
+ .cell_body {
+ width: 100%;
+
+ p {
+ width: 100%;
+
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ }
+ }
+
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ margin-top: 15px;
+ margin-right: 0;
+
+ .grid_body {
+ .grid_week {
+ width: 100%;
+ flex-wrap: wrap;
+
+ &:not(.active) {
+ display: none;
+ }
+
+ .grid_cell {
+ display: flex;
+ width: 100%;
+ }
+ }
+ }
+ }
+ }
+}
+
+.calendar_payment {
+ display: flex;
+
+ .day {
+ color: #87878E;
+ font-size: 26px;
+ line-height: 35px;
+ font-weight: 700;
+ margin-right: 50px;
+
+ span {
+ display: block;
+
+ font-size: 50px;
+ line-height: 1;
+ color: #000;
+ }
+ }
+ .payment_table {
+ display: table;
+ margin-top: 12px;
+
+ .table_row {
+ display: table-row;
+
+ .table_cell {
+ display: table-cell;
+ padding: 2px 10px;
+
+ a {
+ font-weight: 700;
+ }
+ }
+
+ &.table_header {
+
+ .table_cell {
+ color: #87878E;
+ padding: 12px 10px;
+ }
+ }
+ }
+ }
+
+ @media all and (max-width: 768px) {
+ display: block;
+ }
+}
+
+
+// Личный кабинет - Акты
+.acts_wrapper {
+ display: flex;
+ justify-content: space-between;
+
+ .acts_list-checkbox, .reconciliation_form {
+ width: ~"calc(50% - 10px)";
+ }
+
+ @media all and (max-width: 768px) {
+ flex-wrap: wrap;
+
+ .acts_list-checkbox {
+ width: 100%;
+ order: 2;
+ margin-top: 40px;
+ }
+
+ .reconciliation_form {
+ order: 1;
+ width: 100%;
+
+ }
+ }
+}
+
+main .dropdown_blocks_list .dropdown_block .block_body {
+ .transaction_detail {
+ margin: 30px 0;
+
+ p {
+ margin-bottom: 10px;
+ }
+
+ ul {
+ max-width: 60%;
+ display: flex;
+ flex-wrap: wrap;
+
+ li {
+ width: 50%;
+ }
+ }
+ }
+}
+
+
+.dropdown_block + .dosc_list {
+ margin-top: 30px;
}
\ No newline at end of file
diff --git a/css/var.css b/css/var.css
index 21b8fe3..fd563cc 100644
--- a/css/var.css
+++ b/css/var.css
@@ -1,189 +1 @@
-:root {
- --blue: #1C01A9;
- --blue-secondary: #85B2FC;
- --gray: #2C2D2E;
- --gray-light: rgba(0, 16, 61, 0.06);
- --primary: #005FF9;
- --primary-light: rgba(0, 95, 249, 0.1);
- --red: #ED0A34;
- --inactive: #EDEFF5;
- --green: #04A8A4;
- --text_not_active: #8E94A7;
-}
-@font-face {
- font-family: 'PF Din Display Pro Bold';
- src: url('/fonts/PFDinDisplayPro-Bold.woff') format('woff');
- font-weight: normal;
- font-style: normal;
-}
-body {
- font-size: 15px;
- line-height: 20px;
- color: #0C0C0C;
- font-family: 'Montserrat', sans-serif;
- font-weight: 400;
-}
-.container {
- padding-top: 80px;
- padding-bottom: 80px;
- width: 100%;
- max-width: 1310px;
- margin: auto;
- position: relative;
-}
-.container:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: -4px;
- bottom: 0;
- z-index: -1;
- /*
- background: repeating-linear-gradient(
- 90deg,
- #fff,
- #EDEFF5 1px,
- transparent 0px,
- transparent 25%);
- background: repeating-linear-gradient(to right, transparent 1px, transparent calc(25% - 1px), #EDEFF5 25%, #EDEFF5 25%);
- */
-}
-.container.wide {
- max-width: 1340px;
- padding-left: 25px;
- padding-right: 25px;
-}
-.aside_container {
- display: flex;
- justify-content: space-between;
-}
-.aside_container aside {
- width: 415px;
-}
-.aside_container article {
- width: calc(100% - 550px);
-}
-.aside_container article:only-child {
- width: 100%;
-}
-.aside_container article .info_column {
- padding: 20px 40px;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- border-bottom: 1px solid #EDEFF5;
-}
-.aside_container article .info_column div {
- width: calc(50% - 55px);
-}
-.aside_container.about aside {
- width: 305px;
-}
-.aside_container.about article {
- width: calc(100% - 335px);
-}
-.section_title {
- font-size: 50px;
- line-height: 60px;
- font-weight: 700;
- color: #0C0C0C;
- margin-bottom: 35px;
-}
-.section_title.no-margin {
- margin-bottom: 0;
-}
-h1 {
- font-size: 32px;
- line-height: 40px;
-}
-h2 {
- font-size: 24px;
- line-height: 28px;
- margin-top: 1.5em;
- margin-bottom: 10px;
-}
-h2.model {
- font-size: 26px;
- line-height: 35px;
- color: var(--text_not_active);
- margin-top: 0;
- margin-bottom: 0;
-}
-h2:first-child {
- margin-top: 0;
-}
-h3 {
- font-size: 17px;
- line-height: 24px;
- margin-top: 1.5em;
- margin-bottom: 10px;
-}
-h3:first-child {
- margin-top: 0;
-}
-h4 {
- font-size: 15px;
- line-height: 20px;
- margin-top: 1.5em;
- margin-bottom: 10px;
-}
-h4:first-child {
- margin-top: 0;
-}
-.secondary {
- font-size: 13px;
- line-height: 20px;
-}
-.secondary.not_active {
- color: #8E94A7;
-}
-b,
-strong {
- font-weight: 700;
-}
-p.primary {
- color: var(--blue);
-}
-a {
- text-decoration: none;
- color: var(--blue);
-}
-div {
- box-sizing: border-box;
-}
-.clear {
- width: 100%;
- height: 112px;
-}
-@media all and (max-width: 736px) {
- h1 {
- font-size: 24px;
- line-height: 32px;
- }
- h2 {
- font-size: 20px;
- line-height: 24px;
- }
-}
-.i-phone {
- padding-left: 28px;
- background: url("/images/icons/icon-phone-hot.svg") no-repeat 0 2px;
-}
-.i-phone-secondary {
- padding-left: 28px;
- background: url("/images/icons/icon-phone-secondary.svg") no-repeat 0 2px;
-}
-.i-address {
- padding-left: 28px;
- background: url("/images/icons/icon-address.svg") no-repeat 0 2px;
-}
-.i-worktime {
- padding-left: 28px;
- background: url("/images/icons/icon-worktime.svg") no-repeat 0 2px;
-}
-.i-pdf {
- padding-left: 80px;
- background: url("/images/icons/icon-pdf.svg") no-repeat left center;
-}
+:root{--blue:#1C01A9;--blue-secondary:#85B2FC;--gray:#2C2D2E;--gray-light:rgba(0,16,61,0.06);--primary:#005FF9;--primary-light:rgba(0,95,249,0.1);--red:#ED0A34;--inactive:#EDEFF5;--green:#04A8A4;--text_not_active:#8E94A7}body{font-size:15px;line-height:20px;color:#0C0C0C;font-family:'Montserrat',sans-serif;font-weight:400}@media all and (max-width:960px){body{font-size:13px;line-height:20px}}.container{padding-top:80px;padding-bottom:80px;width:100%;max-width:1310px;margin:auto;position:relative}.container:after{content:"";display:block;position:absolute;top:0;left:0;right:-4px;bottom:0;z-index:-1}@media all and (max-width:960px){.container{padding-top:40px;padding-bottom:40px}}.container.wide{max-width:1340px;padding-left:25px;padding-right:25px}@media all and (max-width:768px){.container.wide{padding-left:0;padding-right:0}}@media all and (max-width:1420px){.container{width:calc(100% - 160px);margin:0 80px}}@media all and (max-width:768px){.container{margin:0 16px;width:calc(100% - 32px)}}.aside_container{display:flex;justify-content:space-between}.aside_container aside{width:415px}@media all and (max-width:960px){.aside_container aside{width:100%}}.aside_container article{width:calc(100% - 550px)}.aside_container article:only-child{width:100%}.aside_container article .info_column{padding:20px 40px;display:flex;flex-wrap:wrap;justify-content:space-between;border-bottom:1px solid #EDEFF5}.aside_container article .info_column div{width:calc(50% - 55px)}@media all and (max-width:960px){.aside_container article .info_column{padding:0}.aside_container article .info_column div{width:100%}}@media all and (max-width:960px){.aside_container article{width:100%}.aside_container article .info_column{padding:25px 0}}.aside_container.about aside{width:305px}.aside_container.about article{width:calc(100% - 335px)}@media all and (max-width:1280px){.aside_container.about{display:block}.aside_container.about aside,.aside_container.about article{width:100%}}.section_title{font-size:50px;line-height:60px;font-weight:700;color:#0C0C0C;margin-bottom:35px}.section_title.no-margin{margin-bottom:0}@media all and (max-width:1279px){.section_title{font-size:32px;line-height:44px}}@media all and (max-width:960px){.section_title{font-size:22px;line-height:33px}}@media all and (max-width:768px){.section_title{margin-bottom:25px}}h1{font-size:32px;line-height:40px}h2{font-size:24px;line-height:28px;margin-top:1.5em;margin-bottom:10px}h2.model{font-size:26px;line-height:35px;color:var(--text_not_active);margin-top:0;margin-bottom:0}@media all and (max-width:768px){h2.model{font-size:19px;line-height:26px}}h2:first-child{margin-top:0}h3{font-size:17px;line-height:24px;margin-top:1.5em;margin-bottom:10px}h3:first-child{margin-top:0}h4{font-size:15px;line-height:20px;margin-top:1.5em;margin-bottom:10px}h4:first-child{margin-top:0}.secondary{font-size:13px;line-height:20px}.secondary.not_active{color:#8E94A7}@media all and (max-width:960px){.secondary{font-size:10px;line-height:15px}}b,strong{font-weight:700}p.primary{color:var(--blue)}a{text-decoration:none;color:var(--blue)}div{box-sizing:border-box}.clear{display:block;clear:both}@media all and (max-width:736px){h1{font-size:24px;line-height:32px}h2{font-size:20px;line-height:24px}}.i-phone{padding-left:28px;background:url("/assets/images/icons/icon-phone-hot.svg") no-repeat 0 2px}.i-phone-secondary{padding-left:28px;background:url("/assets/images/icons/icon-phone-secondary.svg") no-repeat 0 2px}.i-address{padding-left:28px;background:url("/assets/images/icons/icon-address.svg") no-repeat 0 2px}.i-worktime{padding-left:28px;background:url("/assets/images/icons/icon-worktime.svg") no-repeat 0 2px}.i-pdf{padding-left:80px;background:url("/assets/images/icons/icon-pdf.svg") no-repeat left center}@media all and (max-width:960px){.i-pdf{padding-left:55px;background-size:32px;background-position:0 5px}}.i-doc{padding-left:80px;background:url("/assets/images/icons/icon-doc.svg") no-repeat left center;background-size:56px}@media all and (max-width:960px){.i-doc{padding-left:55px;background-size:32px;background-position:0 5px}}.success{color:var(--green)}.danger{color:var(--red)}@media all and (max-width:768px){::-webkit-scrollbar{display:none}}/*# sourceMappingURL=./var.css.map */
\ No newline at end of file
diff --git a/css/var.css.map b/css/var.css.map
index 66215b8..3801fde 100644
--- a/css/var.css.map
+++ b/css/var.css.map
@@ -1 +1 @@
-{"version":3,"sources":["var.less"],"names":[],"mappings":"AAAA,MACE,cAAA,CACA,wBAAA,CACA,cAAA,CACA,+BAAA,CACA,iBAAA,CACA,kCAAA,CACA,aAAA,CACA,kBAAA,CACA,eAAA,CACA,0BAGF,WACE,YAAa,yBAAb,CACA,QAAS,sCAAsC,OAAO,OAAtD,CACA,kBAAA,CACA,kBAGF,KACE,cAAA,CACA,gBAAA,CACA,aAAA,CACA,YAAa,uBAAb,CACA,gBAGF,WACE,gBAAA,CACA,mBAAA,CACA,UAAA,CACA,gBAAA,CACA,WAAA,CACA,kBAEA,UAAC,OACC,QAAS,EAAT,CACA,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,QAAA,CACA,WAaF,UAAC,MACC,gBAAA,CACA,iBAAA,CACA,mBAIJ,iBACE,YAAA,CACA,8BAFF,gBAIE,OACE,YALJ,gBAQE,SACE,MAAO,mBAEP,gBAHF,QAGG,YACC,WAZN,gBAQE,QAOE,cACE,iBAAA,CACA,YAAA,CACA,cAAA,CACA,6BAAA,CACA,gCApBN,gBAQE,QAOE,aAOE,KACE,MAAO,iBAKb,gBAAC,MACC,OACE,YAFJ,gBAAC,MAKC,SACE,MAAO,mBAKb,eACE,cAAA,CACA,gBAAA,CACA,eAAA,CACA,aAAA,CACA,mBAEA,cAAC,WACC,gBAIJ,GACE,cAAA,CACA,iBAGF,GACE,cAAA,CACA,gBAAA,CACA,gBAAA,CACA,mBAEA,EAAC,OACC,cAAA,CACA,gBAAA,CACA,MAAO,sBAAP,CACA,YAAA,CACA,gBAGF,EAAC,aACC,aAIJ,GACE,cAAA,CACA,gBAAA,CACA,gBAAA,CACA,mBAEA,EAAC,aACC,aAIJ,GACE,cAAA,CACA,gBAAA,CACA,gBAAA,CACA,mBAEA,EAAC,aACC,aAIJ,WACE,cAAA,CACA,iBAEA,UAAC,YACC,cAIJ,EACA,OACE,gBAIA,CAAC,SACC,MAAO,YAIX,EACE,oBAAA,CACA,MAAO,YAGT,IACE,sBAGF,OACE,UAAA,CACA,aAGF,gBAAkC,iBAChC,GACE,cAAA,CACA,iBAGF,GACE,cAAA,CACA,kBAIJ,SACE,iBAAA,CACA,eAAgB,sDAElB,mBACE,iBAAA,CACA,eAAgB,4DAElB,WACE,iBAAA,CACA,eAAgB,oDAElB,YACE,iBAAA,CACA,eAAgB,qDAGlB,OACE,iBAAA,CACA,eAAgB"}
\ No newline at end of file
+{"version":3,"sources":["var.less"],"names":[],"mappings":"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"}
\ No newline at end of file
diff --git a/css/var.less b/css/var.less
index 8ef5a34..bd03132 100644
--- a/css/var.less
+++ b/css/var.less
@@ -11,19 +11,17 @@
--text_not_active: #8E94A7;
}
-@font-face {
- font-family: 'PF Din Display Pro Bold';
- src: url('/fonts/PFDinDisplayPro-Bold.woff') format('woff');
- font-weight: normal;
- font-style: normal;
-}
-
body {
font-size: 15px;
line-height: 20px;
color: #0C0C0C;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
+
+ @media all and (max-width: 960px) {
+ font-size: 13px;
+ line-height: 20px;
+ }
}
.container {
@@ -50,15 +48,35 @@ body {
#EDEFF5 1px,
transparent 0px,
transparent 25%);
- background: repeating-linear-gradient(to right, transparent 1px, transparent calc(25% - 1px), #EDEFF5 25%, #EDEFF5 25%);
+ background: repeating-linear-gradient(to right, transparent 1px, transparent calc(25% - 1px), #EDEFF5 25%, #EDEFF5 25%);
*/
}
+ @media all and (max-width: 960px) {
+ padding-top: 40px;
+ padding-bottom: 40px;
+ }
+
&.wide {
max-width: 1340px;
padding-left: 25px;
padding-right: 25px;
+
+ @media all and (max-width: 768px) {
+ padding-left: 0;
+ padding-right: 0;
+ }
+ }
+
+ @media all and (max-width: 1420px) {
+ width: calc(100% - 160px);
+ margin: 0 80px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin: 0 16px;
+ width: calc(100% - 32px);
}
}
@@ -68,6 +86,10 @@ body {
aside {
width: 415px;
+
+ @media all and (max-width: 960px) {
+ width: 100%;
+ }
}
article {
@@ -87,6 +109,22 @@ body {
div {
width: calc(50% - 55px);
}
+
+ @media all and (max-width: 960px) {
+ padding: 0;
+
+ div {
+ width: 100%;
+ }
+ }
+ }
+
+ @media all and (max-width: 960px) {
+ width: 100%;
+
+ .info_column {
+ padding: 25px 0;
+ }
}
}
@@ -98,6 +136,14 @@ body {
article {
width: calc(100% - 335px);
}
+
+ @media all and (max-width: 1280px) {
+ display: block;
+
+ aside, article {
+ width: 100%;
+ }
+ }
}
}
@@ -111,6 +157,20 @@ body {
&.no-margin {
margin-bottom: 0;
}
+
+ @media all and (max-width: 1279px) {
+ font-size: 32px;
+ line-height: 44px;
+ }
+
+ @media all and (max-width: 960px) {
+ font-size: 22px;
+ line-height: 33px;
+ }
+
+ @media all and (max-width: 768px) {
+ margin-bottom: 25px;
+ }
}
h1 {
@@ -130,6 +190,11 @@ h2 {
color: var(--text_not_active);
margin-top: 0;
margin-bottom: 0;
+
+ @media all and (max-width: 768px) {
+ font-size: 19px;
+ line-height: 26px;
+ }
}
&:first-child {
@@ -166,6 +231,11 @@ h4 {
&.not_active {
color: #8E94A7;
}
+
+ @media all and (max-width: 960px) {
+ font-size: 10px;
+ line-height: 15px;
+ }
}
b,
@@ -189,8 +259,8 @@ div {
}
.clear {
- width: 100%;
- height: 112px;
+ display: block;
+ clear: both;
}
@media all and (max-width: 736px) {
@@ -207,22 +277,54 @@ div {
.i-phone {
padding-left: 28px;
- background: url("/images/icons/icon-phone-hot.svg") no-repeat 0 2px;
+ background: url("/assets/images/icons/icon-phone-hot.svg") no-repeat 0 2px;
}
-.i-phone-secondary {
+.i-phone-secondary {
padding-left: 28px;
- background: url("/images/icons/icon-phone-secondary.svg") no-repeat 0 2px;
+ background: url("/assets/images/icons/icon-phone-secondary.svg") no-repeat 0 2px;
}
.i-address {
padding-left: 28px;
- background: url("/images/icons/icon-address.svg") no-repeat 0 2px;
+ background: url("/assets/images/icons/icon-address.svg") no-repeat 0 2px;
}
.i-worktime {
padding-left: 28px;
- background: url("/images/icons/icon-worktime.svg") no-repeat 0 2px;
+ background: url("/assets/images/icons/icon-worktime.svg") no-repeat 0 2px;
}
.i-pdf {
padding-left: 80px;
- background: url("/images/icons/icon-pdf.svg") no-repeat left center;
+ background: url("/assets/images/icons/icon-pdf.svg") no-repeat left center;
+
+ @media all and (max-width: 960px) {
+ padding-left: 55px;
+ background-size: 32px;
+ background-position: 0 5px;
+ }
+}
+
+.i-doc {
+ padding-left: 80px;
+ background: url("/assets/images/icons/icon-doc.svg") no-repeat left center;
+ background-size: 56px;
+
+ @media all and (max-width: 960px) {
+ padding-left: 55px;
+ background-size: 32px;
+ background-position: 0 5px;
+ }
+}
+
+.success {
+ color: var(--green);
+}
+
+.danger {
+ color: var(--red)
+}
+
+@media all and (max-width: 768px) {
+ ::-webkit-scrollbar {
+ display: none; // Safari and Chrome
+}
}
\ No newline at end of file
diff --git a/css/vendors/rangeslider.css b/css/vendors/rangeslider.css
new file mode 100644
index 0000000..7ee0f89
--- /dev/null
+++ b/css/vendors/rangeslider.css
@@ -0,0 +1,112 @@
+.rangeslider,
+.rangeslider__fill {
+ display: block;
+ -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
+ -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
+ box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
+ -moz-border-radius: 10px;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+}
+
+.rangeslider {
+ background: #e6e6e6;
+ position: relative;
+}
+
+.rangeslider--horizontal {
+ height: 20px;
+ width: 100%;
+}
+
+.rangeslider--vertical {
+ width: 20px;
+ min-height: 150px;
+ max-height: 100%;
+ height: 100%;
+}
+
+.rangeslider--disabled {
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
+ opacity: 0.4;
+}
+
+.rangeslider__fill {
+ background: #00ff00;
+ position: absolute;
+}
+.rangeslider--horizontal .rangeslider__fill {
+ top: 0;
+ height: 100%;
+}
+.rangeslider--vertical .rangeslider__fill {
+ bottom: 0;
+ width: 100%;
+}
+
+.rangeslider__handle {
+ background: white;
+ border: 1px solid #ccc;
+ cursor: pointer;
+ display: inline-block;
+ width: 40px;
+ height: 40px;
+ position: absolute;
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
+ background-size: 100%;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
+ background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
+ background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
+ -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
+ -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
+ -moz-border-radius: 50%;
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+}
+.rangeslider__handle:after {
+ content: "";
+ display: block;
+ width: 18px;
+ height: 18px;
+ margin: auto;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
+ background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
+ background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
+ background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
+ -moz-border-radius: 50%;
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+}
+.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
+ background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
+ background-size: 100%;
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
+ background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
+ background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
+ background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
+}
+.rangeslider--horizontal .rangeslider__handle {
+ top: -10px;
+ touch-action: pan-y;
+ -ms-touch-action: pan-y;
+}
+.rangeslider--vertical .rangeslider__handle {
+ left: -10px;
+ touch-action: pan-x;
+ -ms-touch-action: pan-x;
+}
+
+input[type="range"]:focus + .rangeslider .rangeslider__handle {
+ -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
+ -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
+ box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
+}
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..d281462
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,3873 @@
+{
+ "name": "evoleasing-account",
+ "version": "0.1.0",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.12.11",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
+ "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz",
+ "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.15.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
+ "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
+ },
+ "@babel/highlight": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
+ "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.14.5",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz",
+ "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==",
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/runtime": {
+ "version": "7.15.3",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz",
+ "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==",
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/runtime-corejs3": {
+ "version": "7.15.4",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz",
+ "integrity": "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==",
+ "dev": true,
+ "requires": {
+ "core-js-pure": "^3.16.0",
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/types": {
+ "version": "7.15.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz",
+ "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.14.9",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@eslint/eslintrc": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.3.tgz",
+ "integrity": "sha512-DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.0.0",
+ "globals": "^13.9.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^3.13.1",
+ "minimatch": "^3.0.4",
+ "strip-json-comments": "^3.1.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ }
+ }
+ },
+ "@hapi/accept": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz",
+ "integrity": "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw==",
+ "requires": {
+ "@hapi/boom": "9.x.x",
+ "@hapi/hoek": "9.x.x"
+ }
+ },
+ "@hapi/boom": {
+ "version": "9.1.4",
+ "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz",
+ "integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==",
+ "requires": {
+ "@hapi/hoek": "9.x.x"
+ }
+ },
+ "@hapi/hoek": {
+ "version": "9.2.1",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz",
+ "integrity": "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw=="
+ },
+ "@humanwhocodes/config-array": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.6.0.tgz",
+ "integrity": "sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==",
+ "dev": true,
+ "requires": {
+ "@humanwhocodes/object-schema": "^1.2.0",
+ "debug": "^4.1.1",
+ "minimatch": "^3.0.4"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ }
+ }
+ },
+ "@humanwhocodes/object-schema": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz",
+ "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==",
+ "dev": true
+ },
+ "@napi-rs/triples": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@napi-rs/triples/-/triples-1.0.3.tgz",
+ "integrity": "sha512-jDJTpta+P4p1NZTFVLHJ/TLFVYVcOqv6l8xwOeBKNPMgY/zDYH/YH7SJbvrr/h1RcS9GzbPcLKGzpuK9cV56UA=="
+ },
+ "@next/env": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-11.1.2.tgz",
+ "integrity": "sha512-+fteyVdQ7C/OoulfcF6vd1Yk0FEli4453gr8kSFbU8sKseNSizYq6df5MKz/AjwLptsxrUeIkgBdAzbziyJ3mA=="
+ },
+ "@next/eslint-plugin-next": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-11.1.2.tgz",
+ "integrity": "sha512-cN+ojHRsufr9Yz0rtvjv8WI5En0RPZRJnt0y16Ha7DD+0n473evz8i1ETEJHmOLeR7iPJR0zxRrxeTN/bJMOjg==",
+ "dev": true,
+ "requires": {
+ "glob": "7.1.7"
+ },
+ "dependencies": {
+ "glob": {
+ "version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
+ "dev": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ }
+ }
+ },
+ "@next/polyfill-module": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-11.1.2.tgz",
+ "integrity": "sha512-xZmixqADM3xxtqBV0TpAwSFzWJP0MOQzRfzItHXf1LdQHWb0yofHHC+7eOrPFic8+ZGz5y7BdPkkgR1S25OymA=="
+ },
+ "@next/react-dev-overlay": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-11.1.2.tgz",
+ "integrity": "sha512-rDF/mGY2NC69mMg2vDqzVpCOlWqnwPUXB2zkARhvknUHyS6QJphPYv9ozoPJuoT/QBs49JJd9KWaAzVBvq920A==",
+ "requires": {
+ "@babel/code-frame": "7.12.11",
+ "anser": "1.4.9",
+ "chalk": "4.0.0",
+ "classnames": "2.2.6",
+ "css.escape": "1.5.1",
+ "data-uri-to-buffer": "3.0.1",
+ "platform": "1.3.6",
+ "shell-quote": "1.7.2",
+ "source-map": "0.8.0-beta.0",
+ "stacktrace-parser": "0.1.10",
+ "strip-ansi": "6.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz",
+ "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@next/react-refresh-utils": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-11.1.2.tgz",
+ "integrity": "sha512-hsoJmPfhVqjZ8w4IFzoo8SyECVnN+8WMnImTbTKrRUHOVJcYMmKLL7xf7T0ft00tWwAl/3f3Q3poWIN2Ueql/Q=="
+ },
+ "@next/swc-darwin-arm64": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-11.1.2.tgz",
+ "integrity": "sha512-hZuwOlGOwBZADA8EyDYyjx3+4JGIGjSHDHWrmpI7g5rFmQNltjlbaefAbiU5Kk7j3BUSDwt30quJRFv3nyJQ0w==",
+ "optional": true
+ },
+ "@next/swc-darwin-x64": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-11.1.2.tgz",
+ "integrity": "sha512-PGOp0E1GisU+EJJlsmJVGE+aPYD0Uh7zqgsrpD3F/Y3766Ptfbe1lEPPWnRDl+OzSSrSrX1lkyM/Jlmh5OwNvA==",
+ "optional": true
+ },
+ "@next/swc-linux-x64-gnu": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-11.1.2.tgz",
+ "integrity": "sha512-YcDHTJjn/8RqvyJVB6pvEKXihDcdrOwga3GfMv/QtVeLphTouY4BIcEUfrG5+26Nf37MP1ywN3RRl1TxpurAsQ==",
+ "optional": true
+ },
+ "@next/swc-win32-x64-msvc": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-11.1.2.tgz",
+ "integrity": "sha512-e/pIKVdB+tGQYa1cW3sAeHm8gzEri/HYLZHT4WZojrUxgWXqx8pk7S7Xs47uBcFTqBDRvK3EcQpPLf3XdVsDdg==",
+ "optional": true
+ },
+ "@node-rs/helper": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@node-rs/helper/-/helper-1.2.1.tgz",
+ "integrity": "sha512-R5wEmm8nbuQU0YGGmYVjEc0OHtYsuXdpRG+Ut/3wZ9XAvQWyThN08bTh2cBJgoZxHQUPtvRfeQuxcAgLuiBISg==",
+ "requires": {
+ "@napi-rs/triples": "^1.0.3"
+ }
+ },
+ "@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ }
+ },
+ "@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true
+ },
+ "@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ }
+ },
+ "@rushstack/eslint-patch": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.0.9.tgz",
+ "integrity": "sha512-yk9Xj/3bUxyz3azMXW8qigLqXWEr2R0h9G7PVnnmjNQdlZLN+aESqCTnVN7ubtYUIQfW32/v8+AXsbpL1ryI1A==",
+ "dev": true
+ },
+ "@types/json-schema": {
+ "version": "7.0.9",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
+ "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
+ },
+ "@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "16.11.6",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz",
+ "integrity": "sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="
+ },
+ "@typescript-eslint/parser": {
+ "version": "4.33.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz",
+ "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/scope-manager": "4.33.0",
+ "@typescript-eslint/types": "4.33.0",
+ "@typescript-eslint/typescript-estree": "4.33.0",
+ "debug": "^4.3.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ }
+ }
+ },
+ "@typescript-eslint/scope-manager": {
+ "version": "4.33.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz",
+ "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "4.33.0",
+ "@typescript-eslint/visitor-keys": "4.33.0"
+ }
+ },
+ "@typescript-eslint/types": {
+ "version": "4.33.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz",
+ "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==",
+ "dev": true
+ },
+ "@typescript-eslint/typescript-estree": {
+ "version": "4.33.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz",
+ "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "4.33.0",
+ "@typescript-eslint/visitor-keys": "4.33.0",
+ "debug": "^4.3.1",
+ "globby": "^11.0.3",
+ "is-glob": "^4.0.1",
+ "semver": "^7.3.5",
+ "tsutils": "^3.21.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ }
+ }
+ },
+ "@typescript-eslint/visitor-keys": {
+ "version": "4.33.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz",
+ "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "4.33.0",
+ "eslint-visitor-keys": "^2.0.0"
+ },
+ "dependencies": {
+ "eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true
+ }
+ }
+ },
+ "acorn": {
+ "version": "8.5.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz",
+ "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==",
+ "dev": true
+ },
+ "acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true
+ },
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
+ },
+ "anser": {
+ "version": "1.4.9",
+ "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz",
+ "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA=="
+ },
+ "ansi-colors": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
+ "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "anymatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
+ "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+ "requires": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ }
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "aria-query": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
+ "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.10.2",
+ "@babel/runtime-corejs3": "^7.10.2"
+ }
+ },
+ "array-includes": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz",
+ "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "is-string": "^1.0.7"
+ }
+ },
+ "array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true
+ },
+ "array.prototype.flat": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz",
+ "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ }
+ },
+ "array.prototype.flatmap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz",
+ "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0"
+ }
+ },
+ "asn1.js": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "safer-buffer": "^2.1.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "assert": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz",
+ "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==",
+ "requires": {
+ "es6-object-assign": "^1.1.0",
+ "is-nan": "^1.2.1",
+ "object-is": "^1.0.1",
+ "util": "^0.12.0"
+ }
+ },
+ "ast-types": {
+ "version": "0.13.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz",
+ "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA=="
+ },
+ "ast-types-flow": {
+ "version": "0.0.7",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
+ "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=",
+ "dev": true
+ },
+ "available-typed-arrays": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
+ "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
+ },
+ "axe-core": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.4.tgz",
+ "integrity": "sha512-4Hk6iSA/H90rtiPoCpSkeJxNWCPBf7szwVvaUqrPdxo0j2Y04suHK9jPKXaE3WI7OET6wBSwsWw7FDc1DBq7iQ==",
+ "dev": true
+ },
+ "axobject-query": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz",
+ "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==",
+ "dev": true
+ },
+ "balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
+ },
+ "binary-extensions": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
+ },
+ "bn.js": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
+ "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "brorand": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
+ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
+ },
+ "browserify-aes": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
+ "requires": {
+ "buffer-xor": "^1.0.3",
+ "cipher-base": "^1.0.0",
+ "create-hash": "^1.1.0",
+ "evp_bytestokey": "^1.0.3",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "browserify-cipher": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
+ "requires": {
+ "browserify-aes": "^1.0.4",
+ "browserify-des": "^1.0.0",
+ "evp_bytestokey": "^1.0.0"
+ }
+ },
+ "browserify-des": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
+ "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "des.js": "^1.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "browserify-rsa": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz",
+ "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==",
+ "requires": {
+ "bn.js": "^5.0.0",
+ "randombytes": "^2.0.1"
+ }
+ },
+ "browserify-sign": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
+ "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
+ "requires": {
+ "bn.js": "^5.1.1",
+ "browserify-rsa": "^4.0.1",
+ "create-hash": "^1.2.0",
+ "create-hmac": "^1.1.7",
+ "elliptic": "^6.5.3",
+ "inherits": "^2.0.4",
+ "parse-asn1": "^5.1.5",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ }
+ },
+ "browserify-zlib": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
+ "requires": {
+ "pako": "~1.0.5"
+ }
+ },
+ "browserslist": {
+ "version": "4.16.6",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz",
+ "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==",
+ "requires": {
+ "caniuse-lite": "^1.0.30001219",
+ "colorette": "^1.2.2",
+ "electron-to-chromium": "^1.3.723",
+ "escalade": "^3.1.1",
+ "node-releases": "^1.1.71"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "buffer-xor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
+ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
+ },
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
+ },
+ "bytes": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+ "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
+ },
+ "call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ }
+ },
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001271",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001271.tgz",
+ "integrity": "sha512-BBruZFWmt3HFdVPS8kceTBIguKxu4f99n5JNp06OlPD/luoAMIaIK5ieV5YjnBLH3Nysai9sxj9rpJj4ZisXOA=="
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "chokidar": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz",
+ "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==",
+ "requires": {
+ "anymatch": "~3.1.1",
+ "braces": "~3.0.2",
+ "fsevents": "~2.3.1",
+ "glob-parent": "~5.1.0",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.5.0"
+ }
+ },
+ "cipher-base": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
+ "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "classnames": {
+ "version": "2.2.6",
+ "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
+ "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
+ },
+ "clone-deep": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
+ "requires": {
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
+ },
+ "colorette": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz",
+ "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="
+ },
+ "commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+ "dev": true
+ },
+ "console-browserify": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
+ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="
+ },
+ "constants-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
+ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U="
+ },
+ "convert-source-map": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
+ "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
+ "requires": {
+ "safe-buffer": "~5.1.1"
+ },
+ "dependencies": {
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ }
+ }
+ },
+ "core-js-pure": {
+ "version": "3.19.0",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.19.0.tgz",
+ "integrity": "sha512-UEQk8AxyCYvNAs6baNoPqDADv7BX0AmBLGxVsrAifPPx/C8EAzV4Q+2ZUJqVzfI2TQQEZITnwUkWcHpgc/IubQ==",
+ "dev": true
+ },
+ "core-util-is": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+ },
+ "create-ecdh": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
+ "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
+ "requires": {
+ "bn.js": "^4.1.0",
+ "elliptic": "^6.5.3"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "create-hmac": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
+ "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
+ "requires": {
+ "cipher-base": "^1.0.3",
+ "create-hash": "^1.1.0",
+ "inherits": "^2.0.1",
+ "ripemd160": "^2.0.0",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "crypto-browserify": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
+ "requires": {
+ "browserify-cipher": "^1.0.0",
+ "browserify-sign": "^4.0.0",
+ "create-ecdh": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "create-hmac": "^1.1.0",
+ "diffie-hellman": "^5.0.0",
+ "inherits": "^2.0.1",
+ "pbkdf2": "^3.0.3",
+ "public-encrypt": "^4.0.0",
+ "randombytes": "^2.0.0",
+ "randomfill": "^1.0.3"
+ }
+ },
+ "css.escape": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz",
+ "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s="
+ },
+ "cssnano-preset-simple": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-3.0.0.tgz",
+ "integrity": "sha512-vxQPeoMRqUT3c/9f0vWeVa2nKQIHFpogtoBvFdW4GQ3IvEJ6uauCP6p3Y5zQDLFcI7/+40FTgX12o7XUL0Ko+w==",
+ "requires": {
+ "caniuse-lite": "^1.0.30001202"
+ }
+ },
+ "cssnano-simple": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-3.0.0.tgz",
+ "integrity": "sha512-oU3ueli5Dtwgh0DyeohcIEE00QVfbPR3HzyXdAl89SfnQG3y0/qcpfLVW+jPIh3/rgMZGwuW96rejZGaYE9eUg==",
+ "requires": {
+ "cssnano-preset-simple": "^3.0.0"
+ }
+ },
+ "damerau-levenshtein": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz",
+ "integrity": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==",
+ "dev": true
+ },
+ "data-uri-to-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz",
+ "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og=="
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "requires": {
+ "object-keys": "^1.0.12"
+ }
+ },
+ "depd": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
+ },
+ "des.js": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
+ "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
+ "requires": {
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0"
+ }
+ },
+ "diffie-hellman": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
+ "requires": {
+ "bn.js": "^4.1.0",
+ "miller-rabin": "^4.0.0",
+ "randombytes": "^2.0.0"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "requires": {
+ "path-type": "^4.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "domain-browser": {
+ "version": "4.19.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.19.0.tgz",
+ "integrity": "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ=="
+ },
+ "electron-to-chromium": {
+ "version": "1.3.880",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.880.tgz",
+ "integrity": "sha512-iwIP/6WoeSimzUKJIQtjtpVDsK8Ir8qQCMXsUBwg+rxJR2Uh3wTNSbxoYRfs+3UWx/9MAnPIxVZCyWkm8MT0uw=="
+ },
+ "elliptic": {
+ "version": "6.5.4",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
+ "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
+ "requires": {
+ "bn.js": "^4.11.9",
+ "brorand": "^1.1.0",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.1",
+ "inherits": "^2.0.4",
+ "minimalistic-assert": "^1.0.1",
+ "minimalistic-crypto-utils": "^1.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
+ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
+ },
+ "encoding": {
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
+ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
+ "requires": {
+ "iconv-lite": "^0.6.2"
+ }
+ },
+ "enquirer": {
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
+ "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
+ "dev": true,
+ "requires": {
+ "ansi-colors": "^4.1.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
+ "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.1.1",
+ "get-symbol-description": "^1.0.0",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "is-callable": "^1.2.4",
+ "is-negative-zero": "^2.0.1",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.1",
+ "is-string": "^1.0.7",
+ "is-weakref": "^1.0.1",
+ "object-inspect": "^1.11.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.2",
+ "string.prototype.trimend": "^1.0.4",
+ "string.prototype.trimstart": "^1.0.4",
+ "unbox-primitive": "^1.0.1"
+ }
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "es6-object-assign": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
+ "integrity": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw="
+ },
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
+ },
+ "eslint": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.0.0.tgz",
+ "integrity": "sha512-03spzPzMAO4pElm44m60Nj08nYonPGQXmw6Ceai/S4QK82IgwWO1EXx1s9namKzVlbVu3Jf81hb+N+8+v21/HQ==",
+ "dev": true,
+ "requires": {
+ "@eslint/eslintrc": "^1.0.2",
+ "@humanwhocodes/config-array": "^0.6.0",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "enquirer": "^2.3.5",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^6.0.0",
+ "eslint-utils": "^3.0.0",
+ "eslint-visitor-keys": "^3.0.0",
+ "espree": "^9.0.0",
+ "esquery": "^1.4.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "functional-red-black-tree": "^1.0.1",
+ "glob-parent": "^6.0.1",
+ "globals": "^13.6.0",
+ "ignore": "^4.0.6",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.0.4",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.1",
+ "progress": "^2.0.0",
+ "regexpp": "^3.2.0",
+ "semver": "^7.2.1",
+ "strip-ansi": "^6.0.0",
+ "strip-json-comments": "^3.1.0",
+ "text-table": "^0.2.0",
+ "v8-compile-cache": "^2.0.3"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true
+ },
+ "glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.3"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "semver": {
+ "version": "7.3.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
+ "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "eslint-config-next": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-11.1.2.tgz",
+ "integrity": "sha512-dFutecxX2Z5/QVlLwdtKt+gIfmNMP8Qx6/qZh3LM/DFVdGJEAnUKrr4VwGmACB2kx/PQ5bx3R+QxnEg4fDPiTg==",
+ "dev": true,
+ "requires": {
+ "@next/eslint-plugin-next": "11.1.2",
+ "@rushstack/eslint-patch": "^1.0.6",
+ "@typescript-eslint/parser": "^4.20.0",
+ "eslint-import-resolver-node": "^0.3.4",
+ "eslint-import-resolver-typescript": "^2.4.0",
+ "eslint-plugin-import": "^2.22.1",
+ "eslint-plugin-jsx-a11y": "^6.4.1",
+ "eslint-plugin-react": "^7.23.1",
+ "eslint-plugin-react-hooks": "^4.2.0"
+ }
+ },
+ "eslint-import-resolver-node": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz",
+ "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.2.7",
+ "resolve": "^1.20.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-import-resolver-typescript": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.5.0.tgz",
+ "integrity": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.3.1",
+ "glob": "^7.1.7",
+ "is-glob": "^4.0.1",
+ "resolve": "^1.20.0",
+ "tsconfig-paths": "^3.9.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+ "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-module-utils": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz",
+ "integrity": "sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.2.7",
+ "find-up": "^2.1.0",
+ "pkg-dir": "^2.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
+ "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ }
+ }
+ }
+ },
+ "eslint-plugin-import": {
+ "version": "2.25.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz",
+ "integrity": "sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.1.4",
+ "array.prototype.flat": "^1.2.5",
+ "debug": "^2.6.9",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.6",
+ "eslint-module-utils": "^2.7.0",
+ "has": "^1.0.3",
+ "is-core-module": "^2.7.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.0.4",
+ "object.values": "^1.1.5",
+ "resolve": "^1.20.0",
+ "tsconfig-paths": "^3.11.0"
+ },
+ "dependencies": {
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ }
+ }
+ },
+ "eslint-plugin-jsx-a11y": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
+ "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.11.2",
+ "aria-query": "^4.2.2",
+ "array-includes": "^3.1.1",
+ "ast-types-flow": "^0.0.7",
+ "axe-core": "^4.0.2",
+ "axobject-query": "^2.2.0",
+ "damerau-levenshtein": "^1.0.6",
+ "emoji-regex": "^9.0.0",
+ "has": "^1.0.3",
+ "jsx-ast-utils": "^3.1.0",
+ "language-tags": "^1.0.5"
+ }
+ },
+ "eslint-plugin-react": {
+ "version": "7.26.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz",
+ "integrity": "sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.1.3",
+ "array.prototype.flatmap": "^1.2.4",
+ "doctrine": "^2.1.0",
+ "estraverse": "^5.2.0",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.0.4",
+ "object.entries": "^1.1.4",
+ "object.fromentries": "^2.0.4",
+ "object.hasown": "^1.0.0",
+ "object.values": "^1.1.4",
+ "prop-types": "^15.7.2",
+ "resolve": "^2.0.0-next.3",
+ "semver": "^6.3.0",
+ "string.prototype.matchall": "^4.0.5"
+ },
+ "dependencies": {
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "resolve": {
+ "version": "2.0.0-next.3",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz",
+ "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==",
+ "dev": true,
+ "requires": {
+ "is-core-module": "^2.2.0",
+ "path-parse": "^1.0.6"
+ }
+ }
+ }
+ },
+ "eslint-plugin-react-hooks": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz",
+ "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==",
+ "dev": true
+ },
+ "eslint-scope": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-6.0.0.tgz",
+ "integrity": "sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ }
+ },
+ "eslint-utils": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
+ "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
+ "dev": true,
+ "requires": {
+ "eslint-visitor-keys": "^2.0.0"
+ },
+ "dependencies": {
+ "eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-visitor-keys": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz",
+ "integrity": "sha512-mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q==",
+ "dev": true
+ },
+ "espree": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.0.0.tgz",
+ "integrity": "sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==",
+ "dev": true,
+ "requires": {
+ "acorn": "^8.5.0",
+ "acorn-jsx": "^5.3.1",
+ "eslint-visitor-keys": "^3.0.0"
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "esquery": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
+ "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^5.1.0"
+ }
+ },
+ "esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^5.2.0"
+ }
+ },
+ "estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
+ },
+ "events": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
+ },
+ "evp_bytestokey": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
+ "requires": {
+ "md5.js": "^1.3.4",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "fast-glob": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
+ "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ }
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
+ "dev": true
+ },
+ "fastq": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+ "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+ "dev": true,
+ "requires": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "file-entry-cache": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
+ "dev": true,
+ "requires": {
+ "flat-cache": "^3.0.4"
+ }
+ },
+ "file-loader": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
+ "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "schema-utils": "^3.0.0"
+ },
+ "dependencies": {
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
+ },
+ "json5": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
+ "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ }
+ }
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "find-cache-dir": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
+ "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==",
+ "requires": {
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "flat-cache": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
+ "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "dev": true,
+ "requires": {
+ "flatted": "^3.1.0",
+ "rimraf": "^3.0.2"
+ }
+ },
+ "flatted": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz",
+ "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==",
+ "dev": true
+ },
+ "foreach": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
+ "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k="
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+ "dev": true
+ },
+ "fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "optional": true
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "functional-red-black-tree": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
+ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
+ "dev": true
+ },
+ "get-intrinsic": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+ "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1"
+ }
+ },
+ "get-orientation": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/get-orientation/-/get-orientation-1.1.2.tgz",
+ "integrity": "sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==",
+ "requires": {
+ "stream-parser": "^0.3.1"
+ }
+ },
+ "get-symbol-description": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
+ "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.1"
+ }
+ },
+ "glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
+ "dev": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
+ "glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
+ },
+ "globals": {
+ "version": "13.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
+ "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.20.2"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true
+ }
+ }
+ },
+ "globby": {
+ "version": "11.0.4",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz",
+ "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==",
+ "dev": true,
+ "requires": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.1.1",
+ "ignore": "^5.1.4",
+ "merge2": "^1.3.0",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "ignore": {
+ "version": "5.1.8",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
+ "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
+ "dev": true
+ }
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.8",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
+ "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-bigints": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
+ "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ },
+ "has-symbols": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
+ },
+ "has-tostringtag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+ "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "hash-base": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
+ "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
+ "requires": {
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "safe-buffer": "^5.2.0"
+ }
+ },
+ "hash.js": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
+ "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "minimalistic-assert": "^1.0.1"
+ }
+ },
+ "he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
+ },
+ "hmac-drbg": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
+ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
+ "requires": {
+ "hash.js": "^1.0.3",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.1"
+ }
+ },
+ "http-errors": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+ "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
+ "requires": {
+ "depd": "~1.1.2",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.1.1",
+ "statuses": ">= 1.5.0 < 2",
+ "toidentifier": "1.0.0"
+ }
+ },
+ "https-browserify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
+ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM="
+ },
+ "iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ }
+ },
+ "ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+ },
+ "ignore": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
+ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
+ "dev": true
+ },
+ "image-size": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.0.0.tgz",
+ "integrity": "sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw==",
+ "requires": {
+ "queue": "6.0.2"
+ }
+ },
+ "import-fresh": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ }
+ },
+ "imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+ "dev": true
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+ "dev": true,
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "internal-slot": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
+ "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
+ "requires": {
+ "get-intrinsic": "^1.1.0",
+ "has": "^1.0.3",
+ "side-channel": "^1.0.4"
+ }
+ },
+ "is-arguments": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
+ "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-bigint": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "requires": {
+ "has-bigints": "^1.0.1"
+ }
+ },
+ "is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "requires": {
+ "binary-extensions": "^2.0.0"
+ }
+ },
+ "is-boolean-object": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-callable": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
+ "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
+ },
+ "is-core-module": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz",
+ "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+ },
+ "is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
+ "is-nan": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz",
+ "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "is-negative-zero": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz",
+ "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+ },
+ "is-number-object": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
+ "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "requires": {
+ "isobject": "^3.0.1"
+ }
+ },
+ "is-regex": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-shared-array-buffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
+ "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="
+ },
+ "is-string": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-symbol": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "is-typed-array": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz",
+ "integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==",
+ "requires": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "es-abstract": "^1.18.5",
+ "foreach": "^2.0.5",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-weakref": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz",
+ "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==",
+ "requires": {
+ "call-bind": "^1.0.0"
+ }
+ },
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
+ },
+ "isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+ "dev": true
+ },
+ "isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
+ },
+ "jest-worker": {
+ "version": "27.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.0-next.5.tgz",
+ "integrity": "sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g==",
+ "requires": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "dependencies": {
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ },
+ "js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "requires": {
+ "argparse": "^2.0.1"
+ },
+ "dependencies": {
+ "argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ }
+ }
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ },
+ "json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
+ "dev": true
+ },
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "jsx-ast-utils": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz",
+ "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.1.3",
+ "object.assign": "^4.1.2"
+ }
+ },
+ "kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
+ },
+ "language-subtag-registry": {
+ "version": "0.3.21",
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz",
+ "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==",
+ "dev": true
+ },
+ "language-tags": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
+ "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=",
+ "dev": true,
+ "requires": {
+ "language-subtag-registry": "~0.3.2"
+ }
+ },
+ "levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
+ "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^2.0.0",
+ "json5": "^1.0.1"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true
+ },
+ "lodash.sortby": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
+ "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg="
+ },
+ "loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "requires": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "requires": {
+ "semver": "^6.0.0"
+ }
+ },
+ "md5.js": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
+ "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ }
+ },
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
+ },
+ "merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+ "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.1",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "miller-rabin": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
+ "requires": {
+ "bn.js": "^4.0.0",
+ "brorand": "^1.0.1"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "mime-db": {
+ "version": "1.50.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz",
+ "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A=="
+ },
+ "mime-types": {
+ "version": "2.1.33",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz",
+ "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==",
+ "requires": {
+ "mime-db": "1.50.0"
+ }
+ },
+ "minimalistic-assert": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
+ },
+ "minimalistic-crypto-utils": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
+ "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo="
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "dev": true,
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "nanoid": {
+ "version": "3.1.30",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz",
+ "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ=="
+ },
+ "native-url": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz",
+ "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==",
+ "requires": {
+ "querystring": "^0.2.0"
+ }
+ },
+ "natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
+ "dev": true
+ },
+ "next": {
+ "version": "11.1.2",
+ "resolved": "https://registry.npmjs.org/next/-/next-11.1.2.tgz",
+ "integrity": "sha512-azEYL0L+wFjv8lstLru3bgvrzPvK0P7/bz6B/4EJ9sYkXeW8r5Bjh78D/Ol7VOg0EIPz0CXoe72hzAlSAXo9hw==",
+ "requires": {
+ "@babel/runtime": "7.15.3",
+ "@hapi/accept": "5.0.2",
+ "@next/env": "11.1.2",
+ "@next/polyfill-module": "11.1.2",
+ "@next/react-dev-overlay": "11.1.2",
+ "@next/react-refresh-utils": "11.1.2",
+ "@next/swc-darwin-arm64": "11.1.2",
+ "@next/swc-darwin-x64": "11.1.2",
+ "@next/swc-linux-x64-gnu": "11.1.2",
+ "@next/swc-win32-x64-msvc": "11.1.2",
+ "@node-rs/helper": "1.2.1",
+ "assert": "2.0.0",
+ "ast-types": "0.13.2",
+ "browserify-zlib": "0.2.0",
+ "browserslist": "4.16.6",
+ "buffer": "5.6.0",
+ "caniuse-lite": "^1.0.30001228",
+ "chalk": "2.4.2",
+ "chokidar": "3.5.1",
+ "constants-browserify": "1.0.0",
+ "crypto-browserify": "3.12.0",
+ "cssnano-simple": "3.0.0",
+ "domain-browser": "4.19.0",
+ "encoding": "0.1.13",
+ "etag": "1.8.1",
+ "find-cache-dir": "3.3.1",
+ "get-orientation": "1.1.2",
+ "https-browserify": "1.0.0",
+ "image-size": "1.0.0",
+ "jest-worker": "27.0.0-next.5",
+ "native-url": "0.3.4",
+ "node-fetch": "2.6.1",
+ "node-html-parser": "1.4.9",
+ "node-libs-browser": "^2.2.1",
+ "os-browserify": "0.3.0",
+ "p-limit": "3.1.0",
+ "path-browserify": "1.0.1",
+ "pnp-webpack-plugin": "1.6.4",
+ "postcss": "8.2.15",
+ "process": "0.11.10",
+ "querystring-es3": "0.2.1",
+ "raw-body": "2.4.1",
+ "react-is": "17.0.2",
+ "react-refresh": "0.8.3",
+ "stream-browserify": "3.0.0",
+ "stream-http": "3.1.1",
+ "string_decoder": "1.3.0",
+ "styled-jsx": "4.0.1",
+ "timers-browserify": "2.0.12",
+ "tty-browserify": "0.0.1",
+ "use-subscription": "1.5.1",
+ "util": "0.12.4",
+ "vm-browserify": "1.1.2",
+ "watchpack": "2.1.1"
+ }
+ },
+ "next-fonts": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/next-fonts/-/next-fonts-1.5.1.tgz",
+ "integrity": "sha512-pgEJ40xO1oRhM6RqhQJ9CzuZOFp6Zq+aAD/V1P9sq/wdepvLzhFxDm3lCZNoE7+78NSuMKgT6b1qeXSsqWuUMQ==",
+ "requires": {
+ "file-loader": "^6.0.0",
+ "url-loader": "^4.0.0"
+ }
+ },
+ "next-images": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/next-images/-/next-images-1.8.1.tgz",
+ "integrity": "sha512-/DoXucQKWkEBT2rCQKtm9bb+KTAnd1vVTLO12lX4oxdiBQa2uqn5vhcMPwKsdJlxNBzwg6EVnddFs3aqcwiiGA==",
+ "requires": {
+ "file-loader": "^6.2.0",
+ "url-loader": "^4.1.0"
+ }
+ },
+ "next-with-less": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/next-with-less/-/next-with-less-1.0.1.tgz",
+ "integrity": "sha512-t7cxQubLXBcqSDTUylWz/YrdmmtJnLM/1edCEPLL0D8P3AGjuCpH59PZAdHwszf3J5GBedqjwy5JhBn6sTvodw==",
+ "requires": {
+ "clone-deep": "^4.0.1"
+ }
+ },
+ "node-fetch": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz",
+ "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw=="
+ },
+ "node-html-parser": {
+ "version": "1.4.9",
+ "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz",
+ "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==",
+ "requires": {
+ "he": "1.2.0"
+ }
+ },
+ "node-libs-browser": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
+ "requires": {
+ "assert": "^1.1.1",
+ "browserify-zlib": "^0.2.0",
+ "buffer": "^4.3.0",
+ "console-browserify": "^1.1.0",
+ "constants-browserify": "^1.0.0",
+ "crypto-browserify": "^3.11.0",
+ "domain-browser": "^1.1.1",
+ "events": "^3.0.0",
+ "https-browserify": "^1.0.0",
+ "os-browserify": "^0.3.0",
+ "path-browserify": "0.0.1",
+ "process": "^0.11.10",
+ "punycode": "^1.2.4",
+ "querystring-es3": "^0.2.0",
+ "readable-stream": "^2.3.3",
+ "stream-browserify": "^2.0.1",
+ "stream-http": "^2.7.2",
+ "string_decoder": "^1.0.0",
+ "timers-browserify": "^2.0.4",
+ "tty-browserify": "0.0.0",
+ "url": "^0.11.0",
+ "util": "^0.11.0",
+ "vm-browserify": "^1.0.1"
+ },
+ "dependencies": {
+ "assert": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
+ "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
+ "requires": {
+ "object-assign": "^4.1.1",
+ "util": "0.10.3"
+ },
+ "dependencies": {
+ "util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
+ "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
+ "requires": {
+ "inherits": "2.0.1"
+ }
+ }
+ }
+ },
+ "buffer": {
+ "version": "4.9.2",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
+ "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4",
+ "isarray": "^1.0.0"
+ }
+ },
+ "domain-browser": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
+ "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="
+ },
+ "inherits": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
+ "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
+ },
+ "path-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
+ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ=="
+ },
+ "punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
+ },
+ "readable-stream": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "requires": {
+ "safe-buffer": "~5.1.0"
+ }
+ }
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
+ "stream-browserify": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
+ "requires": {
+ "inherits": "~2.0.1",
+ "readable-stream": "^2.0.2"
+ }
+ },
+ "stream-http": {
+ "version": "2.8.3",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
+ "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^2.3.6",
+ "to-arraybuffer": "^1.0.0",
+ "xtend": "^4.0.0"
+ }
+ },
+ "tty-browserify": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
+ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY="
+ },
+ "util": {
+ "version": "0.11.1",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
+ "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
+ "requires": {
+ "inherits": "2.0.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
+ }
+ }
+ }
+ }
+ },
+ "node-releases": {
+ "version": "1.1.77",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz",
+ "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="
+ },
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
+ },
+ "object-inspect": {
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz",
+ "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="
+ },
+ "object-is": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
+ "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
+ },
+ "object.assign": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+ "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "has-symbols": "^1.0.1",
+ "object-keys": "^1.1.1"
+ }
+ },
+ "object.entries": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
+ "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.fromentries": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
+ "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.hasown": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz",
+ "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "object.values": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
+ "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1"
+ }
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+ "dev": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "optionator": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
+ "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
+ "dev": true,
+ "requires": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.3"
+ }
+ },
+ "os-browserify": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
+ "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc="
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "requires": {
+ "yocto-queue": "^0.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "requires": {
+ "p-limit": "^2.2.0"
+ },
+ "dependencies": {
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ }
+ }
+ },
+ "p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
+ },
+ "pako": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
+ "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+ },
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0"
+ }
+ },
+ "parse-asn1": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
+ "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==",
+ "requires": {
+ "asn1.js": "^5.2.0",
+ "browserify-aes": "^1.0.0",
+ "evp_bytestokey": "^1.0.0",
+ "pbkdf2": "^3.0.3",
+ "safe-buffer": "^5.1.1"
+ }
+ },
+ "path-browserify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+ "dev": true
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true
+ },
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true
+ },
+ "pbkdf2": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
+ "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
+ "requires": {
+ "create-hash": "^1.1.2",
+ "create-hmac": "^1.1.4",
+ "ripemd160": "^2.0.1",
+ "safe-buffer": "^5.0.1",
+ "sha.js": "^2.4.8"
+ }
+ },
+ "picomatch": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
+ "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "requires": {
+ "find-up": "^4.0.0"
+ }
+ },
+ "platform": {
+ "version": "1.3.6",
+ "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz",
+ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg=="
+ },
+ "pnp-webpack-plugin": {
+ "version": "1.6.4",
+ "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz",
+ "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==",
+ "requires": {
+ "ts-pnp": "^1.1.6"
+ }
+ },
+ "postcss": {
+ "version": "8.2.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz",
+ "integrity": "sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q==",
+ "requires": {
+ "colorette": "^1.2.2",
+ "nanoid": "^3.1.23",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
+ }
+ },
+ "prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true
+ },
+ "process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
+ },
+ "process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+ },
+ "progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "dev": true
+ },
+ "prop-types": {
+ "version": "15.7.2",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
+ "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.8.1"
+ },
+ "dependencies": {
+ "react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ }
+ }
+ },
+ "public-encrypt": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
+ "requires": {
+ "bn.js": "^4.1.0",
+ "browserify-rsa": "^4.0.0",
+ "create-hash": "^1.1.0",
+ "parse-asn1": "^5.0.0",
+ "randombytes": "^2.0.1",
+ "safe-buffer": "^5.1.2"
+ },
+ "dependencies": {
+ "bn.js": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
+ "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
+ }
+ }
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
+ },
+ "querystring": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz",
+ "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg=="
+ },
+ "querystring-es3": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
+ "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM="
+ },
+ "queue": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
+ "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
+ "requires": {
+ "inherits": "~2.0.3"
+ }
+ },
+ "queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true
+ },
+ "randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "requires": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "randomfill": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
+ "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
+ "requires": {
+ "randombytes": "^2.0.5",
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "raw-body": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+ "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
+ "requires": {
+ "bytes": "3.1.0",
+ "http-errors": "1.7.3",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "dependencies": {
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ }
+ }
+ },
+ "react": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
+ "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "react-dom": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
+ "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "scheduler": "^0.20.2"
+ }
+ },
+ "react-is": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
+ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
+ },
+ "react-refresh": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz",
+ "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg=="
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "readdirp": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
+ "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
+ "requires": {
+ "picomatch": "^2.2.1"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.13.9",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
+ "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
+ },
+ "regexp.prototype.flags": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz",
+ "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "regexpp": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
+ "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
+ "dev": true
+ },
+ "resolve": {
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
+ "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
+ "dev": true,
+ "requires": {
+ "is-core-module": "^2.2.0",
+ "path-parse": "^1.0.6"
+ }
+ },
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true
+ },
+ "reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "ripemd160": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
+ "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
+ "requires": {
+ "hash-base": "^3.0.0",
+ "inherits": "^2.0.1"
+ }
+ },
+ "run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "requires": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "scheduler": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
+ "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1"
+ }
+ },
+ "schema-utils": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
+ "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
+ "requires": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ },
+ "setimmediate": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
+ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
+ },
+ "setprototypeof": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+ "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
+ },
+ "sha.js": {
+ "version": "2.4.11",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
+ "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
+ "requires": {
+ "inherits": "^2.0.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "shallow-clone": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
+ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
+ "requires": {
+ "kind-of": "^6.0.2"
+ }
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true
+ },
+ "shell-quote": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
+ "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="
+ },
+ "side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "requires": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ }
+ },
+ "slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.8.0-beta.0",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz",
+ "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==",
+ "requires": {
+ "whatwg-url": "^7.0.0"
+ }
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "stacktrace-parser": {
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz",
+ "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==",
+ "requires": {
+ "type-fest": "^0.7.1"
+ }
+ },
+ "statuses": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
+ },
+ "stream-browserify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz",
+ "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==",
+ "requires": {
+ "inherits": "~2.0.4",
+ "readable-stream": "^3.5.0"
+ }
+ },
+ "stream-http": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.1.1.tgz",
+ "integrity": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==",
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.6.0",
+ "xtend": "^4.0.2"
+ }
+ },
+ "stream-parser": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz",
+ "integrity": "sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=",
+ "requires": {
+ "debug": "2"
+ }
+ },
+ "string-hash": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
+ "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs="
+ },
+ "string.prototype.matchall": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz",
+ "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.1",
+ "get-intrinsic": "^1.1.1",
+ "has-symbols": "^1.0.2",
+ "internal-slot": "^1.0.3",
+ "regexp.prototype.flags": "^1.3.1",
+ "side-channel": "^1.0.4"
+ }
+ },
+ "string.prototype.trimend": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
+ "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "string.prototype.trimstart": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
+ "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3"
+ }
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+ "dev": true
+ },
+ "strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true
+ },
+ "styled-jsx": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-4.0.1.tgz",
+ "integrity": "sha512-Gcb49/dRB1k8B4hdK8vhW27Rlb2zujCk1fISrizCcToIs+55B4vmUM0N9Gi4nnVfFZWe55jRdWpAqH1ldAKWvQ==",
+ "requires": {
+ "@babel/plugin-syntax-jsx": "7.14.5",
+ "@babel/types": "7.15.0",
+ "convert-source-map": "1.7.0",
+ "loader-utils": "1.2.3",
+ "source-map": "0.7.3",
+ "string-hash": "1.1.3",
+ "stylis": "3.5.4",
+ "stylis-rule-sheet": "0.0.10"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.7.3",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
+ "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
+ }
+ }
+ },
+ "stylis": {
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz",
+ "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q=="
+ },
+ "stylis-rule-sheet": {
+ "version": "0.0.10",
+ "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz",
+ "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw=="
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
+ "dev": true
+ },
+ "timers-browserify": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz",
+ "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==",
+ "requires": {
+ "setimmediate": "^1.0.4"
+ }
+ },
+ "to-arraybuffer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
+ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ },
+ "toidentifier": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
+ },
+ "tr46": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
+ "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=",
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "ts-pnp": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz",
+ "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw=="
+ },
+ "tsconfig-paths": {
+ "version": "3.11.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz",
+ "integrity": "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==",
+ "dev": true,
+ "requires": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.1",
+ "minimist": "^1.2.0",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ },
+ "tsutils": {
+ "version": "3.21.0",
+ "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
+ "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.8.1"
+ }
+ },
+ "tty-browserify": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz",
+ "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="
+ },
+ "type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "^1.2.1"
+ }
+ },
+ "type-fest": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz",
+ "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg=="
+ },
+ "unbox-primitive": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
+ "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has-bigints": "^1.0.1",
+ "has-symbols": "^1.0.2",
+ "which-boxed-primitive": "^1.0.2"
+ }
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
+ },
+ "uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "url": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
+ "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
+ "requires": {
+ "punycode": "1.3.2",
+ "querystring": "0.2.0"
+ },
+ "dependencies": {
+ "punycode": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
+ "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
+ },
+ "querystring": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
+ "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
+ }
+ }
+ },
+ "url-loader": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz",
+ "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==",
+ "requires": {
+ "loader-utils": "^2.0.0",
+ "mime-types": "^2.1.27",
+ "schema-utils": "^3.0.0"
+ },
+ "dependencies": {
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
+ },
+ "json5": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
+ "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "loader-utils": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
+ "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^2.1.2"
+ }
+ }
+ }
+ },
+ "use-subscription": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz",
+ "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==",
+ "requires": {
+ "object-assign": "^4.1.1"
+ }
+ },
+ "util": {
+ "version": "0.12.4",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz",
+ "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "is-arguments": "^1.0.4",
+ "is-generator-function": "^1.0.7",
+ "is-typed-array": "^1.1.3",
+ "safe-buffer": "^5.1.2",
+ "which-typed-array": "^1.1.2"
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
+ },
+ "v8-compile-cache": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
+ "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
+ "dev": true
+ },
+ "vm-browserify": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="
+ },
+ "watchpack": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz",
+ "integrity": "sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==",
+ "requires": {
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ }
+ },
+ "webidl-conversions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
+ "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
+ },
+ "whatwg-url": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
+ "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
+ "requires": {
+ "lodash.sortby": "^4.7.0",
+ "tr46": "^1.0.1",
+ "webidl-conversions": "^4.0.2"
+ }
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "requires": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ }
+ },
+ "which-typed-array": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz",
+ "integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==",
+ "requires": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "es-abstract": "^1.18.5",
+ "foreach": "^2.0.5",
+ "has-tostringtag": "^1.0.0",
+ "is-typed-array": "^1.1.7"
+ }
+ },
+ "word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+ "dev": true
+ },
+ "xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ },
+ "yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
+ }
+ }
+}
diff --git a/pages/acts.js b/pages/acts.js
new file mode 100644
index 0000000..b0ebfce
--- /dev/null
+++ b/pages/acts.js
@@ -0,0 +1,129 @@
+import React from "react";
+import Head from 'next/head';
+import Image from 'next/image';
+
+import Header from './components/Header';
+import Footer from './components/Footer';
+
+export default function ActsPage()
+{
+ return (
+
+ ООО “Друзья и КО”
+
+
+
+
+
+
+
+
+ Напишите на buy@domain.ru или заполните форму
+ ООО “Друзья и КО”
+ Каско Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент Текстовый контент
+
+
+ Напишите на buy@domain.ru или заполните форму
+ ООО “Друзья и КО”
+
+ 30 мая
+
+ 31 мая
+
+ 31 мая
+
+ Общий платеж
+ 239 400,00 р.
+
+ 02 июня
+
+ 02 июня
+
+ 02 июня
+
+ 02 июня
+
+ 03 июня
+
+ 04 июня
+
+ 05 июня
+
+ 30 мая
+
+ 31 мая
+
+ Общий платеж
+ 239 400,00 р.
+
+ 01 июня
+
+ 02 июня
+
+ 03 июня
+
+ 04 июня
+
+ 05 июня
+
+ 30 мая
+
+ 31 мая
+
+ 01 июня
+
+ 30 мая
+
+ 31 мая
+
+ 01 июня
+
+ 30 мая
+
+ 31 мая
+
+ 01 июня
+
+ Напишите на buy@domain.ru или
+ заполните форму
+
+ ООО “Друзья и КО”
+ Договор
+ Краткое описание. Может быть много-много строк.
+ Столько строк, сколько есть в описании
+
+ Договор цессии
+ Краткое описание. Может быть много-много строк.
+ Столько строк, сколько есть в описании
+
+ Дополнительное соглашение №1
+ Краткое описание. Может быть много-много строк.
+ Столько строк, сколько есть в описании
+
+ Дополнительное соглашение №2
+ Краткое описание. Может быть много-много строк.
+ Столько строк, сколько есть в описании
+
+ Выкупные документы
+ Краткое описание. Может быть много-много строк.
+ Столько строк, сколько есть в описании
+ Напишите на buy@domain.ru или заполните формуАкты сверок
+
+ ИНН: 12345678765 КПП: 13432-02
+ Купить в лизинг?
+ Договор №1234/2021 от 10.01.2021
+
+ ИНН: 12345678765 КПП: 13432-02
+
+ Карта РАТ
+
+
+
+ Страхование
+
+ Регистрация
+
+ Телематика
+
Купить в лизинг?
+ Календарь оплат
+
+ ИНН: 12345678765 КПП: 13432-02
+ Купить в лизинг?
+ Закрывающие документы
+
+ ИНН: 12345678765 КПП: 13432-02
+ Купить в лизинг?
+
+
+
+ ООО “Друзья и КО”
+ ИНН: 12345678765 КПП: 13432-02
+
+ Договор + Краткое описание. Может быть много-много строк. + Столько строк, сколько есть в описании +
+ Скачать ++ Договор цессии + Краткое описание. Может быть много-много строк. + Столько строк, сколько есть в описании +
+ Скачать ++ Дополнительное соглашение №1 + Краткое описание. Может быть много-много строк. + Столько строк, сколько есть в описании +
+ Скачать ++ Дополнительное соглашение №2 + Краткое описание. Может быть много-много строк. + Столько строк, сколько есть в описании +
+ Скачать ++ Выкупные документы + Краткое описание. Может быть много-много строк. + Столько строк, сколько есть в описании +
+ Скачать +Напишите на buy@domain.ru или заполните форму
+Войти с помощью
+