/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select, .Select div, .Select input, .Select span {
  box-sizing: border-box;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}
.Select-control .Select-input:focus {
  outline: none;
}
.is-searchable.is-open > .Select-control {
  cursor: text;
}
.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 3px rgba(0, 126, 255, .1);
}
.Select-placeholder, .Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.has-value.Select--single > .Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label, .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover, .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover, .has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus, .has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 14px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.is-open .Select-arrow, .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, .04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, .08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, .08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, .24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon, .Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, .24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover, .Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, .08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, .24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover, .Select--multi.is-disabled .Select-value-icon:focus, .Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
:root {
    /*GRAYSCALE*/

    /*FEEDBACK*/

    /*BRAND*/

    /*ADDITIONAL*/

    /*VPN*/


    /*OLD WEBSITE VARS*/ /*change to --gray900, opacity 0.1*/ /*change to --gray700, opacity 0.5*/ /*change to --black, opacity 0.8*/ /*change to --black, opacity 0.9*/ /*change to --gray100, opacity 0.24*/ /*change to --gray900, opacity 0.2*/ /*change to --gray900, opacity 0.36*/ /*change to --gray900, opacity 0.7*/ /*change to --white, opacity 0.9*/ /*delete after new  account launch*/ /*change to --gray400, opacity 0.4*/ /*change to --gray900, opacity 0.93*/ /*change to --gray900, opacity 0.25*/
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/light.woff2") format("woff2"), url("/fonts/akkurat/light.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/light-cyr.woff2") format("woff2"), url("/fonts/akkurat/light-cyr.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    unicode-range: U+0400-04FF;
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/regular.woff2") format("woff2"), url("/fonts/akkurat/regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/regular-cyr.woff2") format("woff2"), url("/fonts/akkurat/regular-cyr.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0400-04FF;
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/bold.woff2") format("woff2"), url("/fonts/akkurat/bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Akkurat";
    src: url("/fonts/akkurat/bold-cyr.woff2") format("woff2"), url("/fonts/akkurat/bold-cyr.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    unicode-range: U+0400-04FF;
}

.button {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 1.4rem;
    line-height: 1.428571429;
    border-radius: 8px;
    border: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    letter-spacing: 0.04rem;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 600
}

.button:focus {
    outline: 0;
    box-shadow: 0 0 2px 1px rgba(74, 74, 74, .36);
}

.button--primary {
        color: #ffffff;
        background-color: #67b279;
        border: 1px solid #67b279;
}

.button--primary:hover, .button--primary:focus, .button--primary:focus:active {
    background-color: #67b279;
    border-color: #67b279;
    outline: 0;
}

.button--white {
        color: #4d4d4d;
        background-color: #ffffff;
        border: 1px solid #d8d8d8;
}

.button--white:hover, .button--white:focus, .button--white:focus:active {
    background-color: rgba(0, 0, 0, .05);
    border-color: #d8d8d8;
    outline: 0;
}

.button--danger {
        color: #ffffff;
        background-color: #c23814;
        border: 1px solid #c23814;
}

.button--danger:hover, .button--danger:focus, .button--danger:focus:active {
    background-color: #c23814;
    border-color: #c23814;
    outline: 0;
}

.button--transparent {
        cursor: pointer;
        color: #4d4d4d;
        background-color: transparent;
        border: 1px solid transparent;
        text-decoration: none;
}

.button--transparent:hover, .button--transparent:focus, .button--transparent:focus:active {
    color: #4d4d4d;
}

.button--border {
        color: #4d4d4d;
        background-color: transparent;
        border: 1px solid #d8d8d8;
}

.button--border:hover, .button--border:focus, .button--border:focus:active {
    color: #ffffff;
    background-color: #67b279;
    border-color: #67b279;
    outline: 0;
}

.button--download {
        position: relative;
        padding-left: 50px;
        padding-right: 30px;
}

.button--download .icon--download {
    width: 20px;
    height: 20px;
    margin: 0 3px -5px -10px;
}

.button--border-green {
        color: #67b279;
        background-color: #ffffff;
        border: 1px solid #67b279;
}

.button--border-green:hover, .button--border-green:focus, .button--border-green:focus:active {
    color: #ffffff;
    background-color: #67b279;
    border-color: #67b279;
    outline: 0;
}

.button--hidden {
        display: none;
}

.button--visible {
        display: inline-block;
}

.button--green {
        text-transform: uppercase;
        background-color: #67b279;
        color: #ffffff;
        transition: 0.3s ease background-color;
}

.button--green:hover {
    background-color: #67b279;
}

.button--m {
        padding: 0 78px;
        font-size: 1.6rem;
        line-height: 60px;
}

@media (max-width: 1200px) {

    .button--m {
        min-width: 274px;
    }
}

@media (max-width: 1200px) {

    .button--m-main {
        min-width: 0;
        min-width: initial;
    }
}

@media (max-width: 1023px) {

    .button--m-main {
        min-width: 274px;
    }
}

.button--s {
        padding: 0 50px;
        font-size: 1.6rem;
        line-height: 50px;
}

@media (max-width: 1200px) {

    .button--s {
        min-width: 274px;
    }
}

.button--invert {
        box-shadow: inset 0 0 0 1px #67b279;
        color: #67b279;
        background-color: transparent;
        transition: 0.3s ease opacity;
}

.button--invert .icon--download {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%2367b279%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M16.531%2010.414a.75.75%200%200%201%201.019%201.096l-.081.076L12%2015.96l-5.469-4.374a.75.75%200%200%201%20.846-1.235l.092.063L12%2014.04l4.531-3.625zM18%2018.25a.75.75%200%200%201%20.11%201.492l-.11.008H6a.75.75%200%200%201-.11-1.492L6%2018.25h12z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.75%2014a.75.75%200%200%201-1.492.11L11.25%2014V4a.75.75%200%200%201%201.492-.11l.008.11v10z%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.button--invert:hover, .button--invert:focus, .button--invert:focus:active {
    opacity: 0.8;
}

.button--xs {
        cursor: pointer;
        padding: 0 15px;
        line-height: 30px;
        font-size: 1.2rem;
}

@media (max-width: 767px) {

    .button--xs {
        font-size: 0.9rem;
        padding: 0 7px;
    }
}

.button--medium {
        padding: 13px 15px;
        min-width: 200px;
        font-size: 1.45rem;
        text-transform: uppercase;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.button--large {
        padding: 13px 15px;
        min-width: 270px;
        font-size: 1.55rem;
        text-transform: uppercase;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

@media (max-width: 767px) {

    .button--large {
        min-width: 260px;
    }
}

.button--requirements {
        cursor: default;
        padding: 0 15px;
        line-height: 30px;
        text-transform: uppercase;
        font-size: 1.2rem;
        color: rgba(74, 74, 74, .70);
        background-color: rgba(74, 74, 74, .10);
        border: 0;
        transition: 0.3s ease background-color;
}

@media (max-width: 767px) {

    .button--requirements {
        font-size: 0.9rem;
        padding: 0 7px;
    }
}

.button--purchase {
        padding: 0 47px;
        line-height: 60px;
        background-color: transparent;
        text-transform: uppercase;
        font-size: 1.6rem;
        transition: 0.3s ease background-color;
}

.button--purchase:hover {
    background-color: rgba(0, 0, 0, .25);
}

.button--thanks-control {
        padding: 0 20px;
        width: 100%;
        font-size: 1.4rem;
        line-height: 49px;
}

.button--more {
        min-width: 129px;
        padding: 0 30px;
        height: 34px;
        line-height: 32px;
        border: 1px solid rgba(74, 74, 74, .20);
        border-radius: 25px;
        color: #67b279;
        font-size: 1.4rem;
        transition: 0.3s ease background-color, 0.3s ease color, 0.3s ease border-color;
}

.button--more:hover {
    background-color: #67b279;
    border-color: #67b279;
    color: #ffffff;
}

.button--disabled {
        color: #ffffff;
        border-color: #d8d8d8;
        background-color: #d8d8d8;
}

.button--disabled:hover, .button--disabled:focus, .button--disabled:focus:active {
    border-color: #d8d8d8;
    background-color: #d8d8d8;
}

.button--configure {
        width: 100%;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 12px;
        padding-top: 13px;
        padding-bottom: 13px;
}

.button--orange {
        color: #ffffff;
        background-color: #67b279;
        border-color: #67b279;
}

.button--orange:hover, .button--orange:focus, .button--orange:active:focus {
    color: #ffffff;
    background-color: #eb9300;
    border-color: #eb9300;
}

.button--gray {
        box-shadow: inset 0 0 0 1px #888888;
        color: #888888;
        background-color: transparent;
        transition: 0.3s ease opacity;
}

.button--gray:hover, .button--gray:focus, .button--gray:focus:active {
    opacity: 0.8;
}

@media (max-width: 1200px) {

    .button--sms {
        display: none;
    }
}

.button--uppercase {
        text-transform: uppercase;
}

.button--icon {
        padding: 0;
        line-height: 1;
        background-color: transparent;
}

.button--icon:focus {
    box-shadow: none;
}

.button--dark {
        color: #ffffff;
        background-color: #4d4d4d;
}

.button--dark:hover, .button--dark:focus {
    color: #ffffff;
    background-color: #4d4d4d;
}

.button--icon-center {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}

.button--vpngreen {
        background-color: #74a352;
        text-transform: uppercase;
        color: #ffffff;
        border: none;
        transition: 0.3s ease background-color;
}

.button--vpngreen:hover {
    background-color: #568040;
}

input[type="button"].button, input[type="submit"].button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
}

.icon--footer-logo {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20177%2048%22%20fill%3D%22%23fff%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M144%2022.5l-1.1-2.9h-5.7l-1.1%202.9h-3.9l6.2-14.8h3.4l6.1%2014.8H144zm-4-10.8l-1.9%205.1h3.7l-1.8-5.1zm-8.4%205.2c0%20.9-.1%201.7-.4%202.4-.3.7-.7%201.4-1.3%201.9-.6.5-1.2.9-2%201.2-.8.3-1.6.4-2.6.4s-1.8-.1-2.6-.4c-.8-.3-1.4-.7-2-1.2s-1-1.1-1.2-1.9c-.3-.7-.4-1.5-.4-2.4V7.7h3.5v8.9c0%20.4.1.8.2%201.1.1.3.3.7.5%201%20.2.3.5.5.8.7.4.2.8.3%201.3.3s.9-.1%201.3-.3c.4-.2.6-.4.9-.7.2-.3.4-.6.5-1%20.1-.4.1-.7.1-1.1V7.7h3.5l-.1%209.2zm-14.5%204.7c-.7.4-1.6.7-2.5.9-1%20.2-2%20.4-3.1.4-1.2%200-2.3-.2-3.2-.6-1-.4-1.8-.9-2.5-1.6-.7-.7-1.3-1.5-1.7-2.5s-.6-2-.6-3.2.2-2.3.6-3.2c.4-1%201-1.8%201.7-2.5s1.6-1.2%202.5-1.6%202-.5%203.1-.5c1.2%200%202.2.2%203.2.5%201%20.4%201.8.8%202.4%201.4l-2.2%202.6c-.3-.4-.8-.7-1.4-1-.6-.3-1.2-.4-1.9-.4-.6%200-1.2.1-1.7.3-.5.2-1%20.5-1.4%201-.4.4-.7.9-.9%201.5-.2.6-.3%201.2-.3%201.8%200%20.7.1%201.3.3%201.9.2.6.5%201.1.9%201.5s.8.7%201.4%201c.6.2%201.2.3%201.9.3.4%200%20.8%200%201.2-.1s.7-.2%201-.3v-2.7h-2.8v-2.7h6.1l-.1%207.8zm58.6-6.5c0%201.3-.2%202.4-.7%203.3s-1.1%201.7-1.9%202.3-1.7%201.1-2.6%201.3c-1%20.3-2%20.4-3%20.4H162V7.7h5.3c1%200%202.1.1%203.1.4%201%20.2%201.9.6%202.7%201.2.8.6%201.4%201.3%201.9%202.3.4.9.7%202.1.7%203.5zm-3.7%200c0-.8-.1-1.5-.4-2.1-.3-.5-.6-1-1.1-1.3-.4-.3-1-.6-1.5-.7-.6-.1-1.2-.2-1.8-.2h-1.8v8.6h1.7c.6%200%201.2-.1%201.8-.2.6-.1%201.1-.4%201.6-.7.4-.3.8-.8%201.1-1.3.3-.5.4-1.3.4-2.1zm-70.2%200c0%201.3-.2%202.4-.7%203.3s-1.1%201.7-1.9%202.3c-.8.6-1.7%201.1-2.6%201.3-1%20.3-2%20.4-3%20.4h-5.5V7.7h5.3c1%200%202.1.1%203.1.4%201%20.2%201.9.6%202.7%201.2.8.6%201.4%201.3%201.9%202.3s.7%202.1.7%203.5zm-3.7%200c0-.8-.1-1.5-.4-2.1-.3-.5-.6-1-1.1-1.3-.4-.3-1-.6-1.5-.7-.6-.1-1.2-.2-1.8-.2h-1.8v8.6h1.7c.6%200%201.2-.1%201.8-.2.6-.1%201.1-.4%201.6-.7.4-.3.8-.8%201.1-1.3.3-.5.4-1.3.4-2.1zm-15%207.4L82%2019.6h-5.7l-1.1%202.9h-3.9l6.2-14.8h3.4L87%2022.5h-3.9zm-4-10.8l-1.9%205.1H81l-1.9-5.1zm77.8%2010.8l-3.2-5.9h-1.2v5.9H149V7.7h5.6c.7%200%201.4.1%202.1.2.7.1%201.3.4%201.8.7.5.3%201%20.8%201.3%201.4.3.6.5%201.3.5%202.1%200%201-.3%201.8-.8%202.5s-1.3%201.2-2.2%201.5l3.8%206.3-4.2.1zm-.2-10.2c0-.3-.1-.6-.2-.8-.1-.2-.3-.5-.5-.6-.2-.1-.5-.2-.8-.2s-.6-.1-.8-.1h-1.9V14h1.7c.3%200%20.6%200%20.9-.1.3%200%20.6-.1.8-.3.2-.1.5-.3.6-.5.2-.2.2-.5.2-.8z%22%2F%3E%3Cpath%20d%3D%22M144%2022.5l-1.1-2.9h-5.7l-1.1%202.9h-3.9l6.2-14.8h3.4l6.1%2014.8H144zm-4-10.8l-1.9%205.1h3.7l-1.8-5.1zm-8.4%205.2c0%20.9-.1%201.7-.4%202.4-.3.7-.7%201.4-1.3%201.9-.6.5-1.2.9-2%201.2-.8.3-1.6.4-2.6.4s-1.8-.1-2.6-.4c-.8-.3-1.4-.7-2-1.2s-1-1.1-1.2-1.9c-.3-.7-.4-1.5-.4-2.4V7.7h3.5v8.9c0%20.4.1.8.2%201.1.1.3.3.7.5%201%20.2.3.5.5.8.7.4.2.8.3%201.3.3s.9-.1%201.3-.3c.4-.2.6-.4.9-.7.2-.3.4-.6.5-1%20.1-.4.1-.7.1-1.1V7.7h3.5l-.1%209.2zm-14.5%204.7c-.7.4-1.6.7-2.5.9-1%20.2-2%20.4-3.1.4-1.2%200-2.3-.2-3.2-.6-1-.4-1.8-.9-2.5-1.6-.7-.7-1.3-1.5-1.7-2.5s-.6-2-.6-3.2.2-2.3.6-3.2c.4-1%201-1.8%201.7-2.5s1.6-1.2%202.5-1.6%202-.5%203.1-.5c1.2%200%202.2.2%203.2.5%201%20.4%201.8.8%202.4%201.4l-2.2%202.6c-.3-.4-.8-.7-1.4-1-.6-.3-1.2-.4-1.9-.4-.6%200-1.2.1-1.7.3-.5.2-1%20.5-1.4%201-.4.4-.7.9-.9%201.5-.2.6-.3%201.2-.3%201.8%200%20.7.1%201.3.3%201.9.2.6.5%201.1.9%201.5s.8.7%201.4%201c.6.2%201.2.3%201.9.3.4%200%20.8%200%201.2-.1s.7-.2%201-.3v-2.7h-2.8v-2.7h6.1l-.1%207.8zm58.6-6.5c0%201.3-.2%202.4-.7%203.3s-1.1%201.7-1.9%202.3-1.7%201.1-2.6%201.3c-1%20.3-2%20.4-3%20.4H162V7.7h5.3c1%200%202.1.1%203.1.4%201%20.2%201.9.6%202.7%201.2.8.6%201.4%201.3%201.9%202.3.4.9.7%202.1.7%203.5zm-3.7%200c0-.8-.1-1.5-.4-2.1-.3-.5-.6-1-1.1-1.3-.4-.3-1-.6-1.5-.7-.6-.1-1.2-.2-1.8-.2h-1.8v8.6h1.7c.6%200%201.2-.1%201.8-.2.6-.1%201.1-.4%201.6-.7.4-.3.8-.8%201.1-1.3.3-.5.4-1.3.4-2.1zm-70.2%200c0%201.3-.2%202.4-.7%203.3s-1.1%201.7-1.9%202.3c-.8.6-1.7%201.1-2.6%201.3-1%20.3-2%20.4-3%20.4h-5.5V7.7h5.3c1%200%202.1.1%203.1.4%201%20.2%201.9.6%202.7%201.2.8.6%201.4%201.3%201.9%202.3s.7%202.1.7%203.5zm-3.7%200c0-.8-.1-1.5-.4-2.1-.3-.5-.6-1-1.1-1.3-.4-.3-1-.6-1.5-.7-.6-.1-1.2-.2-1.8-.2h-1.8v8.6h1.7c.6%200%201.2-.1%201.8-.2.6-.1%201.1-.4%201.6-.7.4-.3.8-.8%201.1-1.3.3-.5.4-1.3.4-2.1zm-15%207.4L82%2019.6h-5.7l-1.1%202.9h-3.9l6.2-14.8h3.4L87%2022.5h-3.9zm-4-10.8l-1.9%205.1H81l-1.9-5.1zm77.8%2010.8l-3.2-5.9h-1.2v5.9H149V7.7h5.6c.7%200%201.4.1%202.1.2.7.1%201.3.4%201.8.7.5.3%201%20.8%201.3%201.4.3.6.5%201.3.5%202.1%200%201-.3%201.8-.8%202.5s-1.3%201.2-2.2%201.5l3.8%206.3-4.2.1zm-.2-10.2c0-.3-.1-.6-.2-.8-.1-.2-.3-.5-.5-.6-.2-.1-.5-.2-.8-.2s-.6-.1-.8-.1h-1.9V14h1.7c.3%200%20.6%200%20.9-.1.3%200%20.6-.1.8-.3.2-.1.5-.3.6-.5.2-.2.2-.5.2-.8z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%224%22%20opacity%3D%22.715%22%20d%3D%22M24.2%202.3c-6.6%200-14.5%201.6-21.1%205%200%207.4-.1%2025.8%2021.1%2038.4%2021.2-12.6%2021.1-31%2021.1-38.4-6.5-3.4-14.5-5-21.1-5z%22%2F%3E%3Cpath%20opacity%3D%22.715%22%20d%3D%22M23.5%2031.2L36.2%2014c-.9-.8-1.8-.2-2.2.2L23.3%2025.3l-4-4.8c-1.9-2.2-4.5-.5-5.1-.1l9.3%2010.8%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--youtube {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20style%3D%22fill%3A%23ffffff%3B%22%3E%3Cpath%20d%3D%22M13%205l3%209v6h2v-6l3-9h-2l-2%206-2-6zm11%204c-1.066%200-1.59.168-2.242.703-.625.527-.797.934-.758%202.297v5c0%20.996.164%201.652.766%202.234.625.582%201.214.766%202.234.766%201.066%200%201.648-.184%202.25-.766.625-.558.75-1.238.75-2.234v-5c0-.883-.156-1.719-.762-2.277C25.613%209.148%2024.968%209%2024%209zm5%200v9c0%20.973.98%202%202%202s1.559-.512%202-1v1h2V9h-2v8c-.012.684-.816%201-1%201-.207%200-1-.043-1-1V9zm-5%202c.3%200%201-.004%201%201v5c0%20.969-.676%201-1%201-.3%200-1-.012-1-1v-5c0-.816.434-1%201-1zM10%2022c-3.594%200-6%202.383-6%206v9.5c0%203.617%202.406%206.5%206%206.5h30c3.594%200%206-2.383%206-6V28c0-3.617-2.406-6-6-6zm2%204h6v2h-2v12h-2V28h-2zm14%200h2v4c.23-.36.574-.645.902-.805a2.13%202.13%200%200%201%20.973-.258c.648%200%201.156.235%201.504.672.348.442.621%201.028.621%201.891v6c0%20.742-.25%201.203-.578%201.598-.32.394-.8.894-1.422.902-1.05.012-1.613-.55-2-1v1h-2zm-8%203h2v8c0%20.23.27%201.008%201%201%20.813-.008.82-.766%201-1v-8h2v11h-2v-1c-.371.438-.563.574-.98.781-.415.235-.836.219-1.227.219-.484%200-1.035-.438-1.293-.766-.23-.3-.5-.609-.5-1.234zm18.2%200c.948%200%201.616.203%202.12.734.516.532.68%201.153.68%202.153V35h-4v1.547c0%20.558.074.914.219%201.125.136.23.414.332.781.328.406-.004.664-.086.8-.27.141-.164.2-.628.2-1.23V36h2v.594c0%201.09-.086%201.902-.625%202.433-.508.559-1.3.817-2.34.817-.95%200-1.691-.282-2.222-.86-.532-.578-.81-1.37-.81-2.39v-4.707c0-.907.317-1.578.9-2.176.468-.48%201.347-.711%202.296-.711zM29%2030.5c-.55%200-.992.496-1%201v6c.008.29.45.5%201%20.5s1-.426%201-.977V32c0-1-.45-1.5-1-1.5zm7%20.5c-.55%200-.992.465-1%201v1h2v-1c0-.613-.45-1-1-1z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
        background-size: 75%;
    }

.icon--facebook-simple {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M18%2017.9h2.9l.5-3H18v-1.5c0-.8.2-1.5%201.3-1.5h2.2V9h-3.1c-2.6%200-3.3%201.7-3.3%204.2V15h-1.8v3h1.8v8.9H18v-9z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--vk {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M24.9%2019.4c.6.6%201.3%201.2%201.9%201.9.3.3.5.6.7%201%20.3.5%200%201.1-.4%201.1h-2.8c-.7.1-1.3-.2-1.8-.7-.4-.4-.7-.8-1.1-1.2l-.5-.5c-.4-.3-.7-.2-.9.2-.2.4-.3.9-.3%201.3%200%20.7-.2.8-.9.9-1.4.1-2.7-.1-4-.9-1.1-.6-1.9-1.5-2.7-2.6-1.4-2-2.5-4.2-3.5-6.4-.3-.4-.1-.7.4-.7h2.7c.4%200%20.6.2.8.6.5%201.2%201.1%202.4%201.8%203.5.2.3.4.6.7.8.3.2.6.2.7-.2.1-.2.1-.5.2-.7.1-.9.1-1.7%200-2.6-.1-.5-.4-.9-.9-1-.3-.1-.2-.2-.1-.3.2-.3.4-.4.9-.4h3.1c.5.1.6.3.7.8v3.6c0%20.2.1.8.4.9.3.1.5-.1.6-.3.8-.8%201.3-1.8%201.8-2.8.2-.4.4-.9.6-1.3.1-.3.3-.5.7-.5H27c.5.1.7.3.5.8-.2.8-.7%201.5-1.2%202.1l-1.5%202.1c-.5.6-.5.9.1%201.5z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--twitter {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M27.3%2011.8c-.4.2-.9.3-1.3.5.5-.5.9-1.1%201.1-1.8.1-.2-.1-.4-.3-.3-.6.4-1.3.7-2%20.9h-.1c-.1%200-.3%200-.4-.1-.8-.7-1.7-1.1-2.8-1.1-.4%200-.9.1-1.3.2-1.4.4-2.4%201.6-2.7%203-.1.5-.2%201.1-.1%201.6v.1l-.1.1c-3-.3-5.6-1.7-7.5-4.1-.1-.1-.3-.1-.4%200-.4.6-.6%201.4-.6%202.1%200%201.2.5%202.2%201.2%203-.3-.1-.7-.2-1-.4-.1-.1-.3%200-.3.2%200%201.7%201%203.2%202.4%203.9H11c-.2%200-.5%200-.7-.1-.2%200-.3.1-.2.3.5%201.5%201.8%202.6%203.3%202.9-1.3.9-2.8%201.3-4.3%201.3h-.5c-.1%200-.3.1-.3.2s0%20.3.2.4c1.7%201%203.7%201.6%205.8%201.6%201.8%200%203.4-.4%204.9-1.1%201.4-.6%202.6-1.6%203.6-2.7.9-1.1%201.7-2.4%202.2-3.8.5-1.3.7-2.8.7-4.1v-.1c0-.2.1-.4.3-.6.6-.5%201.2-1.2%201.7-1.9%200%200-.2-.2-.4-.1z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--telegram-simple {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M26.07%203.996a2.974%202.974%200%200%200-.933.223h-.004c-.285.113-1.64.683-3.7%201.547l-7.382%203.109c-5.297%202.23-10.504%204.426-10.504%204.426l.062-.024s-.359.118-.734.375a2.03%202.03%200%200%200-.586.567c-.184.27-.332.683-.277%201.11.09.722.558%201.155.894%201.394.34.242.664.355.664.355h.008l4.883%201.645c.219.703%201.488%204.875%201.793%205.836.18.574.355.933.574%201.207.106.14.23.257.379.351a1.119%201.119%200%200%200%20.246.106l-.05-.012c.015.004.027.016.038.02.04.011.067.015.118.023.773.234%201.394-.246%201.394-.246l.035-.028%202.883-2.625%204.832%203.707.11.047c1.007.442%202.027.196%202.566-.238.543-.437.754-.996.754-.996l.035-.09%203.734-19.129c.106-.472.133-.914.016-1.343a1.807%201.807%200%200%200-.781-1.047%201.872%201.872%200%200%200-1.067-.27zm-.101%202.05c-.004.063.008.056-.02.177v.011l-3.699%2018.93c-.016.027-.043.086-.117.145-.078.062-.14.101-.465-.028l-5.91-4.531-3.57%203.254.75-4.79%209.656-9c.398-.37.265-.448.265-.448.028-.454-.601-.133-.601-.133l-12.176%207.543-.004-.02-5.836-1.965v-.004l-.015-.003a.27.27%200%200%200%20.03-.012l.032-.016.031-.011s5.211-2.196%2010.508-4.426c2.652-1.117%205.324-2.242%207.379-3.11%202.055-.863%203.574-1.496%203.66-1.53.082-.032.043-.032.102-.032z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 65%;
        background-position: 49%;
    }

.icon--google {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20491.858%20491.858%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M377.472%20224.957H201.319v58.718H308.79c-16.032%2051.048-63.714%2088.077-120.055%2088.077-69.492%200-125.823-56.335-125.823-125.824%200-69.492%2056.333-125.823%20125.823-125.823%2034.994%200%2066.645%2014.289%2089.452%2037.346l42.622-46.328c-34.04-33.355-80.65-53.929-132.074-53.929C84.5%2057.193%200%20141.693%200%20245.928s84.5%20188.737%20188.736%20188.737c91.307%200%20171.248-64.844%20188.737-150.989v-58.718l-.001-.001z%22%2F%3E%3Cpath%20d%3D%22M491.858%20224.857L455.827%20224.857%20455.827%20188.826%20424.941%20188.826%20424.941%20224.857%20388.91%20224.857%20388.91%20255.74%20424.941%20255.74%20424.941%20291.772%20455.827%20291.772%20455.827%20255.74%20491.858%20255.74z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 70%;
        background-position: 7px 5.5px;
    }

.icon--instagram {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M24.8%209.5H11.9c-1.2%200-2.1%201-2.1%202.2V25c0%201.2%201%202.2%202.1%202.2h12.9c1.2%200%202.1-1%202.1-2.2V11.7c.1-1.2-.9-2.2-2.1-2.2zm.1%2015.5c0%20.1-.1.1-.1.1H11.9c-.1%200-.1-.1-.1-.1V11.7c0-.1.1-.1.1-.1h12.9c.1%200%20.1.1.1.1V25z%22%2F%3E%3Cpath%20d%3D%22M21.3%2013.1H23.6V15.3H21.3z%22%2F%3E%3Cellipse%20cx%3D%2218.4%22%20cy%3D%2219.2%22%20rx%3D%222.3%22%20ry%3D%222.3%22%2F%3E%3Cpath%20d%3D%22M22%2019.2c0%202.1-1.6%203.7-3.7%203.7-2%200-3.7-1.7-3.7-3.7v-1.7H13v6.2h10.6v-6.2H22v1.7z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--ok {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2211%22%20height%3D%2217%22%20viewBox%3D%220%200%2011%2017%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20transform%3D%22translate(-527%20-929)%22%20fill-rule%3D%22nonzero%22%20fill%3D%22%23ffffff%22%3E%3Cg%20transform%3D%22translate(160%2030)%22%3E%3Cg%20transform%3D%22translate(196.5%20888)%22%3E%3Cg%20transform%3D%22translate(170%2011)%22%3E%3Cpath%20d%3D%22M4.894%2011.89c-1.326-.136-2.522-.457-3.546-1.244-.127-.098-.258-.192-.374-.302C.526%209.922.48%209.437.835%208.938c.304-.427.813-.541%201.342-.296.103.048.2.107.294.17%201.908%201.289%204.53%201.324%206.445.059.19-.143.392-.26.627-.32.458-.115.884.05%201.13.443.28.449.276.887-.07%201.235-.53.534-1.166.92-1.874%201.19-.67.255-1.402.384-2.128.469.11.117.161.175.23.242.985.973%201.974%201.941%202.956%202.916.335.333.405.745.22%201.132-.2.422-.652.7-1.094.67-.28-.019-.498-.156-.692-.348-.744-.735-1.501-1.456-2.23-2.205-.212-.218-.314-.177-.5.012-.749.757-1.509%201.502-2.273%202.242-.344.333-.752.393-1.15.203-.424-.202-.693-.626-.672-1.053.014-.288.159-.509.36-.706.975-.957%201.948-1.916%202.92-2.874.064-.063.124-.131.218-.23z%22%2F%3E%3Cpath%20d%3D%22M5.702%208.558C3.336%208.55%201.396%206.623%201.41%204.295%201.423%201.94%203.365.043%205.754.05c2.394.006%204.316%201.93%204.304%204.31-.012%202.323-1.966%204.206-4.356%204.198zM7.852%204.3c-.004-1.156-.94-2.076-2.115-2.077-1.184-.002-2.13.936-2.12%202.102.008%201.152.953%202.066%202.13%202.061%201.175-.004%202.11-.93%202.106-2.086z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--kakao {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20style%3D%22mix-blend-mode%3Ascreen%22%20fill%3D%22%23ffffff%22%20fill-opacity%3D%22.01%22%20d%3D%22M0%200H24V24H0z%22%2F%3E%3Cpath%20d%3D%22M11.649%203c5.329%200%209.649%203.452%209.649%207.709s-4.32%207.709-9.65%207.709c-.573%200-1.145-.04-1.713-.122l-1.905%201.34c-.912.632-1.85%201.262-2.119%201.373l-.103.03a.26.26%200%200%201-.18-.027c-.106-.063-.087-.228-.087-.228l.067-.28c.202-.77.79-2.829.915-3.264C3.805%2015.877%202%2013.46%202%2010.709%202%206.452%206.32%203%2011.649%203zm-3.91%205.405h-2.85a.544.544%200%200%200-.504.265.56.56%200%200%200%200%20.575.546.546%200%200%200%20.403.262l.97.002v3.352a.548.548%200%200%200%20.556.538c.273%200%20.501-.19.548-.441l.01-.097V9.509h.867a.544.544%200%200%200%20.503-.264.56.56%200%200%200%200-.575.546.546%200%200%200-.403-.263l-.1-.002zm1.867%200a.838.838%200%200%200-.69.442l-.051.115-1.331%203.552c-.169.532-.023.728.131.8a.84.84%200%200%200%20.355.079c.193%200%20.348-.067.426-.178l.037-.072.274-.73h1.7l.275.73c.044.128.175.216.352.242l.109.008.122-.009a.843.843%200%200%200%20.119-.026l.114-.044c.138-.063.271-.23.173-.652l-.041-.15-1.331-3.55c-.094-.27-.38-.548-.743-.557zm6.063.038a.559.559%200%200%200-.539.419l-.018.108v3.857c0%20.277.197.507.457.555l.1.01a.558.558%200%200%200%20.548-.462l.01-.102v-1.231l.192-.195%201.305%201.753a.551.551%200%200%200%20.78.11.561.561%200%200%200%20.166-.696l-.058-.094-1.37-1.84L18.51%209.35a.443.443%200%200%200%20.122-.343.56.56%200%200%200-.163-.358.547.547%200%200%200-.383-.167.428.428%200%200%200-.24.071l-.067.055-1.554%201.574V8.97a.56.56%200%200%200-.556-.527zm-3.058-.038a.559.559%200%200%200-.557.453l-.011.112v3.83c.006.26.195.471.44.51l.093.006h1.787a.526.526%200%200%200%20.533-.517.523.523%200%200%200-.438-.509l-.095-.008H13.18V8.97a.568.568%200%200%200-.569-.565zM9.607%209.812l.557%201.601H9.05l.556-1.6z%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--qq {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20style%3D%22fill%3A%234d4d4d%3B%22%3E%0A%3Cg%20id%3D%22surface790955%22%3E%0A%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2216%22%20height%3D%2216%22%2F%3E%0A%3Cpath%20style%3D%22%20stroke%3Anone%3Bfill-rule%3Anonzero%3Bfill%3Argb(100%25%2C100%25%2C100%25)%3Bfill-opacity%3A1%3B%22%20d%3D%22M%207.5%202%20C%209.527344%202%2010.769531%203.519531%2010.769531%205.386719%20C%2010.769531%205.410156%2011.421875%205.902344%2011.179688%207.078125%20C%2011.996094%207.605469%2012.023438%209.28125%2012%209.75%20C%2011.992188%209.886719%2012%2010.375%2011.75%2010.5%20C%2011.703125%2010.523438%2011.65625%2010.53125%2011.609375%2010.53125%20C%2011.417969%2010.53125%2011.25%2010.351562%2011.171875%2010.316406%20C%2011.15625%2010.601562%2011.058594%2010.90625%2010.886719%2011.195312%20C%2011.035156%2011.378906%2011.179688%2011.636719%2011.179688%2011.941406%20C%2011.179688%2012.6875%2010.632812%2013%209.589844%2013%20C%208.746094%2013%207.839844%2012.523438%207.625%2012%20L%207.375%2012%20C%207.160156%2012.523438%206.253906%2013%205.410156%2013%20C%204.367188%2013%203.820312%2012.6875%203.820312%2011.941406%20C%203.820312%2011.628906%203.972656%2011.367188%204.121094%2011.183594%20C%203.949219%2010.898438%203.855469%2010.59375%203.84375%2010.308594%20C%203.757812%2010.347656%203.585938%2010.53125%203.386719%2010.53125%20C%203.34375%2010.53125%203.296875%2010.519531%203.25%2010.496094%20C%203%2010.375%203.007812%209.886719%203%209.75%20C%202.976562%209.28125%203.003906%207.605469%203.820312%207.078125%20C%203.578125%205.902344%204.230469%205.410156%204.230469%205.386719%20C%204.230469%203.519531%205.472656%202%207.5%202%20M%207.5%201%20C%205.148438%201%203.410156%202.667969%203.242188%205.015625%20C%202.90625%205.492188%202.746094%206.070312%202.769531%206.703125%20C%201.949219%207.730469%201.980469%209.421875%202%209.800781%20C%202.011719%2010.117188%202.039062%2011.011719%202.804688%2011.394531%20C%202.832031%2011.40625%202.859375%2011.421875%202.886719%2011.433594%20C%202.84375%2011.601562%202.820312%2011.769531%202.820312%2011.941406%20C%202.820312%2012.5625%203.074219%2014%205.410156%2014%20C%206.097656%2014%206.898438%2013.761719%207.5%2013.332031%20C%208.101562%2013.761719%208.902344%2014%209.589844%2014%20C%2011.925781%2014%2012.179688%2012.5625%2012.179688%2011.941406%20C%2012.179688%2011.769531%2012.15625%2011.601562%2012.113281%2011.433594%20C%2012.140625%2011.421875%2012.167969%2011.40625%2012.195312%2011.394531%20C%2012.960938%2011.011719%2012.988281%2010.117188%2012.996094%209.820312%20C%2013.015625%209.425781%2013.050781%207.730469%2012.230469%206.699219%20C%2012.253906%206.066406%2012.09375%205.488281%2011.757812%205.011719%20C%2011.589844%202.664062%209.851562%201%207.5%201%20Z%20M%207.5%201%20%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        background-size: 70%;
        background-position: 65% 60%;
    }

.icon--weibo {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2050%2050%22%20width%3D%2250px%22%20height%3D%2250px%22%3E%3Cpath%20d%3D%22M%2035%206%20C%2034.222656%206%2033.472656%206.078125%2032.75%206.207031%20C%2032.207031%206.300781%2031.84375%206.820313%2031.9375%207.363281%20C%2032.03125%207.910156%2032.550781%208.273438%2033.09375%208.179688%20C%2033.726563%208.066406%2034.359375%208%2035%208%20C%2041.085938%208%2046%2012.914063%2046%2019%20C%2046%2020.316406%2045.757813%2021.574219%2045.328125%2022.753906%20C%2045.195313%2023.09375%2045.253906%2023.476563%2045.484375%2023.757813%20C%2045.71875%2024.039063%2046.082031%2024.171875%2046.441406%2024.105469%20C%2046.800781%2024.039063%2047.09375%2023.78125%2047.207031%2023.4375%20C%2047.710938%2022.054688%2048%2020.566406%2048%2019%20C%2048%2011.832031%2042.167969%206%2035%206%20Z%20M%2035%2012%20C%2034.574219%2012%2034.171875%2012.042969%2033.789063%2012.109375%20C%2033.246094%2012.207031%2032.878906%2012.722656%2032.976563%2013.269531%20C%2033.070313%2013.8125%2033.589844%2014.175781%2034.132813%2014.082031%20C%2034.425781%2014.03125%2034.714844%2014%2035%2014%20C%2037.773438%2014%2040%2016.226563%2040%2019%20C%2040%2019.597656%2039.890625%2020.167969%2039.691406%2020.707031%20C%2039.503906%2021.226563%2039.773438%2021.800781%2040.292969%2021.988281%20C%2040.8125%2022.175781%2041.386719%2021.910156%2041.574219%2021.390625%20C%2041.84375%2020.648438%2042%2019.84375%2042%2019%20C%2042%2015.144531%2038.855469%2012%2035%2012%20Z%20M%2021.066406%2012.40625%20C%2017.855469%2012.40625%2013.070313%2014.925781%208.804688%2019.113281%20C%204.511719%2023.40625%202%2027.90625%202%2031.78125%20C%202%2039.3125%2011.628906%2043.8125%2021.152344%2043.8125%20C%2033.5%2043.8125%2041.765625%2036.699219%2041.765625%2031.046875%20C%2041.765625%2027.59375%2038.835938%2025.710938%2036.21875%2024.875%20C%2035.59375%2024.664063%2035.171875%2024.558594%2035.484375%2023.722656%20C%2035.695313%2023.21875%2036%2022.265625%2036%2021%20C%2036%2019.5625%2035%2018.316406%2033%2018.09375%20C%2032.769531%2018.070313%2032.378906%2018.050781%2031.886719%2018.050781%20C%2030.230469%2018.050781%2027.386719%2018.257813%2025.339844%2019.117188%20C%2025.339844%2019.117188%2024.9375%2019.285156%2024.613281%2019.285156%20C%2024.320313%2019.285156%2024.089844%2019.144531%2024.289063%2018.59375%20C%2025.023438%2016.292969%2024.917969%2014.410156%2023.765625%2013.359375%20C%2023.117188%2012.710938%2022.1875%2012.40625%2021.066406%2012.40625%20Z%20M%2021.066406%2014.40625%20C%2021.484375%2014.40625%2022.046875%2014.46875%2022.355469%2014.773438%20L%2022.386719%2014.808594%20L%2022.421875%2014.839844%20C%2022.871094%2015.25%2022.863281%2016.472656%2022.394531%2017.957031%20C%2021.992188%2019.117188%2022.367188%2019.921875%2022.632813%2020.296875%20C%2023.074219%2020.925781%2023.796875%2021.285156%2024.613281%2021.285156%20C%2025.277344%2021.285156%2025.890625%2021.054688%2026.109375%2020.960938%20C%2027.710938%2020.289063%2030.144531%2020.050781%2031.886719%2020.050781%20C%2032.332031%2020.050781%2032.644531%2020.066406%2032.78125%2020.082031%20C%2033.589844%2020.171875%2034%2020.480469%2034%2021%20C%2034%2021.941406%2033.773438%2022.632813%2033.640625%2022.957031%20L%2033.625%2022.988281%20L%2033.613281%2023.015625%20C%2033.300781%2023.855469%2033.304688%2024.617188%2033.625%2025.285156%20C%2034.097656%2026.273438%2035.027344%2026.582031%2035.527344%2026.75%20L%2035.609375%2026.777344%20C%2037.164063%2027.273438%2039.765625%2028.488281%2039.765625%2031.046875%20C%2039.765625%2033.34375%2037.785156%2036.179688%2034.269531%2038.363281%20C%2035.65625%2036.75%2036.441406%2034.859375%2036.441406%2032.824219%20C%2036.441406%2026.714844%2029.355469%2021.929688%2020.3125%2021.929688%20C%2011.269531%2021.929688%204.1875%2026.714844%204.1875%2032.824219%20C%204.1875%2033.011719%204.191406%2033.195313%204.203125%2033.378906%20C%204.070313%2032.867188%204%2032.332031%204%2031.78125%20C%204%2028.535156%206.207031%2024.539063%2010.203125%2020.542969%20C%2014.523438%2016.300781%2018.773438%2014.40625%2021.066406%2014.40625%20Z%20M%2020.3125%2023.933594%20C%2028.117188%2023.933594%2034.441406%2027.914063%2034.441406%2032.828125%20C%2034.441406%2037.738281%2028.117188%2041.71875%2020.3125%2041.71875%20C%2012.511719%2041.71875%206.1875%2037.738281%206.1875%2032.828125%20C%206.1875%2027.914063%2012.511719%2023.933594%2020.3125%2023.933594%20Z%20M%2019.265625%2026.023438%20C%2016.246094%2026.046875%2013.3125%2027.699219%2012.039063%2030.246094%20C%2010.46875%2033.484375%2011.933594%2037.042969%2015.699219%2038.191406%20C%2019.464844%2039.445313%2023.960938%2037.5625%2025.53125%2034.113281%20C%2027.097656%2030.769531%2025.113281%2027.214844%2021.347656%2026.277344%20C%2020.660156%2026.097656%2019.960938%2026.019531%2019.265625%2026.023438%20Z%20M%2020.824219%2030.25%20C%2021.402344%2030.25%2021.871094%2030.714844%2021.871094%2031.292969%20C%2021.871094%2031.871094%2021.402344%2032.339844%2020.824219%2032.339844%20C%2020.246094%2032.339844%2019.777344%2031.871094%2019.777344%2031.292969%20C%2019.777344%2030.714844%2020.246094%2030.25%2020.824219%2030.25%20Z%20M%2016.417969%2031.292969%20C%2016.746094%2031.296875%2017.074219%2031.347656%2017.382813%2031.453125%20C%2018.722656%2031.878906%2019.132813%2033.148438%2018.308594%2034.207031%20C%2017.589844%2035.265625%2015.945313%2035.792969%2014.707031%2035.265625%20C%2013.476563%2034.738281%2013.167969%2033.464844%2013.886719%2032.515625%20C%2014.425781%2031.71875%2015.429688%2031.28125%2016.417969%2031.292969%20Z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 70%;
    }

.icon--line {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2242%22%20height%3D%2242%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h42v42H0z%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M21%206C12.29705%206%205%2011.67833%205%2018.94727c0%206.4852%205.78406%2011.75277%2013.33594%2012.76562h.00195c.19879.04248.42756.11023.5625.17383.02758.013.0246.01414.03906.02344-.00264.08214.02293.46013-.01562.75-.0095.0561-.17325%201.02538-.20703%201.2168v.00195c-.04664.26694-.22286.8045.23242%201.49023.22764.34286.69911.62028%201.14062.6582.44152.03792.84667-.07119%201.29883-.26172%201.03507-.4288%203.10185-1.65023%205.48828-3.2832%202.38434-1.63154%204.95921-3.61104%206.64453-5.51172C35.81351%2024.50396%2037%2021.8435%2037%2018.94727%2037%2011.67923%2029.70303%206%2021%206z%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M19.99219%2014.99805C19.48838%2015.00739%2019%2015.39188%2019%2016v6c0%20.552.448%201%201%201s1-.448%201-1v-2.8789l2.18555%203.45898C23.75155%2023.37208%2025%2022.973%2025%2022v-6c0-.552-.448-1-1-1s-1%20.448-1%201v3l-2.18555-3.58008c-.21225-.297-.51998-.42748-.82226-.42187zM11%2015c-.552%200-1%20.448-1%201v6c0%20.552.448%201%201%201h3c.552%200%201-.448%201-1s-.448-1-1-1h-2v-5c0-.552-.448-1-1-1zM17%2015c-.552%200-1%20.448-1%201v6c0%20.552.448%201%201%201s1-.448%201-1v-6c0-.552-.448-1-1-1zM27%2015c-.552%200-1%20.448-1%201v6c0%20.552.448%201%201%201h3c.552%200%201-.448%201-1s-.448-1-1-1h-2v-1h2c.553%200%201-.448%201-1s-.447-1-1-1h-2v-1h2c.552%200%201-.448%201-1s-.448-1-1-1h-3z%22%20fill%3D%22%23FFF%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        background-size: 65%;
    }

.icon--visa {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2257%22%20height%3D%2257%22%20viewBox%3D%220%200%2047.834%2047.834%22%3E%3Cpath%20d%3D%22M44.688%2016.814h-3.004c-.933%200-1.627.254-2.037%201.184l-5.773%2013.074h4.083s.666-1.758.817-2.143l4.979.006c.116.498.474%202.137.474%202.137h3.607l-3.146-14.258zm-4.795%209.196c.32-.819%201.549-3.987%201.549-3.987-.021.039.317-.825.518-1.362l.262%201.23.901%204.119h-3.23zm-5.747.394c-.028%202.963-2.684%204.875-6.771%204.875-1.743-.018-3.422-.361-4.332-.76l.547-3.193.501.228c1.277.532%202.104.747%203.661.747%201.117%200%202.313-.438%202.325-1.393.007-.625-.501-1.07-2.016-1.77-1.476-.683-3.43-1.827-3.405-3.876.021-2.773%202.729-4.708%206.571-4.708%201.506%200%202.713.31%203.483.599l-.526%203.092-.351-.165a7.178%207.178%200%200%200-2.91-.546c-1.522%200-2.228.634-2.228%201.227-.008.668.824%201.108%202.184%201.77%202.247%201.015%203.284%202.252%203.267%203.873zM0%2016.962l.05-.286h6.028c.813.031%201.468.29%201.694%201.159l1.311%206.304C7.795%2020.842%204.691%2018.099%200%2016.962zm17.581-.15l-6.123%2014.239-4.114.007-3.482-11.897c2.503%201.602%204.635%204.144%205.386%205.914l.406%201.469%203.808-9.729%204.119-.003zm1.572-.012h3.89L20.61%2031.066h-3.888L19.153%2016.8z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--applepay {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%20512%20210.2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22m93.6%2027.1c-6%207.1-15.6%2012.7-25.2%2011.9-1.2-9.6%203.5-19.8%209-26.1%206-7.3%2016.5-12.5%2025-12.9%201%2010-2.9%2019.8-8.8%2027.1m8.7%2013.8c-13.9-.8-25.8%207.9-32.4%207.9-6.7%200-16.8-7.5-27.8-7.3-14.3.2-27.6%208.3-34.9%2021.2-15%2025.8-3.9%2064%2010.6%2085%207.1%2010.4%2015.6%2021.8%2026.8%2021.4%2010.6-.4%2014.8-6.9%2027.6-6.9%2012.9%200%2016.6%206.9%2027.8%206.7%2011.6-.2%2018.9-10.4%2026-20.8%208.1-11.8%2011.4-23.3%2011.6-23.9-.2-.2-22.4-8.7-22.6-34.3-.2-21.4%2017.5-31.6%2018.3-32.2-10-14.8-25.6-16.4-31-16.8m80.3-29v155.9h24.2v-53.3h33.5c30.6%200%2052.1-21%2052.1-51.4s-21.1-51.2-51.3-51.2zm24.2%2020.4h27.9c21%200%2033%2011.2%2033%2030.9s-12%2031-33.1%2031h-27.8zm129.8%20136.7c15.2%200%2029.3-7.7%2035.7-19.9h.5v18.7h22.4v-77.6c0-22.5-18-37-45.7-37-25.7%200-44.7%2014.7-45.4%2034.9h21.8c1.8-9.6%2010.7-15.9%2022.9-15.9%2014.8%200%2023.1%206.9%2023.1%2019.6v8.6l-30.2%201.8c-28.1%201.7-43.3%2013.2-43.3%2033.2%200%2020.2%2015.7%2033.6%2038.2%2033.6zm6.5-18.5c-12.9%200-21.1-6.2-21.1-15.7%200-9.8%207.9-15.5%2023-16.4l26.9-1.7v8.8c0%2014.6-12.4%2025-28.8%2025zm82%2059.7c23.6%200%2034.7-9%2044.4-36.3l42.5-119.2h-24.6l-28.5%2092.1h-.5l-28.5-92.1h-25.3l41%20113.5-2.2%206.9c-3.7%2011.7-9.7%2016.2-20.4%2016.2-1.9%200-5.6-.2-7.1-.4v18.7c1.4.4%207.4.6%209.2.6z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--paypal {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20viewBox%3D%220%200%2055%2060%22%20enable-background%3D%22new%200%200%2050%2060%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23009DE2%22%20d%3D%22M%2024.662%2018.109%20L%2037.647%2018.109%20C%2044.617%2018.109%2047.243%2021.638%2046.837%2026.831%20C%2046.169%2035.392%2040.994%2040.125%2034.128%2040.125%20L%2030.661%2040.125%20C%2029.721%2040.125%2029.088%2040.747%2028.831%2042.437%20L%2027.344%2052.251%20C%2027.247%2052.889%2026.912%2053.263%2026.408%2053.308%20L%2018.266%2053.308%20C%2017.5%2053.308%2017.227%2052.722%2017.428%2051.453%20L%2022.4%2019.972%20C%2022.601%2018.71%2023.291%2018.109%2024.662%2018.109%20Z%22%2F%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23113984%22%20d%3D%22M%2016.545%207.276%20L%2029.542%207.276%20C%2033.203%207.276%2037.545%207.395%2040.449%209.957%20C%2042.39%2011.668%2043.408%2014.394%2043.173%2017.321%20C%2042.376%2027.245%2036.439%2032.804%2028.478%2032.804%20L%2022.068%2032.804%20C%2020.977%2032.804%2020.254%2033.527%2019.946%2035.486%20L%2018.157%2046.865%20C%2018.041%2047.603%2017.721%2048.039%2017.136%2048.092%20L%209.13%2048.092%20C%208.241%2048.092%207.926%2047.412%208.158%2045.94%20L%2013.924%209.437%20C%2014.154%207.972%2014.954%207.276%2016.545%207.276%20Z%22%2F%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23172C70%22%20d%3D%22M%2020.131%2034.339%20L%2022.401%2019.971%20C%2022.601%2018.71%2023.291%2018.109%2024.662%2018.109%20L%2037.647%2018.109%20C%2039.796%2018.109%2041.533%2018.444%2042.895%2019.063%20C%2041.59%2027.896%2035.877%2032.803%2028.395%2032.803%20L%2021.985%2032.803%20C%2021.141%2032.804%2020.511%2033.235%2020.131%2034.339%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
    }

.icon--mastercard {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2244%22%20viewBox%3D%220%200%20291.791%20291.791%22%3E%3Cpath%20d%3D%22M182.298%20145.895c0%2050.366-40.801%2091.176-91.149%2091.176S0%20196.252%200%20145.895s40.811-91.176%2091.149-91.176%2091.149%2040.819%2091.149%2091.176z%22%20fill%3D%22%23E2574C%22%2F%3E%3Cpath%20d%3D%22M200.616%2054.719c-20.442%200-39.261%206.811-54.469%2018.181l.073.009c2.991%202.89%206.291%204.924%208.835%208.251l-18.965.301c-2.972%203-5.68%206.264-8.233%209.656H161.3c2.544%203.054%204.896%205.708%207.03%209.081h-46.536c-1.705%202.936-3.282%205.954-4.659%209.09h56.493c1.477%203.127%202.799%205.489%203.921%208.799h-63.76a87.809%2087.809%200%200%200-2.535%209.646h68.966c.675%203.155%201.194%206.072%201.55%209.045h-71.884c-.301%203-.456%206.045-.456%209.118h72.859c0%203.228-.228%206.218-.556%209.118h-71.847c.31%203.091.766%206.127%201.368%209.118h68.856a107.579%20107.579%200%200%201-2.562%209.008h-63.969c.966%203.118%202.143%206.145%203.428%209.099h56.621c-1.568%203.319-3.346%205.972-5.306%209.081h-46.691a88.709%2088.709%200%200%200%206.081%209.154l33.589.501c-2.863%203.437-6.537%205.507-9.884%208.516.182.146-5.352-.018-16.248-.191%2016.576%2017.105%2039.744%2027.772%2065.446%2027.772%2050.357%200%2091.176-40.82%2091.176-91.176s-40.81-91.177-91.175-91.177z%22%20fill%3D%22%23F4B459%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_feedback {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2073.4%2073.3%22%20style%3D%22enable-background%3Anew%200%200%2073.4%2073.3%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M71.9%2C8.9h-0.4c-3.3%2C0-5.9-2.7-5.9-5.9V1.2h-2.8l0.1%2C1.5V3C62.9%2C6.3%2C60.3%2C9%2C57%2C9h-0.6l-1.5-0.1v2.9l1.5-0.2H57%0D%0A%09%09c3.3%2C0%2C5.9%2C2.7%2C5.9%2C5.9v0.6l-0.1%2C1.5h2.9L65.6%2C18v-0.6c0-3.3%2C2.7-5.9%2C5.9-5.9h0.4l1.5%2C0.1V8.7L71.9%2C8.9z%20M64.3%2C12.9%0D%0A%09%09c-0.7-1.1-1.6-1.9-2.7-2.7c1-0.6%2C1.9-1.6%2C2.7-2.7c0.7%2C1.1%2C1.6%2C1.9%2C2.7%2C2.7C65.8%2C10.9%2C64.9%2C11.9%2C64.3%2C12.9z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M23.9%2C62.6h-0.4c-3.3%2C0-5.9-2.7-5.9-5.9V55h-2.8l0.1%2C1.5v0.4c0%2C3.3-2.7%2C5.9-5.9%2C5.9H8.3l-1.5-0.1v2.9l1.5-0.2%0D%0A%09%09h0.6c3.3%2C0%2C5.9%2C2.7%2C5.9%2C5.9v0.6l-0.1%2C1.5h2.9l-0.1-1.6v-0.6c0-3.3%2C2.7-5.9%2C5.9-5.9h0.4l1.5%2C0.1v-2.8L23.9%2C62.6z%20M16.2%2C66.6%0D%0A%09%09c-0.7-1.1-1.6-1.9-2.7-2.7c1-0.6%2C1.9-1.6%2C2.7-2.7c0.7%2C1.1%2C1.6%2C1.9%2C2.7%2C2.7C17.8%2C64.7%2C16.8%2C65.6%2C16.2%2C66.6z%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%222.7%22%20cy%3D%222.2%22%20rx%3D%222.2%22%20ry%3D%222.2%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2262.9%22%20cy%3D%2258%22%20rx%3D%222.2%22%20ry%3D%222.2%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M44%2C20v15.8c0%2C4.4-3.6%2C8-8%2C8H21.4c-0.5%2C0-1%2C0-1.5%2C0.1c1.4%2C1.8%2C3.6%2C3%2C6.1%2C3h15.9c4.2%2C0%2C7.6-3.4%2C7.6-7.6v-12%0D%0A%09%09%09C49.5%2C23.9%2C47.2%2C20.9%2C44%2C20z%22%2F%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%2399EAA8%22%20cx%3D%229.6%22%20cy%3D%2229%22%20rx%3D%221.9%22%20ry%3D%222.7%22%2F%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%2399EAA8%22%20cx%3D%2221.1%22%20cy%3D%2228.1%22%20rx%3D%221.7%22%20ry%3D%222.7%22%2F%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%2399EAA8%22%20cx%3D%2232.8%22%20cy%3D%2229%22%20rx%3D%221.6%22%20ry%3D%222.7%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M5%2C54.7c-0.1%2C0-0.3%2C0-0.4-0.1C4.2%2C54.5%2C4%2C54.1%2C4%2C53.7v-9c-2.3-0.5-4-2.5-4-4.9V19.7c0-5%2C4.1-9.1%2C9.1-9.1h28.4%0D%0A%09%09%09c4.1%2C0%2C7.4%2C3.3%2C7.4%2C7.4v17.8c0%2C5-4%2C9-9%2C9H21.4c-2.4%2C0-4.8%2C0.8-6.8%2C2.4l-9.1%2C7.3C5.4%2C54.7%2C5.2%2C54.7%2C5%2C54.7z%20M9.1%2C12.6%0D%0A%09%09%09c-3.9%2C0-7.1%2C3.2-7.1%2C7.1v20.1c0%2C1.6%2C1.3%2C3%2C3%2C3c0.6%2C0%2C1%2C0.4%2C1%2C1v7.8l7.4-6c2.3-1.8%2C5.1-2.8%2C8-2.8H36c3.9%2C0%2C7-3.1%2C7-7V18%0D%0A%09%09%09c0-3-2.4-5.4-5.4-5.4H9.1z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M50.4%2C59c-0.2%2C0-0.4-0.1-0.6-0.2l-12.1-8.1l-15.1-1.2c-0.5%2C0-1-0.5-0.9-1.1c0-0.5%2C0.5-1%2C1.1-0.9l15.4%2C1.2%0D%0A%09%09%09c0.2%2C0%2C0.3%2C0.1%2C0.5%2C0.2l10.7%2C7.2v-7.6c0-0.6%2C0.4-1%2C1-1H52c2.5%2C0%2C4.5-2%2C4.5-4.5V27.7c0-3.3-2.7-5.9-5.9-5.9h-2.3c-0.6%2C0-1-0.4-1-1%0D%0A%09%09%09s0.4-1%2C1-1h2.3c4.4%2C0%2C7.9%2C3.5%2C7.9%2C7.9v15.2c0%2C3.6-2.9%2C6.5-6.5%2C6.5h-0.5V58c0%2C0.4-0.2%2C0.7-0.5%2C0.9C50.8%2C58.9%2C50.6%2C59%2C50.4%2C59z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M10.4%2C32.8c-2%2C0-3.7-1.7-3.7-3.7c0-2%2C1.7-3.7%2C3.7-3.7s3.7%2C1.7%2C3.7%2C3.7C14.1%2C31.1%2C12.5%2C32.8%2C10.4%2C32.8z%0D%0A%09%09%09%20M10.4%2C27.3c-0.9%2C0-1.7%2C0.8-1.7%2C1.7s0.8%2C1.7%2C1.7%2C1.7s1.7-0.8%2C1.7-1.7S11.4%2C27.3%2C10.4%2C27.3z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M22.2%2C31.9c-2%2C0-3.7-1.7-3.7-3.7c0-2%2C1.7-3.7%2C3.7-3.7c2%2C0%2C3.7%2C1.7%2C3.7%2C3.7C25.9%2C30.2%2C24.2%2C31.9%2C22.2%2C31.9z%0D%0A%09%09%09%20M22.2%2C26.4c-0.9%2C0-1.7%2C0.8-1.7%2C1.7s0.8%2C1.7%2C1.7%2C1.7s1.7-0.8%2C1.7-1.7S23.1%2C26.4%2C22.2%2C26.4z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M34%2C32.8c-2%2C0-3.7-1.7-3.7-3.7c0-2%2C1.7-3.7%2C3.7-3.7c2%2C0%2C3.7%2C1.7%2C3.7%2C3.7C37.7%2C31.1%2C36%2C32.8%2C34%2C32.8z%20M34%2C27.3%0D%0A%09%09%09c-0.9%2C0-1.7%2C0.8-1.7%2C1.7s0.8%2C1.7%2C1.7%2C1.7s1.7-0.8%2C1.7-1.7S34.9%2C27.3%2C34%2C27.3z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
        position: relative;
        left: 10px;
    }

.icon--upgrade {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20enable-background%3D%22new%200%200%20100%20100%22%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22m19.4%2076.8v-29.6h52v29.6%22%20fill%3D%22%2399eaa8%22%2F%3E%3Cg%20fill%3D%22%23525252%22%3E%3Cpath%20d%3D%22m75.1%2076.6c-.6%200-1-.4-1-1v-31.1h-52.4v31.2c0%20.6-.4%201-1%201s-1-.4-1-1v-32.2c0-.6.4-1%201-1h54.4c.6%200%201%20.4%201%201v32.2c0%20.5-.5.9-1%20.9z%22%2F%3E%3Cpath%20d%3D%22m81.9%2076.6c-.6%200-1-.4-1-1v-35.1c0-1.2-1-2.2-2.2-2.2h-61.6c-1.2%200-2.2%201-2.2%202.2v35.1c0%20.6-.4%201-1%201s-1-.4-1-1v-35.1c0-2.3%201.9-4.2%204.2-4.2h61.5c2.3%200%204.2%201.9%204.2%204.2v35.1c.1.6-.4%201-.9%201z%22%2F%3E%3Cpath%20d%3D%22m85%2086.5h-73c-2.9%200-5.3-2.4-5.3-5.3v-4.8c0-1%20.8-1.8%201.8-1.8h80c1%200%201.8.8%201.8%201.8v4.8c0%202.9-2.4%205.3-5.3%205.3zm-76.3-9.9v4.6c0%201.8%201.5%203.3%203.3%203.3h73c1.8%200%203.3-1.5%203.3-3.3v-4.6z%22%2F%3E%3Ccircle%20cx%3D%2247.9%22%20cy%3D%2240.4%22%20r%3D%221.1%22%2F%3E%3Cpath%20d%3D%22m56.2%2081.6h-15.4c-3.2%200-5.7-1.8-5.7-4.1v-1.8c0-.6.4-1%201-1s1%20.4%201%201v1.8c0%201%201.5%202.1%203.7%202.1h15.3c2.2%200%203.7-1.1%203.7-2.1v-1.8c0-.6.4-1%201-1s1%20.4%201%201v1.8c.1%202.2-2.4%204.1-5.6%204.1z%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m59.5%2011.5h23.7c2.2%200%203.9%201.8%203.9%203.9v48.8c0%202.2-1.8%203.9-3.9%203.9h-23.7c-2.2%200-3.9-1.8-3.9-3.9v-48.8c0-2.1%201.7-3.9%203.9-3.9z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22m83.2%2069.1h-23.7c-2.7%200-4.9-2.2-4.9-4.9v-48.8c0-2.7%202.2-4.9%204.9-4.9h23.7c2.7%200%204.9%202.2%204.9%204.9v48.8c0%202.7-2.2%204.9-4.9%204.9zm-23.7-56.6c-1.6%200-2.9%201.3-2.9%202.9v48.8c0%201.6%201.3%202.9%202.9%202.9h23.7c1.6%200%202.9-1.3%202.9-2.9v-48.8c0-1.6-1.3-2.9-2.9-2.9z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m59.9%2024.6h19.6v33.7h-19.6z%22%20fill%3D%22%2399eaa8%22%2F%3E%3Cpath%20d%3D%22m82.8%2059.3h-22.9c-.6%200-1-.4-1-1v-37c0-.6.4-1%201-1h22.9c.6%200%201%20.4%201%201v37c0%20.5-.5%201-1%201zm-21.9-2h20.9v-35h-20.9z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m73.1%2018h-3.5c-.8%200-1.5-.7-1.5-1.5v-.3c0-.8.7-1.5%201.5-1.5h3.5c.8%200%201.5.7%201.5%201.5v.3c0%20.9-.7%201.5-1.5%201.5z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m73.1%2065.8h-3.5c-1.4%200-2.5-1.1-2.5-2.5v-.3c0-1.4%201.1-2.5%202.5-2.5h3.5c1.4%200%202.5%201.1%202.5%202.5v.3c0%201.4-1.1%202.5-2.5%202.5zm-3.5-3.2c-.3%200-.5.2-.5.5v.3c0%20.3.2.5.5.5h3.5c.3%200%20.5-.2.5-.5v-.3c0-.3-.2-.5-.5-.5z%22%20fill%3D%22%23525252%22%2F%3E%3Cellipse%20cx%3D%2290.7%22%20cy%3D%2290.7%22%20fill%3D%22%232a2a2a%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cpath%20d%3D%22m8.7%2016.3h.3c2.7%200%204.9%202.2%204.9%204.9v1.4h2.3l-.1-1.2v-.3c0-2.7%202.2-4.9%204.9-4.9h.5l1.2.1v-2.4l-1.2.2h-.5c-2.7%200-4.9-2.2-4.9-4.9v-.5l.1-1.2h-2.4l.1%201.3v.5c0%202.7-2.2%204.9-4.9%204.9h-.3l-1.2-.1v2.3zm6.3-3.3c.6.9%201.3%201.6%202.2%202.2-.8.5-1.6%201.3-2.2%202.2-.6-.9-1.3-1.6-2.2-2.2.9-.6%201.7-1.4%202.2-2.2z%22%20fill%3D%22%234e4e4e%22%2F%3E%3Cellipse%20cx%3D%2228.9%22%20cy%3D%2220.7%22%20fill%3D%22%232a2a2a%22%20rx%3D%221.8%22%20ry%3D%221.8%22%20transform%3D%22matrix(.2361%20-.9717%20.9717%20.2361%201.9846%2043.8795)%22%2F%3E%3Cellipse%20cx%3D%2218.5%22%20cy%3D%2228.8%22%20fill%3D%22%232a2a2a%22%20rx%3D%221.8%22%20ry%3D%221.8%22%20transform%3D%22matrix(.2361%20-.9717%20.9717%20.2361%20-13.8611%2039.9678)%22%2F%3E%3C%2Fsvg%3E");
        position: relative;
    }

.icon--bonus {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22%D0%A1%D0%BB%D0%BE%D0%B9_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20100%20100%22%20style%3D%22%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st0%7Bfill%3A%23FFFFFF%3B%7D%0D%0A%09.st1%7Bfill%3A%2399EAA8%3B%7D%0D%0A%09.st2%7Bfill%3A%23525252%3B%7D%0D%0A%09.st3%7Bfill%3A%232A2A2A%3B%7D%0D%0A%09.st4%7Bfill%3A%234E4E4E%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M25.5%2C38.1v43.6c0%2C1.7%2C1.4%2C3.1%2C3.1%2C3.1h47.7c1.7%2C0%2C3.1-1.4%2C3.1-3.1l1-43.6%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M25.6%2C38.1l19.9%2C0.7c5%2C0.2%2C10.1%2C0.2%2C15.1%2C0l19.9-0.7c1.4%2C0%2C2.6-1.2%2C2.6-2.7v-5.4c0-1.5-1.2-2.6-2.6-2.7%0D%0A%09%09l-27.9-0.3c-4.4%2C0-8.7%2C0.1-13.1%2C0.3l-13.9%2C0.8C24.1%2C28.4%2C23%2C29.6%2C23%2C31v4.5C23%2C36.9%2C24.1%2C38.1%2C25.6%2C38.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st1%22%20d%3D%22M47.1%2C27.2c0%2C0-2%2C54.4-0.8%2C57.6h13.5c0%2C0%2C0.7-52.5%2C0.5-57.5L47.1%2C27.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st1%22%20d%3D%22M25.5%2C62c0%2C0%2C51.6%2C2%2C54.6%2C0.8V49.3c0%2C0-49.8-0.7-54.6-0.5L25.5%2C62z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st2%22%20d%3D%22M76.4%2C85.8H28.6c-2.3%2C0-4.1-1.9-4.1-4.1V38.1c0-0.6%2C0.4-1%2C1-1s1%2C0.4%2C1%2C1v43.6c0%2C1.2%2C1%2C2.1%2C2.1%2C2.1h47.7%0D%0A%09%09c1.2%2C0%2C2.1-1%2C2.1-2.1l1-43.6c0-0.6%2C0.5-1%2C1-1c0.6%2C0%2C1%2C0.5%2C1%2C1l-1%2C43.6C80.5%2C84%2C78.6%2C85.8%2C76.4%2C85.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st2%22%20d%3D%22M53%2C39.9c-2.5%2C0-5.1%2C0-7.6-0.1l-19.9-0.7c-2-0.1-3.5-1.7-3.5-3.7V31c0-1.9%2C1.5-3.5%2C3.4-3.6l13.9-0.8%0D%0A%09%09c4.4-0.3%2C8.8-0.4%2C13.2-0.3l27.9%2C0.3c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7v5.4c0%2C2-1.6%2C3.6-3.5%2C3.7l-19.9%2C0.7C58.1%2C39.9%2C55.5%2C39.9%2C53%2C39.9z%0D%0A%09%09%20M50.6%2C28.1c-3.7%2C0-7.5%2C0.1-11.1%2C0.3l-13.9%2C0.8C24.7%2C29.4%2C24%2C30.1%2C24%2C31v4.5c0%2C0.9%2C0.7%2C1.6%2C1.6%2C1.7l0%2C0l19.9%2C0.7c5%2C0.2%2C10%2C0.2%2C15%2C0%0D%0A%09%09l19.9-0.7c0.9%2C0%2C1.6-0.8%2C1.6-1.7v-5.4c0-0.9-0.7-1.6-1.6-1.7l-27.9-0.3C51.9%2C28.1%2C51.2%2C28.1%2C50.6%2C28.1z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M66.7%2C50.7c0%2C0-5.6-3.3-13.7-3.3c-3%2C0-5.7%2C0.5-7.9%2C1c-0.5%2C0.1-1.1%2C0.3-1.5%2C0.4c-0.2%2C0.1-0.3%2C0.1-0.5%2C0.2%0D%0A%09%09%09c-0.3%2C0.1-0.6%2C0.2-0.9%2C0.3c-0.1%2C0.1-0.3%2C0.1-0.4%2C0.1c-0.5%2C0.2-0.9%2C0.4-1.3%2C0.5c-0.1%2C0-0.2%2C0.1-0.3%2C0.1c-0.7%2C0.3-1%2C0.5-1%2C0.5%0D%0A%09%09%09c0%2C0.2-1.2%2C10%2C5.8%2C18.4c0.6%2C0.7%2C1.2%2C1.3%2C1.8%2C2s1.4%2C1.3%2C2.2%2C1.9c1.2%2C0.9%2C2.5%2C1.8%2C4%2C2.6C68.7%2C67%2C66.7%2C50.9%2C66.7%2C50.7z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st2%22%20d%3D%22M53%2C76.5c-0.2%2C0-0.3%2C0-0.5-0.1c-1.5-0.8-2.8-1.7-4.1-2.7c-0.8-0.6-1.6-1.3-2.3-2c-0.7-0.7-1.3-1.3-1.9-2.1%0D%0A%09%09%09c-6.6-8-6.2-17.3-6-19.1c0-0.3%2C0.2-0.7%2C0.5-0.8c0%2C0%2C0.4-0.2%2C1.1-0.6l0.3-0.1c0.4-0.2%2C0.8-0.4%2C1.4-0.6l0.4-0.2%0D%0A%09%09%09c0.3-0.1%2C0.6-0.2%2C0.9-0.3l0.5-0.2c0.5-0.2%2C1-0.3%2C1.6-0.5c2.7-0.7%2C5.4-1.1%2C8.2-1.1c8.3%2C0%2C14%2C3.3%2C14.2%2C3.4c0.3%2C0.2%2C0.5%2C0.5%2C0.5%2C0.8%0D%0A%09%09%09c0.3%2C2.9%2C0.7%2C17.6-14.2%2C25.8C53.3%2C76.5%2C53.2%2C76.5%2C53%2C76.5z%20M40.2%2C51.3c-0.1%2C2.4-0.1%2C10.3%2C5.6%2C17.2c0.5%2C0.7%2C1.1%2C1.3%2C1.8%2C1.9%0D%0A%09%09%09c0.6%2C0.6%2C1.4%2C1.2%2C2.1%2C1.8c1%2C0.8%2C2.2%2C1.6%2C3.3%2C2.2c12.7-7.3%2C13-19.6%2C12.8-23.1c-1.5-0.7-6.3-2.9-12.8-2.9c-2.6%2C0-5.1%2C0.3-7.7%2C1%0D%0A%09%09%09c-0.5%2C0.1-1%2C0.3-1.5%2C0.4L43.4%2C50c-0.3%2C0.1-0.6%2C0.2-0.8%2C0.3l-0.4%2C0.1c-0.5%2C0.2-0.9%2C0.4-1.3%2C0.5L40.7%2C51%0D%0A%09%09%09C40.5%2C51.1%2C40.4%2C51.2%2C40.2%2C51.3z%20M67.7%2C50.6L67.7%2C50.6L67.7%2C50.6z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cpath%20class%3D%22st1%22%20d%3D%22M52.8%2C61.5l-2.4-2.7c-0.6-0.7-1.5-0.9-2.4-0.6l-0.9%2C0.3l5.6%2C6.8l7.9-10.6c0.1-0.1%2C0-0.2-0.1-0.2l-0.1%2C0%0D%0A%09%09c-0.5-0.1-0.9%2C0.1-1.2%2C0.4L52.8%2C61.5z%22%2F%3E%0D%0A%09%3Cellipse%20class%3D%22st3%22%20cx%3D%2293.6%22%20cy%3D%2252.6%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cellipse%20transform%3D%22matrix(0.2361%20-0.9717%200.9717%200.2361%20-71.661%2095.7523)%22%20class%3D%22st3%22%20cx%3D%2225.1%22%20cy%3D%2293.5%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%09%3Cellipse%20transform%3D%22matrix(0.2361%20-0.9717%200.9717%200.2361%20-67.7493%2079.9066)%22%20class%3D%22st3%22%20cx%3D%2216.9%22%20cy%3D%2283%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cpath%20class%3D%22st4%22%20d%3D%22M16%2C11h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V4.7H8.5l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H3.2L2%2C11v2.4l1.2-0.2h0.5%0D%0A%09%09c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3V18c0-2.7%2C2.2-4.9%2C4.9-4.9H16l1.2%2C0.1v-2.3L16%2C11z%20M9.7%2C14.3%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C11%2C12.7%2C10.2%2C13.5%2C9.7%2C14.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st4%22%20d%3D%22M96.8%2C81.9h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9v-1.4h-2.3l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H84l-1.2-0.1v2.4l1.2-0.2%0D%0A%09%09h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1v-2.3L96.8%2C81.9z%20M90.5%2C85.2%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C91.8%2C83.6%2C91%2C84.4%2C90.5%2C85.2z%22%2F%3E%0D%0A%09%3Cpolyline%20class%3D%22st1%22%20points%3D%2247%2C29.5%2047.2%2C25.5%2060.1%2C25.5%2060.4%2C29.3%20%09%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st1%22%20d%3D%22M81.6%2C21.2L78.7%2C15c0%2C0%2C0.6%2C13-21.5%2C7.5c0%2C0%2C19-5.7%2C13.9-14.3S55%2C10.4%2C53%2C17.7c-2-7.3-13.1-18.1-18.2-9.5%0D%0A%09%09s13.9%2C14.3%2C13.9%2C14.3C26.7%2C28%2C27.3%2C15%2C27.3%2C15l-2.9%2C6.2l-5.5-2.6c3.6%2C21.3%2C30%2C8.7%2C30%2C8.7h8.3c0%2C0%2C26.4%2C12.6%2C30-8.7L81.6%2C21.2z%0D%0A%09%09%20M39.3%2C11.2c2.2-4.5%2C10.4%2C4.6%2C11.2%2C8.4C50.5%2C19.6%2C37.1%2C15.7%2C39.3%2C11.2z%20M55.5%2C19.6c0.9-3.8%2C9-12.9%2C11.2-8.4%0D%0A%09%09C68.9%2C15.7%2C55.5%2C19.6%2C55.5%2C19.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st2%22%20d%3D%22M72.5%2C32c-7.7%2C0-15.4-3.6-15.8-3.8c-0.5-0.2-0.7-0.8-0.5-1.3c0.2-0.5%2C0.8-0.7%2C1.3-0.5c0.1%2C0.1%2C13.7%2C6.4%2C22.2%2C2%0D%0A%09%09c2.9-1.5%2C4.9-4.2%2C6-8.1l-3.6%2C1.7c-0.2%2C0.1-0.5%2C0.1-0.8%2C0c-0.3-0.1-0.5-0.3-0.6-0.5l-1.6-3.4c-0.5%2C1.3-1.3%2C2.7-2.8%2C3.9%0D%0A%09%09C72.5%2C25.3%2C66%2C25.7%2C57%2C23.4c-0.4-0.1-0.7-0.5-0.8-0.9c0-0.4%2C0.3-0.9%2C0.7-1c0.1%2C0%2C11.7-3.6%2C13.8-8.9c0.5-1.3%2C0.4-2.6-0.4-4%0D%0A%09%09c-1.2-2-2.8-2.9-4.8-2.6C60.9%2C6.6%2C55.3%2C13.1%2C54%2C17.9c-0.1%2C0.4-0.5%2C0.7-1%2C0.7s-0.8-0.3-1-0.7C50.7%2C13.1%2C45.1%2C6.6%2C40.4%2C6%0D%0A%09%09c-2-0.3-3.6%2C0.6-4.8%2C2.6c-0.8%2C1.4-0.9%2C2.6-0.4%2C4c1.7%2C4.4%2C10.5%2C7.9%2C13.8%2C8.9c0.4%2C0.1%2C0.7%2C0.5%2C0.7%2C1c0%2C0.4-0.3%2C0.8-0.8%2C0.9%0D%0A%09%09c-9%2C2.3-15.5%2C1.8-19.4-1.3c-1.5-1.2-2.3-2.6-2.8-3.9l-1.6%2C3.4c-0.1%2C0.2-0.3%2C0.4-0.6%2C0.5c-0.3%2C0.1-0.5%2C0.1-0.8%2C0l-3.6-1.7%0D%0A%09%09c1%2C3.8%2C3%2C6.6%2C6%2C8.1c8.5%2C4.4%2C22-2%2C22.2-2.1c0.5-0.2%2C1.1%2C0%2C1.3%2C0.5c0.2%2C0.5%2C0%2C1.1-0.5%2C1.3c-0.6%2C0.3-14.6%2C6.9-23.9%2C2%0D%0A%09%09c-4-2.1-6.5-5.9-7.4-11.5c-0.1-0.4%2C0.1-0.7%2C0.4-1c0.3-0.2%2C0.7-0.3%2C1-0.1l4.6%2C2.2l2.5-5.3c0.2-0.4%2C0.7-0.7%2C1.1-0.5%0D%0A%09%09c0.5%2C0.1%2C0.8%2C0.5%2C0.8%2C1c0%2C0.1-0.1%2C3.3%2C2.7%2C5.5c2.8%2C2.3%2C7.7%2C2.8%2C14.2%2C1.6c-3.9-1.6-10.1-4.6-11.7-8.9c-0.7-1.9-0.6-3.8%2C0.5-5.7%0D%0A%09%09c2-3.5%2C4.8-3.9%2C6.7-3.6c4.7%2C0.6%2C9.9%2C5.9%2C12.3%2C10.8C55.4%2C9.9%2C60.6%2C4.7%2C65.3%2C4c2-0.3%2C4.7%2C0.2%2C6.7%2C3.6c1.1%2C1.9%2C1.3%2C3.8%2C0.5%2C5.7%0D%0A%09%09c-1.7%2C4.3-7.8%2C7.3-11.7%2C8.9c6.5%2C1.2%2C11.4%2C0.6%2C14.2-1.6c2.8-2.2%2C2.7-5.4%2C2.7-5.5c0-0.5%2C0.3-0.9%2C0.8-1c0.5-0.1%2C0.9%2C0.1%2C1.1%2C0.5%0D%0A%09%09l2.5%2C5.3l4.6-2.2c0.3-0.2%2C0.7-0.1%2C1%2C0.1c0.3%2C0.2%2C0.4%2C0.6%2C0.4%2C1c-0.9%2C5.5-3.4%2C9.4-7.4%2C11.5C78.2%2C31.5%2C75.3%2C32%2C72.5%2C32z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st2%22%20d%3D%22M57.1%2C28.3c-0.1%2C0-0.3%2C0-0.4-0.1l-2.9-1.4c-0.5-0.3-1.1-0.3-1.7%2C0l-2.9%2C1.4c-0.5%2C0.2-1.1%2C0-1.3-0.5%0D%0A%09%09c-0.2-0.5%2C0-1.1%2C0.5-1.3l2.9-1.4c1.1-0.5%2C2.3-0.5%2C3.4%2C0l2.9%2C1.4c0.5%2C0.2%2C0.7%2C0.8%2C0.5%2C1.3C57.9%2C28.1%2C57.5%2C28.3%2C57.1%2C28.3z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
        position: relative;
    }

.icon_github {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2093.1%2063.1%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cellipse%20fill%3D%22%234e4e4e%22%20cx%3D%221.8%22%20cy%3D%2219.5%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cellipse%20fill%3D%22%234e4e4e%22%20cx%3D%2284.5%22%20cy%3D%2257%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M86.9%2015.1h-2.4l.1-1.2v-.5c0-2.7-2.2-4.9-4.9-4.9h-.5l-1.2.2V6.3l1.2.1h.5c2.7%200%204.9-2.2%204.9-4.9v-.3L84.5%200h2.3V1.4c0%202.7%202.2%204.9%204.9%204.9h.3l1.2-.1v2.3L92%208.4h-.3c-2.7%200-4.9%202.2-4.9%204.9v.5l.1%201.3zm-3.4-7.7c.9.6%201.6%201.3%202.2%202.2.5-.8%201.3-1.6%202.2-2.2-.9-.6-1.6-1.3-2.2-2.2-.6.9-1.4%201.7-2.2%202.2zm-31%2055.7h-23c-12.1%200-21.9-12.2-22.3-22.7-.3-9.2.7-13.6%204.1-18.1-.6-2.8-.9-5.2-.9-7.1%200-1.9.2-3.8.5-5.5l.3-1.2.2-.9%201.7.1c1.3.1%202.5.3%203.6.4%201.6.3%202.9.5%203.8.9%201.6.6%202.6%201.3%203.7%202.3l1.1%201%20.6.6c2-.4%208.6-1%2013.6-1%205.4%200%2013.1.3%2014.5.5.2-.2.7-.6%201-.9l.3-.2c.2-.2.4-.3.5-.4.8-.6%201.7-1.2%203.1-1.9.9-.4%202.1-.8%203.8-1%201.1-.2%202.3-.3%203.6-.4H68l.2.8.3%201.2c.4%201.7.5%203.6.5%205.5%200%201.6-.2%203.5-.6%205.7.8.9.9%201.1%201.2%201.4%203.7%204.5%204.8%208.5%204.8%2017.4%200%2012.8-10%2023.5-21.9%2023.5zM13.1%209.9v.2c-.3%201.6-.5%203.3-.5%205.1%200%201.8.3%204%20.8%206.7l.2%201-.6.7c-3.1%204.1-4%208.1-3.7%2016.7.3%209.3%209.4%2020.6%2020.1%2020.6h23c10.7%200%2019.8-9.7%2019.8-21.3%200-9.2-1.3-12.4-4.3-16-.3-.4-.4-.5-1.2-1.4l-.7-.8.2-1c.4-2.1.6-3.9.6-5.4%200-1.8-.2-3.5-.5-5.1%200-.1%200-.2-.1-.3-1.1.2-2.2.4-3.2.5-1.7.3-2.7.6-3.1.8-1.3.6-2%201.1-2.7%201.6-.2.1-.3.2-.5.4l-.2.2c-.3.3-.8.7-1%20.9l-.8.7-1-.2c-1-.2-8.3-.5-14.1-.5-4.7%200-11.2.6-13.1%201l-1%20.2-.8-.7c-.2-.2-.5-.4-.7-.6-.3-.2-.5-.4-.6-.6-1.3-1.3-2.1-1.8-3.5-2.3-.7-.3-1.9-.5-3.3-.8-1.2-.1-2.3-.2-3.5-.3z%22%2F%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M14.4%2041.8c.2-6.8%206.6-12%2014.4-11.7l12.7.5%2011-.6c7.7-.4%2014%205.5%2014%2010.7%200%200%20.1.4%200%200s.1%201.2.1%201.2c.7%207.7-4.9%2014.6-12.6%2015.3%200%200-9.1%201-12.3.9-4.4-.2-13-.8-13-.8-7.7-.5-14.2-7.3-14.3-15v-.5c0%20.1%200%200%200%200z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M26.6%2051.9c-3.8%200-6.8-3.9-6.8-8.6s3.1-8.7%206.8-8.7%206.8%203.9%206.8%208.7-3%208.6-6.8%208.6zm0-15.1c-2.6%200-4.7%202.9-4.7%206.5s2.1%206.5%204.7%206.5%204.7-2.9%204.7-6.5-2.1-6.5-4.7-6.5zm29.5%2015.1c-3.8%200-6.8-3.9-6.8-8.6s3.1-8.7%206.8-8.7%206.8%203.9%206.8%208.7-3.1%208.6-6.8%208.6zm0-15.1c-2.6%200-4.7%202.9-4.7%206.5s2.1%206.5%204.7%206.5%204.7-2.9%204.7-6.5c-.1-3.6-2.2-6.5-4.7-6.5zM40.6%2053.3c-1.6%200-2.9-1.3-2.9-2.9s1.3-2.9%202.9-2.9%202.9%201.3%202.9%202.9-1.3%202.9-2.9%202.9zm0-3.6c-.4%200-.7.3-.7.7s.3.7.7.7.7-.3.7-.7-.3-.7-.7-.7z%22%2F%3E%3C%2Fsvg%3E");
        position: relative;
        left: 10px;
    }

.icon_new-qa {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2081.2%2070.6%22%20style%3D%22enable-background%3Anew%200%200%2081.2%2070.6%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M70.5%2C50.6c-3.9%2C0-7.3%2C3.2-7.3%2C7.3c0%2C4.1%2C3.2%2C7.3%2C7.3%2C7.3s7.3-3.2%2C7.3-7.3C77.7%2C53.8%2C74.4%2C50.6%2C70.5%2C50.6z%0D%0A%09%09%20M70.5%2C62.4c-2.6%2C0-4.8-2.1-4.8-4.6c0-2.5%2C2.1-4.6%2C4.8-4.6s4.8%2C2.1%2C4.8%2C4.6C75.2%2C60.2%2C73.1%2C62.4%2C70.5%2C62.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%233F3F3F%22%20d%3D%22M8.6%2C37.8l4.8-4.8c0.5-0.5%2C0.5-1.3%2C0-1.8s-1.3-0.5-1.8%2C0L6.8%2C36l-4.6-4.5c-0.5-0.5-1.3-0.5-1.8%2C0%0D%0A%09%09s-0.5%2C1.3%2C0%2C1.8L5%2C37.8l-4.6%2C4.5c-0.5%2C0.5-0.5%2C1.3%2C0%2C1.8c0.2%2C0.2%2C0.6%2C0.4%2C1%2C0.4s0.6-0.1%2C1-0.4l4.6-4.5l4.8%2C4.8%0D%0A%09%09c0.2%2C0.2%2C0.6%2C0.4%2C1%2C0.4s0.7-0.1%2C1-0.4c0.5-0.5%2C0.5-1.3%2C0-1.8L8.6%2C37.8L8.6%2C37.8z%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2275.3%22%20cy%3D%222.1%22%20rx%3D%222.1%22%20ry%3D%222.1%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M27.3%2C49.4c-0.5%2C0.4-0.9%2C0.8-1.3%2C1.4c-0.3%2C0.4-0.6%2C1-0.7%2C1.6c-0.3%2C1.2%2C0%2C2.7%2C0.6%2C3.6c0.6%2C0.8%2C1.6%2C0.9%2C2.3%2C0.3%0D%0A%09%09%09c0.7-0.6%2C1.2-1.9%2C1.2-3.2c0-0.9-0.1-1.8-0.5-2.4c-0.4-0.7-0.9-1-1.4-0.8%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M46.3%2C9.1c0%2C0-30.7%2C7.8-30.3%2C10.1c0.5%2C2.2%2C24.7%2C11.3%2C27.9%2C11.8C47.2%2C31.4%2C73.6%2C20%2C73.6%2C20L46.3%2C9.1z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M43.9%2C36.7c-0.1%2C0-0.2%2C0-0.3%2C0C40.4%2C36.2%2C9.1%2C23.6%2C8.4%2C19.6c-0.2-1.2-0.5-2.8%2C19.1-9.3%0D%0A%09%09%09c9.3-3.1%2C18.8-5.8%2C18.9-5.8c0.2-0.1%2C0.5%2C0%2C0.7%2C0l33.6%2C15.2c0.4%2C0.2%2C0.6%2C0.5%2C0.6%2C0.9c0%2C0.4-0.2%2C0.7-0.6%2C0.9%0D%0A%09%09%09C75.3%2C24.1%2C48.9%2C36.7%2C43.9%2C36.7z%20M10.4%2C19.4c2.2%2C3%2C29.4%2C14.7%2C33.4%2C15.4c2.5%2C0.4%2C21.4-8.1%2C34-14.2L46.5%2C6.5%0D%0A%09%09%09C30%2C11.2%2C12.4%2C17.2%2C10.4%2C19.4z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M46.6%2C49.8c-8%2C0-16.6-3.9-21-6.3c-2.3-1.2-3.8-3.7-3.8-6.3v-9.8c0-0.6%2C0.4-1%2C1-1s1%2C0.4%2C1%2C1v9.8%0D%0A%09%09%09c0%2C1.9%2C1%2C3.6%2C2.7%2C4.5c4.2%2C2.3%2C12.5%2C6.1%2C20.1%2C6.1c7.6%2C0%2C14.2-4.4%2C17.5-7c1.3-1%2C2-2.5%2C2-4.1v-10c0-0.6%2C0.4-1%2C1-1s1%2C0.4%2C1%2C1v10%0D%0A%09%09%09c0%2C2.2-1%2C4.3-2.7%2C5.6C61.9%2C45.1%2C54.8%2C49.8%2C46.6%2C49.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M28.5%2C49.8c-0.5%2C0-0.9-0.4-1-0.9c-1.1-10.3%2C0.7-18.1%2C5.2-23.3c5.1-5.8%2C11.7-6%2C12-6c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09c0.5%2C0%2C1%2C0.4%2C1%2C1c0%2C0.6-0.4%2C1-1%2C1c-0.1%2C0-6.1%2C0.3-10.6%2C5.4c-4.1%2C4.7-5.7%2C12.1-4.7%2C21.7c0.1%2C0.5-0.3%2C1-0.9%2C1.1%0D%0A%09%09%09C28.6%2C49.8%2C28.5%2C49.8%2C28.5%2C49.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M27.9%2C70.6c-1.7%2C0-2.8-0.4-3.5-1.2c-1.8-2.5%2C1.8-10.4%2C2.9-12.7c0.2-0.5%2C0.8-0.7%2C1.3-0.5%0D%0A%09%09%09c0.5%2C0.2%2C0.7%2C0.8%2C0.5%2C1.3c-2.1%2C4.3-3.8%2C9.7-3.1%2C10.7c0.2%2C0.3%2C1.5%2C0.7%2C4.8%2C0.1c0.8-0.1%2C1.4-0.6%2C1.8-1.3c0.4-0.7%2C0.5-1.5%2C0.2-2.3%0D%0A%09%09%09L30%2C57.4c-0.2-0.5%2C0.1-1.1%2C0.6-1.3c0.5-0.2%2C1.1%2C0.1%2C1.3%2C0.6l2.7%2C7.3c0.5%2C1.3%2C0.4%2C2.7-0.3%2C3.9c-0.7%2C1.2-1.8%2C2-3.2%2C2.3%0D%0A%09%09%09C29.9%2C70.5%2C28.8%2C70.6%2C27.9%2C70.6z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M28.4%2C57.6c-1%2C0-1.9-0.3-2.7-0.9c-1.4-1.1-1.9-3.1-1.3-4.7c0.3-0.7%2C0.8-1.3%2C1.5-1.9c0.7-0.6%2C1.5-1.1%2C2.3-1.5%0D%0A%09%09%09c0.1%2C0%2C0.1-0.1%2C0.2-0.1c1.4-0.3%2C2.9%2C0.8%2C3.6%2C1.5c0.7%2C0.8%2C1.1%2C2%2C1%2C3.2c-0.1%2C1.7-1.1%2C3.3-2.5%2C4C29.9%2C57.4%2C29.2%2C57.6%2C28.4%2C57.6z%0D%0A%09%09%09%20M29%2C50.3c-0.6%2C0.3-1.2%2C0.7-1.7%2C1.2c-0.5%2C0.4-0.8%2C0.8-1%2C1.2c-0.3%2C0.8%2C0%2C1.8%2C0.7%2C2.4c0.7%2C0.6%2C1.8%2C0.6%2C2.6%2C0.2%0D%0A%09%09%09c0.8-0.4%2C1.4-1.4%2C1.5-2.4c0-0.7-0.1-1.3-0.5-1.7C30.1%2C50.7%2C29.4%2C50.3%2C29%2C50.3C29%2C50.3%2C29%2C50.3%2C29%2C50.3z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon--blog {
        position: relative;
        left: 10px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2083%2061.1%22%20style%3D%22enable-background%3Anew%200%200%2083%2061.1%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%233F3F3F%22%20d%3D%22M77.8%2C38.4l4.7-4.7c0.5-0.5%2C0.5-1.3%2C0-1.7c-0.5-0.5-1.3-0.5-1.7%2C0L76%2C36.7l-4.5-4.4c-0.5-0.5-1.3-0.5-1.7%2C0%0D%0A%09%09c-0.5%2C0.5-0.5%2C1.3%2C0%2C1.7l4.5%2C4.4l-4.5%2C4.4c-0.5%2C0.5-0.5%2C1.3%2C0%2C1.7c0.2%2C0.2%2C0.6%2C0.3%2C0.9%2C0.3c0.3%2C0%2C0.6-0.1%2C0.9-0.3l4.5-4.4l4.7%2C4.7%0D%0A%09%09c0.2%2C0.2%2C0.6%2C0.3%2C0.9%2C0.3c0.3%2C0%2C0.7-0.1%2C0.9-0.3c0.5-0.5%2C0.5-1.3%2C0-1.7L77.8%2C38.4L77.8%2C38.4z%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%222.1%22%20cy%3D%2234.8%22%20rx%3D%222.1%22%20ry%3D%222.1%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2218.7%22%20cy%3D%222.1%22%20rx%3D%222.1%22%20ry%3D%222.1%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M70.2%2C12.2c-0.5%2C1-1.4%2C1.7-2.4%2C2.3c-1.3%2C0.8-3%2C1.1-4.3%2C0.3c-1.3-0.8-1.6-2.6-1.7-4.1c0-0.6%2C0-1.3%2C0.1-1.9%0D%0A%09%09%09c0.2-0.6%2C0.5-1.2%2C0.8-1.7c1.2-2.1%2C3.9-5.3%2C6.6-3.3C71.5%2C5.4%2C71.4%2C10.2%2C70.2%2C12.2z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M53.2%2C48.7c0.6-0.4%2C1.2-0.7%2C1.9-0.9c0.3-0.1%2C0.5-0.2%2C0.8-0.2c0.3%2C0%2C0.6%2C0.2%2C0.8%2C0.4c3.3%2C2.5%2C2.4%2C8.8-2.3%2C8.7%0D%0A%09%09%09C50.4%2C56.6%2C50.9%2C50.5%2C53.2%2C48.7z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M65.9%2C15.9c-0.1%2C0-0.3%2C0-0.4-0.1c-0.1%2C0-0.2-0.1-0.3-0.2c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.1%2C0-0.3%2C0.1-0.4%0D%0A%09%09%09c0-0.1%2C0.1-0.2%2C0.2-0.3c0%2C0%2C0.1-0.1%2C0.2-0.1c0%2C0%2C0.1-0.1%2C0.2-0.1c0.1%2C0%2C0.1%2C0%2C0.2-0.1c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c0.1%2C0%2C0.2%2C0.1%2C0.3%2C0.2%0D%0A%09%09%09c0.1%2C0.1%2C0.2%2C0.2%2C0.2%2C0.3c0%2C0.1%2C0.1%2C0.3%2C0.1%2C0.4c0%2C0.3-0.1%2C0.5-0.3%2C0.7c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.2C66.2%2C15.8%2C66.1%2C15.9%2C65.9%2C15.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M51.4%2C58.9H27.6c-0.6%2C0-1-0.4-1-1s0.4-1%2C1-1h23.8c4.8%2C0%2C8.7-3.9%2C8.7-8.7l1-26.8c0-0.5%2C0.5-1%2C1-1c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09c0.6%2C0%2C1%2C0.5%2C1%2C1l-1%2C26.7C62.2%2C54.1%2C57.3%2C58.9%2C51.4%2C58.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M24.3%2C38.9C24.3%2C38.9%2C24.3%2C38.9%2C24.3%2C38.9c-0.6%2C0-1-0.5-1-1l0.8-25.4c0-5.9%2C4.8-10.7%2C10.7-10.7h32.9%0D%0A%09%09%09c4.7%2C0%2C4.7%2C4.8%2C4.7%2C6.7v1.6c0%2C3.4-2.7%2C5.7-6.7%2C5.7c-0.6%2C0-1-0.4-1-1s0.4-1%2C1-1c1.1%2C0%2C4.7-0.3%2C4.7-3.7V8.5c0-3.9-1-4.7-2.7-4.7%0D%0A%09%09%09H34.9c-4.8%2C0-8.7%2C3.9-8.7%2C8.7L25.3%2C38C25.3%2C38.5%2C24.9%2C38.9%2C24.3%2C38.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M62.1%2C22.4c-0.6%2C0-1-0.4-1-1v-11c0-5.1%2C2.7-8.6%2C6.7-8.6c0.6%2C0%2C1%2C0.4%2C1%2C1s-0.4%2C1-1%2C1c-2.8%2C0-4.7%2C2.7-4.7%2C6.6%0D%0A%09%09%09v11C63.1%2C22%2C62.7%2C22.4%2C62.1%2C22.4z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M52.7%2C58.8c-0.2%2C0-0.4-0.1-0.6-0.2c-0.2-0.2-2.4-2.1-1.7-7.4c0.5-4.1%2C4-5.6%2C6.8-5.6c0.6%2C0%2C1%2C0.4%2C1%2C1%0D%0A%09%09%09s-0.4%2C1-1%2C1c-0.7%2C0-4.4%2C0.2-4.9%2C3.8c-0.5%2C4.2%2C1%2C5.6%2C1%2C5.6c0.4%2C0.4%2C0.5%2C1%2C0.1%2C1.4C53.3%2C58.7%2C53%2C58.8%2C52.7%2C58.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M57.3%2C47.6C57.2%2C47.6%2C57.2%2C47.6%2C57.3%2C47.6c-15.2-1.4-24.2-1.4-29.1-1c-0.5%2C0-1-0.4-1.1-0.9%0D%0A%09%09%09c0-0.6%2C0.4-1%2C0.9-1.1c7.2-0.5%2C17.1-0.1%2C29.4%2C1c0.5%2C0.1%2C1%2C0.5%2C0.9%2C1.1C58.2%2C47.2%2C57.8%2C47.6%2C57.3%2C47.6z%22%2F%3E%0D%0A%09%09%3Cpolygon%20fill%3D%22%2399EAA8%22%20points%3D%2231.5%2C16.7%2054.3%2C16.7%2054.3%2C19.6%2031.5%2C20.4%20%09%09%22%2F%3E%0D%0A%09%09%3Cpolygon%20fill%3D%22%2399EAA8%22%20points%3D%2254.3%2C25.3%2031.5%2C25.3%2031.5%2C27.2%2054.3%2C28%20%09%09%22%2F%3E%0D%0A%09%09%3Cpolygon%20fill%3D%22%2399EAA8%22%20points%3D%2231.5%2C32.8%2054.3%2C32.8%2054.3%2C35.7%2031.5%2C34.6%20%09%09%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M19.7%2C38.9c-0.3%2C0-0.6-0.1-0.8-0.4c-0.4%2C0.1-0.7-0.1-1-0.4l-3.3-4.8l-5-4c-0.2-0.2-0.3-0.4-0.4-0.7%0D%0A%09%09%09c-0.1-0.8-0.9-3.5-1.8-6c-1.4-4.3-2.3-7.2-2.3-8.4c0-0.4-0.1-1.3-0.3-2.2C4.2%2C7.7%2C4%2C5%2C5.5%2C4.3c1.2-0.6%2C2.4%2C0.6%2C2.9%2C1.1%0D%0A%09%09%09c3.4%2C3.5%2C8.4%2C20.1%2C9.8%2C25.1c0.5%2C1.9%2C1.6%2C4.9%2C2.4%2C6.8l0.1%2C0.2c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3C19.9%2C38.9%2C19.8%2C38.9%2C19.7%2C38.9z%20M11.1%2C28%0D%0A%09%09%09l4.8%2C3.9c0.1%2C0.1%2C0.1%2C0.1%2C0.2%2C0.2l0.8%2C1.1c-0.2-0.7-0.5-1.4-0.6-2C13.5%2C21.4%2C9.4%2C9.3%2C6.9%2C6.8C6.7%2C6.6%2C6.5%2C6.4%2C6.4%2C6.3%0D%0A%09%09%09c-0.2%2C1.1%2C0.2%2C4.1%2C0.4%2C5.4c0.2%2C1.1%2C0.3%2C2%2C0.3%2C2.5c0%2C1%2C1.3%2C4.9%2C2.2%2C7.7C10.1%2C24.5%2C10.9%2C26.8%2C11.1%2C28z%22%2F%3E%0D%0A%09%09%3Cg%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M20.8%2C61.1c-3.1%2C0-12.5%2C0-12.5-9c0-4.1%2C2.8-8.4%2C6.8-10.3c0.5-0.2%2C1.1%2C0%2C1.3%2C0.5c0.2%2C0.5%2C0%2C1.1-0.5%2C1.3%0D%0A%09%09%09%09c-3.3%2C1.6-5.6%2C5.1-5.6%2C8.5c0%2C4.9%2C3.1%2C7%2C10.5%2C7c5.2%2C0%2C8.2-2.6%2C8.2-7c0-3.9-1.8-7.1-4.8-8.5c-0.5-0.2-0.7-0.8-0.5-1.3%0D%0A%09%09%09%09c0.2-0.5%2C0.8-0.7%2C1.3-0.5c3.7%2C1.7%2C5.9%2C5.6%2C5.9%2C10.3C31%2C57.6%2C27.1%2C61.1%2C20.8%2C61.1z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M27.5%2C43.7H12.3c-1.6%2C0-2.8-1.3-2.8-2.8v-0.6c0-1.6%2C1.3-2.8%2C2.8-2.8h15.2c1.6%2C0%2C2.8%2C1.3%2C2.8%2C2.8v0.6%0D%0A%09%09%09%09C30.3%2C42.4%2C29%2C43.7%2C27.5%2C43.7z%20M12.3%2C39.4c-0.5%2C0-0.8%2C0.4-0.8%2C0.8v0.6c0%2C0.5%2C0.4%2C0.8%2C0.8%2C0.8h15.2c0.5%2C0%2C0.8-0.4%2C0.8-0.8v-0.6%0D%0A%09%09%09%09c0-0.5-0.4-0.8-0.8-0.8H12.3z%22%2F%3E%0D%0A%09%09%3C%2Fg%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon--telegram {
        position: relative;
        right: 10px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2074.3%2067%22%20style%3D%22enable-background%3Anew%200%200%2074.3%2067%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M43%2C0C25.1%2C0%2C9.5%2C15.6%2C9.5%2C33.5C9.5%2C51.4%2C25.1%2C67%2C43%2C67s31.3-15.6%2C31.3-33.5C74.3%2C15.6%2C60.8%2C0%2C43%2C0z%0D%0A%09%09%20M42.8%2C63.3C27.5%2C63.3%2C13%2C48.8%2C13%2C33.5C13%2C18.1%2C28.5%2C4.8%2C43.9%2C4.8c15.3%2C0%2C25.8%2C13.4%2C25.8%2C28.7C69.7%2C48.8%2C58.1%2C63.3%2C42.8%2C63.3z%22%2F%3E%0D%0A%09%3Cpolygon%20fill%3D%22%2399EAA8%22%20points%3D%2252.4%2C25.9%2029.6%2C35.7%2033.7%2C47.6%2036%2C38.1%20%09%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M6.1%2C46.7c-3.3%2C0-6.1%2C2.7-6.1%2C6.1c0%2C3.4%2C2.7%2C6.1%2C6.1%2C6.1s6.1-2.7%2C6.1-6.1C12.2%2C49.4%2C9.4%2C46.7%2C6.1%2C46.7z%0D%0A%09%09%20M6.1%2C56.6c-2.2%2C0-4-1.8-4-3.9c0-2.1%2C1.8-3.9%2C4-3.9s4%2C1.8%2C4%2C3.9C10.1%2C54.8%2C8.3%2C56.6%2C6.1%2C56.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M43.2%2C7.1h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V0.8h-2.3L35.8%2C2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9h-0.5l-1.2-0.1v2.4l1.2-0.2%0D%0A%09%09h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4L38%2C14.6v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1V7L43.2%2C7.1z%20M36.9%2C10.4%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C38.2%2C8.8%2C37.4%2C9.6%2C36.9%2C10.4z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M35.2%2C39.1c-0.3%2C0-0.6-0.1-0.8-0.4c-0.3-0.5-0.2-1.1%2C0.2-1.4l9.5-6.7l-14.1%2C6c-0.5%2C0.2-1.1%2C0-1.3-0.5%0D%0A%09%09%09c-0.2-0.5%2C0-1.1%2C0.5-1.3L52%2C25c0.5-0.2%2C1%2C0%2C1.3%2C0.4c0.3%2C0.4%2C0.1%2C1-0.3%2C1.3L35.8%2C38.9C35.6%2C39.1%2C35.4%2C39.1%2C35.2%2C39.1z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M50.2%2C50c-0.6%2C0-1.3-0.2-1.8-0.6L34.6%2C38.9c-0.4-0.3-0.5-1-0.2-1.4c0.3-0.4%2C1-0.5%2C1.4-0.2l13.9%2C10.5%0D%0A%09%09%09c0.4%2C0.3%2C0.7%2C0.2%2C0.9%2C0.1c0.1-0.1%2C0.5-0.2%2C0.5-0.7l7-26l-37%2C10.1l-0.3%2C1l0.4-0.9l8.8%2C3.3c0.5%2C0.2%2C0.8%2C0.8%2C0.6%2C1.3%0D%0A%09%09%09c-0.2%2C0.5-0.8%2C0.8-1.3%2C0.6l-8.8-3.3c-0.8-0.3-1.3-1.1-1.3-1.9c0-0.9%2C0.5-1.6%2C1.3-1.9l37.4-10.2c0.5-0.2%2C1.2-0.1%2C1.7%2C0.3%0D%0A%09%09%09c0.5%2C0.4%2C0.7%2C1%2C0.6%2C1.7l-7.1%2C26.5c-0.1%2C0.9-0.8%2C1.7-1.8%2C2.1C50.9%2C49.9%2C50.6%2C50%2C50.2%2C50z%20M58.5%2C21.1L58.5%2C21.1%0D%0A%09%09%09C58.5%2C21.1%2C58.5%2C21.1%2C58.5%2C21.1z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M33.7%2C48.6c-0.1%2C0-0.2%2C0-0.3%2C0c-0.3-0.1-0.6-0.3-0.7-0.6L28.7%2C36c-0.2-0.5%2C0.1-1.1%2C0.6-1.3%0D%0A%09%09%09c0.5-0.2%2C1.1%2C0.1%2C1.3%2C0.6l3.6%2C10.6l5.7-4.6c0.4-0.3%2C1.1-0.3%2C1.4%2C0.2c0.3%2C0.4%2C0.3%2C1.1-0.2%2C1.4l-6.8%2C5.4%0D%0A%09%09%09C34.1%2C48.5%2C33.9%2C48.6%2C33.7%2C48.6z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M33.7%2C48.6c-0.1%2C0-0.1%2C0-0.2%2C0c-0.5-0.1-0.9-0.6-0.8-1.1l1.5-9.5c0.1-0.5%2C0.6-0.9%2C1.1-0.8%0D%0A%09%09%09c0.5%2C0.1%2C0.9%2C0.6%2C0.8%2C1.1l-1.5%2C9.5C34.6%2C48.2%2C34.2%2C48.6%2C33.7%2C48.6z%22%2F%3E%0D%0A%09%09%3Cpolygon%20fill%3D%22%23525252%22%20points%3D%2241.5%2C42.9%2034.4%2C47%2035.2%2C38.1%20%09%09%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2272.3%22%20cy%3D%2259.9%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2260.9%22%20cy%3D%2241.3%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon--xda {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22none%22%20height%3D%22381%22%20viewBox%3D%220%200%20433%20381%22%20width%3D%22433%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m227%20186c0%2017.121-5.82%2031-13%2031s-13-13.879-13-31%205.82-31%2013-31%2013%2013.879%2013%2031z%22%20fill%3D%22%23abe8ae%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m257.966%20135h36v15h-5.96l-17.05%2059.071-7.487-2.16%209.399-32.565-.368.654-16.5-32.874%203.993-.418z%22%20fill%3D%22%23abe8ae%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22m9.5%20329c5.2467%200%209.5-4.253%209.5-9.5s-4.2533-9.5-9.5-9.5-9.5%204.253-9.5%209.5%204.2533%209.5%209.5%209.5z%22%20fill%3D%22%232a2a2a%22%2F%3E%3Cpath%20d%3D%22m206.785%2033.4662h-1.547c-14.441%200-26.304-11.8419-26.304-26.25809v-7.20811h-12.378l.516%206.17838v1.54459c0%2014.41623-11.863%2026.25813-26.304%2026.25813h-2.579l-6.189-.5149v12.8716l6.189-1.0297h2.579c14.441%200%2026.304%2011.8419%2026.304%2026.2581v2.5743l-.516%206.1784h12.894l-.516-6.6932v-2.5743c0-14.4163%2011.863-26.2582%2026.304-26.2582h1.547l6.189.5149v-12.3567zm-34.04%2017.5054c-3.095-4.6338-6.705-8.7527-11.862-11.8419%204.126-2.5743%208.767-6.6932%2011.862-11.8419%203.095%204.6338%206.705%208.7527%2011.862%2011.8419-4.641%203.6041-8.767%207.723-11.862%2011.8419zm106.762%20265.1554c-17.536%200-32.493%2014.416-32.493%2032.437%200%2018.02%2014.442%2032.436%2032.493%2032.436%2018.052%200%2032.493-14.416%2032.493-32.436%200-18.021-14.957-32.437-32.493-32.437zm0%2053.031c-11.862%200-21.146-9.782-21.146-20.594%200-11.328%209.799-20.595%2021.146-20.595s21.146%209.782%2021.146%2020.595c0%2010.812-9.283%2020.594-21.146%2020.594z%22%20fill%3D%22%234e4e4e%22%2F%3E%3Cpath%20d%3D%22m421%20145.81v-10.81c0-1.657-1.343-3-3-3h-10.087c.761%207.027%206.202%2012.716%2013.087%2013.81z%22%20fill%3D%22%23abe8ae%22%2F%3E%3Cpath%20d%3D%22m400.729%20132c-.705%207.976-7.434%2014.308-15.532%2014.308h-1.528l-3.669-.308v7.692l3.669-.615h1.528c8.561%200%2015.593%207.077%2015.593%2015.692v1.539l-.306%203.692h7.643l-.305-4v-1.538c0-7.79%205.748-14.322%2013.178-15.503v75.041c0%201.657-1.343%203-3%203h-26.016l-28.984-99z%22%20fill%3D%22%23abe8ae%22%2F%3E%3Cpath%20d%3D%22m397.121%20149.385c3.057%201.846%205.197%204.307%207.032%207.077%201.834-2.462%204.28-4.924%207.032-7.077-3.058-1.847-5.198-4.308-7.032-7.077-1.835%203.077-4.586%205.538-7.032%207.077z%22%20fill%3D%22%23abe8ae%22%2F%3E%3Cpath%20d%3D%22m423.118%20294.76c5.401%200%209.78-4.378%209.78-9.779%200-5.402-4.379-9.78-9.78-9.78s-9.78%204.378-9.78%209.78c0%205.401%204.379%209.779%209.78%209.779z%22%20fill%3D%22%232a2a2a%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m118.434%20186.117%2025.14-51.117h7.426%201.5%207.5v97h-7.5-1.5-10.868l-21.698-44.117c-.274-.557-.274-1.209%200-1.766z%22%20fill%3D%22%23abe8ae%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m11%20136c0-1.657%201.3431-3%203-3h28c1.6569%200%203%201.343%203%203v15.704l17.7311%2035.334-17.7311%2035.334v5.425c0%201.657-1.3431%203-3%203h-1.2276l-1.2913%202.573v-2.573h-25.4811c-1.6569%200-3-1.343-3-3l.0001-17.589c15.648%200%2028.3333-11.522%2028.3333-25.736s-12.6853-25.736-28.3334-25.736zm17.0001%2048.472c0%208.528-7.6112%2015.442-17.0001%2015.442l.0001-30.884c9.3888%200%2017%206.914%2017%2015.442z%22%20fill%3D%22%23abe8ae%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cg%20fill%3D%22%23525252%22%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m26.204%20119.335c-2.5274-4.664.8496-10.335%206.1545-10.335h34.7178c2.5479%200%204.8945%201.384%206.1268%203.614l17.678%2031.991%2016.8109-31.871c1.212-2.297%203.595-3.734%206.192-3.734h36.712c5.341%200%208.715%205.741%206.115%2010.407l-7.77%2013.946c-1.344%202.412-4.389%203.278-6.801%201.934s-3.279-4.389-1.935-6.801l5.286-9.486h-29.798l-18.559%2035.184c-2.5975%204.924-9.6255%204.993-12.3182.12l-19.5092-35.304h-27.9103l32.1702%2059.367c1.1018%202.034%201.1283%204.48.0708%206.536l-4.3358-2.229%204.3358%202.229-32.4441%2063.097h28.0778l19.5093-36.198c2.6726-4.959%209.8095-4.89%2012.3866.119l18.5611%2036.079h29.973l-25.021-47.326c-1.29-2.441-.357-5.467%202.084-6.757%202.441-1.291%205.466-.358%206.757%202.083l27.348%2051.728c2.464%204.662-.915%2010.272-6.189%2010.272h-36.782c-2.623%200-5.025-1.466-6.225-3.798l-16.7924-32.641-17.6565%2032.76c-1.2213%202.266-3.5878%203.679-6.162%203.679h-34.7848c-5.2383%200-8.6207-5.542-6.2253-10.201l33.9678-66.06zm90.362%20130.293-.003-.006zm-81.6186%202.74-.0022.004-2.6679-1.372%202.6679%201.372c.0008-.002.0015-.003.0022-.004zm113.0286-137.828-.003.004c.001-.002.002-.003.003-.004z%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22m222.472%20109h-57.879c-2.756%200-4.593%202.055-4.593%205.138v35.452c0%203.082%201.837%205.138%204.593%205.138%202.757%200%204.594-2.056%204.594-5.138v-30.314h53.285c22.508%200%2041.341%2024.662%2041.341%2054.976v18.496c0%2030.314-18.374%2054.976-41.341%2054.976l-45.972.776c-2.756%200-3.638%201.279-3.638%204.362s1.837%205.138%204.593%205.138h45.017c27.561%200%2050.528-29.286%2050.528-65.252v-18.496c0-35.966-22.508-65.252-50.528-65.252z%22%2F%3E%3Cpath%20d%3D%22m214.178%20221h-11.973c-3.123%200-5.205-2.029-5.205-5.071v-60.858c0-3.042%202.082-5.071%205.205-5.071h11.973c11.452%200%2020.822%2010.143%2020.822%2023.329v24.85c0%2012.171-9.37%2022.821-20.822%2022.821zm-6.767-10.143h6.767c5.726%200%2010.411-6.086%2010.411-13.186v-24.85c0-7.1-4.685-13.185-10.411-13.185h-6.767z%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m170%20119h49c2.761%200%205-2.239%205-5s-2.239-5-5-5h-53c-3.314%200-6%202.686-6%206v34.5c0%202.761%202.239%205%205%205s5-2.239%205-5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m170%20248h42c2.761%200%205%202.239%205%205s-2.239%205-5%205h-46c-3.314%200-6-2.686-6-6v-34c0-2.761%202.239-5%205-5s5%202.239%205%205z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m327.294%20166%208.916%2030.883h-17.831z%22%20fill%3D%22%23abe8ae%22%2F%3E%3Cpath%20d%3D%22m337.765%20205.325h-21.618c-1.544%200-3.088-.515-4.118-2.059-1.029-1.544-1.029-3.088-1.029-4.633l9.78-36.03c.514-2.059%202.573-3.603%204.632-3.603s4.118%201.544%205.147%203.603l11.839%2036.03c.515%201.545%200%203.089-.515%204.633-.514%201.544-2.573%202.059-4.118%202.059zm-14.926-10.295h7.72l-4.117-13.382z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m295.011%20112.196c.787-2.497%203.103-4.196%205.722-4.196h53.513c2.679%200%205.033%201.776%205.769%204.352l39.428%20138c1.096%203.833-1.782%207.648-5.769%207.648h-45.872c-2.812%200-5.247-1.953-5.857-4.698l-3.956-17.802h-22.207l-2.71%2017.422c-.454%202.923-2.971%205.078-5.928%205.078h-37.144c-2.761%200-5-2.239-5-5s2.239-5%205-5h33.718l2.71-17.422c.454-2.923%202.971-5.078%205.928-5.078h28.842c2.812%200%205.247%201.953%205.857%204.698l3.956%2017.802h37.36l-37.143-130h-47.562l-13.397%2042.503c-.83%202.634-3.638%204.096-6.272%203.266s-4.096-3.638-3.266-6.272z%22%20fill%3D%22%23525252%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--4pda {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20enable-background%3D%22new%200%200%2089.3%2074.1%22%20viewBox%3D%220%200%2089.3%2074.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%2399eaa8%22%3E%3Cpath%20d%3D%22m30.8%2032.1v4.7h1.4c1.1%200%202-1%202-2.3%200-1.3-.9-2.3-2-2.3h-1.4z%22%2F%3E%3Cpath%20d%3D%22m48.8%2032.9v12h1.5c1.1%200%202-1.6%202-3.6v-4.9c0-2-.9-3.6-2-3.6h-1.5z%22%2F%3E%3Cpath%20d%3D%22m69%2034.5-2%207h4.2z%22%2F%3E%3Cpath%20d%3D%22m9.3%2024.6-9.3%2015%20.7-15z%22%2F%3E%3Cpath%20d%3D%22m14%2032.1v9.4h-6.1z%22%2F%3E%3Cpath%20d%3D%22m14.2%2048.9h-13.9l-.3%203.5h14z%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m30.4%2053.4h-8c-.6%200-1-.4-1-1v-26.9c0-.5.4-1%201-1l12.4-.1h.1c2%200%204%20.8%205.6%202.4%201.9%201.9%203%204.6%203%207.5v.5c0%205.5-3.8%209.9-8.6%209.9h-3.5v7.7c0%20.5-.4%201-1%201zm-7-2h6v-7.7c0-.6.4-1%201-1h4.5c3.6%200%206.6-3.5%206.6-7.9v-.5c0-2.4-.9-4.6-2.4-6.1-1.2-1.2-2.7-1.8-4.2-1.8l-11.4.1v24.9z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m32.2%2037.8h-1.4c-.6%200-1-.4-1-1v-4.7c0-.6.4-1%201-1h1.4c1.6%200%203%201.5%203%203.3%200%201.9-1.3%203.4-3%203.4zm-.4-2h.4c.5%200%201-.6%201-1.3s-.4-1.3-1-1.3h-.4z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m52.6%2053.4h-12.6c-.6%200-1-.4-1-1v-6.9c0-.6.4-1%201-1s1%20.4%201%201v5.9h11.6c4.9%200%209-4.8%209-10.7v-3.6c0-5.9-4-10.7-9-10.7h-9.8c-.6%200-1-.4-1-1s.4-1%201-1h9.8c6%200%2011%205.7%2011%2012.7v3.6c0%207-4.9%2012.7-11%2012.7z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m51.1%2045.9h-2.3c-.6%200-1-.4-1-1v-12c0-.6.4-1%201-1h2.3c2.2%200%204%202%204%204.6v4.9c0%202.4-1.8%204.5-4%204.5zm-1.3-2h1.3c1.1%200%202-1.2%202-2.6v-4.9c0-1.4-.9-2.6-2-2.6h-1.3z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m81.9%2052.7h-9.6c-.5%200-.9-.4-1-.8l-.5-2.9h-4.1l-.6%203c-.1.5-.5.8-1%20.8h-3.4c-.6%200-1-.4-1-1s.4-1%201-1h2.5l.6-3c.1-.5.5-.8%201-.8h5.8c.5%200%20.9.4%201%20.8l.5%202.9h7.4l-7.4-24.4h-7.6l-.5%201.3c-.2.5-.8.7-1.3.5s-.7-.8-.5-1.3l.8-1.9c.2-.4.5-.6.9-.6h9c.4%200%20.8.3%201%20.7l8%2026.4c.1.3%200%20.6-.2.9s-.5.4-.8.4z%22%20fill%3D%22%23525252%22%2F%3E%3Cpath%20d%3D%22m71.2%2042.5h-4.2c-.3%200-.6-.1-.8-.4s-.2-.6-.2-.9l1.9-7c.1-.4.5-.7.9-.7.4%200%20.8.3%201%20.7l2.3%207c.1.3%200%20.6-.1.9s-.5.4-.8.4zm-2.9-2h1.5l-.8-2.6z%22%20fill%3D%22%23525252%22%2F%3E%3Cellipse%20cx%3D%229.3%22%20cy%3D%2262%22%20fill%3D%22%232a2a2a%22%20rx%3D%221.9%22%20ry%3D%221.9%22%2F%3E%3Cellipse%20cx%3D%2287.5%22%20cy%3D%2255.3%22%20fill%3D%22%232a2a2a%22%20rx%3D%221.9%22%20ry%3D%221.9%22%2F%3E%3Cpath%20d%3D%22m47.6%206.5h-.3c-2.8%200-5.1-2.3-5.1-5.1v-1.4h-2.4l.1%201.2v.3c0%202.8-2.3%205.1-5.1%205.1h-.5l-1.2-.1v2.5l1.2-.2h.5c2.8%200%205.1%202.3%205.1%205.1v.5l-.1%201.2h2.5l-.1-1.3v-.5c0-2.8%202.3-5.1%205.1-5.1h.3l1.2.1v-2.4zm-6.6%203.4c-.6-.9-1.3-1.7-2.3-2.3.8-.5%201.7-1.3%202.3-2.3.6.9%201.3%201.7%202.3%202.3-.9.7-1.7%201.5-2.3%202.3z%22%20fill%3D%22%234e4e4e%22%2F%3E%3Cpath%20d%3D%22m61.7%2061.4c-3.4%200-6.3%202.8-6.3%206.3s2.8%206.3%206.3%206.3%206.3-2.8%206.3-6.3-2.9-6.3-6.3-6.3zm0%2010.3c-2.3%200-4.1-1.9-4.1-4%200-2.2%201.9-4%204.1-4s4.1%201.9%204.1%204-1.8%204-4.1%204z%22%20fill%3D%22%234e4e4e%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--reddit {
        position: relative;
        right: 10px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2093.2%2069.6%22%20style%3D%22enable-background%3Anew%200%200%2093.2%2069.6%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cellipse%20fill%3D%22%2399EAA8%22%20cx%3D%2241.1%22%20cy%3D%2240.3%22%20rx%3D%223.6%22%20ry%3D%225%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%2399EAA8%22%20cx%3D%2265.6%22%20cy%3D%2240.3%22%20rx%3D%223.6%22%20ry%3D%225%22%2F%3E%0D%0A%09%3Ccircle%20fill%3D%22%2399EAA8%22%20cx%3D%2281%22%20cy%3D%225.6%22%20r%3D%224.3%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M78%2C26.1c-0.2%2C0-0.4-0.1-0.5-0.2c-6.3-4.1-14.4-6.3-23-6.3s-16.7%2C2.2-23%2C6.3c-0.5%2C0.3-1.1%2C0.2-1.4-0.3%0D%0A%09%09c-0.3-0.5-0.2-1.1%2C0.3-1.4c6.6-4.3%2C15.2-6.6%2C24.1-6.6c8.9%2C0%2C17.4%2C2.4%2C24.1%2C6.6c0.5%2C0.3%2C0.6%2C0.9%2C0.3%2C1.4%0D%0A%09%09C78.7%2C25.9%2C78.4%2C26.1%2C78%2C26.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M54.5%2C69.6c-19.9%2C0-36-11.7-36-26c0-1.5%2C0.2-3.1%2C0.6-4.6c0.1-0.5%2C0.7-0.9%2C1.2-0.7c0.5%2C0.1%2C0.9%2C0.7%2C0.7%2C1.2%0D%0A%09%09c-0.3%2C1.4-0.5%2C2.8-0.5%2C4.1c0%2C13.2%2C15.3%2C24%2C34%2C24s34-10.8%2C34-24c0-1.4-0.2-2.7-0.5-4.1c-0.1-0.5%2C0.2-1.1%2C0.7-1.2%0D%0A%09%09c0.5-0.1%2C1.1%2C0.2%2C1.2%2C0.7c0.4%2C1.5%2C0.6%2C3.1%2C0.6%2C4.6C90.5%2C57.9%2C74.4%2C69.6%2C54.5%2C69.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M20.1%2C40.2c-0.3%2C0-0.5-0.1-0.7-0.3l-0.1-0.1c-2.1-2.3-3.3-5.1-3.4-8c-0.1-2.9%2C0.9-5.5%2C2.9-7.4%0D%0A%09%09c3.3-3%2C8.6-3.1%2C12.8-0.2c0.3%2C0.2%2C0.4%2C0.5%2C0.4%2C0.8c0%2C0.3-0.2%2C0.6-0.5%2C0.8c-5.5%2C3.6-9.3%2C8.4-10.5%2C13.6c-0.1%2C0.4-0.4%2C0.6-0.7%2C0.7%0D%0A%09%09C20.2%2C40.2%2C20.2%2C40.2%2C20.1%2C40.2z%20M25%2C24.1c-1.8%2C0-3.6%2C0.6-4.9%2C1.8c-1.6%2C1.4-2.4%2C3.5-2.3%2C5.8c0.1%2C1.9%2C0.7%2C3.8%2C1.8%2C5.4%0D%0A%09%09c1.6-4.5%2C4.9-8.7%2C9.5-12C27.8%2C24.5%2C26.4%2C24.1%2C25%2C24.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M89%2C40.2c-0.1%2C0-0.2%2C0-0.2%2C0c-0.3-0.1-0.6-0.3-0.7-0.7c-1.3-5.2-5-10-10.5-13.6c-0.3-0.2-0.5-0.5-0.5-0.8%0D%0A%09%09c0-0.3%2C0.2-0.7%2C0.4-0.8c4.2-2.9%2C9.5-2.8%2C12.8%2C0.2c4.1%2C3.7%2C3.9%2C10.6-0.4%2C15.3l-0.1%2C0.1C89.6%2C40.1%2C89.3%2C40.2%2C89%2C40.2z%20M79.9%2C25.1%0D%0A%09%09c4.6%2C3.3%2C7.9%2C7.5%2C9.5%2C12c2.6-3.8%2C2.5-8.6-0.5-11.2C86.7%2C23.8%2C83.1%2C23.6%2C79.9%2C25.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M42.5%2C46.3c-3.3%2C0-6-2.7-6-6s2.7-6%2C6-6s6%2C2.7%2C6%2C6S45.8%2C46.3%2C42.5%2C46.3z%20M42.5%2C36.3c-2.2%2C0-4%2C1.8-4%2C4s1.8%2C4%2C4%2C4%0D%0A%09%09s4-1.8%2C4-4S44.7%2C36.3%2C42.5%2C36.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M66.6%2C46.3c-3.3%2C0-6-2.7-6-6s2.7-6%2C6-6c3.3%2C0%2C6%2C2.7%2C6%2C6S69.9%2C46.3%2C66.6%2C46.3z%20M66.6%2C36.3c-2.2%2C0-4%2C1.8-4%2C4%0D%0A%09%09s1.8%2C4%2C4%2C4s4-1.8%2C4-4S68.8%2C36.3%2C66.6%2C36.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M54.5%2C60.5c-4.8%2C0-9.6-1.8-13.2-5.3c-0.4-0.4-0.4-1%2C0-1.4c0.4-0.4%2C1-0.4%2C1.4%2C0c6.5%2C6.3%2C17.1%2C6.3%2C23.6%2C0%0D%0A%09%09c0.4-0.4%2C1-0.4%2C1.4%2C0c0.4%2C0.4%2C0.4%2C1%2C0%2C1.4C64.1%2C58.8%2C59.3%2C60.5%2C54.5%2C60.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M82.2%2C13.3c-3.6%2C0-6.5-2.9-6.5-6.5s2.9-6.5%2C6.5-6.5s6.5%2C2.9%2C6.5%2C6.5S85.8%2C13.3%2C82.2%2C13.3z%20M82.2%2C2.3%0D%0A%09%09c-2.5%2C0-4.5%2C2-4.5%2C4.5s2%2C4.5%2C4.5%2C4.5s4.5-2%2C4.5-4.5S84.7%2C2.3%2C82.2%2C2.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M54.5%2C19.6c-0.1%2C0-0.3%2C0-0.4-0.1c-0.5-0.2-0.7-0.8-0.5-1.3l7.3-17.3c0.2-0.5%2C0.7-0.7%2C1.2-0.6L77%2C4.5%0D%0A%09%09c0.5%2C0.2%2C0.8%2C0.7%2C0.7%2C1.2c-0.2%2C0.5-0.7%2C0.8-1.2%2C0.7l-14-4l-7%2C16.5C55.3%2C19.4%2C54.9%2C19.6%2C54.5%2C19.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M14%2C7.6h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V1.3H6.5l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H1.2L0%2C7.6V10l1.2-0.2h0.5%0D%0A%09%09c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9H14l1.2%2C0.1V7.5L14%2C7.6z%20M7.7%2C10.8%0D%0A%09%09C7.1%2C10%2C6.4%2C9.3%2C5.5%2C8.6c0.8-0.5%2C1.6-1.3%2C2.2-2.2C8.3%2C7.3%2C9%2C8.1%2C9.9%2C8.6C9%2C9.3%2C8.2%2C10.1%2C7.7%2C10.8z%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2291.2%22%20cy%3D%2265.6%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2235.5%22%20cy%3D%221.8%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_ad-blocker {
        width: 112px;
        height: 115px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2090.2%2090.1%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M49.3%2070.1h26.9c3.2%200%205.8%202.6%205.8%205.8v2.8c0%203.2-2.6%205.8-5.8%205.8H49.3c-3.2%200-5.8-2.6-5.8-5.8v-2.9c0-3.1%202.6-5.7%205.8-5.7z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M39.7%2090.1c-2.1%200-3.9-.1-5.9-.4-2.5-.4-4.5-1.1-6-2.1-3.2-2.2-6.6-5.5-10.2-9.6-2.4-2.8-4.8-5.9-7.1-9.2-.8-1.1-1.5-2.1-2.1-3-.2-.3-.4-.6-.5-.9l-.2-.4c-.9-1-1.3-2.4-1.2-3.8.1-1.4.8-2.7%201.9-3.7%202.3-1.9%205.7-1.6%207.7.7l6%206.6c0-.7-.1-13.9-.2-18.3l-.1-18.2c0-3%202.4-5.4%205.4-5.4s5.4%202.4%205.4%205.4v19.7c.5-.3%201.1-.5%201.6-.7V20.5c0-3%202.4-5.4%205.4-5.4s5.4%202.4%205.4%205.4v24.8h1.6V25.7c0-3%202.4-5.4%205.4-5.4s5.4%202.4%205.4%205.4v21.2c.5.2%201%20.4%201.4.7v-13c0-3%202.4-5.4%205.4-5.4s5.4%202.4%205.4%205.4l.2%2039.2C69.8%2084%2062.1%2090%2049.2%2090h-8.7c.1.1-.4.1-.8.1zM12%2058c-.7%200-1.5.2-2.1.8-.7.6-1.1%201.3-1.2%202.2-.1.8.2%201.7.7%202.3l.4.5c.2.2.3.5.5.8.6.9%201.3%201.9%202%203%202.3%203.3%204.6%206.3%207%209%203.4%204%206.7%207.1%209.8%209.2%201.2.8%202.9%201.4%205%201.8%201.9.3%203.8.4%206.8.4h8.8c11.7%200%2018.4-5.1%2018.4-14.1l-.2-39.2c0-1.8-1.5-3.2-3.3-3.2s-3.3%201.4-3.3%203.2v16.4l-3.1-1.6c-.4-.2-.8-.4-1.3-.6l-1.3-.6V25.7c0-1.8-1.5-3.2-3.3-3.2S49%2024%2049%2025.7v21.7h-6v-27c0-1.8-1.5-3.2-3.3-3.2s-3.3%201.4-3.3%203.2v27.7l-1.4.5c-.5.2-1%20.4-1.5.7l-3.1%201.6V27.8c0-1.8-1.5-3.2-3.3-3.2s-3.3%201.4-3.3%203.2l.2%2018.3c.2%2014.8.2%2018.1.2%2018.5l-.4%205-9.4-10.3c-.5-.9-1.5-1.3-2.4-1.3z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M74.1%2080.3H51.4c-4.4%200-7.9-3.5-7.9-7.9V63c0-4.4%203.5-7.9%207.9-7.9h22.7c4.4%200%207.9%203.5%207.9%207.9v9.4c0%204.4-3.5%207.9-7.9%207.9z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M75.1%2080.3H50.4c-3.8%200-6.8-3.1-6.8-6.8V61.9c0-3.8%203.1-6.8%206.8-6.8h24.8c3.8%200%206.8%203.1%206.8%206.8v11.6c-.1%203.8-3.1%206.8-6.9%206.8zM50.4%2057.2c-2.6%200-4.7%202.1-4.7%204.7v11.6c0%202.6%202.1%204.7%204.7%204.7h24.8c2.6%200%204.7-2.1%204.7-4.7V61.9c0-2.6-2.1-4.7-4.7-4.7H50.4z%22%2F%3E%3Cellipse%20fill%3D%22%232a2a2a%22%20cx%3D%2265.6%22%20cy%3D%228.3%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cellipse%20fill%3D%22%232a2a2a%22%20cx%3D%221.8%22%20cy%3D%2238.3%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M11.7%205.1L15%201.8c.4-.4.4-1.1%200-1.5s-1.1-.4-1.5%200l-3.4%203.3L6.9.4C6.5%200%205.8%200%205.4.4s-.4%201.1%200%201.5l3.2%203.2-3.2%203.1c-.4.5-.4%201.1%200%201.6.2.2.5.3.8.3s.5-.1.8-.3l3.2-3.2%203.4%203.3c.2.2.5.3.8.3s.6-.1.8-.3c.4-.4.4-1.1%200-1.5l-3.5-3.3zm74%2020l4-4c.4-.4.4-1.1%200-1.5s-1.1-.4-1.5%200l-4%204-3.9-3.8c-.4-.4-1.1-.4-1.5%200s-.4%201.1%200%201.5l3.9%203.8-3.9%203.8c-.4.4-.4%201.1%200%201.5.2.2.5.3.8.3s.5-.1.8-.3l3.9-3.8%204%204c.2.2.5.3.8.3s.6-.1.8-.3c.4-.4.4-1.1%200-1.5l-4.2-4z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M54.5%2072.3l3.6-9.3h1.3l3.8%209.3h-1.4l-1.1-2.8h-3.9l-1%202.8h-1.3zm2.7-3.8h3.1l-1-2.6c-.3-.8-.5-1.4-.7-1.9-.1.6-.3%201.2-.5%201.8l-.9%202.7zm6.1%203.8V63h3.2c.7%200%201.3%200%201.7.1.5.1%201%20.3%201.4.7.5.4.9.9%201.1%201.6.2.6.4%201.4.4%202.2%200%20.7-.1%201.3-.2%201.9-.2.5-.4%201-.6%201.4-.3.4-.5.6-.8.8-.3.2-.7.4-1.1.5s-.9.2-1.5.2l-3.6-.1zm1.3-1.1h2c.6%200%201.1-.1%201.4-.2s.6-.3.8-.5c.3-.3.5-.7.7-1.2s.2-1.1.2-1.8c0-1-.2-1.7-.5-2.2s-.7-.9-1.2-1c-.2-.1-.7-.1-1.4-.1h-2v7z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_secure-web {
        width: 103px;
        height: 124px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2082%2098.8%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M24.2%2080h37.3c4.4%200%207.9%203.5%207.9%207.9v3c0%204.4-3.5%207.9-7.9%207.9H24.2c-4.4%200-7.9-3.5-7.9-7.9v-3c0-4.3%203.5-7.9%207.9-7.9z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M60.5%2090.6H25.3c-5%200-9-4-9-9V48.1c0-5%204-9%209-9h35.2c5%200%209%204%209%209v33.5c0%205-4.1%209-9%209zM25.3%2041.3c-3.8%200-6.8%203.1-6.8%206.8v33.5c0%203.8%203.1%206.8%206.8%206.8h35.2c3.8%200%206.8-3.1%206.8-6.8V48.1c0-3.8-3.1-6.8-6.8-6.8H25.3z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M43.2%2076h-.5c-1.5%200-2.8-1.3-2.8-2.8v-3.7c-3-1.2-5.1-4.2-5.1-7.5%200-4.4%203.6-8%208-8s8%203.6%208%208c0%203.3-1.9%206.2-4.9%207.4v3.8c.1%201.5-1.2%202.8-2.7%202.8zm-.3-19.9c-3.2%200-5.8%202.6-5.8%205.9%200%202.6%201.8%205%204.3%205.7l.8.2v5.3c0%20.4.3.6.6.6h.5c.3%200%20.6-.3.6-.6v-5.3l.8-.2c2.5-.8%204.1-3%204.1-5.6-.1-3.3-2.7-6-5.9-6zm15-22.9h-8.7l-.1-2.1c-.1-3.4-2.8-6.1-6.2-6.1-3.4%200-6.2%202.7-6.3%206.1l-.1%202.1h-8.7V31c.2-8.1%206.9-14.7%2014.9-14.7%208.1%200%2014.8%206.6%2015%2014.7l.2%202.2zM51.3%2031h4.4c-.1-7-5.9-12.6-12.8-12.6S30.3%2024.1%2030.1%2031h4.4c.1-4.6%203.8-8.2%208.4-8.2s8.3%203.6%208.4%208.2z%22%2F%3E%3Cellipse%20fill%3D%22%232a2a2a%22%20cx%3D%221.8%22%20cy%3D%2249.2%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cellipse%20fill%3D%22%234e4e4e%22%20cx%3D%2280.2%22%20cy%3D%2271.7%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M74.7%2015.2h-2.4l.1-1.2v-.5c0-2.7-2.2-4.9-4.9-4.9H67l-1.2.1V6.3l1.2.1h.5c2.7%200%204.9-2.2%204.9-4.9v-.3L72.3%200h2.3l-.1%201.2v.3c0%202.7%202.2%204.9%204.9%204.9h.3l1.2-.1v2.3l-1.2-.1h-.3c-2.7%200-4.9%202.2-4.9%204.9v.5l.2%201.3zm-3.4-7.7c.9.6%201.7%201.3%202.2%202.2.6-.9%201.3-1.7%202.2-2.2-.9-.6-1.7-1.3-2.2-2.2-.6.8-1.3%201.6-2.2%202.2z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_invisible-mode {
        width: 111px;
        height: 117px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2088.2%2092.9%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M24.2%2051.3c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9v4.5c0%204.1-3.3%207.4-7.4%207.4h-5.6c-4.1%200-7.4-3.3-7.4-7.4v-4.5z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M17.7%2063.9c-5%200-9-4-9-9s4.1-9%209-9c5%200%209%204%209%209s-4%209-9%209zm0-15.8c-3.8%200-6.9%203.1-6.9%206.8s3.1%206.8%206.9%206.8c3.8%200%206.9-3.1%206.9-6.8s-3.1-6.8-6.9-6.8zm56.4%2015.8c-5%200-9-4-9-9s4.1-9%209-9c5%200%209%204%209%209s-4%209-9%209zm0-15.8c-3.8%200-6.9%203.1-6.9%206.8s3.1%206.8%206.9%206.8%206.9-3.1%206.9-6.8-3.1-6.8-6.9-6.8z%22%2F%3E%3Cellipse%20fill%3D%22%234e4e4e%22%20cx%3D%223.6%22%20cy%3D%2276.8%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.4%2038.4c-1%202.1-1.6%204.5-1.6%207v24.4c0%209.1%207.3%2018%2016.2%2019.9l16%203.2%2013.8-3C69.7%2088%2077%2079%2077%2069.8V45.4c0-2.5-.6-4.9-1.6-7h-59z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M47%2092.9l-16-3.2C22%2087.9%2014.8%2079%2014.8%2069.8V45.4c0-2.2.4-4.3%201.3-6.4l.3-.7h59.1l.3.7c.8%202%201.3%204.2%201.3%206.4v24.4C77%2079%2069.7%2088%2060.8%2089.9l-13.8%203zM17.8%2040.6c-.6%201.6-.8%203.2-.8%204.9v24.4C17%2078%2023.5%2086%2031.5%2087.6L47%2090.7l13.4-2.9c8-1.7%2014.5-9.8%2014.5-18V45.4c0-1.7-.3-3.3-.8-4.9H17.8z%22%2F%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M25.7%2052.8c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9v4.5c0%204.1-3.3%207.4-7.4%207.4H33c-4.1%200-7.4-3.3-7.4-7.4v-4.5zm25.2-.8c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9v4.5c0%204.1-3.3%207.4-7.4%207.4h-5.6c-4.1%200-7.4-3.3-7.4-7.4V52z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M35.8%2060.4h-5.6c-4.1%200-7.4-3.3-7.4-7.4v-4.5c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9V53c-.1%204-3.4%207.4-7.4%207.4zM25.6%2047.7c-.4%200-.7.3-.7.7V53c0%202.9%202.3%205.2%205.2%205.2h5.6c2.9%200%205.2-2.3%205.2-5.2v-4.5c0-.4-.3-.7-.7-.7H25.6z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M35.8%2060.4h-5.6c-4.1%200-7.4-3.3-7.4-7.4v-4.5c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9V53c-.1%204-3.4%207.4-7.4%207.4zM25.6%2047.7c-.4%200-.7.3-.7.7V53c0%202.9%202.3%205.2%205.2%205.2h5.6c2.9%200%205.2-2.3%205.2-5.2v-4.5c0-.4-.3-.7-.7-.7H25.6zm34.7%2012.7h-5.6c-4.1%200-7.4-3.3-7.4-7.4v-4.5c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9V53c0%204-3.3%207.4-7.4%207.4zM50.2%2047.7c-.4%200-.7.3-.7.7V53c0%202.9%202.3%205.2%205.2%205.2h5.6c2.9%200%205.2-2.3%205.2-5.2v-4.5c0-.4-.3-.7-.7-.7H50.2z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M60.3%2060.4h-5.6c-4.1%200-7.4-3.3-7.4-7.4v-4.5c0-1.6%201.3-2.9%202.9-2.9h14.6c1.6%200%202.9%201.3%202.9%202.9V53c0%204-3.3%207.4-7.4%207.4zM50.2%2047.7c-.4%200-.7.3-.7.7V53c0%202.9%202.3%205.2%205.2%205.2h5.6c2.9%200%205.2-2.3%205.2-5.2v-4.5c0-.4-.3-.7-.7-.7H50.2zm30.6-7.2H13.1c-2.4%200-4.4-2-4.4-4.4s2-4.4%204.4-4.4h8.4l6.3-16.4c.6-1.6%201.8-2.8%203.3-3.3%201.5-.5%203.1-.2%204.6.8.1.1%206.3%204.8%2010.4%204.8%202.1%200%208-3.2%2011.3-5.2%201.5-.9%203.2-1.1%204.7-.5%201.5.5%202.7%201.7%203.4%203.4l6.3%2016.4h9.1c2.4%200%204.4%202%204.4%204.4s-2.1%204.4-4.5%204.4zm-67.7-6.7c-1.2%200-2.2%201-2.2%202.3s1%202.3%202.2%202.3h67.8c1.2%200%202.2-1%202.2-2.3s-1-2.3-2.2-2.3H70.3L63.4%2016c-.4-1-1.1-1.8-2.1-2.1-.9-.3-1.9-.2-2.9.3-.9.5-8.9%205.5-12.4%205.5-4.8%200-11.4-5-11.6-5.2-.8-.6-1.8-.7-2.7-.5-.9.3-1.6%201-1.9%202L23%2033.8h-9.9zm29.7%2046.6c-5.4%200-9.7-.7-10.1-.7-.6-.1-1-.6-.9-1.2.1-.6.6-1%201.2-.9.2%200%2021.7%203.4%2028.6-5%20.4-.5%201.1-.5%201.5-.1.5.4.5%201.1.1%201.5-4.3%205.2-13.3%206.4-20.4%206.4z%22%2F%3E%3Cpath%20d%3D%22M42.3%2048.4H49.5V50.6H42.3z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M82%2018.7c-3.4%200-6.1-2.7-6.1-6.1s2.8-6.1%206.1-6.1%206.1%202.7%206.1%206.1-2.7%206.1-6.1%206.1zm0-10.1c-2.2%200-4%201.8-4%203.9s1.8%203.9%204%203.9%204-1.8%204-3.9-1.8-3.9-4-3.9zM9%2015.1H6.5l.1-1.2v-.5c0-2.7-2.2-4.9-4.9-4.9h-.5L0%208.6V6.2l1.2.1h.5c2.7%200%204.9-2.2%204.9-4.9V0h2.3l-.1%201.2v.3c0%202.7%202.2%204.9%204.9%204.9h.3l1.2-.1v2.3H13.8c-2.7%200-4.9%202.2-4.9%204.9v.5l.1%201.1zM5.5%207.4c.9.6%201.7%201.3%202.2%202.2C8.3%208.7%209%208%209.9%207.4%209%206.8%208.3%206.1%207.7%205.2c-.5.9-1.3%201.6-2.2%202.2z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_parent-control {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20105.2%2083%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M28.1%2020.3c-5.6%200-10.1-4.5-10.1-10.1S22.5%200%2028.1%200s10.1%204.5%2010.1%2010.1-4.5%2010.2-10.1%2010.2zm0-18.1c-4.4%200-7.9%203.6-7.9%208s3.6%208%207.9%208%207.9-3.6%207.9-8c0-4.5-3.5-8-7.9-8zm48.2%2018.1c-5.6%200-10.1-4.5-10.1-10.1S70.8%200%2076.3%200c5.6%200%2010.1%204.5%2010.1%2010.1s-4.5%2010.2-10.1%2010.2zm0-18.1c-4.4%200-7.9%203.6-7.9%208s3.6%208%207.9%208%207.9-3.6%207.9-8c.1-4.5-3.5-8-7.9-8zM8.9%2029.7H6.5l.1-1.2V28c0-2.7-2.2-4.9-4.9-4.9h-.5l-1.2.1v-2.4l1.2.1h.5c2.7%200%204.9-2.2%204.9-4.9v-.3l-.1-1.2h2.3l-.1%201.2v.3c0%202.7%202.2%204.9%204.9%204.9h.3l1.2-.1v2.3H13.7C11%2023%208.8%2025.2%208.8%2028v.5l.1%201.2zM5.5%2022c.9.6%201.7%201.3%202.2%202.2.6-.9%201.3-1.7%202.2-2.2-.9-.6-1.7-1.3-2.2-2.2-.6.8-1.3%201.6-2.2%202.2zM99%2029.7h-2.4l.1-1.2V28c0-2.7-2.2-4.9-4.9-4.9h-.5l-1.3.1v-2.4l1.2.1h.5c2.7%200%204.9-2.2%204.9-4.9v-.3l-.1-1.2h2.3l-.1%201.2v.3c0%202.7%202.2%204.9%204.9%204.9h.3l1.2-.1v2.3l-1.2-.1h-.3c-2.7%200-4.9%202.2-4.9%204.9v.5l.3%201.3zM95.5%2022c.9.6%201.7%201.3%202.2%202.2.6-.9%201.3-1.7%202.2-2.2-.9-.6-1.7-1.3-2.2-2.2-.5.8-1.3%201.6-2.2%202.2z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M54.4%2065.6c19.1%200%2033.1-7.6%2033.1-26.8S72%204%2052.9%204%2018.4%2019.6%2018.4%2038.8s16.9%2026.8%2036%2026.8z%22%2F%3E%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M54.4%2066.7c-23.2%200-37.1-10.4-37.1-27.9C17.3%2019%2033.3%202.9%2053%202.9c19.7%200%2035.7%2016.1%2035.7%2035.9-.1%2017.9-12.3%2027.9-34.3%2027.9zM52.9%205.1c-18.5%200-33.5%2015.1-33.5%2033.7%200%2016.1%2013.1%2025.7%2034.9%2025.7%2026.5%200%2032.1-14%2032.1-25.7%200-18.6-15-33.7-33.5-33.7z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M35.3%2032.3l-2.2-.1c.2-3.7%203.2-6.6%206.8-6.6%203.7%200%206.7%202.9%206.8%206.6l-2.2.1c-.1-2.5-2.2-4.5-4.7-4.5s-4.4%202-4.5%204.5zm36%200c-.1-2.5-2.2-4.5-4.7-4.5s-4.6%202-4.7%204.5l-2.2-.1c.2-3.7%203.2-6.6%206.8-6.6%203.7%200%206.7%202.9%206.8%206.6l-2%20.1zm-18%2024.6c-4.2%200-7.6-3.4-7.6-7.6v-4.8h15.1v4.8c.1%204.2-3.3%207.6-7.5%207.6zm-5.4-10.2v2.6c0%203%202.4%205.4%205.4%205.4s5.4-2.4%205.4-5.4v-2.6H47.9z%22%2F%3E%3Cellipse%20fill%3D%22%2399eaa8%22%20cx%3D%2230.3%22%20cy%3D%2242.7%22%20rx%3D%227.6%22%20ry%3D%227.6%22%2F%3E%3Cellipse%20fill%3D%22%2399eaa8%22%20cx%3D%2230.3%22%20cy%3D%2242.7%22%20rx%3D%227.6%22%20ry%3D%227.6%22%2F%3E%3Cellipse%20fill%3D%22%2399eaa8%22%20cx%3D%2274.9%22%20cy%3D%2242.7%22%20rx%3D%227.6%22%20ry%3D%227.6%22%2F%3E%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M34.8%2083l-.4-1c-.2-.4-.4-.9-.6-1.4-.7-1.9-1-3.9-1-5.9s.3-3.9.9-5.6c.1-.4.3-.8.5-1.2l.4-.9%2013.7%204.8-.3%205.6L34.8%2083zm1-13.3c-.1%200-.1.1%200%200-.6%201.6-.8%203.3-.8%205%200%201.7.3%203.5.9%205.2%200%20.1.1.2.1.2l9.9-4.2.1-2.6-10.2-3.6zm35%2013.3l-13.1-5.6-.3-5.6L71.1%2067l.4.9c.2.3.3.7.5%201.2.6%201.8.9%203.7.9%205.6%200%202-.4%204-1%205.9-.2.5-.4%201-.6%201.4l-.5%201zm-11.1-7.1l9.9%204.2c0-.1.1-.2.1-.2.6-1.7.9-3.4.9-5.2%200-1.7-.3-3.4-.8-4.9v-.1l-10.2%203.6.1%202.6z%22%2F%3E%3Cellipse%20fill%3D%22%23f4f4f4%22%20cx%3D%2252.9%22%20cy%3D%2274.7%22%20rx%3D%225.5%22%20ry%3D%225.6%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M52.9%2081.4c-3.6%200-6.6-3-6.6-6.7s3-6.7%206.6-6.7c3.6%200%206.6%203%206.6%206.7s-2.9%206.7-6.6%206.7zm0-11.2c-2.4%200-4.4%202-4.4%204.5s2%204.5%204.4%204.5%204.4-2%204.4-4.5-1.9-4.5-4.4-4.5z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_filtering {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2074.9%2086.4%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%233f3f3f%22%20d%3D%22M7.2%2062.7l4-4c.4-.4.4-1.1%200-1.5-.4-.4-1.1-.4-1.5%200l-4%204-3.9-3.8c-.4-.4-1.1-.4-1.5%200-.4.4-.4%201.1%200%201.5l3.9%203.8-3.9%203.8c-.4.4-.4%201.1%200%201.5.2.2.5.3.8.3s.5-.1.8-.3l3.9-3.8%204%204c.2.2.5.3.8.3s.6-.1.8-.3c.4-.4.4-1.1%200-1.5l-4.2-4zM61%2068.4l4-4c.4-.4.4-1.1%200-1.5-.4-.4-1.1-.4-1.5%200l-4%204-3.9-3.8c-.4-.4-1.1-.4-1.5%200-.4.4-.4%201.1%200%201.5l3.9%203.8-3.9%203.8c-.4.4-.4%201.1%200%201.5.2.2.5.3.8.3s.5-.1.8-.3l3.9-3.8%204%204c.2.2.5.3.8.3s.6-.1.8-.3c.4-.4.4-1.1%200-1.5l-4.2-4z%22%2F%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M6.1%2041.2c0-4.1%2013.4-7.5%2029.9-7.5s29.9%203.4%2029.9%207.5-13.4%207.5-29.9%207.5-29.9-3.3-29.9-7.5z%22%2F%3E%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M36%2041.1c-10.7%200-30.9-1.3-30.9-6.2%200-6.1%2029.7-6.2%2030.9-6.2s30.9.1%2030.9%206.2c0%204.9-20.2%206.2-30.9%206.2zM7.1%2035c.5%201.5%2010.7%204.2%2028.9%204.2s28.5-2.7%2028.9-4.2c-.4-1.4-10.7-4.2-28.9-4.2S7.5%2033.5%207.1%2035z%22%2F%3E%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M38.2%2086.4c-1.6%200-3.8-.2-5.5-1.2-1.7-1-2.8-2.9-2.8-5V69.4c0-2.1-.9-4-2.4-5.3L7.4%2046.6c-1.5-1.3-2.3-3.1-2.3-5.1V35c0-.6.4-1%201-1s1%20.4%201%201v6.6c0%201.4.6%202.7%201.6%203.6l20.2%2017.5c2%201.7%203.1%204.2%203.1%206.9v10.8c0%201.4.7%202.6%201.8%203.2%201.5.8%203.5%201%204.9.9.7%200%201.3-.7%201.3-1.4V69.4c0-2.6%201.1-5.1%203.1-6.9L63.3%2045c1-.9%201.6-2.2%201.6-3.6V35c0-.6.4-1%201-1s1%20.4%201%201v6.6c0%201.9-.8%203.8-2.3%205.1L44.4%2064.1c-1.5%201.3-2.4%203.3-2.4%205.3V83c0%201.8-1.5%203.4-3.3%203.4h-.5z%22%2F%3E%3Cg%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M14.3%2027.4l-7-1.8c-1.7-.4-2.6-2.1-2.2-3.8l1.8-7c.4-1.7%202.1-2.6%203.8-2.2l7%201.8c1.7.4%202.6%202.1%202.2%203.8l-1.8%207c-.4%201.7-2.1%202.7-3.8%202.2z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M13.7%2016.8l.4%202.1%202%20.8c.3.1.3.6%200%20.7l-1.8%201.1-.2%202.1c0%20.3-.4.5-.7.3l-1.6-1.4-2%20.5c-.3.1-.6-.3-.5-.6l.9-1.9-1.1-1.8c-.2-.3%200-.7.4-.7l2.1.2%201.4-1.6c.2-.2.6-.1.7.2z%22%2F%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M36.4%2031.2l-7.1%201.5c-1.7.4-3.3-.7-3.7-2.4l-1.5-7.1c-.4-1.7.7-3.3%202.4-3.7l7.1-1.5c1.7-.4%203.3.7%203.7%202.4l1.5%207.1c.3%201.7-.7%203.3-2.4%203.7z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M35.4%2027.6l-1.8-.5-3.4.7c-.9.2-1.8-.4-2-1.3l-.4-1.7c-.2-.9.4-1.8%201.3-2l3.4-.7c.9-.2%201.8.4%202%201.3l.9%204.2z%22%2F%3E%3Cg%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M65.1%2021.5l-6.6%203.2c-1.5.7-3.4.1-4.1-1.4l-3.2-6.6c-.7-1.5-.1-3.4%201.4-4.1l6.6-3.2c1.5-.7%203.4-.1%204.1%201.4l3.2%206.6c.8%201.5.2%203.3-1.4%204.1z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M62.3%2017.1c-.5%200-1%20.1-1.2.4L60%2013c0-.1-.1-.2-.2-.1l-4.1%201.4c-.1%200-.2.1-.1.2l1.1%204.9c0%20.5.6.9%201.4%201%20.8%200%201.5-.3%201.5-.9%200-.5-.6-1-1.4-1-.5%200-1%20.1-1.2.4l-.7-3.2%203.7-1.4.8%203.7c0%20.5.6.9%201.4%201%20.8%200%201.5-.3%201.5-.9%200-.5-.6-.9-1.4-1z%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20fill%3D%22%2399eaa8%22%20d%3D%22M48.1%209.3l-4.4%205.8c-1%201.4-3%201.6-4.3.6l-5.8-4.4c-1.4-1-1.6-3-.6-4.3l4.4-5.8c1-1.4%203-1.6%204.3-.6L47.5%205c1.3%201%201.6%202.9.6%204.3z%22%2F%3E%3Cpath%20fill%3D%22%234e4e4e%22%20d%3D%22M40.2%205.4c-.8%200-1.5.3-2%201-.7.9-.7%202-.1%202.9l-.1.1c-.6.7-.4%201.7.3%202.3.7.6%201.7.4%202.3-.3l2.7-3.5c.7-.9.5-2.1-.4-2.8-.8-.7-2.1-.5-2.7.3z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cellipse%20transform%3D%22rotate(-78.2%2012.677%2075.936)%22%20fill%3D%22%232A2A2A%22%20cx%3D%2212.7%22%20cy%3D%2275.9%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3Cellipse%20transform%3D%22rotate(-78.2%2073.064%2062.684)%22%20fill%3D%22%232A2A2A%22%20cx%3D%2273.1%22%20cy%3D%2262.7%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%3C%2Fsvg%3E");
    }

.icon_save-traffic {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2094%2082.6%22%20style%3D%22enable-background%3Anew%200%200%2094%2082.6%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M51.1%2C25.8h0.3c3.8%2C0%2C6.9-3.1%2C6.9-6.9c0-3.8-3.1-6.9-6.9-6.9c-1.1%2C0-2.1%2C0.3-3%2C0.7C47.3%2C8.2%2C43.2%2C5%2C38.4%2C5%0D%0A%09%09c-5.4%2C0-9.9%2C4.2-10.3%2C9.5c-2.2%2C0.8-3.8%2C2.9-3.8%2C5.4c0%2C3.2%2C2.6%2C5.8%2C5.8%2C5.8h1.4%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M59.4%2C82.6h-5.5c-2.1%2C0-3.9-1.4-4.3-3.5l-0.3-1.7c-2.8%2C0.5-5.6%2C0.7-8.1%2C0.7c-3.1%2C0-6.3-0.4-9.6-1.1l-0.4%2C2%0D%0A%09%09c-0.5%2C2-2.2%2C3.5-4.3%2C3.5h-5.5c-2.1%2C0-3.9-1.4-4.3-3.5l-2.3-10.6c-4.7-4.5-7.4-9.8-7.8-15.5C2.8%2C51.7%2C0%2C48%2C0%2C43.8%0D%0A%09%09c0-1.4%2C1.3-2.7%2C2.7-2.7c1.5%2C0%2C2.7%2C1.2%2C2.7%2C2.7c0%2C1.4%2C0.8%2C2.8%2C1.9%2C3.5c1.3-5.5%2C4.9-10.6%2C10.3-14.5c2.1-1.5%2C4.5-2.8%2C7-3.9l0%2C0%0D%0A%09%09c0.8-0.5%2C2.3-1%2C3.5-1.4l0%2C0c0.7-0.2%2C1.5-0.4%2C2.4-0.7c2.7-0.7%2C5.6-1.1%2C8.4-1.2c2-0.1%2C3.7-0.1%2C5.5%2C0c2.5%2C0.2%2C5%2C0.6%2C7.5%2C1.2%0D%0A%09%09c0.9%2C0.2%2C1.7%2C0.4%2C2.4%2C0.7c1.1%2C0.3%2C2.2%2C0.7%2C3.3%2C1.2c0.9%2C0.4%2C1.9%2C0.8%2C3%2C1.4c0.4%2C0.2%2C0.8%2C0.5%2C1.2%2C0.7c1-1.9%2C2.3-3.4%2C3.7-4.6%0D%0A%09%09c0.8-0.6%2C1.8-0.8%2C2.7-0.3c0.9%2C0.4%2C1.5%2C1.3%2C1.5%2C2.3V37c1.7%2C1.9%2C3.1%2C4.2%2C4.2%2C6.6h2.5c3.3%2C0%2C6%2C2.7%2C6%2C6V54c0%2C3.4-2.8%2C6.2-6.2%2C6.2h-2.3%0D%0A%09%09c-1.5%2C3.9-4.4%2C7.4-8.2%2C10.3l-1.9%2C8.7C63.3%2C81.2%2C61.5%2C82.6%2C59.4%2C82.6z%20M50.1%2C75.3c0.5%2C0%2C0.9%2C0.3%2C1%2C0.8l0.5%2C2.7%0D%0A%09%09c0.2%2C1.1%2C1.2%2C1.9%2C2.4%2C1.9h5.5c1.1%2C0%2C2.1-0.8%2C2.4-1.9l2-9c0.1-0.2%2C0.2-0.4%2C0.4-0.6c3.9-2.9%2C6.6-6.4%2C8-10.3c0.1-0.4%2C0.5-0.7%2C0.9-0.7%0D%0A%09%09h3c2.3%2C0%2C4.2-1.9%2C4.2-4.2v-4.4c0-2.2-1.8-4-4-4h-3.2c-0.4%2C0-0.8-0.2-0.9-0.6c-1-2.5-2.5-4.9-4.3-6.9c-0.2-0.2-0.3-0.4-0.3-0.7v-9.2%0D%0A%09%09c0-0.3-0.2-0.5-0.3-0.5c-0.1%2C0-0.4-0.1-0.6%2C0.1C65.2%2C29%2C64%2C30.5%2C63%2C32.6c-0.1%2C0.3-0.3%2C0.5-0.6%2C0.5c-0.3%2C0.1-0.6%2C0-0.8-0.1%0D%0A%09%09c-0.1-0.1-0.3-0.2-0.4-0.2c-0.1-0.1-0.2-0.1-0.4-0.2c-0.5-0.3-0.8-0.5-1.2-0.7c-1-0.5-1.9-1-2.8-1.3c-1-0.4-2.1-0.8-3.1-1.1%0D%0A%09%09c-0.7-0.2-1.4-0.4-2.3-0.6c-2.4-0.6-4.8-1-7.1-1.2c-1.6-0.1-3.4-0.1-5.2%2C0c-2.7%2C0.1-5.4%2C0.5-8%2C1.2c-0.9%2C0.2-1.6%2C0.4-2.3%2C0.6%0D%0A%09%09c-1%2C0.3-3%2C1.1-3.3%2C1.2c0%2C0%2C0%2C0-0.1%2C0c-2.4%2C1-4.6%2C2.3-6.6%2C3.7c-5.4%2C3.9-8.8%2C9-9.7%2C14.5c0%2C0.3-0.2%2C0.5-0.4%2C0.7%0D%0A%09%09c-0.2%2C0.2-0.5%2C0.2-0.8%2C0.1c-2.5-0.6-4.4-3.1-4.4-5.8c0-0.5-0.4-0.7-0.7-0.7c-0.3%2C0-0.7%2C0.4-0.7%2C0.7c0%2C3.6%2C2.5%2C6.6%2C6.1%2C7.4%0D%0A%09%09c0.4%2C0.1%2C0.8%2C0.5%2C0.8%2C1c0.2%2C5.5%2C2.7%2C10.7%2C7.4%2C15c0.1%2C0.1%2C0.3%2C0.3%2C0.3%2C0.5l2.3%2C10.9c0.2%2C1.1%2C1.2%2C1.9%2C2.4%2C1.9h5.5%0D%0A%09%09c1.1%2C0%2C2.1-0.8%2C2.4-1.9l0.7-3c0.1-0.3%2C0.2-0.5%2C0.5-0.6s0.5-0.2%2C0.8-0.1c3.5%2C0.9%2C6.9%2C1.3%2C10.1%2C1.3c2.7%2C0%2C5.6-0.3%2C8.7-0.8%0D%0A%09%09C50%2C75.3%2C50%2C75.3%2C50.1%2C75.3z%20M24.9%2C29.7L24.9%2C29.7L24.9%2C29.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M63.9%2C47c-2.2%2C0-3.7-0.4-3.7-2.3s1.8-3.7%2C3.7-3.7c2.2%2C0%2C3.7%2C1.8%2C3.7%2C3.7S65.8%2C47%2C63.9%2C47z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M53.6%2C46.4c-0.3%2C0-0.5%2C0-0.8-0.1c-2.4-0.4-4.7-0.7-7-0.9c-2.5-0.2-5.2-0.2-8.1-0.1c-2.7%2C0.1-5.3%2C0.4-7.9%2C0.9%0D%0A%09%09c-2.3%2C0.4-4.6-1.2-5-3.5c-0.4-2.3%2C1.2-4.6%2C3.5-5c2.9-0.5%2C5.9-0.8%2C8.9-1c3.3-0.2%2C6.3-0.1%2C9.2%2C0.1c2.6%2C0.2%2C5.3%2C0.5%2C8%2C1%0D%0A%09%09c2.3%2C0.4%2C3.9%2C2.7%2C3.4%2C5C57.5%2C45%2C55.6%2C46.4%2C53.6%2C46.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M48.9%2C40.5c-0.2%2C0-0.4%2C0-0.7-0.1c-1.4-0.3-2.8-0.4-4.2-0.5c-1.6-0.1-3.2-0.1-4.9%2C0c-1.6%2C0.1-3.2%2C0.2-4.8%2C0.5%0D%0A%09%09c-1%2C0.2-1.9-0.1-2.7-0.6c-0.8-0.6-1.3-1.4-1.5-2.4c-0.2-1%2C0.1-1.9%2C0.6-2.7s1.4-1.3%2C2.4-1.5c1.9-0.3%2C3.8-0.5%2C5.6-0.6%0D%0A%09%09c2.1-0.1%2C4-0.1%2C5.8%2C0c1.7%2C0.1%2C3.4%2C0.3%2C5%2C0.7c1%2C0.2%2C1.8%2C0.7%2C2.4%2C1.5s0.8%2C1.8%2C0.6%2C2.7C52.2%2C39.2%2C50.7%2C40.5%2C48.9%2C40.5z%20M41.3%2C37.8%0D%0A%09%09c1%2C0%2C1.9%2C0%2C2.8%2C0.1c1.5%2C0.1%2C3%2C0.3%2C4.4%2C0.6c0.9%2C0.2%2C1.8-0.4%2C1.9-1.3c0.1-0.4%2C0-0.9-0.3-1.2s-0.6-0.6-1.1-0.7%0D%0A%09%09c-1.6-0.3-3.2-0.5-4.8-0.6c-1.7-0.1-3.6-0.1-5.5%2C0c-1.8%2C0.1-3.6%2C0.3-5.4%2C0.6c-0.4%2C0.1-0.8%2C0.3-1.1%2C0.7S32%2C36.6%2C32.1%2C37%0D%0A%09%09c0.1%2C0.4%2C0.3%2C0.8%2C0.7%2C1.1c0.4%2C0.3%2C0.8%2C0.4%2C1.2%2C0.3c1.7-0.3%2C3.3-0.5%2C5-0.5C39.8%2C37.8%2C40.6%2C37.8%2C41.3%2C37.8z%22%2F%3E%0D%0A%09%3Ccircle%20fill%3D%22%2399EAA8%22%20cx%3D%2261.4%22%20cy%3D%2258.3%22%20r%3D%226.4%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%234E4E4E%22%20cx%3D%222.9%22%20cy%3D%2231.1%22%20rx%3D%221.9%22%20ry%3D%221.9%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%234E4E4E%22%20cx%3D%2213.6%22%20cy%3D%2220.5%22%20rx%3D%221.9%22%20ry%3D%221.9%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M92.7%2C20.9h-0.3c-2.9%2C0-5.2-2.3-5.2-5.2v-1.5h-2.5l0.1%2C1.3v0.3c0%2C2.9-2.3%2C5.2-5.2%2C5.2h-0.5l-1.3-0.1v2.6%0D%0A%09%09l1.3-0.2h0.5c2.9%2C0%2C5.2%2C2.3%2C5.2%2C5.2V29l-0.1%2C1.3h2.6l-0.1-1.4v-0.5c0-2.9%2C2.3-5.2%2C5.2-5.2h0.3l1.3%2C0.1v-2.5L92.7%2C20.9z%20M86%2C24.4%0D%0A%09%09c-0.6-1-1.4-1.7-2.3-2.3c0.9-0.5%2C1.7-1.4%2C2.3-2.3c0.6%2C1%2C1.4%2C1.7%2C2.3%2C2.3C87.4%2C22.7%2C86.5%2C23.6%2C86%2C24.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M80.6%2C67.3c-3.5%2C0-6.5%2C2.9-6.5%2C6.5c0%2C3.6%2C2.9%2C6.5%2C6.5%2C6.5c3.6%2C0%2C6.5-2.9%2C6.5-6.5%0D%0A%09%09C87.1%2C70.2%2C84.1%2C67.3%2C80.6%2C67.3z%20M80.6%2C77.9c-2.3%2C0-4.3-1.9-4.3-4.2c0-2.2%2C1.9-4.2%2C4.3-4.2c2.3%2C0%2C4.3%2C1.9%2C4.3%2C4.2%0D%0A%09%09C84.8%2C76%2C82.9%2C77.9%2C80.6%2C77.9z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M44.9%2C22.5l-1.5%2C1.5v-8.1c0-1.1-0.9-2-2-2h0c-1.1%2C0-2%2C0.9-2%2C2v8.1l-1.5-1.5c-0.8-0.8-2.1-0.8-2.9%2C0l0%2C0%0D%0A%09%09c-0.8%2C0.8-0.8%2C2.1%2C0%2C2.9l5.2%2C5.2c0.6%2C0.6%2C1.7%2C0.6%2C2.3%2C0l5.2-5.2c0.8-0.8%2C0.8-2.1%2C0-2.9l0%2C0C46.9%2C21.7%2C45.7%2C21.7%2C44.9%2C22.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M51.4%2C22.8h-0.3c-0.6%2C0-1-0.4-1-1s0.4-1%2C1-1h0.3c3.3%2C0%2C5.9-2.6%2C5.9-5.9S54.7%2C9%2C51.4%2C9c-0.9%2C0-1.7%2C0.2-2.6%2C0.6%0D%0A%09%09c-0.3%2C0.1-0.6%2C0.1-0.9%2C0c-0.3-0.1-0.5-0.4-0.5-0.6c-1.1-4.1-4.8-6.9-9-6.9c-4.8%2C0-8.9%2C3.8-9.3%2C8.6c0%2C0.4-0.3%2C0.7-0.6%2C0.9%0D%0A%09%09c-1.9%2C0.7-3.1%2C2.5-3.1%2C4.5c0%2C2.6%2C2.2%2C4.8%2C4.8%2C4.8h1.4c0.6%2C0%2C1%2C0.4%2C1%2C1s-0.4%2C1-1%2C1h-1.4c-3.8%2C0-6.8-3.1-6.8-6.8c0-2.6%2C1.5-5%2C3.8-6.1%0D%0A%09%09C27.9%2C4.3%2C32.8%2C0%2C38.4%2C0c4.7%2C0%2C9%2C3%2C10.6%2C7.3C49.8%2C7.1%2C50.6%2C7%2C51.4%2C7c4.4%2C0%2C7.9%2C3.5%2C7.9%2C7.9S55.8%2C22.8%2C51.4%2C22.8z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_apps-management {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2081.5%2074.1%22%20style%3D%22enable-background%3Anew%200%200%2081.5%2074.1%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.9%2C49.6l-3%2C2.2c-2.1-2.8-6-3.4-8.8-1.4l-2.2-3C35.1%2C44.3%2C40.6%2C44.5%2C44.9%2C49.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M30.9%2C47.4l2.2%2C3c-2.8%2C2-3.4%2C6-1.4%2C8.8l-3%2C2.2C24.7%2C55.9%2C26.5%2C50.7%2C30.9%2C47.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M40.5%2C60.6l2.2%2C3c-4.5%2C3.3-10.7%2C2.3-14-2.2l3-2.2C33.8%2C62%2C37.7%2C62.7%2C40.5%2C60.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M45.5%2C50.5c3.3%2C4.5%2C1.7%2C9.8-2.8%2C13.1l-2.2-3c2.8-2%2C3.4-6%2C1.4-8.8l3-2.2C45.1%2C49.9%2C45.3%2C50.2%2C45.5%2C50.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%233F3F3F%22%20d%3D%22M77%2C60.7l4.2%2C4c0.4%2C0.4%2C0.4%2C1.1%2C0%2C1.5c-0.2%2C0.2-0.5%2C0.3-0.8%2C0.3s-0.6-0.1-0.8-0.3l-4-4L71.7%2C66%0D%0A%09%09c-0.3%2C0.2-0.5%2C0.3-0.8%2C0.3s-0.6-0.1-0.8-0.3c-0.4-0.4-0.4-1.1%2C0-1.5l3.9-3.8l-3.9-3.8c-0.4-0.4-0.4-1.1%2C0-1.5%0D%0A%09%09c0.4-0.4%2C1.1-0.4%2C1.5%2C0l3.9%2C3.8l4-4c0.4-0.4%2C1.1-0.4%2C1.5%2C0c0.4%2C0.4%2C0.4%2C1.1%2C0%2C1.5L77%2C60.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M71.1%2C30.5c1%2C0%2C1.8%2C0.8%2C1.8%2C1.8c0%2C1-0.8%2C1.8-1.8%2C1.8c-1%2C0-1.8-0.8-1.8-1.8C69.3%2C31.3%2C70.1%2C30.5%2C71.1%2C30.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M53.4%2C21.4c-0.2%2C1.2-1.3%2C2-2.5%2C1.8c-0.2%2C0-0.4-0.1-0.5-0.2c-0.2-0.4-0.3-0.9-0.2-1.5c0.2-1.4%2C1.5-2.3%2C2.9-2.1%0D%0A%09%09c0%2C0%2C0%2C0%2C0%2C0C53.6%2C20%2C53.5%2C20.6%2C53.4%2C21.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M50.1%2C40.3c1.5%2C0.3%2C2%2C1.5%2C1.8%2C2.8c-0.2%2C1.4-1.5%2C2.3-2.8%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9c0.1-0.6%2C0.4-1.1%2C0.8-1.5%0D%0A%09%09c0.1%2C0%2C0.3%2C0.1%2C0.4%2C0.1C48.9%2C41.1%2C49.6%2C40.8%2C50.1%2C40.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M50.9%2C23.2c1.2%2C0.2%2C2.3-0.6%2C2.5-1.8c0.1-0.8%2C0.2-1.5-0.3-1.9c2.5%2C0.4%2C2.3%2C1.5%2C2.1%2C2.9%0D%0A%09%09c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-0.9-0.1-1.5-0.7-1.9-1.4C50.5%2C23.1%2C50.7%2C23.2%2C50.9%2C23.2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M48.6%2C31.7c0.3-1.2%2C1.5-2%2C2.8-1.8c0.2%2C0%2C0.4%2C0.1%2C0.6%2C0.2c0%2C0.1%2C0%2C0.2%2C0%2C0.3c-0.2%2C1.5-1.3%2C2-2.4%2C1.8%0D%0A%09%09C49.2%2C32%2C48.9%2C31.9%2C48.6%2C31.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M49.8%2C40.2c0.1%2C0%2C0.2%2C0%2C0.3%2C0.1c-0.5%2C0.5-1.2%2C0.8-1.9%2C0.7c-0.2%2C0-0.3-0.1-0.4-0.1C48.3%2C40.4%2C49%2C40.1%2C49.8%2C40.2%0D%0A%09%09z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M53.5%2C32.7c-0.3%2C1.8-1.5%2C2.3-2.9%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9c0-0.1%2C0-0.2%2C0.1-0.3c0.3%2C0.2%2C0.6%2C0.3%2C0.9%2C0.4%0D%0A%09%09c1.2%2C0.2%2C2.2-0.3%2C2.4-1.8c0-0.1%2C0-0.2%2C0-0.3C53%2C30.5%2C53.7%2C31.6%2C53.5%2C32.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M42%2C21.8c-1.2-0.2-2-1.3-1.8-2.4c0-0.4%2C0.2-0.7%2C0.4-0.9c0%2C0%2C0%2C0%2C0%2C0c0.5-0.4%2C1.3-0.7%2C2-0.6s1.4%2C0.4%2C1.8%2C1%0D%0A%09%09c0.1%2C0.3%2C0.1%2C0.7%2C0.1%2C1.2C44.3%2C21.2%2C43.2%2C22%2C42%2C21.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M40.7%2C30.7c-1.3-0.2-1.8-0.9-1.8-1.7c0.5-0.6%2C1.4-0.9%2C2.2-0.8c0.8%2C0.1%2C1.5%2C0.6%2C1.8%2C1.3%0D%0A%09%09C42.5%2C30.4%2C41.6%2C30.9%2C40.7%2C30.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M39.4%2C38.6c0.5%2C0.1%2C1%2C0.3%2C1.3%2C0.6c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.3c-0.6-0.1-1.1-0.4-1.4-0.9%0D%0A%09%09C38.3%2C38.6%2C38.8%2C38.5%2C39.4%2C38.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M39.9%2C53.3c1.2%2C1.7%2C0.9%2C4.1-0.8%2C5.3c-1.7%2C1.2-4.1%2C0.9-5.3-0.8c-1.2-1.7-0.9-4%2C0.8-5.3%0D%0A%09%09C36.3%2C51.2%2C38.7%2C51.6%2C39.9%2C53.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M43.1%2C31.1c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-1.9-0.3-2.3-1.5-2.1-2.9c0.1-0.5%2C0.3-1%2C0.7-1.3c0.1%2C0.8%2C0.6%2C1.5%2C1.8%2C1.7%0D%0A%09%09c0.9%2C0.1%2C1.8-0.3%2C2.2-1.1C43.1%2C30%2C43.2%2C30.6%2C43.1%2C31.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M44.7%2C20.8c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9c0.1-0.6%2C0.4-1.1%2C0.8-1.5%0D%0A%09%09c-0.2%2C0.3-0.3%2C0.6-0.4%2C0.9c-0.2%2C1.2%2C0.6%2C2.3%2C1.8%2C2.4c1.2%2C0.2%2C2.3-0.6%2C2.5-1.8c0.1-0.5%2C0-0.9-0.1-1.2C44.7%2C19.3%2C44.9%2C19.9%2C44.7%2C20.8%0D%0A%09%09z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M32.7%2C16.4c1.2%2C0.4%2C1.9%2C1.5%2C1.7%2C2.8c-0.1%2C0.5-0.2%2C1-0.4%2C1.4c-0.2%2C0-0.5%2C0-0.8%2C0c-1.2-0.2-2-1.3-1.8-2.4%0D%0A%09%09C31.5%2C17.3%2C32%2C16.7%2C32.7%2C16.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M33.2%2C20.5c0.3%2C0.1%2C0.6%2C0.1%2C0.8%2C0c-0.4%2C0.6-1.1%2C0.9-2.4%2C0.7c-1.4-0.2-2.3-1.5-2.1-2.9c0.2-1.4%2C1.5-2.3%2C2.9-2.1%0D%0A%09%09c0.1%2C0%2C0.3%2C0.1%2C0.4%2C0.1c-0.7%2C0.3-1.2%2C0.9-1.3%2C1.6C31.2%2C19.2%2C32%2C20.3%2C33.2%2C20.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M31%2C38.2c-0.2%2C0-0.4%2C0-0.6%2C0c-0.7-0.1-1.3-0.6-1.6-1.2c0.1%2C0%2C0.2%2C0%2C0.3%2C0C30%2C37.2%2C30.7%2C37.5%2C31%2C38.2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M30.7%2C26.7c1.3%2C0.2%2C2.3%2C0.8%2C2.1%2C2.6c-0.3%2C0.1-0.7%2C0.1-1%2C0.1c-1.2-0.2-2-1.3-1.8-2.5c0-0.1%2C0-0.2%2C0.1-0.3%0D%0A%09%09C30.3%2C26.6%2C30.5%2C26.6%2C30.7%2C26.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M30.4%2C38.2c0.2%2C0%2C0.4%2C0%2C0.6%2C0c0.2%2C0.4%2C0.2%2C0.9%2C0.1%2C1.7c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9%0D%0A%09%09c0.2-1.3%2C1.3-2.2%2C2.6-2.1C29.1%2C37.6%2C29.7%2C38.1%2C30.4%2C38.2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M31.8%2C29.3c0.3%2C0%2C0.7%2C0%2C1-0.1c0%2C0.1%2C0%2C0.2%2C0%2C0.3c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9%0D%0A%09%09c0.2-1.2%2C1.1-2%2C2.2-2.1c0%2C0.1%2C0%2C0.2-0.1%2C0.3C29.8%2C28.1%2C30.6%2C29.2%2C31.8%2C29.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M5.8%2C49.3c1%2C0%2C1.8%2C0.8%2C1.8%2C1.8c0%2C1-0.8%2C1.8-1.8%2C1.8c-1%2C0-1.8-0.8-1.8-1.8C4.1%2C50.1%2C4.9%2C49.3%2C5.8%2C49.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%233F3F3F%22%20d%3D%22M7.2%2C6.5l4.2%2C4c0.4%2C0.4%2C0.4%2C1.1%2C0%2C1.5c-0.2%2C0.2-0.5%2C0.3-0.8%2C0.3c-0.3%2C0-0.6-0.1-0.8-0.3l-4-4l-3.9%2C3.8%0D%0A%09%09c-0.3%2C0.2-0.5%2C0.3-0.8%2C0.3S0.5%2C12%2C0.3%2C11.8c-0.4-0.4-0.4-1.1%2C0-1.5l3.9-3.8L0.3%2C2.7c-0.4-0.4-0.4-1.1%2C0-1.5s1.1-0.4%2C1.5%2C0L5.7%2C5%0D%0A%09%09l4-4c0.4-0.4%2C1.1-0.4%2C1.5%2C0c0.4%2C0.4%2C0.4%2C1.1%2C0%2C1.5L7.2%2C6.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M46.8%2C74.1c-0.4%2C0-0.8%2C0-1.2-0.1l-22.9-3.5c-4-0.6-6.8-4.4-6.2-8.4l8.9-57.2c0.2-1.5%2C1-2.8%2C2.2-3.7%0D%0A%09%09c1.2-0.9%2C2.7-1.2%2C4.2-1l0%2C0l25.9%2C4c1.7%2C0.3%2C3.1%2C1.1%2C4.1%2C2.5c1%2C1.3%2C1.4%2C3%2C1.1%2C4.6l-8.7%2C56.5C53.6%2C71.4%2C50.4%2C74.1%2C46.8%2C74.1z%20M31%2C2%0D%0A%09%09c-0.8%2C0-1.5%2C0.2-2.1%2C0.7c-0.8%2C0.6-1.3%2C1.4-1.4%2C2.4l-8.9%2C57.2c-0.5%2C2.9%2C1.6%2C5.7%2C4.5%2C6.1L46%2C72c3%2C0.5%2C5.8-1.6%2C6.3-4.6L61%2C10.9%0D%0A%09%09c0.2-1.1-0.1-2.2-0.8-3.2c-0.7-0.9-1.7-1.5-2.8-1.7L31.5%2C2C31.3%2C2%2C31.1%2C2%2C31%2C2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M33.7%2C21.5c-0.2%2C0-0.5%2C0-0.7-0.1c-1.7-0.3-2.9-1.9-2.6-3.6c0.2-1.1%2C0.9-2%2C1.9-2.4c0.5-0.2%2C1.1-0.3%2C1.7-0.2%0D%0A%09%09c0.8%2C0.1%2C1.6%2C0.6%2C2.1%2C1.3c0.5%2C0.7%2C0.7%2C1.5%2C0.6%2C2.3c-0.1%2C0.6-0.4%2C2.6-2.6%2C2.7C33.9%2C21.5%2C33.8%2C21.5%2C33.7%2C21.5z%20M33.5%2C17.2%0D%0A%09%09c-0.1%2C0-0.3%2C0-0.4%2C0.1c0%2C0%2C0%2C0%2C0%2C0c-0.4%2C0.1-0.6%2C0.5-0.7%2C0.9c-0.1%2C0.6%2C0.3%2C1.2%2C1%2C1.3c0.2%2C0%2C0.4%2C0%2C0.5%2C0c0.4%2C0%2C0.6%2C0%2C0.8-1%0D%0A%09%09c0-0.3%2C0-0.6-0.2-0.9c-0.2-0.2-0.4-0.4-0.8-0.5C33.6%2C17.2%2C33.5%2C17.2%2C33.5%2C17.2z%20M32.7%2C16.4L32.7%2C16.4L32.7%2C16.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M42.4%2C22.9c-0.2%2C0-0.3%2C0-0.5%2C0c-0.8-0.1-1.6-0.6-2.1-1.2c-0.5-0.7-0.7-1.5-0.6-2.3c0.1-0.5%2C0.3-1%2C0.6-1.4l0%2C0%0D%0A%09%09c0%2C0%2C0%2C0%2C0%2C0c0.7-0.9%2C1.8-1.4%2C3-1.2c1.3%2C0.2%2C2.2%2C0.9%2C2.5%2C1.9c0.2%2C0.5%2C0.2%2C1%2C0.1%2C1.7C45.2%2C21.8%2C43.9%2C22.9%2C42.4%2C22.9z%20M41.4%2C19.1%0D%0A%09%09c-0.1%2C0.1-0.1%2C0.3-0.2%2C0.4c0%2C0.3%2C0%2C0.6%2C0.2%2C0.9c0.2%2C0.2%2C0.4%2C0.4%2C0.7%2C0.5c0.6%2C0.1%2C1.2-0.3%2C1.3-1c0.1-0.4%2C0-0.6%2C0-0.7c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09c-0.1-0.3-0.4-0.5-0.9-0.6C42.1%2C18.5%2C41.7%2C18.7%2C41.4%2C19.1C41.4%2C19.1%2C41.4%2C19.1%2C41.4%2C19.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M51.2%2C24.2c-0.2%2C0-0.3%2C0-0.5%2C0c-0.3-0.1-0.6-0.1-0.9-0.3c-1.2-0.5-2-1.9-1.8-3.3c0.1-0.8%2C0.6-1.6%2C1.3-2.1%0D%0A%09%09c0.7-0.5%2C1.5-0.7%2C2.3-0.6c0.8%2C0.1%2C1.4%2C0.3%2C1.8%2C0.7c0%2C0%2C0.1%2C0%2C0.1%2C0.1c1%2C0.8%2C0.8%2C2%2C0.7%2C2.8c-0.1%2C0.9-0.6%2C1.6-1.3%2C2.1%0D%0A%09%09C52.6%2C24%2C51.9%2C24.2%2C51.2%2C24.2z%20M51.2%2C20c-0.2%2C0-0.5%2C0.1-0.7%2C0.2c-0.2%2C0.2-0.4%2C0.4-0.5%2C0.7c-0.1%2C0.5%2C0.2%2C1%2C0.7%2C1.2%0D%0A%09%09c0.1%2C0%2C0.2%2C0.1%2C0.3%2C0.1c0.3%2C0%2C0.6%2C0%2C0.9-0.2c0.2-0.2%2C0.4-0.4%2C0.5-0.7c0.1-0.6%2C0.1-0.9%2C0-1c0%2C0%2C0%2C0%2C0%2C0c-0.1%2C0-0.3-0.2-1-0.3%0D%0A%09%09C51.4%2C20%2C51.3%2C20%2C51.2%2C20z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M32.1%2C30.4c-0.2%2C0-0.3%2C0-0.5%2C0c-0.8-0.1-1.6-0.6-2.1-1.3c-0.5-0.7-0.7-1.5-0.6-2.3c0-0.1%2C0-0.3%2C0.1-0.4%0D%0A%09%09c0.4-1.5%2C1.9-2.5%2C3.5-2.2c0.9%2C0.1%2C1.6%2C0.5%2C2%2C1c0.6%2C0.6%2C0.8%2C1.5%2C0.6%2C2.6c-0.2%2C1.2-1%2C2.1-2.1%2C2.5C32.8%2C30.3%2C32.5%2C30.4%2C32.1%2C30.4z%0D%0A%09%09%20M32.1%2C26.1c-0.5%2C0-1%2C0.3-1.1%2C0.8c0%2C0%2C0%2C0.1%2C0%2C0.1c0%2C0%2C0%2C0%2C0%2C0c-0.1%2C0.3%2C0%2C0.6%2C0.2%2C0.9c0.2%2C0.2%2C0.4%2C0.4%2C0.7%2C0.5c0.2%2C0%2C0.4%2C0%2C0.5%2C0%0D%0A%09%09c0.4-0.1%2C0.7-0.5%2C0.8-0.9c0.1-0.3%2C0.1-0.8-0.1-1c-0.1-0.2-0.4-0.3-0.8-0.3C32.2%2C26.1%2C32.2%2C26.1%2C32.1%2C26.1z%20M30.1%2C26.6L30.1%2C26.6%0D%0A%09%09L30.1%2C26.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41%2C31.7c-0.2%2C0-0.3%2C0-0.5%2C0c-1.6-0.3-2.6-1.2-2.7-2.6c0-0.3%2C0-0.7%2C0-1c0.1-0.8%2C0.6-1.6%2C1.3-2.1%0D%0A%09%09c0.7-0.5%2C1.5-0.7%2C2.3-0.6c1.7%2C0.3%2C2.9%2C1.9%2C2.6%2C3.6c-0.1%2C0.4-0.2%2C0.7-0.3%2C1C43.2%2C31.1%2C42.1%2C31.7%2C41%2C31.7z%20M41%2C27.5%0D%0A%09%09c-0.2%2C0-0.5%2C0.1-0.7%2C0.2c-0.2%2C0.2-0.4%2C0.4-0.5%2C0.8c0%2C0.2%2C0%2C0.3%2C0%2C0.5l0%2C0c0%2C0.2%2C0.1%2C0.7%2C1%2C0.8c0.5%2C0.1%2C1-0.2%2C1.2-0.6%0D%0A%09%09c0.1-0.1%2C0.1-0.2%2C0.1-0.4c0-0.3%2C0-0.6-0.2-0.8c-0.2-0.2-0.4-0.4-0.7-0.5C41.1%2C27.5%2C41%2C27.5%2C41%2C27.5z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M50%2C33.1c-0.2%2C0-0.4%2C0-0.6%2C0c-0.5-0.1-1-0.3-1.4-0.6c-0.9-0.7-1.4-1.9-1.3-3c0.3-1.7%2C1.9-2.9%2C3.6-2.6%0D%0A%09%09c1.6%2C0.2%2C2.7%2C1.6%2C2.7%2C3.2c0%2C0.1%2C0%2C0.3%2C0%2C0.5c-0.2%2C1.1-0.7%2C1.7-1.2%2C2C51.3%2C32.9%2C50.7%2C33.1%2C50%2C33.1z%20M49.9%2C28.8c-0.6%2C0-1%2C0.4-1.1%2C1%0D%0A%09%09c-0.1%2C0.4%2C0.1%2C0.8%2C0.5%2C1.1c0.2%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2c0.3%2C0%2C0.7%2C0.1%2C0.9-0.1c0.2-0.1%2C0.3-0.4%2C0.4-0.8c0%2C0%2C0-0.1%2C0-0.2%0D%0A%09%09c0-0.6-0.4-1.1-1-1.2C50%2C28.8%2C49.9%2C28.8%2C49.9%2C28.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M30.8%2C39.2c-0.2%2C0-0.3%2C0-0.5%2C0c-1.1-0.2-1.9-0.8-2.4-1.8c-0.3-0.6-0.4-1.2-0.3-1.8c0.3-1.7%2C1.9-2.9%2C3.6-2.6%0D%0A%09%09c2.6%2C0.4%2C2.8%2C2.2%2C2.6%2C3.6c-0.2%2C1.4-1.3%2C2.5-2.7%2C2.6C31.1%2C39.2%2C30.9%2C39.2%2C30.8%2C39.2z%20M30.8%2C34.9c-0.6%2C0-1%2C0.4-1.1%2C1%0D%0A%09%09c0%2C0.2%2C0%2C0.4%2C0.1%2C0.6c0%2C0%2C0%2C0%2C0%2C0c0.1%2C0.3%2C0.5%2C0.6%2C0.8%2C0.6c0.1%2C0%2C0.2%2C0%2C0.3%2C0c0.5-0.1%2C0.9-0.5%2C1-1c0.1-1-0.1-1.2-1-1.3%0D%0A%09%09C30.9%2C35%2C30.8%2C34.9%2C30.8%2C34.9z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M48.5%2C42c-0.2%2C0-0.3%2C0-0.5%2C0c-0.2%2C0-0.4-0.1-0.6-0.2c-1.4-0.5-2.2-2-2-3.4c0.3-1.7%2C1.9-2.9%2C3.6-2.6%0D%0A%09%09c1.9%2C0.3%2C2.9%2C1.7%2C2.6%2C3.6c-0.1%2C0.6-0.4%2C1.2-0.8%2C1.7C50.2%2C41.6%2C49.4%2C42%2C48.5%2C42z%20M48.5%2C37.7c-0.6%2C0-1%2C0.4-1.1%2C1%0D%0A%09%09c-0.1%2C0.5%2C0.2%2C1.1%2C0.7%2C1.3c0%2C0%2C0%2C0%2C0%2C0c0.1%2C0%2C0.1%2C0%2C0.2%2C0.1c0.4%2C0.1%2C0.8-0.1%2C1-0.3c0.2-0.2%2C0.3-0.4%2C0.3-0.6c0.2-1.1-0.7-1.3-1-1.3%0D%0A%09%09C48.6%2C37.7%2C48.5%2C37.7%2C48.5%2C37.7z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M41.9%2C52.8c-0.3%2C0-0.6-0.1-0.8-0.4c-0.3-0.4-0.2-1.1%2C0.2-1.4l3-2.2l0.6%2C0.8l0.6%2C0.8l0%2C0l-2.9%2C2.2%0D%0A%09%09C42.3%2C52.7%2C42.1%2C52.8%2C41.9%2C52.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M28.7%2C62.4c-0.3%2C0-0.6-0.1-0.8-0.4c-0.3-0.4-0.2-1.1%2C0.2-1.4l3-2.2c0.4-0.3%2C1.1-0.2%2C1.4%2C0.2%0D%0A%09%09c0.3%2C0.4%2C0.2%2C1.1-0.2%2C1.4l-3%2C2.2C29.2%2C62.4%2C28.9%2C62.4%2C28.7%2C62.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M42.7%2C64.6c-0.3%2C0-0.6-0.1-0.8-0.4l-2.2-3c-0.3-0.4-0.2-1.1%2C0.2-1.4c0.4-0.3%2C1.1-0.2%2C1.4%2C0.2l2.2%2C3%0D%0A%09%09c0.3%2C0.4%2C0.2%2C1.1-0.2%2C1.4C43.2%2C64.5%2C42.9%2C64.6%2C42.7%2C64.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M33.1%2C51.4c-0.3%2C0-0.6-0.1-0.8-0.4l-2.2-3c-0.3-0.4-0.2-1.1%2C0.2-1.4c0.4-0.3%2C1.1-0.2%2C1.4%2C0.2l2.2%2C3%0D%0A%09%09c0.3%2C0.4%2C0.2%2C1.1-0.2%2C1.4C33.5%2C51.4%2C33.3%2C51.4%2C33.1%2C51.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M42.2%2C13.2c-0.1%2C0-0.3%2C0-0.4%2C0c0%2C0%2C0%2C0%2C0%2C0l-8-1.2c-0.6-0.1-1.1-0.4-1.4-0.9c-0.3-0.5-0.4-1.1-0.3-1.7L32.4%2C8%0D%0A%09%09c0.3-1.1%2C1.3-1.8%2C2.4-1.6l8.6%2C1.3c0.6%2C0.1%2C1.1%2C0.4%2C1.4%2C0.9c0.3%2C0.5%2C0.4%2C1.1%2C0.3%2C1.6l-0.2%2C0.9C44.5%2C12.4%2C43.4%2C13.2%2C42.2%2C13.2z%0D%0A%09%09%20M42.1%2C11.2c0.3%2C0%2C0.6-0.2%2C0.7-0.5l0.2-0.9l0.1-1.1l-0.2%2C1l-8.6-1.3c-0.1%2C0-0.1%2C0-0.1%2C0.1L34%2C9.8l0%2C0.1c0%2C0%2C0%2C0%2C0.1%2C0.1L42.1%2C11.2z%0D%0A%09%09%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M52.7%2C14.9c-0.1%2C0-0.2%2C0-0.3%2C0l-3.1-0.5c-0.6-0.1-1.1-0.5-1.5-1c-0.3-0.5-0.4-1.1-0.2-1.7l0.4-1.2%0D%0A%09%09c0.3-1.1%2C1.5-1.8%2C2.6-1.6l2.6%2C0.4c0.7%2C0.1%2C1.3%2C0.5%2C1.6%2C1.1c0.4%2C0.6%2C0.5%2C1.3%2C0.2%2C2l-0.3%2C1.1C54.4%2C14.3%2C53.6%2C14.9%2C52.7%2C14.9z%0D%0A%09%09%20M50.1%2C10.8c-0.2%2C0-0.3%2C0.1-0.3%2C0.2l-0.4%2C1.2l-0.1%2C1.1l0.2-1l3.1%2C0.5c0%2C0%2C0%2C0%2C0%2C0c0%2C0%2C0.1%2C0%2C0.1-0.1l0.3-1.1c0-0.1%2C0-0.2%2C0-0.3%0D%0A%09%09c0-0.1-0.1-0.1-0.2-0.2L50.1%2C10.8C50.2%2C10.8%2C50.2%2C10.8%2C50.1%2C10.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M36.8%2C68.5c-4%2C0-7.9-1.8-10.5-5.3C24%2C59.9%2C23%2C56.4%2C23.7%2C53c0.6-3%2C2.5-5.8%2C5.5-7.9c5.9-4.3%2C13-3.2%2C18%2C2.8%0D%0A%09%09c0.3%2C0.3%2C0.6%2C0.7%2C0.8%2C1.1c2%2C2.8%2C2.7%2C6%2C2%2C9.2c-0.7%2C3-2.7%2C5.8-5.5%2C7.9c0%2C0%2C0%2C0%2C0%2C0C42.2%2C67.6%2C39.5%2C68.5%2C36.8%2C68.5z%20M36.8%2C44.5%0D%0A%09%09c-2.2%2C0-4.4%2C0.7-6.4%2C2.3c-2.6%2C1.9-4.2%2C4.2-4.7%2C6.7c-0.6%2C2.8%2C0.2%2C5.7%2C2.3%2C8.5c3.6%2C4.9%2C10.4%2C5.9%2C15.3%2C2.4c2.5-1.8%2C4.1-4.2%2C4.7-6.7%0D%0A%09%09c0.6-2.6%2C0.1-5.2-1.6-7.5c-0.2-0.3-0.5-0.7-0.8-1C43.1%2C46.1%2C39.9%2C44.5%2C36.8%2C44.5z%20M43.9%2C65.2L43.9%2C65.2L43.9%2C65.2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M40.8%2C39.3c0.6%2C0.5%2C0.9%2C1.4%2C0.8%2C2.2c-0.2%2C1.4-1.5%2C2.3-2.9%2C2.1c-1.4-0.2-2.3-1.5-2.1-2.9c0.1-0.9%2C0.5-1.7%2C1.3-2%0D%0A%09%09c0.3%2C0.4%2C0.8%2C0.8%2C1.4%2C0.9C39.8%2C39.7%2C40.3%2C39.6%2C40.8%2C39.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M39.6%2C40.6c-0.2%2C0-0.3%2C0-0.5%2C0c-0.8-0.1-1.6-0.6-2.1-1.3c-0.5-0.7-0.7-1.5-0.6-2.3c0.2-1%2C0.5-1.7%2C1.2-2.2%0D%0A%09%09c0.6-0.5%2C1.4-0.6%2C2.4-0.5c1.7%2C0.3%2C2.9%2C1.9%2C2.6%2C3.6c-0.1%2C0.9-0.7%2C1.7-1.4%2C2.2C40.8%2C40.4%2C40.2%2C40.6%2C39.6%2C40.6z%20M39.4%2C36.3%0D%0A%09%09c-0.2%2C0-0.4%2C0-0.5%2C0.1c-0.2%2C0.2-0.3%2C0.6-0.4%2C0.9c0%2C0.3%2C0%2C0.6%2C0.2%2C0.8c0%2C0%2C0%2C0%2C0%2C0c0.2%2C0.2%2C0.4%2C0.4%2C0.7%2C0.5c0.3%2C0%2C0.6%2C0%2C0.8-0.2%0D%0A%09%09c0.3-0.2%2C0.5-0.5%2C0.5-0.8c0.1-0.6-0.3-1.2-1-1.3C39.7%2C36.3%2C39.5%2C36.3%2C39.4%2C36.3z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_no-root {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2083.9%2086.3%22%20style%3D%22enable-background%3Anew%200%200%2083.9%2086.3%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Ccircle%20fill%3D%22%2399EAA8%22%20cx%3D%2222.5%22%20cy%3D%2247.9%22%20r%3D%229.3%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%221.8%22%20cy%3D%2268.2%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%229.5%22%20cy%3D%2282%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2218.7%22%20cy%3D%221.8%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M17.5%2C26.9h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9v-1.4H10l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H4.7l-1.2-0.1v2.4l1.2-0.2%0D%0A%09%09h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5L10%2C35.7h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1v-2.3L17.5%2C26.9z%20M11.2%2C30.2%0D%0A%09%09C10.6%2C29.3%2C9.9%2C28.6%2C9%2C28c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C12.5%2C28.6%2C11.7%2C29.4%2C11.2%2C30.2z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M82.7%2C7.8h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V1.5h-2.3l0.1%2C1.2V3c0%2C2.7-2.2%2C4.9-4.9%2C4.9h-0.5l-1.2-0.1v2.4l1.2-0.2%0D%0A%09%09h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1V7.7L82.7%2C7.8z%20M76.4%2C11.1%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C77.7%2C9.5%2C76.9%2C10.3%2C76.4%2C11.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M72.3%2C74.1c-3.3%2C0-6.1%2C2.7-6.1%2C6.1c0%2C3.4%2C2.7%2C6.1%2C6.1%2C6.1s6.1-2.7%2C6.1-6.1C78.4%2C76.8%2C75.6%2C74.1%2C72.3%2C74.1z%0D%0A%09%09%20M72.3%2C84c-2.2%2C0-4-1.8-4-3.9c0-2.1%2C1.8-3.9%2C4-3.9s4%2C1.8%2C4%2C3.9C76.3%2C82.2%2C74.5%2C84%2C72.3%2C84z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M39.5%2C83.2c-13.3%2C0-24.2-10.8-24.2-24.1c0-1.1%2C0-2.1%2C0-3c0-1.8%2C0.7-3.5%2C2-4.8c1.3-1.3%2C3-2%2C4.8-2%0D%0A%09%09%09c2.5%2C0%2C4.7%2C1.4%2C5.9%2C3.4l3.8-3.1c1.1-0.9%2C2.5-1.4%2C4-1.4c4.9%2C0%2C8.9%2C4%2C8.9%2C8.9v3.7c0%2C4.9-4%2C8.9-8.9%2C8.9s-8.9-4-8.9-8.9V56%0D%0A%09%09%09c0-2.6-2.1-4.8-4.8-4.8c-1.3%2C0-2.5%2C0.5-3.4%2C1.4c-0.9%2C0.9-1.4%2C2.1-1.4%2C3.4c0%2C0.9%2C0%2C2%2C0%2C3c0%2C12.2%2C9.9%2C22.1%2C22.2%2C22.1%0D%0A%09%09%09c12.2%2C0%2C22.2-9.9%2C22.2-22.2V22.1c0-1.6-1.3-2.8-2.8-2.8c-0.9%2C0-1.8%2C0.4-2.3%2C1.2c-0.3%2C0.5-0.9%2C0.6-1.4%2C0.2%0D%0A%09%09%09c-0.5-0.3-0.6-0.9-0.2-1.4c0.9-1.3%2C2.4-2%2C4-2c2.7%2C0%2C4.8%2C2.2%2C4.8%2C4.8V59C63.6%2C72.3%2C52.8%2C83.2%2C39.5%2C83.2z%20M28.7%2C54.6%0D%0A%09%09%09c0.1%2C0.4%2C0.1%2C0.9%2C0.1%2C1.4v4.8c0%2C3.8%2C3.1%2C6.9%2C6.9%2C6.9c3.8%2C0%2C6.9-3.1%2C6.9-6.9V57c0-3.8-3.1-6.9-6.9-6.9c-1%2C0-1.9%2C0.3-2.7%2C1%0D%0A%09%09%09L28.7%2C54.6z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M19%2C52.1c-0.4%2C0-0.8-0.3-1-0.7c-1-3.2%2C0.1-6.6%2C2.8-8.6l9-6.6c0.2-0.1%2C0.4-0.2%2C0.6-0.2h14.6c0.6%2C0%2C1%2C0.4%2C1%2C1%0D%0A%09%09%09s-0.4%2C1-1%2C1H30.7L22%2C44.5c-2%2C1.5-2.8%2C4-2.1%2C6.3c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3C19.2%2C52.1%2C19.1%2C52.1%2C19%2C52.1z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M54.9%2C37.9c-0.3%2C0-0.6-0.1-0.8-0.4L36.8%2C14.7c-0.8-1-1.9-1.7-3.2-1.9c-1.3-0.2-2.6%2C0.2-3.6%2C1%0D%0A%09%09%09c-2.1%2C1.6-2.5%2C4.7-0.9%2C6.8l12%2C15.7c0.3%2C0.4%2C0.3%2C1.1-0.2%2C1.4c-0.4%2C0.3-1.1%2C0.3-1.4-0.2l-12-15.7c-2.3-3-1.7-7.3%2C1.2-9.6%0D%0A%09%09%09c1.5-1.1%2C3.3-1.6%2C5.1-1.4c1.8%2C0.2%2C3.5%2C1.2%2C4.6%2C2.7l17.3%2C22.8c0.3%2C0.4%2C0.2%2C1.1-0.2%2C1.4C55.3%2C37.9%2C55.1%2C37.9%2C54.9%2C37.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M58.9%2C34.4c-0.4%2C0-0.8-0.3-1-0.7l-4.8-17.8c-0.3-1.1-1-2-1.9-2.5c-1-0.5-2.1-0.7-3.2-0.3%0D%0A%09%09%09c-1.1%2C0.3-1.9%2C1-2.4%2C2c-0.5%2C1-0.6%2C2.1-0.3%2C3.1l3.5%2C9.2c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3c-0.5%2C0.2-1.1-0.1-1.3-0.6l-3.5-9.3%0D%0A%09%09%09c-0.5-1.6-0.4-3.3%2C0.4-4.7c0.8-1.5%2C2-2.5%2C3.6-3c1.6-0.5%2C3.3-0.3%2C4.7%2C0.5c1.4%2C0.8%2C2.5%2C2.1%2C2.9%2C3.7l4.8%2C17.8%0D%0A%09%09%09c0.1%2C0.5-0.2%2C1.1-0.7%2C1.2C59.1%2C34.4%2C59%2C34.4%2C58.9%2C34.4z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_customizable {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2083.7%2093%22%20style%3D%22enable-background%3Anew%200%200%2083.7%2093%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M82.5%2C48.4h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9v-1.4H75l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9h-0.5l-1.2-0.1v2.4%0D%0A%09%09%09l1.2-0.2h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9V56L75%2C57.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1v-2.3L82.5%2C48.4z%20M76.2%2C51.7%0D%0A%09%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C77.5%2C50.1%2C76.7%2C50.9%2C76.2%2C51.7z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M35.4%2C6.3h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V0h-2.3L28%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9h-0.5l-1.2-0.1v2.4l1.2-0.2%0D%0A%09%09%09h0.5c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3l1.2%2C0.1V6.2L35.4%2C6.3z%20M29.1%2C9.6%0D%0A%09%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C30.4%2C8%2C29.6%2C8.8%2C29.1%2C9.6z%22%2F%3E%0D%0A%09%09%3Cg%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M27.2%2C50.9L21%2C57.1c-4.7-1.9-10.2-0.9-14%2C2.8c-3.9%2C3.9-4.8%2C9.6-2.7%2C14.3l8.1-8.1c1.4%2C0%2C2.1%2C0%2C3.5%2C0l3.2%2C3.2%0D%0A%09%09%09%09c0%2C1.4%2C0%2C2.1%2C0%2C3.5L11%2C80.9c4.7%2C2.1%2C10.4%2C1.2%2C14.3-2.7c3.8-3.8%2C4.7-9.3%2C2.8-14l5.3-5.3%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M46.3%2C46l5.3-5.3c4.7%2C1.9%2C10.2%2C0.9%2C14-2.8c3.9-3.9%2C4.8-9.6%2C2.7-14.3l-8.1%2C8.1c-1.4%2C0-2.1%2C0-3.5%2C0l-3.2-3.2%0D%0A%09%09%09%09c0-1.4%2C0-2.1%2C0-3.5l8.1-8.1c-4.7-2.1-10.4-1.2-14.3%2C2.7c-3.8%2C3.8-4.7%2C9.3-2.8%2C14l-7%2C7%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M14%2C80.8c-1.9%2C0-3.8-0.4-5.6-1.2c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3%2C0-0.7%2C0.3-0.9l7.8-7.8v-2.7l-2.6-2.6%0D%0A%09%09%09%09h-2.7l-7.8%2C7.8C2.6%2C72.9%2C2.2%2C73%2C1.9%2C73s-0.6-0.3-0.7-0.6C-1.1%2C67.1%2C0%2C61%2C4.1%2C57c3.8-3.8%2C9.4-5.1%2C14.5-3.3l5.7-5.7%0D%0A%09%09%09%09c0.4-0.4%2C1-0.4%2C1.4%2C0s0.4%2C1%2C0%2C1.4l-6.1%2C6.1c-0.3%2C0.3-0.7%2C0.4-1.1%2C0.2C14%2C54%2C8.9%2C55%2C5.5%2C58.4c-3.1%2C3.1-4.2%2C7.6-3%2C11.8l7-7%0D%0A%09%09%09%09c0.2-0.2%2C0.4-0.3%2C0.7-0.3h3.5c0.3%2C0%2C0.5%2C0.1%2C0.7%2C0.3l3.2%2C3.2c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7v3.5c0%2C0.3-0.1%2C0.5-0.3%2C0.7l-7%2C7%0D%0A%09%09%09%09c4.2%2C1.2%2C8.7%2C0.1%2C11.8-3c3.4-3.4%2C4.4-8.5%2C2.6-12.9c-0.2-0.4-0.1-0.8%2C0.2-1.1l5.3-5.3c0.4-0.4%2C1-0.4%2C1.4%2C0c0.4%2C0.4%2C0.4%2C1%2C0%2C1.4%0D%0A%09%09%09%09l-4.8%2C4.8c1.8%2C5%2C0.5%2C10.7-3.3%2C14.5C21.1%2C79.3%2C17.6%2C80.8%2C14%2C80.8z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.1%2C44.8c-0.3%2C0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1%2C0-1.4l5.3-5.3c0.3-0.3%2C0.7-0.4%2C1.1-0.2%0D%0A%09%09%09%09c4.5%2C1.8%2C9.5%2C0.8%2C12.9-2.6c3.1-3.1%2C4.2-7.6%2C3-11.8l-7%2C7c-0.2%2C0.2-0.4%2C0.3-0.7%2C0.3h-3.5c-0.3%2C0-0.5-0.1-0.7-0.3l-3.2-3.2%0D%0A%09%09%09%09c-0.2-0.2-0.3-0.4-0.3-0.7v-3.5c0-0.3%2C0.1-0.5%2C0.3-0.7l7-7c-4.2-1.2-8.7-0.1-11.8%2C3c-3.4%2C3.4-4.4%2C8.5-2.6%2C12.9%0D%0A%09%09%09%09c0.2%2C0.4%2C0.1%2C0.8-0.2%2C1.1l-7%2C7c-0.4%2C0.4-1%2C0.4-1.4%2C0s-0.4-1%2C0-1.4l6.6-6.6c-1.8-5-0.5-10.7%2C3.3-14.5c4.1-4.1%2C10.1-5.2%2C15.4-2.9%0D%0A%09%09%09%09c0.3%2C0.1%2C0.5%2C0.4%2C0.6%2C0.7c0.1%2C0.3%2C0%2C0.7-0.3%2C0.9l-7.8%2C7.8v2.7l2.6%2C2.6h2.7l7.8-7.8c0.2-0.2%2C0.6-0.3%2C0.9-0.3%0D%0A%09%09%09%09c0.3%2C0.1%2C0.6%2C0.3%2C0.7%2C0.6c2.3%2C5.3%2C1.2%2C11.3-2.9%2C15.4c-3.8%2C3.8-9.4%2C5.1-14.5%2C3.3l-4.8%2C4.8C44.6%2C44.7%2C44.4%2C44.8%2C44.1%2C44.8z%22%2F%3E%0D%0A%09%09%09%3Cg%3E%0D%0A%09%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M58.3%2C82.3c-1.8%2C0-3.5-0.7-4.8-2L48%2C74.9c-3.9-3.9-7-8.3-9.4-13.2l-1.2-2.6l-4.9-4.9%0D%0A%09%09%09%09%09c-1.6-1.6-2.2-3.8-1.9-5.9L14.3%2C31.9l-1.7%2C0.1c-0.2%2C0-0.5-0.1-0.7-0.2l-7.1-5.3c-0.1-0.1-0.2-0.2-0.3-0.3l-4-7.7%0D%0A%09%09%09%09%09c-0.2-0.4-0.1-0.9%2C0.2-1.2l3.8-3.8c0.3-0.3%2C0.8-0.4%2C1.2-0.1l7.3%2C4.4c0.1%2C0.1%2C0.2%2C0.1%2C0.2%2C0.2l5.6%2C6.8c0.1%2C0.1%2C0.2%2C0.3%2C0.2%2C0.5%0D%0A%09%09%09%09%09l0.3%2C1.7l16%2C16l0.7%2C0c1.9-0.1%2C3.8%2C0.6%2C5.2%2C1.9l5.4%2C5.4l2%2C0.9c5.1%2C2.4%2C9.8%2C5.6%2C13.8%2C9.6l5.3%2C5.3c1.3%2C1.3%2C2%2C3%2C2%2C4.8%0D%0A%09%09%09%09%09s-0.7%2C3.5-2%2C4.8L63%2C80.4C61.8%2C81.6%2C60.1%2C82.3%2C58.3%2C82.3z%20M14.7%2C29.9c0.3%2C0%2C0.5%2C0.1%2C0.7%2C0.3l17%2C17c0.3%2C0.3%2C0.4%2C0.6%2C0.3%2C1%0D%0A%09%09%09%09%09c-0.4%2C1.6%2C0%2C3.4%2C1.2%2C4.6l5.1%2C5.1c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.3l1.3%2C2.8c2.3%2C4.7%2C5.3%2C9%2C9%2C12.7l5.5%2C5.5c0.9%2C0.9%2C2.1%2C1.4%2C3.4%2C1.4%0D%0A%09%09%09%09%09s2.5-0.5%2C3.4-1.4l4.8-4.8c0.9-0.9%2C1.4-2.1%2C1.4-3.4s-0.5-2.5-1.4-3.4l-5.3-5.3c-3.8-3.8-8.3-6.9-13.2-9.2l-2.1-1%0D%0A%09%09%09%09%09c-0.1%2C0-0.2-0.1-0.3-0.2l-5.6-5.6c-1-1-2.3-1.5-3.6-1.4l-1.2%2C0.1c-0.3%2C0-0.6-0.1-0.8-0.3L17.8%2C28.1c-0.1-0.1-0.2-0.3-0.3-0.5%0D%0A%09%09%09%09%09l-0.3-1.7l-5.3-6.4l-6.5-3.9l-2.7%2C2.7l3.5%2C6.9l6.6%2C5L14.7%2C29.9C14.7%2C29.9%2C14.7%2C29.9%2C14.7%2C29.9z%22%2F%3E%0D%0A%09%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M31.7%2C48.9c-0.2%2C0-0.5-0.1-0.6-0.2c-0.4-0.4-0.5-1-0.1-1.4l3.4-3.9c0.4-0.4%2C1-0.5%2C1.4-0.1s0.5%2C1%2C0.1%2C1.4%0D%0A%09%09%09%09%09l-3.4%2C3.9C32.3%2C48.8%2C32%2C48.9%2C31.7%2C48.9z%22%2F%3E%0D%0A%09%09%09%3C%2Fg%3E%0D%0A%09%09%3C%2Fg%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2236.7%22%20cy%3D%2283.1%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2227.5%22%20cy%3D%2291.2%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41.8%2C57.4c-0.2%2C0-0.4-0.1-0.6-0.2c-0.4-0.3-0.5-1-0.1-1.4l4.4-5.3c0.3-0.4%2C1-0.5%2C1.4-0.1%0D%0A%09%09c0.4%2C0.3%2C0.5%2C1%2C0.1%2C1.4L42.6%2C57C42.4%2C57.3%2C42.1%2C57.4%2C41.8%2C57.4z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M52.5%2C72.7c-0.2%2C0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1-0.1-1.4l9.3-10.2c0.4-0.4%2C1-0.4%2C1.4-0.1%0D%0A%09%09c0.4%2C0.4%2C0.4%2C1%2C0.1%2C1.4l-9.3%2C10.2C53.1%2C72.6%2C52.8%2C72.7%2C52.5%2C72.7z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_open-source {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2082.3%2087.5%22%20style%3D%22enable-background%3Anew%200%200%2082.3%2087.5%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M71.2%2C0c-3.3%2C0-6.1%2C2.7-6.1%2C6.1c0%2C3.4%2C2.7%2C6.1%2C6.1%2C6.1s6.1-2.7%2C6.1-6.1C77.3%2C2.7%2C74.5%2C0%2C71.2%2C0z%20M71.2%2C9.9%0D%0A%09%09c-2.2%2C0-4-1.8-4-3.9c0-2.1%2C1.8-3.9%2C4-3.9s4%2C1.8%2C4%2C3.9C75.2%2C8.1%2C73.4%2C9.9%2C71.2%2C9.9z%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2225.6%22%20cy%3D%2285.7%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2216%22%20cy%3D%2280.1%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2258.7%22%20cy%3D%222.8%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M41.2%2C12.8c-17.1%2C0-31%2C13.9-31%2C31c0%2C17.1%2C13.9%2C31%2C31%2C31c17.1%2C0%2C31-13.9%2C31-31C72.1%2C26.7%2C58.3%2C12.8%2C41.2%2C12.8z%0D%0A%09%09%20M41.2%2C62.3c-10.2%2C0-18.5-8.3-18.5-18.5c0-10.2%2C8.3-18.5%2C18.5-18.5c10.2%2C0%2C18.5%2C8.3%2C18.5%2C18.5C59.7%2C54%2C51.4%2C62.3%2C41.2%2C62.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41.2%2C65.9C18.8%2C65.9%2C1%2C45.3%2C0.2%2C44.4c-0.3-0.4-0.3-0.9%2C0-1.3C1%2C42.2%2C18.8%2C21.7%2C41.2%2C21.7s40.2%2C20.6%2C40.9%2C21.5%0D%0A%09%09c0.3%2C0.4%2C0.3%2C0.9%2C0%2C1.3C81.3%2C45.3%2C63.5%2C65.9%2C41.2%2C65.9z%20M2.3%2C43.8c3.2%2C3.5%2C19.5%2C20.1%2C38.8%2C20.1S76.7%2C47.3%2C80%2C43.8%0D%0A%09%09c-3.2-3.5-19.5-20.1-38.8-20.1S5.6%2C40.3%2C2.3%2C43.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41.2%2C57.5c-7.6%2C0-13.7-6.2-13.7-13.7S33.6%2C30%2C41.2%2C30s13.7%2C6.2%2C13.7%2C13.7S48.7%2C57.5%2C41.2%2C57.5z%20M41.2%2C32%0D%0A%09%09c-6.5%2C0-11.7%2C5.3-11.7%2C11.7c0%2C6.5%2C5.3%2C11.7%2C11.7%2C11.7c6.5%2C0%2C11.7-5.3%2C11.7-11.7C52.9%2C37.3%2C47.6%2C32%2C41.2%2C32z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_manual {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2078.5%2086.8%22%20style%3D%22enable-background%3Anew%200%200%2078.5%2086.8%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpolyline%20fill%3D%22%2399EAA8%22%20points%3D%2252.6%2C43.5%2043.1%2C46.8%2045%2C52.8%2053.8%2C49.8%20%09%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M57.5%2C20.8c1%2C3.3%2C4.3%2C5.1%2C7.6%2C4.1c3.3-1%2C5.1-4.3%2C4.1-7.6c-1-3.3-4.4-5-7.6-4.1S56.5%2C17.5%2C57.5%2C20.8z%0D%0A%09%09%20M59.5%2C20.1c-0.6-2%2C0.6-4.3%2C2.7-4.9c2.1-0.6%2C4.3%2C0.6%2C4.9%2C2.6c0.6%2C2-0.6%2C4.3-2.7%2C4.9C62.3%2C23.3%2C60.1%2C22.1%2C59.5%2C20.1z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M65%2C37.7c1%2C3.3%2C4.3%2C5.1%2C7.6%2C4.1c3.3-1%2C5.1-4.3%2C4.1-7.6c-1-3.3-4.4-5-7.6-4.1S64.1%2C34.5%2C65%2C37.7z%20M67%2C37%0D%0A%09%09c-0.6-2%2C0.6-4.3%2C2.7-4.9c2.1-0.6%2C4.3%2C0.6%2C4.9%2C2.6c0.6%2C2-0.6%2C4.3-2.7%2C4.9S67.6%2C39.1%2C67%2C37z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M25.8%2C84c-0.2%2C0-0.5-0.1-0.7-0.2L4.3%2C65.4c-0.4-0.4-0.5-1-0.1-1.4c0.4-0.4%2C1-0.5%2C1.4-0.1l20.9%2C18.4%0D%0A%09%09%09c0.4%2C0.4%2C0.5%2C1%2C0.1%2C1.4C26.4%2C83.9%2C26.1%2C84%2C25.8%2C84z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M25.9%2C84.8c-0.6%2C0-1.1-0.1-1.7-0.3L6.4%2C77.7C2.6%2C76.3%2C0%2C72.6%2C0%2C68.6l0-5.2c0-1.8%2C1-3.4%2C2.6-4.2l10.7-5.2%0D%0A%09%09%09L1.1%2C36.4c-0.7-0.9-0.9-2.1-0.6-3.2s1-2%2C2.1-2.5c1.8-0.9%2C3.9-0.2%2C5%2C1.5L19.3%2C51l6.9-3.4c2.4-1.2%2C5.3-0.6%2C7%2C1.4l5.1%2C5.9%0D%0A%09%09%09c0.4%2C0.4%2C0.3%2C1-0.1%2C1.4c-0.4%2C0.4-1%2C0.3-1.4-0.1l-5.1-5.9c-1.2-1.3-3.1-1.7-4.7-0.9l-7.7%2C3.7c-0.5%2C0.2-1%2C0.1-1.3-0.4L5.9%2C33.2%0D%0A%09%09%09c-0.5-0.8-1.6-1.1-2.4-0.7c-0.5%2C0.2-0.9%2C0.7-1%2C1.2c-0.1%2C0.5%2C0%2C1.1%2C0.3%2C1.6l13%2C18.5c0.2%2C0.2%2C0.2%2C0.5%2C0.2%2C0.8%0D%0A%09%09%09c-0.1%2C0.3-0.3%2C0.5-0.5%2C0.6L3.5%2C60.9C2.6%2C61.4%2C2%2C62.3%2C2%2C63.4l0%2C5.2c0%2C3.2%2C2%2C6.2%2C5.1%2C7.3l17.9%2C6.7c0.8%2C0.3%2C1.6%2C0.2%2C2.3-0.2l8.9-5.1%0D%0A%09%09%09c0.5-0.3%2C1.1-0.1%2C1.4%2C0.4c0.3%2C0.5%2C0.1%2C1.1-0.4%2C1.4l-8.9%2C5.1C27.5%2C84.6%2C26.7%2C84.8%2C25.9%2C84.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M37.5%2C66.9c-0.2%2C0-0.4-0.1-0.6-0.2L29.3%2C61c-0.3-0.2-0.4-0.5-0.4-0.8l0.1-8c0-0.5%2C0.5-1%2C1-1c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09c0.6%2C0%2C1%2C0.5%2C1%2C1l-0.1%2C7.5l7.2%2C5.3c0.4%2C0.3%2C0.5%2C1%2C0.2%2C1.4C38.2%2C66.8%2C37.9%2C66.9%2C37.5%2C66.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M11%2C71c-0.4%2C0-0.7-0.2-0.9-0.5c-0.3-0.5-0.1-1.1%2C0.4-1.3l18.9-9.8c0.5-0.3%2C1.1-0.1%2C1.3%2C0.4%0D%0A%09%09%09c0.3%2C0.5%2C0.1%2C1.1-0.4%2C1.3l-18.9%2C9.8C11.3%2C71%2C11.2%2C71%2C11%2C71z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M43.2%2C86.8c-0.9%2C0-1.8-0.3-2.6-0.9c-1.1-0.9-1.6-2.1-1.6-3.5l1.7-29.5L39%2C47.7l-5.2-6.4%0D%0A%09%09%09c-1-1.2-1.3-2.8-0.8-4.3s1.6-2.6%2C3.1-3.1L49%2C30.2c1.5-0.4%2C3.2-0.1%2C4.4%2C1s1.8%2C2.6%2C1.5%2C4.2l-1.3%2C8.1l1.2%2C5.9l9.5%2C12.9%0D%0A%09%09%09c3.9%2C5.3%2C8.5%2C9.9%2C13.8%2C13.8c0.3%2C0.2%2C0.5%2C0.6%2C0.4%2C1c-0.1%2C0.4-0.4%2C0.7-0.7%2C0.8L57.1%2C83c-2.1%2C0.6-4.3-0.5-5-2.6l-1.6-4.4l-1.1%2C6.6%0D%0A%09%09%09c-0.2%2C1.6-1.3%2C3-3%2C3.5l-2%2C0.6C43.9%2C86.7%2C43.5%2C86.8%2C43.2%2C86.8z%20M50.3%2C32c-0.2%2C0-0.5%2C0-0.7%2C0.1l-12.8%2C3.7c-0.9%2C0.3-1.5%2C0.9-1.8%2C1.8%0D%0A%09%09%09c-0.3%2C0.9-0.1%2C1.8%2C0.5%2C2.5l5.3%2C6.6c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.3l1.8%2C5.5c0%2C0.1%2C0.1%2C0.2%2C0%2C0.4L41%2C82.5c0%2C0.7%2C0.3%2C1.4%2C0.8%2C1.8%0D%0A%09%09%09c0.6%2C0.4%2C1.3%2C0.6%2C1.9%2C0.4l2-0.6c0.9-0.2%2C1.5-1%2C1.5-1.9l1.8-10.4c0.1-0.4%2C0.4-0.8%2C0.9-0.8c0.4%2C0%2C0.9%2C0.2%2C1%2C0.7l2.9%2C8%0D%0A%09%09%09c0.4%2C1.1%2C1.5%2C1.7%2C2.6%2C1.4l18.6-4.6c-4.8-3.7-9-8.1-12.6-12.9L53%2C50.4c-0.1-0.1-0.1-0.3-0.2-0.4l-1.2-6.3c0-0.1%2C0-0.2%2C0-0.4%0D%0A%09%09%09l1.3-8.3c0.1-0.9-0.2-1.8-0.9-2.4C51.6%2C32.2%2C50.9%2C32%2C50.3%2C32z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M39.9%2C48.2c-0.4%2C0-0.8-0.3-1-0.7c-0.2-0.5%2C0.2-1.1%2C0.7-1.2l12.6-3.7c0.5-0.2%2C1.1%2C0.2%2C1.2%2C0.7%0D%0A%09%09%09c0.2%2C0.5-0.2%2C1.1-0.7%2C1.2l-12.6%2C3.7C40.1%2C48.2%2C40%2C48.2%2C39.9%2C48.2z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41.9%2C54.2c-0.4%2C0-0.8-0.3-1-0.7c-0.2-0.5%2C0.2-1.1%2C0.7-1.2l11.9-3.5c0.5-0.2%2C1.1%2C0.2%2C1.2%2C0.7%0D%0A%09%09%09c0.2%2C0.5-0.2%2C1.1-0.7%2C1.2l-11.9%2C3.5C42%2C54.2%2C42%2C54.2%2C41.9%2C54.2z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.9%2C33.4c-0.4%2C0-0.8-0.3-1-0.7L35.2%2C1.5c-0.1-0.5%2C0.2-1.1%2C0.7-1.2c0.5-0.1%2C1.1%2C0.2%2C1.2%2C0.7l8.7%2C31.2%0D%0A%09%09%09c0.1%2C0.5-0.2%2C1.1-0.7%2C1.2C45.1%2C33.4%2C45%2C33.4%2C44.9%2C33.4z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M40.5%2C34.7c-0.4%2C0-0.8-0.3-1-0.7l-9-32.7c-0.1-0.5%2C0.2-1.1%2C0.7-1.2c0.5-0.1%2C1.1%2C0.2%2C1.2%2C0.7l9%2C32.7%0D%0A%09%09%09c0.1%2C0.5-0.2%2C1.1-0.7%2C1.2C40.6%2C34.7%2C40.6%2C34.7%2C40.5%2C34.7z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M45.1%2C46.7c-0.3%2C0-0.6-0.1-0.8-0.4l-4.1-4.9c-0.4-0.4-0.3-1.1%2C0.1-1.4c0.4-0.4%2C1.1-0.3%2C1.4%2C0.1l4.1%2C4.9%0D%0A%09%09%09c0.4%2C0.4%2C0.3%2C1.1-0.1%2C1.4C45.6%2C46.6%2C45.3%2C46.7%2C45.1%2C46.7z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M52.7%2C60.4c-0.3%2C0-0.6-0.1-0.8-0.4l-5.8-7.6c-0.3-0.4-0.3-1.1%2C0.2-1.4c0.4-0.3%2C1.1-0.3%2C1.4%2C0.2l5.8%2C7.6%0D%0A%09%09%09c0.3%2C0.4%2C0.3%2C1.1-0.2%2C1.4C53.1%2C60.3%2C52.9%2C60.4%2C52.7%2C60.4z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M63.2%2C81.2c-0.3%2C0-0.6-0.2-0.8-0.4l-5.5-8.1c-0.3-0.5-0.2-1.1%2C0.3-1.4c0.5-0.3%2C1.1-0.2%2C1.4%2C0.3l5.5%2C8.1%0D%0A%09%09%09c0.3%2C0.5%2C0.2%2C1.1-0.3%2C1.4C63.5%2C81.1%2C63.4%2C81.2%2C63.2%2C81.2z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2214.4%22%20cy%3D%2224.4%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2219.3%22%20cy%3D%2212.8%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%0D%0A%09%09%3Crect%20x%3D%2224.6%22%20y%3D%2268.4%22%20transform%3D%22matrix(0.7071%20-0.7071%200.7071%200.7071%20-42.2424%2040.0539)%22%20fill%3D%22%2399EAA8%22%20width%3D%225.3%22%20height%3D%225.3%22%2F%3E%0D%0A%09%3Crect%20x%3D%2230.5%22%20y%3D%2272%22%20transform%3D%22matrix(0.7071%200.7071%20-0.7071%200.7071%2062.1889%20-1.4442)%22%20fill%3D%22%2399EAA8%22%20width%3D%224.7%22%20height%3D%224.7%22%2F%3E%0D%0A%09%3Crect%20x%3D%2231.2%22%20y%3D%2263.3%22%20fill%3D%22%2399EAA8%22%20width%3D%225.8%22%20height%3D%225.8%22%2F%3E%0D%0A%09%3Crect%20x%3D%2221.9%22%20y%3D%2260.3%22%20transform%3D%22matrix(0.3303%200.9439%20-0.9439%200.3303%2076.3281%2018.9108)%22%20fill%3D%22%2399EAA8%22%20width%3D%225.8%22%20height%3D%225.8%22%2F%3E%0D%0A%09%3Crect%20x%3D%2220.8%22%20y%3D%2272.8%22%20fill%3D%22%2399EAA8%22%20width%3D%223.4%22%20height%3D%223.4%22%2F%3E%0D%0A%09%3Crect%20x%3D%2225.9%22%20y%3D%2276.9%22%20transform%3D%22matrix(0.897%20-0.4419%200.4419%200.897%20-31.9015%2020.2709)%22%20fill%3D%22%2399EAA8%22%20width%3D%223.4%22%20height%3D%223.4%22%2F%3E%0D%0A%09%3Crect%20x%3D%2215.1%22%20y%3D%2267.1%22%20transform%3D%22matrix(0.7071%200.7071%20-0.7071%200.7071%2054.0268%208.0706)%22%20fill%3D%22%2399EAA8%22%20width%3D%224.2%22%20height%3D%224.2%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_anti-adblock {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2086%2089.1%22%20style%3D%22enable-background%3Anew%200%200%2086%2089.1%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%221.8%22%20cy%3D%2268.4%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%09%3Cellipse%20transform%3D%22matrix(0.9588%20-0.284%200.284%200.9588%20-13.0327%2026.3182)%22%20fill%3D%22%232A2A2A%22%20cx%3D%2284.2%22%20cy%3D%2258.1%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%09%3Cellipse%20transform%3D%22matrix(0.9588%20-0.284%200.284%200.9588%20-16.7154%2025.4248)%22%20fill%3D%22%232A2A2A%22%20cx%3D%2279.3%22%20cy%3D%2270.4%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%233F3F3F%22%20d%3D%22M14%2C83.3l4-4c0.4-0.4%2C0.4-1.1%2C0-1.5s-1.1-0.4-1.5%2C0l-4%2C4L8.6%2C78c-0.4-0.4-1.1-0.4-1.5%2C0%0D%0A%09%09%09c-0.4%2C0.4-0.4%2C1.1%2C0%2C1.5l3.9%2C3.8l-3.9%2C3.8c-0.4%2C0.4-0.4%2C1.1%2C0%2C1.5c0.2%2C0.2%2C0.5%2C0.3%2C0.8%2C0.3s0.5-0.1%2C0.8-0.3l3.9-3.8l4%2C4%0D%0A%09%09%09c0.2%2C0.2%2C0.5%2C0.3%2C0.8%2C0.3s0.6-0.1%2C0.8-0.3c0.4-0.4%2C0.4-1.1%2C0-1.5L14%2C83.3L14%2C83.3z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M75%2C0c-3.3%2C0-6.1%2C2.7-6.1%2C6.1c0%2C3.4%2C2.7%2C6.1%2C6.1%2C6.1s6.1-2.7%2C6.1-6.1C81.1%2C2.7%2C78.3%2C0%2C75%2C0z%20M75%2C9.9%0D%0A%09%09%09c-2.2%2C0-4-1.8-4-3.9c0-2.1%2C1.8-3.9%2C4-3.9s4%2C1.8%2C4%2C3.9C79%2C8.1%2C77.2%2C9.9%2C75%2C9.9z%22%2F%3E%0D%0A%09%09%3Cg%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M46.1%2C14.1c0-2.8-0.8-5.4-2.2-7.9c-5.7-0.4-12.2%2C1.4-18.8%2C4.1C11%2C16.1%2C8%2C21%2C8.1%2C30c3%2C0.7%2C7%2C0.4%2C10.3%2C0.4%0D%0A%09%09%09%09C34.3%2C30.4%2C46.1%2C25.4%2C46.1%2C14.1z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M30.5%2C46c-12.3%2C0-16.7-9.1-16.8-9.2c-0.2-0.5%2C0-1.1%2C0.5-1.3c0.5-0.2%2C1.1%2C0%2C1.3%2C0.5l0%2C0%0D%0A%09%09%09%09c0.3%2C0.6%2C6.6%2C13.5%2C26.8%2C5.5c0.5-0.2%2C1.1%2C0%2C1.3%2C0.6c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3C38.2%2C45.3%2C34%2C46%2C30.5%2C46z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M18.2%2C47.9c-1.1%2C0-2-0.3-2.6-0.6c-0.5-0.3-0.7-0.9-0.4-1.4c0.3-0.5%2C0.9-0.7%2C1.3-0.4c0.1%2C0.1%2C3.2%2C1.6%2C6.2-2.3%0D%0A%09%09%09%09c0.3-0.4%2C1-0.5%2C1.4-0.2c0.4%2C0.3%2C0.5%2C1%2C0.2%2C1.4C22.3%2C47.1%2C20%2C47.9%2C18.2%2C47.9z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M57.3%2C81.8c-0.4%2C0-0.7-0.2-0.9-0.5c-0.2-0.5-0.1-1.1%2C0.4-1.3c0.2-0.1%2C0.6-0.3%2C1.1-0.5c0.4-0.2%2C0.9-0.3%2C1-0.4%0D%0A%09%09%09%09l2.4-1.3c2.5-1.7%2C4-3.9%2C4.3-6.4c0.6-5.6-4.5-11.2-4.6-11.2c-0.2-0.2-0.3-0.6-0.2-0.9s0.3-0.6%2C0.6-0.7c5.5-2.3%2C9.1-5.8%2C10.8-10.2%0D%0A%09%09%09%09c2.9-7.4-0.1-16-2.2-20.5c-2.8-6.2-12.8-7.1-20-4.1c-2.8%2C1.2-11.4%2C5.9-7.1%2C16.5c3.2%2C7.8%2C8.3%2C8.3%2C11%2C7.9c4.2-0.6%2C8.3-4.2%2C8.6-7.6%0D%0A%09%09%09%09c0.1-0.5%2C0.5-1%2C1.1-0.9c0.5%2C0.1%2C1%2C0.5%2C0.9%2C1.1c-0.4%2C4.4-5%2C8.6-10.3%2C9.4c-2.7%2C0.4-9.3%2C0.3-13.2-9.1c-4-9.8%2C1.6-16.3%2C8.1-19.1%0D%0A%09%09%09%09c8-3.5%2C19.3-2.2%2C22.6%2C5.1c2.6%2C5.8%2C5.2%2C14.4%2C2.2%2C22.1c-1.8%2C4.6-5.4%2C8.3-10.7%2C10.8c1.6%2C2.1%2C4.8%2C6.8%2C4.2%2C11.8%0D%0A%09%09%09%09c-0.4%2C3.1-2.1%2C5.8-5.3%2C7.9l-2.5%2C1.3c-0.2%2C0.1-0.5%2C0.2-1.2%2C0.5c-0.4%2C0.2-0.8%2C0.3-0.9%2C0.4C57.6%2C81.8%2C57.5%2C81.8%2C57.3%2C81.8z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M61.9%2C59.5%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M51.9%2C66c-0.4%2C0-0.9-0.3-1-0.8c-0.1-0.5%2C0.2-1.1%2C0.7-1.2c4.5-1.2%2C7.4-3.3%2C9.5-5.3c0.4-0.4%2C1-0.3%2C1.4%2C0.1%0D%0A%09%09%09%09c0.4%2C0.4%2C0.3%2C1-0.1%2C1.4c-2.3%2C2.1-5.4%2C4.5-10.4%2C5.8C52.1%2C66%2C52%2C66%2C51.9%2C66z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M41.4%2C87.2c-2.1%2C0-4.2-0.2-6.1-0.7c-0.9-0.2-1.7-0.5-2.3-0.9c-5.2-3.2-4.9-11.1-4.7-13.5%0D%0A%09%09%09%09C25.1%2C70.2%2C10.8%2C60.9%2C8.6%2C47l-0.2-1.5C6.2%2C32.6%2C3.8%2C18%2C24.7%2C9.4c11.2-4.6%2C19.5-5.4%2C26-2.6c5.3%2C2.3%2C9.3%2C7%2C12.1%2C14.1%0D%0A%09%09%09%09c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3c-0.5%2C0.2-1.1-0.1-1.3-0.6c-2.6-6.7-6.2-10.9-11-13c-6-2.6-13.8-1.8-24.5%2C2.6C6%2C19.2%2C8.1%2C31.8%2C10.3%2C45.2%0D%0A%09%09%09%09l0.2%2C1.5C12.7%2C60%2C27.3%2C69.2%2C29.5%2C70.5c9.2-1%2C13.8-3.7%2C15.8-5.2c2.9-2.2%2C6.8-2.1%2C9.4%2C0.2c1.1%2C1%2C1.9%2C2.3%2C2.2%2C3.7l1.8%2C7.2%0D%0A%09%09%09%09c1%2C3.9-1.3%2C7.8-5.2%2C8.9C50.1%2C86.3%2C45.8%2C87.2%2C41.4%2C87.2z%20M30.2%2C72.5C30%2C74.7%2C30%2C81.3%2C34%2C83.9c0.5%2C0.3%2C1.1%2C0.5%2C1.7%2C0.7%0D%0A%09%09%09%09c5.7%2C1.5%2C12.5%2C0.2%2C17.2-1.1c2.8-0.8%2C4.5-3.6%2C3.8-6.5L55%2C69.7c-0.3-1.1-0.8-2-1.6-2.7c-1.8-1.7-4.7-1.7-6.8-0.1%0D%0A%09%09%09%09C44.4%2C68.5%2C39.5%2C71.4%2C30.2%2C72.5z%22%2F%3E%0D%0A%09%09%09%3Ccircle%20fill%3D%22%2399EAA8%22%20cx%3D%2234%22%20cy%3D%2259.9%22%20r%3D%226.7%22%2F%3E%0D%0A%09%09%3C%2Fg%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.7%2C80.8c-0.4%2C0-0.8-0.2-0.9-0.6l-2.2-5.8c-0.2-0.5%2C0.1-1.1%2C0.6-1.3s1.1%2C0.1%2C1.3%2C0.6l2.2%2C5.8%0D%0A%09%09c0.2%2C0.5-0.1%2C1.1-0.6%2C1.3C44.9%2C80.8%2C44.8%2C80.8%2C44.7%2C80.8z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M49.6%2C78.9c-0.4%2C0-0.8-0.2-0.9-0.6l-2.4-5.6c-0.2-0.5%2C0-1.1%2C0.5-1.3c0.5-0.2%2C1.1%2C0%2C1.3%2C0.5l2.4%2C5.6%0D%0A%09%09c0.2%2C0.5%2C0%2C1.1-0.5%2C1.3C49.9%2C78.9%2C49.8%2C78.9%2C49.6%2C78.9z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_integration {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2088.2%2084.8%22%20style%3D%22enable-background%3Anew%200%200%2088.2%2084.8%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%223.8%22%20cy%3D%2213.7%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%2213.2%22%20cy%3D%223.2%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M87%2C6.3h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V0h-2.3l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9h-0.5L73%2C6.3v2.4l1.2-0.2h0.5%0D%0A%09%09c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9H87l1.2%2C0.1V6.2L87%2C6.3z%20M80.7%2C9.6%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C82%2C8%2C81.2%2C8.8%2C80.7%2C9.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M14%2C76h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9v-1.4H6.5l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H1.2L0%2C76v2.4l1.2-0.2h0.5%0D%0A%09%09c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3V83c0-2.7%2C2.2-4.9%2C4.9-4.9H14l1.2%2C0.1v-2.3L14%2C76z%20M7.7%2C79.3%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C9%2C77.7%2C8.2%2C78.5%2C7.7%2C79.3z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M65%2C26.2c0.4%2C4.1-0.7%2C7.7-3%2C10.4c-2.9%2C3.3-7.8%2C5.1-13.9%2C5.2c-10.7%2C0.1-18.9%2C7.7-18.9%2C17.6%0D%0A%09%09%09c0%2C5.4%2C1.7%2C12%2C6.2%2C16.2C21%2C71.2%2C10.5%2C57.2%2C10.6%2C41.2c0.1-9.2%2C3.5-17.6%2C9.6-23.8C26.3%2C11.4%2C34.5%2C8%2C43.5%2C8c0.1%2C0%2C0.2%2C0%2C0.2%2C0%0D%0A%09%09%09c2.8%2C0%2C5.5%2C0.4%2C8.2%2C1C58.7%2C11.3%2C64.3%2C18.7%2C65%2C26.2z%20M53.4%2C25.9c0-4.1-3.3-7.4-7.3-7.4c-4%2C0-7.3%2C3.3-7.3%2C7.4c0%2C4.1%2C3.3%2C7.4%2C7.3%2C7.4%0D%0A%09%09%09C50.1%2C33.3%2C53.4%2C30%2C53.4%2C25.9z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M42.6%2C76.6c-0.1%2C0-0.2%2C0-0.2%2C0c-1.3%2C0-2.5-0.1-3.6-0.2C20.3%2C74.4%2C6%2C57.9%2C6.1%2C38.8c0.1-9.7%2C3.7-18.7%2C10.3-25.2%0D%0A%09%09%09c6.6-6.5%2C15.5-10%2C25.1-10c0.1%2C0%2C0.2%2C0%2C0.3%2C0c3%2C0%2C5.9%2C0.4%2C8.9%2C1.1c17.2%2C4.2%2C29.6%2C19.2%2C29.5%2C35.6C80%2C60%2C62.8%2C76.6%2C42.6%2C76.6z%0D%0A%09%09%09%20M41.5%2C5.6C32.4%2C5.6%2C24%2C8.9%2C17.8%2C15c-6.2%2C6.1-9.7%2C14.6-9.8%2C23.8C8%2C56.9%2C21.6%2C72.5%2C39%2C74.4c0%2C0%2C0%2C0%2C0%2C0c1%2C0.1%2C2.1%2C0.2%2C3.4%2C0.2%0D%0A%09%09%09C61.6%2C74.7%2C78%2C59%2C78.1%2C40.3c0.1-15.5-11.7-29.7-27.9-33.7c-2.8-0.7-5.6-1-8.4-1.1C41.7%2C5.6%2C41.6%2C5.6%2C41.5%2C5.6z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M31.5%2C70c-0.4%2C0-0.7-0.2-0.9-0.5c-1.8-3.3-2.7-7.4-2.7-11.4c0.1-10%2C8.3-17.6%2C19.2-17.7%0D%0A%09%09%09c6.3-0.1%2C11.2-1.8%2C14.1-5.2c2.4-2.7%2C3.5-6.3%2C3.1-10.4c-0.2-2.3-0.9-4.7-2-6.9c-0.2-0.5%2C0-1.1%2C0.4-1.3c0.5-0.2%2C1.1%2C0%2C1.3%2C0.4%0D%0A%09%09%09c1.2%2C2.5%2C2%2C5.1%2C2.2%2C7.6c0.4%2C4.7-0.8%2C8.8-3.6%2C11.9c-3.4%2C3.7-8.8%2C5.8-15.6%2C5.8C37.3%2C42.5%2C30%2C49.1%2C30%2C58c0%2C3.8%2C0.8%2C7.5%2C2.4%2C10.5%0D%0A%09%09%09c0.3%2C0.5%2C0.1%2C1.1-0.4%2C1.4C31.9%2C70%2C31.7%2C70%2C31.5%2C70z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M50.5%2C58.8c0%2C3.6-2.9%2C6.4-6.4%2C6.4c-3.6%2C0-6.4-2.9-6.4-6.4s2.9-6.4%2C6.4-6.4C47.7%2C52.3%2C50.5%2C55.2%2C50.5%2C58.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.1%2C66.2c-4.1%2C0-7.4-3.3-7.4-7.4c0-4.1%2C3.3-7.4%2C7.4-7.4c4.1%2C0%2C7.4%2C3.3%2C7.4%2C7.4%0D%0A%09%09%09C51.5%2C62.8%2C48.2%2C66.2%2C44.1%2C66.2z%20M44.1%2C53.3c-3%2C0-5.4%2C2.4-5.4%2C5.4c0%2C3%2C2.4%2C5.4%2C5.4%2C5.4c3%2C0%2C5.4-2.4%2C5.4-5.4%0D%0A%09%09%09C49.5%2C55.8%2C47.1%2C53.3%2C44.1%2C53.3z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M44.1%2C31.1c-4.1%2C0-7.4-3.3-7.4-7.4c0-4.1%2C3.3-7.4%2C7.4-7.4c4.1%2C0%2C7.4%2C3.3%2C7.4%2C7.4%0D%0A%09%09%09C51.5%2C27.7%2C48.2%2C31.1%2C44.1%2C31.1z%20M44.1%2C18.2c-3%2C0-5.4%2C2.4-5.4%2C5.4c0%2C3%2C2.4%2C5.4%2C5.4%2C5.4c3%2C0%2C5.4-2.4%2C5.4-5.4%0D%0A%09%09%09C49.5%2C20.6%2C47.1%2C18.2%2C44.1%2C18.2z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon_free {
        width: 133px;
        height: 104px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2082.7%2080.8%22%20style%3D%22enable-background%3Anew%200%200%2082.7%2080.8%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M54.4%2C17c0.5%2C0.4%2C0.9%2C0.9%2C1.2%2C1.4c1.1%2C2.3-0.4%2C5.3-3.3%2C6.7s-6.2%2C0.6-7.3-1.7c-1-2.1%2C0.1-4.7%2C2.4-6.3%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%2399EAA8%22%20d%3D%22M62.2%2C30.3L22.1%2C70c-2.1%2C2.1-5.5%2C2.1-7.5%2C0L2.8%2C58.3l0%2C0c-2.4%2C2.4-2.4%2C6.4%2C0%2C8.8L14%2C78.2%0D%0A%09%09%09c2.4%2C2.4%2C6.4%2C2.4%2C8.8%2C0l39.4-39.1l0-13.8l0%2C0L62.2%2C30.3z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M18.4%2C72.2c-1.8%2C0-3.7-0.7-5.1-2.1L2.1%2C59.1c-2.8-2.8-2.8-7.4%2C0-10.2L40.6%2C10c0.2-0.2%2C0.4-0.3%2C0.7-0.3%0D%0A%09%09%09c0%2C0%2C0%2C0%2C0%2C0l5%2C0c0.6%2C0%2C1%2C0.5%2C1%2C1s-0.4%2C1-1%2C1c0%2C0%2C0%2C0%2C0%2C0l-4.6%2C0L3.5%2C50.3c-2%2C2-2%2C5.4%2C0%2C7.4l11.1%2C11.1c2%2C2%2C5.3%2C2%2C7.4%2C0l39.1-38.8%0D%0A%09%09%09l0-13l-5.1-5.5c-0.4-0.4-0.3-1%2C0.1-1.4c0.4-0.4%2C1-0.3%2C1.4%2C0.1l5.3%2C5.8c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7l0%2C13.8c0%2C0.3-0.1%2C0.5-0.3%2C0.7%0D%0A%09%09%09L23.5%2C70.1C22.1%2C71.5%2C20.2%2C72.2%2C18.4%2C72.2z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M49.4%2C26.8c-2.3%2C0-4.3-1.1-5.2-3c-1.2-2.5%2C0-5.7%2C2.8-7.5c0.5-0.3%2C1.1-0.2%2C1.4%2C0.3c0.3%2C0.5%2C0.2%2C1.1-0.3%2C1.4%0D%0A%09%09%09c-1.9%2C1.3-2.8%2C3.4-2.1%2C5c0.9%2C1.8%2C3.5%2C2.4%2C5.9%2C1.2c2.4-1.1%2C3.7-3.6%2C2.8-5.4c-0.2-0.4-0.5-0.8-0.9-1.1c-0.4-0.3-0.5-1-0.2-1.4%0D%0A%09%09%09c0.3-0.4%2C1-0.5%2C1.4-0.2c0.7%2C0.5%2C1.2%2C1.1%2C1.5%2C1.8c1.3%2C2.8-0.3%2C6.4-3.7%2C8.1C51.7%2C26.6%2C50.5%2C26.8%2C49.4%2C26.8z%22%2F%3E%0D%0A%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M76.3%2C39.4c-1.7%2C0-3.4-0.8-4.5-2.2c-3.7-4.2-4.1-8.1-2.7-12.6l-2.9%2C0c-0.6%2C0-1-0.5-1-1s0.4-1%2C1-1c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09l3.7%2C0c0.4-1%2C0.9-2%2C1.5-3.1c1.4-2.8%2C1.5-6%2C0.3-8.8c-1.2-2.8-3.6-5-6.6-5.8c-3-0.9-6.2-0.4-8.8%2C1.4c-2.6%2C1.8-4.2%2C4.6-4.4%2C7.7%0D%0A%09%09%09L51.3%2C21c0%2C0.6-0.5%2C1-1.1%2C0.9c-0.6%2C0-1-0.5-0.9-1.1l0.5-6.9c0.3-3.7%2C2.2-7.1%2C5.3-9.2C58.2%2C2.5%2C62%2C1.9%2C65.6%2C3c3.5%2C1%2C6.4%2C3.6%2C7.9%2C7%0D%0A%09%09%09c1.5%2C3.4%2C1.3%2C7.2-0.4%2C10.5c-0.4%2C0.8-0.7%2C1.5-1.1%2C2.2l2.1%2C0c2.7%2C0%2C5.2%2C1.3%2C6.9%2C3.5c1.6%2C2.2%2C2.1%2C5%2C1.4%2C7.6l-0.4%2C1.5%0D%0A%09%09%09c-0.6%2C2.1-2.3%2C3.7-4.5%2C4.1C77.1%2C39.4%2C76.7%2C39.4%2C76.3%2C39.4z%20M71.2%2C24.6c-1.5%2C4.2-1.3%2C7.6%2C2.1%2C11.3c1%2C1.2%2C2.4%2C1.7%2C3.8%2C1.4%0D%0A%09%09%09c1.4-0.3%2C2.5-1.3%2C2.9-2.7l0.4-1.5c0.6-2%2C0.2-4.1-1-5.8c-1.3-1.7-3.2-2.6-5.3-2.7L71.2%2C24.6z%22%2F%3E%0D%0A%09%09%3Cg%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M11.5%2C54.8l4.8-5.1l1.3%2C1.3l-3.4%2C3.6l1.4%2C1.4l3-3.2l1.3%2C1.3l-3%2C3.2l2.6%2C2.5l-1.4%2C1.5L11.5%2C54.8z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M18.4%2C47.7l2.9-3c0.8-0.8%2C1.7-1.3%2C2.5-1.3c0.7%2C0%2C1.4%2C0.3%2C2.1%2C0.9c1.1%2C1%2C1.2%2C2.3%2C0.7%2C3.4l3.9%2C0.6L28.9%2C50%0D%0A%09%09%09%09l-3.5-0.6l-1.1%2C1.1l2.1%2C2L25%2C54L18.4%2C47.7z%20M24.4%2C47.8c0.7-0.7%2C0.7-1.5%2C0.1-2c-0.6-0.6-1.4-0.5-2%2C0.2l-1.4%2C1.5l1.9%2C1.8L24.4%2C47.8%0D%0A%09%09%09%09z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M25.9%2C39.8l4.8-5l1.3%2C1.2l-3.4%2C3.6l1.3%2C1.3l3-3.1l1.3%2C1.2l-3%2C3.1l1.4%2C1.3l3.5-3.6l1.3%2C1.2l-4.8%2C5.1%0D%0A%09%09%09%09L25.9%2C39.8z%22%2F%3E%0D%0A%09%09%09%3Cpath%20fill%3D%22%23525252%22%20d%3D%22M32.9%2C32.5l4.8-5l1.3%2C1.2l-3.4%2C3.6l1.3%2C1.3l3-3.1l1.3%2C1.2l-3%2C3.1l1.4%2C1.3l3.5-3.6l1.3%2C1.2l-4.8%2C5.1%0D%0A%09%09%09%09L32.9%2C32.5z%22%2F%3E%0D%0A%09%09%3C%2Fg%3E%0D%0A%09%3C%2Fg%3E%0D%0A%09%3Cellipse%20fill%3D%22%232A2A2A%22%20cx%3D%229.8%22%20cy%3D%2225%22%20rx%3D%221.8%22%20ry%3D%221.8%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M22.8%2C6.3h-0.3c-2.7%2C0-4.9-2.2-4.9-4.9V0h-2.3l0.1%2C1.2v0.3c0%2C2.7-2.2%2C4.9-4.9%2C4.9H10L8.8%2C6.3v2.4L10%2C8.5h0.5%0D%0A%09%09c2.7%2C0%2C4.9%2C2.2%2C4.9%2C4.9v0.5l-0.1%2C1.2h2.4l-0.1-1.3v-0.5c0-2.7%2C2.2-4.9%2C4.9-4.9h0.3L24%2C8.5V6.2L22.8%2C6.3z%20M16.5%2C9.6%0D%0A%09%09c-0.6-0.9-1.3-1.6-2.2-2.2c0.8-0.5%2C1.6-1.3%2C2.2-2.2c0.6%2C0.9%2C1.3%2C1.6%2C2.2%2C2.2C17.8%2C8%2C17%2C8.8%2C16.5%2C9.6z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M55.5%2C68.8c-3.2-0.9-6.6%2C1-7.5%2C4.3c-0.9%2C3.3%2C1%2C6.6%2C4.3%2C7.5s6.6-1%2C7.5-4.3C60.6%2C73%2C58.6%2C69.7%2C55.5%2C68.8z%0D%0A%09%09%20M52.8%2C78.3c-2.1-0.6-3.4-2.8-2.8-4.8c0.6-2%2C2.8-3.3%2C4.9-2.7c2.1%2C0.6%2C3.4%2C2.8%2C2.8%2C4.8C57.2%2C77.7%2C55%2C78.9%2C52.8%2C78.3z%22%2F%3E%0D%0A%09%3Cpath%20fill%3D%22%234E4E4E%22%20d%3D%22M64.6%2C55.4c-2.6-0.7-5.4%2C0.8-6.2%2C3.5c-0.7%2C2.7%2C0.8%2C5.4%2C3.5%2C6.2c2.7%2C0.7%2C5.4-0.8%2C6.2-3.5%0D%0A%09%09C68.8%2C58.8%2C67.2%2C56.1%2C64.6%2C55.4z%20M62.4%2C63.2c-1.7-0.5-2.8-2.3-2.3-4c0.5-1.7%2C2.3-2.7%2C4-2.2s2.8%2C2.3%2C2.3%2C4%0D%0A%09%09C66%2C62.7%2C64.2%2C63.7%2C62.4%2C63.2z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon--chrome {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.3%2028.3%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M27.3%208.8h-9C19.9%2010%2021%2012%2021%2014.1c0%201.7-.8%203.2-1.8%204.5-1.6%202.2-5.5%209.6-5.5%209.6h.4c7.8%200%2014.2-6.3%2014.2-14.1%200-1.9-.3-3.7-1-5.3z%22%2F%3E%3Cpath%20d%3D%22M14.1%207.4c3.1%200%2012.4-.1%2012.4-.1-2.4-4.4-7-7.3-12.3-7.3-4.4%200-8.4%202-11%205.2l4.3%207.7c.6-3.1%203.3-5.5%206.6-5.5z%22%2F%3E%3Cpath%20d%3D%22M14.2%2020.9c-3%200-5.2-2-6.4-4.5-1.2-2.6-5.6-9.8-5.6-9.8C.8%208.8%200%2011.4%200%2014.1c0%207.1%205.2%2013%2012.1%2014l4.4-7.6c-.8.3-1.5.4-2.3.4z%22%2F%3E%3Cellipse%20cx%3D%2214.2%22%20cy%3D%2214.2%22%20rx%3D%224.6%22%20ry%3D%224.6%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--firefox {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2028.3%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M30%209.5l-.7%201.6s-.3-2.9-.8-4.5S27%204%2027%204l.5%202.1s-1.7-2-3.2-2.8c-.3-.1-.6-.2-.8-.3-2.1-1.9-4.8-3-7.8-3-4.3%200-8%202.3-10.1%205.7-.1-.1-.7-.4-1-1.2-.3-.8-.5-1.6-.5-1.6C2.1%204.8%202.6%208%202.6%208s-.8.7-1.6%202-1%203.6-1%203.6l1.3-1.4S1%2012.8.7%2014c-.2%201.2-.2%203.1-.2%203.1l.7-1.5s0%204.8%204.6%209.1%2012.8%205.5%2019%20.1S30%209.5%2030%209.5zM15.6%201.6c2.4%200%204.7.9%206.4%202.3l-2.3.4s2.3.7%204%202.1c.4.3.8.8%201.1%201.2.4.8.7%201.7.8%202.6l-1.1-.9s.4.5.5%201.7c.1%201.3-.3%203.6-.3%203.6l-1-1.2s.2%202-.2%203.7c-.4%201.7-1.3%202.5-1.3%202.5l.2-2.1s-1.2%202.6-4.5%203.6-6.5-1.9-6.5-1.9c2.1.6%203.5-.6%204.6-1.1%201.1-.6%201.7-.6%202.1-.6.5%200%200-1.1-.9-1.6s-1.9-.2-3.9.3c-2.1.6-3.3-1.2-3.2-2.4.1-1.2%202-.5%202-.5l-.1-2.4s3.2-2%202.9-2.5c-.2-.5-1.3-.3-2.3-.6-.9-.3-1.5-1.2-1.5-1.2s-.1-.6.3-1.1c.3-.6%201.4-1.4%201.4-1.4s-.7-.1-1.9.3-2.1%201.2-2.1%201.2-.2-.1-1.2-.2c1.9-2.3%204.8-3.8%208-3.8z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--safari {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.4%2030%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M14.2%201.9c-.7%200-1.4.1-2.1.2V2c.4-.3.6-.7.5-1.1-.2-.6-.7-.9-1.4-.9h-.5c-.9.2-1.5.9-1.3%201.5.1.4.4.7.9.8v.1C4.3%204.1%200%209.5%200%2015.9%200%2023.7%206.4%2030%2014.2%2030c7.8%200%2014.2-6.3%2014.2-14.1%200-7.7-6.4-14-14.2-14zm-4.4-.5c-.1-.4.4-.8%201-.9h.4c.5%200%20.8.2.9.5%200%20.2-.1.5-.3.6-.2-.1-.5-.2-.7-.2-.3.1-.5.2-.6.4-.4%200-.6-.2-.7-.4zm12%2022.1c-1.3%201.3-2.9%202.2-4.6%202.7l-1.3-2-.3%202.3c-.5.1-1%20.1-1.4.1-2.9%200-5.6-1.1-7.6-3.1-1.3-1.3-2.2-2.8-2.7-4.6l2-1.2-2.4-.3c-.1-.5-.1-.9-.1-1.4%200-2.8%201.1-5.5%203.2-7.5%201.3-1.3%202.9-2.2%204.6-2.7l1.3%202%20.3-2.3c.5-.1%201-.1%201.4-.1%202.9%200%205.6%201.1%207.6%203.1%201.3%201.3%202.2%202.8%202.7%204.6l-2%201.2%202.4.3c.1.5.1.9.1%201.4-.1%202.8-1.2%205.5-3.2%207.5zm-.3-14.9L15.7%2013c-.4-.2-.9-.4-1.4-.4l-1.5-3.1-.1%203.5c-.4.2-.7.5-1%20.8l-1.9-.7%201.4%201.4c-.2.4-.3.8-.3%201.3l-3.2%201.5%203.5.1v.1l-4.4%205.8%205.8-4.4c.4.2.9.4%201.4.4l1.5%203.1.1-3.5c.4-.2.7-.5%201-.8l1.9.7-1.4-1.4c.2-.4.3-.8.3-1.3l3.2-1.5-3.5-.1v-.1l4.4-5.8zM14.2%2013v.1-.1zm-.6.2c.2%200%20.4-.1.6-.1h.4c.3%200%20.5.1.7.2l-2.1%201.6-1.6%202.1c-.1-.2-.1-.3-.2-.5-.3-1.5.7-3%202.2-3.3zm2.1%205.1c-.3.2-.6.3-.9.4-.2%200-.4.1-.6.1h-.4c-.3%200-.5-.1-.7-.2l2.1-1.6%201.6-2.1c.1.2.1.3.2.5.2%201.2-.3%202.3-1.3%202.9z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--ie {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.3%2027.5%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M21.4%2015.9h6.9c.1-.5.1-1%20.1-1.5%200-2.3-.6-4.5-1.7-6.4%201.1-3%201.1-5.6-.4-7.1-1.4-1.4-5.3-1.2-9.7.7h-1c-6%200-11%204.1-12.4%209.7C5%208.9%207%207.2%209.6%205.9L7.7%207.8c-7%207-9.2%2016.1-6.8%2018.5%201.8%201.8%205.1%201.5%208.8-.3%201.7.9%203.7%201.4%205.8%201.4%205.6%200%2010.4-3.6%2012.1-8.7h-6.9c-1%201.8-2.8%203-5%203s-4-1.2-5-3c-.4-.8-.7-1.7-.7-2.7h11.4v-.1zm-11.3-3.4c.2-2.8%202.5-5.1%205.4-5.1%202.9%200%205.2%202.3%205.4%205.1H10.1zm16-10.1c1%201%201%202.8.1%205.1-1.4-2.2-3.5-3.9-6-4.9%202.7-1.2%204.8-1.3%205.9-.2zM2.7%2025.8c-1.2-1.2-.9-3.9.7-7%201%202.8%202.9%205.2%205.5%206.7-2.8%201.2-5%201.4-6.2.3z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--edge {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2032%2032%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2063.1%20(92452)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3Eedge_32x32%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Browser-Assistant%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22browsers%22%20transform%3D%22translate(-112.000000%2C%200.000000)%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22edge_32x32%22%20transform%3D%22translate(112.000000%2C%200.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.8933852%2C23.7248249%20C28.4683932%2C23.9470915%2028.0301042%2C24.1429493%2027.5810117%2C24.311284%20C26.1515277%2C24.8461568%2024.6372441%2C25.1186435%2023.1109728%2C25.115642%20C17.2189883%2C25.115642%2012.086537%2C21.0627237%2012.086537%2C15.8617899%20C12.1018964%2C14.4413409%2012.8845751%2C13.1403697%2014.1322957%2C12.461323%20C8.80311284%2C12.6854475%207.43346304%2C18.2387549%207.43346304%2C21.4922957%20C7.43346304%2C30.6913619%2015.9115953%2C31.6239689%2017.7382101%2C31.6239689%20C18.7231128%2C31.6239689%2020.2085603%2C31.3375875%2021.1000778%2C31.0561868%20L21.2631907%2C31.0014008%20C24.6938448%2C29.815397%2027.6185002%2C27.4967513%2029.5557977%2C24.4270817%20C29.6778633%2C24.234762%2029.6538982%2C23.9841384%2029.4975979%2C23.8184366%20C29.3412976%2C23.6527347%2029.0924992%2C23.614188%2028.8933852%2C23.7248249%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.8933852%2C23.7248249%20C28.4683932%2C23.9470915%2028.0301042%2C24.1429493%2027.5810117%2C24.311284%20C26.1515277%2C24.8461568%2024.6372441%2C25.1186435%2023.1109728%2C25.115642%20C17.2189883%2C25.115642%2012.086537%2C21.0627237%2012.086537%2C15.8617899%20C12.1018964%2C14.4413409%2012.8845751%2C13.1403697%2014.1322957%2C12.461323%20C8.80311284%2C12.6854475%207.43346304%2C18.2387549%207.43346304%2C21.4922957%20C7.43346304%2C30.6913619%2015.9115953%2C31.6239689%2017.7382101%2C31.6239689%20C18.7231128%2C31.6239689%2020.2085603%2C31.3375875%2021.1000778%2C31.0561868%20L21.2631907%2C31.0014008%20C24.6938448%2C29.815397%2027.6185002%2C27.4967513%2029.5557977%2C24.4270817%20C29.6778633%2C24.234762%2029.6538982%2C23.9841384%2029.4975979%2C23.8184366%20C29.3412976%2C23.6527347%2029.0924992%2C23.614188%2028.8933852%2C23.7248249%20Z%22%20id%3D%22Path%22%20opacity%3D%220.35%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.2868482%2C30.0600778%20C12.1762655%2C29.3707733%2011.213798%2C28.4675606%2010.4554086%2C27.4029572%20C8.70568601%2C25.0057203%208.10491608%2C21.9577284%208.8141028%2C19.0758318%20C9.52328953%2C16.1939351%2011.4699167%2C13.7728152%2014.1322957%2C12.461323%20C14.5207782%2C12.2782879%2015.1844358%2C11.9470817%2016.0672374%2C11.9632685%20C17.3280631%2C11.9724485%2018.5118487%2C12.5714836%2019.2659922%2C13.5819455%20C19.768807%2C14.253302%2020.0460353%2C15.0666793%2020.0578988%2C15.9053696%20C20.0578988%2C15.8792218%2023.1035019%2C5.9940856%2010.0968093%2C5.9940856%20C4.63066148%2C5.9940856%200.135719844%2C11.181323%200.135719844%2C15.7322957%20C0.114158979%2C18.1397%200.629258622%2C20.5216636%201.64357977%2C22.7050584%20C5.07488233%2C30.0262283%2013.4445775%2C33.6180575%2021.1150195%2C31.0611673%20C18.4891486%2C31.8890888%2015.6323782%2C31.5250531%2013.2980545%2C30.0650584%20L13.2868482%2C30.0600778%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.2868482%2C30.0600778%20C12.1762655%2C29.3707733%2011.213798%2C28.4675606%2010.4554086%2C27.4029572%20C8.70568601%2C25.0057203%208.10491608%2C21.9577284%208.8141028%2C19.0758318%20C9.52328953%2C16.1939351%2011.4699167%2C13.7728152%2014.1322957%2C12.461323%20C14.5207782%2C12.2782879%2015.1844358%2C11.9470817%2016.0672374%2C11.9632685%20C17.3280631%2C11.9724485%2018.5118487%2C12.5714836%2019.2659922%2C13.5819455%20C19.768807%2C14.253302%2020.0460353%2C15.0666793%2020.0578988%2C15.9053696%20C20.0578988%2C15.8792218%2023.1035019%2C5.9940856%2010.0968093%2C5.9940856%20C4.63066148%2C5.9940856%200.135719844%2C11.181323%200.135719844%2C15.7322957%20C0.114158979%2C18.1397%200.629258622%2C20.5216636%201.64357977%2C22.7050584%20C5.07488233%2C30.0262283%2013.4445775%2C33.6180575%2021.1150195%2C31.0611673%20C18.4891486%2C31.8890888%2015.6323782%2C31.5250531%2013.2980545%2C30.0650584%20L13.2868482%2C30.0600778%20Z%22%20id%3D%22Path%22%20opacity%3D%220.41%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.0891829%2C18.5350973%20C18.9883268%2C18.6658366%2018.6782879%2C18.8463813%2018.6782879%2C19.2398444%20C18.6782879%2C19.5648249%2018.8899611%2C19.8773541%2019.2659922%2C20.1400778%20C21.0564981%2C21.385214%2024.4320623%2C21.220856%2024.4407782%2C21.220856%20C25.767503%2C21.2176719%2027.0690811%2C20.8586307%2028.2098054%2C20.1811673%20C30.5513692%2C18.8139365%2031.9931996%2C16.3083831%2031.9987549%2C13.5968872%20C32.0311284%2C10.806537%2031.0026459%2C8.95128405%2030.5867704%2C8.12949416%20C27.9483268%2C2.96840467%2022.2530739%2C0%2016.0597665%2C0%20C7.3443824%2C-0.000861792642%200.244583394%2C6.99909629%200.122023346%2C15.7136187%20C0.181789883%2C11.1638911%204.70412451%2C7.48949416%2010.0831128%2C7.48949416%20C10.5189105%2C7.48949416%2013.0042023%2C7.53182879%2015.3126848%2C8.7433463%20C17.3472374%2C9.81167315%2018.4130739%2C11.1016342%2019.15393%2C12.3803891%20C19.9234241%2C13.7089494%2020.0603891%2C15.387393%2020.0603891%2C16.0560311%20C20.0603891%2C16.7246693%2019.7192218%2C17.7157977%2019.0891829%2C18.5350973%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.0891829%2C18.5350973%20C18.9883268%2C18.6658366%2018.6782879%2C18.8463813%2018.6782879%2C19.2398444%20C18.6782879%2C19.5648249%2018.8899611%2C19.8773541%2019.2659922%2C20.1400778%20C21.0564981%2C21.385214%2024.4320623%2C21.220856%2024.4407782%2C21.220856%20C25.767503%2C21.2176719%2027.0690811%2C20.8586307%2028.2098054%2C20.1811673%20C30.5513692%2C18.8139365%2031.9931996%2C16.3083831%2031.9987549%2C13.5968872%20C32.0311284%2C10.806537%2031.0026459%2C8.95128405%2030.5867704%2C8.12949416%20C27.9483268%2C2.96840467%2022.2530739%2C0%2016.0597665%2C0%20C7.3443824%2C-0.000861792642%200.244583394%2C6.99909629%200.122023346%2C15.7136187%20C0.181789883%2C11.1638911%204.70412451%2C7.48949416%2010.0831128%2C7.48949416%20C10.5189105%2C7.48949416%2013.0042023%2C7.53182879%2015.3126848%2C8.7433463%20C17.3472374%2C9.81167315%2018.4130739%2C11.1016342%2019.15393%2C12.3803891%20C19.9234241%2C13.7089494%2020.0603891%2C15.387393%2020.0603891%2C16.0560311%20C20.0603891%2C16.7246693%2019.7192218%2C17.7157977%2019.0891829%2C18.5350973%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
    }

.icon--opera {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.4%2028.3%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M22.3%202.2C20.1.8%2017.3%200%2014.2%200c-2.9%200-5.4.7-7.6%201.9C2.5%204.2%200%208.5%200%2014c0%207.5%205.7%2014.3%2014.2%2014.3S28.4%2021.5%2028.4%2014c0-5.2-2.3-9.4-6.1-11.8zm-8.1.4c4.6%200%205.7%205.9%205.7%2011.3%200%205-.7%2011.7-5.6%2011.7-4.9%200-5.7-6.8-5.7-11.7-.1-5.4%201-11.3%205.6-11.3z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--yandex {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20256%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M128%206.2C60.7%206.2%206.2%2060.7%206.2%20128S60.7%20249.8%20128%20249.8%20249.8%20195.3%20249.8%20128%20195.3%206.2%20128%206.2zm82.4%2069l-68.5%2067v83.3c0%201.5-6.5%202.7-13.9%202.8-7.1-.1-13.9-1.3-13.9-2.8v-83.3l-68.5-67c-1.1-1.1%202.4-6.3%207.8-11.7%205.4-5.4%2010.7-8.9%2011.7-7.8l62.8%2061.3%2062.8-61.3c1.1-1.1%206.3%202.4%2011.7%207.8%205.4%205.4%209%2010.6%208%2011.7z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--plus {
        width: 15px;
        height: 15px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2016%22%20style%3D%22%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M15.6%207.2H9.4V1c0-.4-.4-.8-.8-.8s-.8.4-.8.8v6.2H1.6c-.4%200-.8.4-.8.8s.4.8.8.8h6.2V15c0%20.4.4.8.8.8s.8-.4.8-.8V8.8h6.2c.4%200%20.8-.4.8-.8s-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--android {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2016%22%20style%3D%22fill%3A%23888888%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M11.2%205.2H2.8c-.2%200-.3.1-.3.3v6.7c0%20.2.2.3.3.3h1.5v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.4v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.5c.2%200%20.3-.1.3-.3V5.5c.1-.2-.1-.3-.3-.3zM1%205.2c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.4-.9-1-.9zm12%200c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.5-.9-1-.9zM2.9%204.7h8.3c.2%200%20.4-.2.3-.4-.3-1.2-1.1-2.3-2.2-2.9L10%20.3c0-.1%200-.2-.1-.2-.1-.1-.2-.1-.3%200l-.7%201.2C8.3%201%207.7.9%207%20.9s-1.3.1-1.9.4L4.4.1C4.3%200%204.2%200%204.1%200c-.1.1-.1.2%200%20.3l.7%201.2c-1.1.6-2%201.6-2.2%202.9-.1.1.1.3.3.3zm6.2-2.1c.2%200%20.4.2.4.4s-.2.3-.4.3-.4-.2-.4-.4.2-.3.4-.3zm-4.2%200c.2%200%20.4.2.4.4s-.2.4-.4.4-.4-.2-.4-.4.2-.4.4-.4z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--android-platform {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2016%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M11.2%205.2H2.8c-.2%200-.3.1-.3.3v6.7c0%20.2.2.3.3.3h1.5v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.4v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.5c.2%200%20.3-.1.3-.3V5.5c.1-.2-.1-.3-.3-.3zM1%205.2c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.4-.9-1-.9zm12%200c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.5-.9-1-.9zM2.9%204.7h8.3c.2%200%20.4-.2.3-.4-.3-1.2-1.1-2.3-2.2-2.9L10%20.3c0-.1%200-.2-.1-.2-.1-.1-.2-.1-.3%200l-.7%201.2C8.3%201%207.7.9%207%20.9s-1.3.1-1.9.4L4.4.1C4.3%200%204.2%200%204.1%200c-.1.1-.1.2%200%20.3l.7%201.2c-1.1.6-2%201.6-2.2%202.9-.1.1.1.3.3.3zm6.2-2.1c.2%200%20.4.2.4.4s-.2.3-.4.3-.4-.2-.4-.4.2-.3.4-.3zm-4.2%200c.2%200%20.4.2.4.4s-.2.4-.4.4-.4-.2-.4-.4.2-.4.4-.4z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--ios-platform {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22fill%3A%23ffffff%3B%22%3E%3Cpath%20d%3D%22M395.748%20272.046c-.646-64.841%2052.88-95.938%2055.271-97.483-30.075-44.01-76.925-50.039-93.62-50.736-39.871-4.037-77.798%2023.474-98.033%2023.474-20.184%200-51.409-22.877-84.476-22.276-43.458.646-83.529%2025.269-105.906%2064.19-45.152%2078.35-11.563%20194.42%2032.445%20257.963%2021.504%2031.104%2047.146%2066.038%2080.813%2064.79%2032.421-1.294%2044.681-20.979%2083.878-20.979%2039.196%200%2050.215%2020.979%2084.524%2020.335%2034.888-.648%2056.991-31.699%2078.347-62.898%2024.694-36.084%2034.862-71.019%2035.462-72.812-.775-.354-68.031-26.119-68.705-103.568zM331.28%2081.761C349.149%2060.082%20361.21%2030.005%20357.92%200c-25.739%201.048-56.938%2017.145-75.405%2038.775-16.57%2019.188-31.075%2049.813-27.188%2079.218%2028.734%202.242%2058.065-14.602%2075.953-36.232z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--apple {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22fill%3A%23888888%3B%22%3E%3Cpath%20d%3D%22M395.748%20272.046c-.646-64.841%2052.88-95.938%2055.271-97.483-30.075-44.01-76.925-50.039-93.62-50.736-39.871-4.037-77.798%2023.474-98.033%2023.474-20.184%200-51.409-22.877-84.476-22.276-43.458.646-83.529%2025.269-105.906%2064.19-45.152%2078.35-11.563%20194.42%2032.445%20257.963%2021.504%2031.104%2047.146%2066.038%2080.813%2064.79%2032.421-1.294%2044.681-20.979%2083.878-20.979%2039.196%200%2050.215%2020.979%2084.524%2020.335%2034.888-.648%2056.991-31.699%2078.347-62.898%2024.694-36.084%2034.862-71.019%2035.462-72.812-.775-.354-68.031-26.119-68.705-103.568zM331.28%2081.761C349.149%2060.082%20361.21%2030.005%20357.92%200c-25.739%201.048-56.938%2017.145-75.405%2038.775-16.57%2019.188-31.075%2049.813-27.188%2079.218%2028.734%202.242%2058.065-14.602%2075.953-36.232z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--ios {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22fill%3A%23888888%3B%22%3E%3Cpath%20d%3D%22M395.748%20272.046c-.646-64.841%2052.88-95.938%2055.271-97.483-30.075-44.01-76.925-50.039-93.62-50.736-39.871-4.037-77.798%2023.474-98.033%2023.474-20.184%200-51.409-22.877-84.476-22.276-43.458.646-83.529%2025.269-105.906%2064.19-45.152%2078.35-11.563%20194.42%2032.445%20257.963%2021.504%2031.104%2047.146%2066.038%2080.813%2064.79%2032.421-1.294%2044.681-20.979%2083.878-20.979%2039.196%200%2050.215%2020.979%2084.524%2020.335%2034.888-.648%2056.991-31.699%2078.347-62.898%2024.694-36.084%2034.862-71.019%2035.462-72.812-.775-.354-68.031-26.119-68.705-103.568zM331.28%2081.761C349.149%2060.082%20361.21%2030.005%20357.92%200c-25.739%201.048-56.938%2017.145-75.405%2038.775-16.57%2019.188-31.075%2049.813-27.188%2079.218%2028.734%202.242%2058.065-14.602%2075.953-36.232z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--mac-os {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2242px%22%20height%3D%2242px%22%20viewBox%3D%220%200%2042%2042%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23888888%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22mac_os%22%20fill%3D%22%23888888%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M23.091%2C14.018%20L23.091%2C13.676%20L22.028%2C13.749%20C21.727%2C13.768%2021.501%2C13.832%2021.349%2C13.94%20C21.197%2C14.049%2021.121%2C14.2%2021.121%2C14.393%20C21.121%2C14.581%2021.196%2C14.731%2021.347%2C14.842%20C21.497%2C14.954%2021.699%2C15.009%2021.951%2C15.009%20C22.112%2C15.009%2022.263%2C14.984%2022.402%2C14.935%20C22.541%2C14.886%2022.663%2C14.817%2022.765%2C14.729%20C22.867%2C14.642%2022.947%2C14.538%2023.004%2C14.417%20C23.062%2C14.296%2023.091%2C14.163%2023.091%2C14.018%20Z%20M21%2C0.25%20C9.421%2C0.25%200.25%2C9.421%200.25%2C21%20C0.25%2C32.58%209.421%2C41.75%2021%2C41.75%20C32.579%2C41.75%2041.75%2C32.58%2041.75%2C21%20C41.75%2C9.421%2032.58%2C0.25%2021%2C0.25%20Z%20M25.028%2C12.549%20C25.126%2C12.274%2025.264%2C12.038%2025.443%2C11.842%20C25.622%2C11.646%2025.837%2C11.495%2026.089%2C11.389%20C26.341%2C11.283%2026.622%2C11.23%2026.931%2C11.23%20C27.21%2C11.23%2027.462%2C11.272%2027.686%2C11.355%20C27.911%2C11.438%2028.103%2C11.55%2028.264%2C11.691%20C28.425%2C11.832%2028.553%2C11.996%2028.647%2C12.184%20C28.741%2C12.372%2028.797%2C12.571%2028.816%2C12.78%20L27.983%2C12.78%20C27.962%2C12.665%2027.924%2C12.557%2027.87%2C12.458%20C27.816%2C12.359%2027.745%2C12.273%2027.657%2C12.2%20C27.568%2C12.127%2027.464%2C12.07%2027.345%2C12.029%20C27.225%2C11.987%2027.091%2C11.967%2026.94%2C11.967%20C26.763%2C11.967%2026.602%2C12.003%2026.459%2C12.074%20C26.315%2C12.145%2026.192%2C12.246%2026.09%2C12.376%20C25.988%2C12.506%2025.909%2C12.665%2025.853%2C12.851%20C25.796%2C13.038%2025.768%2C13.245%2025.768%2C13.473%20C25.768%2C13.709%2025.796%2C13.921%2025.853%2C14.107%20C25.909%2C14.294%2025.989%2C14.451%2026.093%2C14.58%20C26.196%2C14.709%2026.321%2C14.808%2026.466%2C14.876%20C26.611%2C14.944%2026.771%2C14.979%2026.945%2C14.979%20C27.23%2C14.979%2027.462%2C14.912%2027.642%2C14.778%20C27.822%2C14.644%2027.938%2C14.448%2027.992%2C14.19%20L28.826%2C14.19%20C28.802%2C14.418%2028.739%2C14.626%2028.637%2C14.814%20C28.535%2C15.002%2028.403%2C15.162%2028.241%2C15.295%20C28.078%2C15.428%2027.887%2C15.531%2027.667%2C15.603%20C27.447%2C15.675%2027.205%2C15.712%2026.942%2C15.712%20C26.63%2C15.712%2026.349%2C15.66%2026.096%2C15.557%20C25.844%2C15.454%2025.627%2C15.305%2025.447%2C15.112%20C25.267%2C14.919%2025.128%2C14.684%2025.03%2C14.407%20C24.932%2C14.13%2024.883%2C13.819%2024.883%2C13.472%20C24.881%2C13.133%2024.93%2C12.825%2025.028%2C12.549%20Z%20M13.175%2C11.287%20L14.009%2C11.287%20L14.009%2C12.028%20L14.025%2C12.028%20C14.076%2C11.905%2014.143%2C11.794%2014.225%2C11.698%20C14.307%2C11.601%2014.401%2C11.519%2014.509%2C11.45%20C14.616%2C11.381%2014.735%2C11.329%2014.863%2C11.293%20C14.992%2C11.257%2015.128%2C11.239%2015.27%2C11.239%20C15.576%2C11.239%2015.835%2C11.312%2016.045%2C11.458%20C16.256%2C11.604%2016.406%2C11.814%2016.494%2C12.088%20L16.515%2C12.088%20C16.571%2C11.956%2016.645%2C11.838%2016.736%2C11.734%20C16.827%2C11.63%2016.932%2C11.54%2017.05%2C11.466%20C17.168%2C11.392%2017.298%2C11.336%2017.439%2C11.297%20C17.58%2C11.258%2017.728%2C11.239%2017.884%2C11.239%20C18.099%2C11.239%2018.294%2C11.273%2018.47%2C11.342%20C18.646%2C11.411%2018.796%2C11.507%2018.921%2C11.632%20C19.046%2C11.757%2019.142%2C11.909%2019.209%2C12.087%20C19.276%2C12.265%2019.31%2C12.463%2019.31%2C12.681%20L19.31%2C15.662%20L18.44%2C15.662%20L18.44%2C12.89%20C18.44%2C12.603%2018.366%2C12.38%2018.218%2C12.223%20C18.071%2C12.066%2017.86%2C11.987%2017.586%2C11.987%20C17.452%2C11.987%2017.329%2C12.011%2017.217%2C12.058%20C17.106%2C12.105%2017.009%2C12.171%2016.929%2C12.256%20C16.848%2C12.34%2016.785%2C12.442%2016.74%2C12.56%20C16.694%2C12.678%2016.671%2C12.807%2016.671%2C12.947%20L16.671%2C15.662%20L15.813%2C15.662%20L15.813%2C12.818%20C15.813%2C12.692%2015.793%2C12.578%2015.754%2C12.476%20C15.715%2C12.374%2015.66%2C12.287%2015.587%2C12.214%20C15.515%2C12.141%2015.426%2C12.086%2015.323%2C12.047%20C15.219%2C12.008%2015.103%2C11.988%2014.974%2C11.988%20C14.84%2C11.988%2014.716%2C12.013%2014.601%2C12.063%20C14.487%2C12.113%2014.389%2C12.182%2014.307%2C12.27%20C14.225%2C12.359%2014.161%2C12.463%2014.116%2C12.584%20C14.072%2C12.704%2014%2C12.836%2014%2C12.978%20L14%2C15.661%20L13.175%2C15.661%20L13.175%2C11.287%20Z%20M15.068%2C32.226%20C11.243%2C32.226%208.844%2C29.568%208.844%2C25.326%20C8.844%2C21.084%2011.243%2C18.417%2015.068%2C18.417%20C18.893%2C18.417%2021.283%2C21.084%2021.283%2C25.326%20C21.283%2C29.567%2018.893%2C32.226%2015.068%2C32.226%20Z%20M22.15%2C15.651%20C22.009%2C15.687%2021.865%2C15.705%2021.717%2C15.705%20C21.499%2C15.705%2021.3%2C15.674%2021.119%2C15.612%20C20.937%2C15.55%2020.782%2C15.463%2020.652%2C15.35%20C20.522%2C15.237%2020.42%2C15.101%2020.348%2C14.941%20C20.275%2C14.781%2020.239%2C14.603%2020.239%2C14.407%20C20.239%2C14.023%2020.382%2C13.723%2020.668%2C13.507%20C20.954%2C13.291%2021.368%2C13.165%2021.911%2C13.13%20L23.091%2C13.062%20L23.091%2C12.724%20C23.091%2C12.472%2023.011%2C12.279%2022.851%2C12.148%20C22.691%2C12.017%2022.465%2C11.951%2022.172%2C11.951%20C22.054%2C11.951%2021.943%2C11.966%2021.841%2C11.995%20C21.739%2C12.025%2021.649%2C12.067%2021.571%2C12.122%20C21.493%2C12.177%2021.428%2C12.243%2021.378%2C12.32%20C21.327%2C12.396%2021.292%2C12.482%2021.273%2C12.576%20L20.455%2C12.576%20C20.46%2C12.383%2020.508%2C12.204%2020.598%2C12.04%20C20.688%2C11.876%2020.81%2C11.734%2020.965%2C11.613%20C21.12%2C11.492%2021.301%2C11.398%2021.511%2C11.331%20C21.721%2C11.264%2021.949%2C11.23%2022.196%2C11.23%20C22.462%2C11.23%2022.703%2C11.263%2022.919%2C11.331%20C23.135%2C11.399%2023.32%2C11.494%2023.473%2C11.619%20C23.626%2C11.744%2023.744%2C11.894%2023.827%2C12.07%20C23.91%2C12.246%2023.952%2C12.443%2023.952%2C12.66%20L23.952%2C15.661%20L23.119%2C15.661%20L23.119%2C14.932%20L23.098%2C14.932%20C23.036%2C15.05%2022.958%2C15.157%2022.863%2C15.252%20C22.767%2C15.347%2022.66%2C15.429%2022.541%2C15.496%20C22.421%2C15.563%2022.291%2C15.615%2022.15%2C15.651%20Z%20M27.653%2C32.226%20C24.736%2C32.226%2022.753%2C30.698%2022.615%2C28.299%20L24.514%2C28.299%20C24.662%2C29.67%2025.987%2C30.578%2027.802%2C30.578%20C29.543%2C30.578%2030.794%2C29.67%2030.794%2C28.429%20C30.794%2C27.355%2030.034%2C26.706%2028.275%2C26.262%20L26.561%2C25.836%20C24.097%2C25.225%2022.977%2C24.104%2022.977%2C22.261%20C22.977%2C19.992%2024.959%2C18.417%2027.784%2C18.417%20C30.544%2C18.417%2032.47%2C20.001%2032.544%2C22.279%20L30.664%2C22.279%20C30.534%2C20.908%2029.414%2C20.065%2027.746%2C20.065%20C26.088%2C20.065%2024.94%2C20.917%2024.94%2C22.149%20C24.94%2C23.121%2025.662%2C23.696%2027.422%2C24.14%20L28.867%2C24.501%20C31.618%2C25.168%2032.748%2C26.252%2032.748%2C28.197%20C32.747%2C30.679%2030.784%2C32.226%2027.653%2C32.226%20Z%20M15.068%2C20.12%20C12.447%2C20.12%2010.808%2C22.13%2010.808%2C25.325%20C10.808%2C28.511%2012.447%2C30.521%2015.068%2C30.521%20C17.68%2C30.521%2019.328%2C28.511%2019.328%2C25.325%20C19.329%2C22.13%2017.68%2C20.12%2015.068%2C20.12%20Z%22%20id%3D%22Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--windows {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20style%3D%22fill%3A%23888888%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2013.7L6.5%2014.6%206.5%208.4%200%208.4z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%207.6L6.5%207.6%206.5%201.3%200%202.2z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M7.2%2014.7L15.9%2015.9%2015.9%208.4%2015.9%208.4%207.2%208.4z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M7.2%201.2L7.2%207.6%2015.9%207.6%2015.9%200z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--windows-platform {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%2013.7L6.5%2014.6%206.5%208.4%200%208.4z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M0%207.6L6.5%207.6%206.5%201.3%200%202.2z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M7.2%2014.7L15.9%2015.9%2015.9%208.4%2015.9%208.4%207.2%208.4z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M7.2%201.2L7.2%207.6%2015.9%207.6%2015.9%200z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--mac-platform {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2242px%22%20height%3D%2242px%22%20viewBox%3D%220%200%2042%2042%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22mac_os%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M23.091%2C14.018%20L23.091%2C13.676%20L22.028%2C13.749%20C21.727%2C13.768%2021.501%2C13.832%2021.349%2C13.94%20C21.197%2C14.049%2021.121%2C14.2%2021.121%2C14.393%20C21.121%2C14.581%2021.196%2C14.731%2021.347%2C14.842%20C21.497%2C14.954%2021.699%2C15.009%2021.951%2C15.009%20C22.112%2C15.009%2022.263%2C14.984%2022.402%2C14.935%20C22.541%2C14.886%2022.663%2C14.817%2022.765%2C14.729%20C22.867%2C14.642%2022.947%2C14.538%2023.004%2C14.417%20C23.062%2C14.296%2023.091%2C14.163%2023.091%2C14.018%20Z%20M21%2C0.25%20C9.421%2C0.25%200.25%2C9.421%200.25%2C21%20C0.25%2C32.58%209.421%2C41.75%2021%2C41.75%20C32.579%2C41.75%2041.75%2C32.58%2041.75%2C21%20C41.75%2C9.421%2032.58%2C0.25%2021%2C0.25%20Z%20M25.028%2C12.549%20C25.126%2C12.274%2025.264%2C12.038%2025.443%2C11.842%20C25.622%2C11.646%2025.837%2C11.495%2026.089%2C11.389%20C26.341%2C11.283%2026.622%2C11.23%2026.931%2C11.23%20C27.21%2C11.23%2027.462%2C11.272%2027.686%2C11.355%20C27.911%2C11.438%2028.103%2C11.55%2028.264%2C11.691%20C28.425%2C11.832%2028.553%2C11.996%2028.647%2C12.184%20C28.741%2C12.372%2028.797%2C12.571%2028.816%2C12.78%20L27.983%2C12.78%20C27.962%2C12.665%2027.924%2C12.557%2027.87%2C12.458%20C27.816%2C12.359%2027.745%2C12.273%2027.657%2C12.2%20C27.568%2C12.127%2027.464%2C12.07%2027.345%2C12.029%20C27.225%2C11.987%2027.091%2C11.967%2026.94%2C11.967%20C26.763%2C11.967%2026.602%2C12.003%2026.459%2C12.074%20C26.315%2C12.145%2026.192%2C12.246%2026.09%2C12.376%20C25.988%2C12.506%2025.909%2C12.665%2025.853%2C12.851%20C25.796%2C13.038%2025.768%2C13.245%2025.768%2C13.473%20C25.768%2C13.709%2025.796%2C13.921%2025.853%2C14.107%20C25.909%2C14.294%2025.989%2C14.451%2026.093%2C14.58%20C26.196%2C14.709%2026.321%2C14.808%2026.466%2C14.876%20C26.611%2C14.944%2026.771%2C14.979%2026.945%2C14.979%20C27.23%2C14.979%2027.462%2C14.912%2027.642%2C14.778%20C27.822%2C14.644%2027.938%2C14.448%2027.992%2C14.19%20L28.826%2C14.19%20C28.802%2C14.418%2028.739%2C14.626%2028.637%2C14.814%20C28.535%2C15.002%2028.403%2C15.162%2028.241%2C15.295%20C28.078%2C15.428%2027.887%2C15.531%2027.667%2C15.603%20C27.447%2C15.675%2027.205%2C15.712%2026.942%2C15.712%20C26.63%2C15.712%2026.349%2C15.66%2026.096%2C15.557%20C25.844%2C15.454%2025.627%2C15.305%2025.447%2C15.112%20C25.267%2C14.919%2025.128%2C14.684%2025.03%2C14.407%20C24.932%2C14.13%2024.883%2C13.819%2024.883%2C13.472%20C24.881%2C13.133%2024.93%2C12.825%2025.028%2C12.549%20Z%20M13.175%2C11.287%20L14.009%2C11.287%20L14.009%2C12.028%20L14.025%2C12.028%20C14.076%2C11.905%2014.143%2C11.794%2014.225%2C11.698%20C14.307%2C11.601%2014.401%2C11.519%2014.509%2C11.45%20C14.616%2C11.381%2014.735%2C11.329%2014.863%2C11.293%20C14.992%2C11.257%2015.128%2C11.239%2015.27%2C11.239%20C15.576%2C11.239%2015.835%2C11.312%2016.045%2C11.458%20C16.256%2C11.604%2016.406%2C11.814%2016.494%2C12.088%20L16.515%2C12.088%20C16.571%2C11.956%2016.645%2C11.838%2016.736%2C11.734%20C16.827%2C11.63%2016.932%2C11.54%2017.05%2C11.466%20C17.168%2C11.392%2017.298%2C11.336%2017.439%2C11.297%20C17.58%2C11.258%2017.728%2C11.239%2017.884%2C11.239%20C18.099%2C11.239%2018.294%2C11.273%2018.47%2C11.342%20C18.646%2C11.411%2018.796%2C11.507%2018.921%2C11.632%20C19.046%2C11.757%2019.142%2C11.909%2019.209%2C12.087%20C19.276%2C12.265%2019.31%2C12.463%2019.31%2C12.681%20L19.31%2C15.662%20L18.44%2C15.662%20L18.44%2C12.89%20C18.44%2C12.603%2018.366%2C12.38%2018.218%2C12.223%20C18.071%2C12.066%2017.86%2C11.987%2017.586%2C11.987%20C17.452%2C11.987%2017.329%2C12.011%2017.217%2C12.058%20C17.106%2C12.105%2017.009%2C12.171%2016.929%2C12.256%20C16.848%2C12.34%2016.785%2C12.442%2016.74%2C12.56%20C16.694%2C12.678%2016.671%2C12.807%2016.671%2C12.947%20L16.671%2C15.662%20L15.813%2C15.662%20L15.813%2C12.818%20C15.813%2C12.692%2015.793%2C12.578%2015.754%2C12.476%20C15.715%2C12.374%2015.66%2C12.287%2015.587%2C12.214%20C15.515%2C12.141%2015.426%2C12.086%2015.323%2C12.047%20C15.219%2C12.008%2015.103%2C11.988%2014.974%2C11.988%20C14.84%2C11.988%2014.716%2C12.013%2014.601%2C12.063%20C14.487%2C12.113%2014.389%2C12.182%2014.307%2C12.27%20C14.225%2C12.359%2014.161%2C12.463%2014.116%2C12.584%20C14.072%2C12.704%2014%2C12.836%2014%2C12.978%20L14%2C15.661%20L13.175%2C15.661%20L13.175%2C11.287%20Z%20M15.068%2C32.226%20C11.243%2C32.226%208.844%2C29.568%208.844%2C25.326%20C8.844%2C21.084%2011.243%2C18.417%2015.068%2C18.417%20C18.893%2C18.417%2021.283%2C21.084%2021.283%2C25.326%20C21.283%2C29.567%2018.893%2C32.226%2015.068%2C32.226%20Z%20M22.15%2C15.651%20C22.009%2C15.687%2021.865%2C15.705%2021.717%2C15.705%20C21.499%2C15.705%2021.3%2C15.674%2021.119%2C15.612%20C20.937%2C15.55%2020.782%2C15.463%2020.652%2C15.35%20C20.522%2C15.237%2020.42%2C15.101%2020.348%2C14.941%20C20.275%2C14.781%2020.239%2C14.603%2020.239%2C14.407%20C20.239%2C14.023%2020.382%2C13.723%2020.668%2C13.507%20C20.954%2C13.291%2021.368%2C13.165%2021.911%2C13.13%20L23.091%2C13.062%20L23.091%2C12.724%20C23.091%2C12.472%2023.011%2C12.279%2022.851%2C12.148%20C22.691%2C12.017%2022.465%2C11.951%2022.172%2C11.951%20C22.054%2C11.951%2021.943%2C11.966%2021.841%2C11.995%20C21.739%2C12.025%2021.649%2C12.067%2021.571%2C12.122%20C21.493%2C12.177%2021.428%2C12.243%2021.378%2C12.32%20C21.327%2C12.396%2021.292%2C12.482%2021.273%2C12.576%20L20.455%2C12.576%20C20.46%2C12.383%2020.508%2C12.204%2020.598%2C12.04%20C20.688%2C11.876%2020.81%2C11.734%2020.965%2C11.613%20C21.12%2C11.492%2021.301%2C11.398%2021.511%2C11.331%20C21.721%2C11.264%2021.949%2C11.23%2022.196%2C11.23%20C22.462%2C11.23%2022.703%2C11.263%2022.919%2C11.331%20C23.135%2C11.399%2023.32%2C11.494%2023.473%2C11.619%20C23.626%2C11.744%2023.744%2C11.894%2023.827%2C12.07%20C23.91%2C12.246%2023.952%2C12.443%2023.952%2C12.66%20L23.952%2C15.661%20L23.119%2C15.661%20L23.119%2C14.932%20L23.098%2C14.932%20C23.036%2C15.05%2022.958%2C15.157%2022.863%2C15.252%20C22.767%2C15.347%2022.66%2C15.429%2022.541%2C15.496%20C22.421%2C15.563%2022.291%2C15.615%2022.15%2C15.651%20Z%20M27.653%2C32.226%20C24.736%2C32.226%2022.753%2C30.698%2022.615%2C28.299%20L24.514%2C28.299%20C24.662%2C29.67%2025.987%2C30.578%2027.802%2C30.578%20C29.543%2C30.578%2030.794%2C29.67%2030.794%2C28.429%20C30.794%2C27.355%2030.034%2C26.706%2028.275%2C26.262%20L26.561%2C25.836%20C24.097%2C25.225%2022.977%2C24.104%2022.977%2C22.261%20C22.977%2C19.992%2024.959%2C18.417%2027.784%2C18.417%20C30.544%2C18.417%2032.47%2C20.001%2032.544%2C22.279%20L30.664%2C22.279%20C30.534%2C20.908%2029.414%2C20.065%2027.746%2C20.065%20C26.088%2C20.065%2024.94%2C20.917%2024.94%2C22.149%20C24.94%2C23.121%2025.662%2C23.696%2027.422%2C24.14%20L28.867%2C24.501%20C31.618%2C25.168%2032.748%2C26.252%2032.748%2C28.197%20C32.747%2C30.679%2030.784%2C32.226%2027.653%2C32.226%20Z%20M15.068%2C20.12%20C12.447%2C20.12%2010.808%2C22.13%2010.808%2C25.325%20C10.808%2C28.511%2012.447%2C30.521%2015.068%2C30.521%20C17.68%2C30.521%2019.328%2C28.511%2019.328%2C25.325%20C19.329%2C22.13%2017.68%2C20.12%2015.068%2C20.12%20Z%22%20id%3D%22Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--android-green {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2016%22%20style%3D%22fill%3A%2367b279%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M11.2%205.2H2.8c-.2%200-.3.1-.3.3v6.7c0%20.2.2.3.3.3h1.5v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.4v2.3c0%20.5.4.9%201%20.9s1-.4%201-.9v-2.3h1.5c.2%200%20.3-.1.3-.3V5.5c.1-.2-.1-.3-.3-.3zM1%205.2c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.4-.9-1-.9zm12%200c-.6%200-1%20.4-1%20.9V10c0%20.5.4.9%201%20.9s1-.4%201-.9V6.1c0-.5-.5-.9-1-.9zM2.9%204.7h8.3c.2%200%20.4-.2.3-.4-.3-1.2-1.1-2.3-2.2-2.9L10%20.3c0-.1%200-.2-.1-.2-.1-.1-.2-.1-.3%200l-.7%201.2C8.3%201%207.7.9%207%20.9s-1.3.1-1.9.4L4.4.1C4.3%200%204.2%200%204.1%200c-.1.1-.1.2%200%20.3l.7%201.2c-1.1.6-2%201.6-2.2%202.9-.1.1.1.3.3.3zm6.2-2.1c.2%200%20.4.2.4.4s-.2.3-.4.3-.4-.2-.4-.4.2-.3.4-.3zm-4.2%200c.2%200%20.4.2.4.4s-.2.4-.4.4-.4-.2-.4-.4.2-.4.4-.4z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--ios-green {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22fill%3A%2367b279%3B%22%3E%3Cpath%20d%3D%22M395.748%20272.046c-.646-64.841%2052.88-95.938%2055.271-97.483-30.075-44.01-76.925-50.039-93.62-50.736-39.871-4.037-77.798%2023.474-98.033%2023.474-20.184%200-51.409-22.877-84.476-22.276-43.458.646-83.529%2025.269-105.906%2064.19-45.152%2078.35-11.563%20194.42%2032.445%20257.963%2021.504%2031.104%2047.146%2066.038%2080.813%2064.79%2032.421-1.294%2044.681-20.979%2083.878-20.979%2039.196%200%2050.215%2020.979%2084.524%2020.335%2034.888-.648%2056.991-31.699%2078.347-62.898%2024.694-36.084%2034.862-71.019%2035.462-72.812-.775-.354-68.031-26.119-68.705-103.568zM331.28%2081.761C349.149%2060.082%20361.21%2030.005%20357.92%200c-25.739%201.048-56.938%2017.145-75.405%2038.775-16.57%2019.188-31.075%2049.813-27.188%2079.218%2028.734%202.242%2058.065-14.602%2075.953-36.232z%22%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
    }

.icon--download {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M16.531%2010.414a.75.75%200%200%201%201.019%201.096l-.081.076L12%2015.96l-5.469-4.374a.75.75%200%200%201%20.846-1.235l.092.063L12%2014.04l4.531-3.625zM18%2018.25a.75.75%200%200%201%20.11%201.492l-.11.008H6a.75.75%200%200%201-.11-1.492L6%2018.25h12z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.75%2014a.75.75%200%200%201-1.492.11L11.25%2014V4a.75.75%200%200%201%201.492-.11l.008.11v10z%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--google_play {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2050%2050%22%20width%3D%2224%22%20height%3D%2224%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%3E%3Cpath%20d%3D%22M7.125%202l21.656%2021.5%205.938-5.938L8.469%202.406A2.873%202.873%200%200%200%207.125%202zM5.312%203A2.466%202.466%200%200%200%205%204.219V46c0%20.336.07.637.188.906l22.156-22zm31.22%2015.594l-6.344%206.312%206.343%206.282%207.75-4.438c1.102-.637%201.258-1.445%201.25-1.875-.011-.71-.46-1.375-1.218-1.781-.66-.356-5.563-3.211-7.782-4.5zm-7.75%207.718L6.936%2047.97a2.46%202.46%200%200%200%201.125-.313l18.157-10.5%208.531-4.906z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--itunes {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2050%2050%22%20width%3D%2224%22%20height%3D%2224%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%3E%3Cpath%20d%3D%22M25%202C12.316%202%202%2012.316%202%2025s10.316%2023%2023%2023%2023-10.316%2023-23S37.684%202%2025%202zm-3.594%2013.824a1.13%201.13%200%200%201%201.547-.402l1.004.586c.54.316.723%201.008.406%201.55l-.996%201.704-2.957-1.73zm-11.078%207.5h6.145l-1.957%203.309h-4.188zm1.48%2012.75a.23.23%200%200%201-.273.031.221.221%200%200%201-.101-.25l1.43-5.41%202.956%201.73zm1.426-6.27l6.934-11.859%202.957%201.73-6.934%2011.86zm6.356-3.171l1.836-3.305h7.086l1.836%203.305zm3.594-13.613a1.13%201.13%200%200%201%20.41-1.547l.918-.536a1.135%201.135%200%200%201%201.547.41l7.84%2013.497-2.876%201.672zm8.16%2014.05l2.875-1.672%201.664%202.864-2.875%201.668zm6.05%208.914c-.066.094-.234.016-.285-.062-.132-.211-.015-.5-.437-1.145-.777-1.183-1.805-.949-2.797-2.617-.176-.293-.77-1.637%200-2.094.41-.246%201.105-.66%201.574-.921.79-.45%201.52.492%201.922%201.082.867%201.265%201.219%204.109.024%205.757zm2.235-9.351h-4.121l-1.801-3.305h5.922z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--trust_pilot {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-31%2032.594%20256%20256.406%22%20enable-background%3D%22new%20-31%2032.594%20256%20256.406%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M225%2032.594H-31v112.412S54.177%20185.573%2097.424%20258.01c0%200%2020.542-160.009%20127.576-225.416zM113.728%20289H225V142.213C163.114%20158.981%20113.728%20289%20113.728%20289zM-31%20237.802V289H83.853S39.786%20241.177-31%20237.802z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--store_chrome {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.3%2028.3%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M27.3%208.8h-9C19.9%2010%2021%2012%2021%2014.1c0%201.7-.8%203.2-1.8%204.5-1.6%202.2-5.5%209.6-5.5%209.6h.4c7.8%200%2014.2-6.3%2014.2-14.1%200-1.9-.3-3.7-1-5.3z%22%2F%3E%3Cpath%20d%3D%22M14.1%207.4c3.1%200%2012.4-.1%2012.4-.1-2.4-4.4-7-7.3-12.3-7.3-4.4%200-8.4%202-11%205.2l4.3%207.7c.6-3.1%203.3-5.5%206.6-5.5z%22%2F%3E%3Cpath%20d%3D%22M14.2%2020.9c-3%200-5.2-2-6.4-4.5-1.2-2.6-5.6-9.8-5.6-9.8C.8%208.8%200%2011.4%200%2014.1c0%207.1%205.2%2013%2012.1%2014l4.4-7.6c-.8.3-1.5.4-2.3.4z%22%2F%3E%3Cellipse%20cx%3D%2214.2%22%20cy%3D%2214.2%22%20rx%3D%224.6%22%20ry%3D%224.6%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--store_opera {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.4%2028.3%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M22.3%202.2C20.1.8%2017.3%200%2014.2%200c-2.9%200-5.4.7-7.6%201.9C2.5%204.2%200%208.5%200%2014c0%207.5%205.7%2014.3%2014.2%2014.3S28.4%2021.5%2028.4%2014c0-5.2-2.3-9.4-6.1-11.8zm-8.1.4c4.6%200%205.7%205.9%205.7%2011.3%200%205-.7%2011.7-5.6%2011.7-4.9%200-5.7-6.8-5.7-11.7-.1-5.4%201-11.3%205.6-11.3z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--store_mozilla {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2028.3%22%20style%3D%22fill%3Argba(0%2C0%2C0%2C0.8)%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M30%209.5l-.7%201.6s-.3-2.9-.8-4.5S27%204%2027%204l.5%202.1s-1.7-2-3.2-2.8c-.3-.1-.6-.2-.8-.3-2.1-1.9-4.8-3-7.8-3-4.3%200-8%202.3-10.1%205.7-.1-.1-.7-.4-1-1.2-.3-.8-.5-1.6-.5-1.6C2.1%204.8%202.6%208%202.6%208s-.8.7-1.6%202-1%203.6-1%203.6l1.3-1.4S1%2012.8.7%2014c-.2%201.2-.2%203.1-.2%203.1l.7-1.5s0%204.8%204.6%209.1%2012.8%205.5%2019%20.1S30%209.5%2030%209.5zM15.6%201.6c2.4%200%204.7.9%206.4%202.3l-2.3.4s2.3.7%204%202.1c.4.3.8.8%201.1%201.2.4.8.7%201.7.8%202.6l-1.1-.9s.4.5.5%201.7c.1%201.3-.3%203.6-.3%203.6l-1-1.2s.2%202-.2%203.7c-.4%201.7-1.3%202.5-1.3%202.5l.2-2.1s-1.2%202.6-4.5%203.6-6.5-1.9-6.5-1.9c2.1.6%203.5-.6%204.6-1.1%201.1-.6%201.7-.6%202.1-.6.5%200%200-1.1-.9-1.6s-1.9-.2-3.9.3c-2.1.6-3.3-1.2-3.2-2.4.1-1.2%202-.5%202-.5l-.1-2.4s3.2-2%202.9-2.5c-.2-.5-1.3-.3-2.3-.6-.9-.3-1.5-1.2-1.5-1.2s-.1-.6.3-1.1c.3-.6%201.4-1.4%201.4-1.4s-.7-.1-1.9.3-2.1%201.2-2.1%201.2-.2-.1-1.2-.2c1.9-2.3%204.8-3.8%208-3.8z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--ru {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.001%20512.001%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M512%20200.093H0V97.104a8.829%208.829%200%200%201%208.828-8.828h494.345a8.829%208.829%200%200%201%208.828%208.828L512%20200.093z%22%20fill%3D%22%23F5F5F5%22%2F%3E%3Cpath%20d%3D%22M503.172%20423.725H8.828A8.829%208.829%200%200%201%200%20414.897V311.909h512v102.988a8.828%208.828%200%200%201-8.828%208.828z%22%20fill%3D%22%23FF4B55%22%2F%3E%3Cpath%20fill%3D%22%2341479B%22%20d%3D%22M0%20200.091h512v111.81H0z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--en {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.001%20512.001%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M503.172%20423.725H8.828A8.829%208.829%200%200%201%200%20414.897V97.104a8.829%208.829%200%200%201%208.828-8.828h494.345a8.829%208.829%200%200%201%208.828%208.828v317.793a8.83%208.83%200%200%201-8.829%208.828z%22%20fill%3D%22%23F5F5F5%22%2F%3E%3Cpath%20d%3D%22M512%20114.081H0V97.104a8.829%208.829%200%200%201%208.828-8.828h494.345a8.829%208.829%200%200%201%208.828%208.828L512%20114.081zM0%20191.491h512v25.804H0zm0-51.61h512v25.804H0zm512%20129.022H8.828A8.829%208.829%200%200%201%200%20260.075v-16.977h512v25.805zM0%20346.321h512v25.804H0zm503.172%2077.404H8.828A8.829%208.829%200%200%201%200%20414.897v-16.976h512v16.977a8.828%208.828%200%200%201-8.828%208.827zM0%20294.711h512v25.804H0z%22%20fill%3D%22%23FF4B55%22%2F%3E%3Cpath%20d%3D%22M229.517%2088.277H8.828A8.828%208.828%200%200%200%200%2097.104v162.97a8.829%208.829%200%200%200%208.828%208.828h220.69a8.829%208.829%200%200%200%208.828-8.828V97.104a8.83%208.83%200%200%200-8.829-8.827z%22%20fill%3D%22%2341479B%22%2F%3E%3Cpath%20d%3D%22M24.789%20108.538l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928L24%20122.843l-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.76%201.324-.76%201.578-.001zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928L24%20153.497l-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.324-.759%201.578-.001zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928L24%20184.151l-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.324-.759%201.578-.001zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928L24%20214.806l-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.76%201.324-.76%201.578-.001zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928L24%20245.46l-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.761%201.324-.761%201.578-.001zm23.793-107.588l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.165-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm23.793-106.992l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.325-.758%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.325-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.76%201.325-.76%201.578%200zm23.794-107.588l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.165-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm23.793-106.992l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.026-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.759%201.326-.759%201.579%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.026-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.758%201.326-.758%201.579%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.026-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.758%201.326-.758%201.579%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.026-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.759%201.326-.759%201.579%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.026-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.76%201.326-.76%201.579%200zm23.793-107.588l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.758%201.325-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.165-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.253-.758%201.325-.758%201.578%200zm23.794-106.992l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.758%201.325-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.759%201.325-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.251-.76%201.325-.76%201.578%200zm23.793-107.588l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.326-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.165-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.326-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.326-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.326-.758%201.578%200zm23.794-106.992l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.324-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.324-.758%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.758%201.324-.758%201.578%200zm0%2030.655l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.759%201.324-.759%201.578%200zm0%2030.654l1.954%205.86%206.177.047c.8.007%201.131%201.027.488%201.502l-4.969%203.67%201.864%205.889c.242.762-.627%201.394-1.278.928l-5.025-3.592-5.025%203.592c-.651.465-1.518-.166-1.278-.928l1.864-5.889-4.969-3.67c-.643-.476-.312-1.495.488-1.502l6.177-.047%201.954-5.86c.252-.76%201.324-.76%201.578%200z%22%20fill%3D%22%23F5F5F5%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--pt_br {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.001%20512.001%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M503.172%20423.725H8.828c-4.875%200-8.828-3.953-8.828-8.828V97.104c0-4.875%203.953-8.828%208.828-8.828h494.345c4.875%200%208.828%203.953%208.828%208.828v317.793c0%204.876-3.953%208.828-8.828%208.828z%22%20fill%3D%22%2373AF00%22%2F%3E%3Cpath%20d%3D%22M251.41%20135.21L65.354%20248.46c-5.65%203.44-5.65%2011.64%200%2015.08L251.41%20376.794c2.82%201.716%206.36%201.716%209.18%200l186.057-113.25c5.65-3.44%205.65-11.642%200-15.082L260.59%20135.21c-2.82-1.717-6.36-1.717-9.18%200z%22%20fill%3D%22%23FFE15A%22%2F%3E%3Ccircle%20cx%3D%22256%22%20cy%3D%22256.001%22%20r%3D%2270.62%22%20fill%3D%22%2341479B%22%2F%3E%3Cg%20fill%3D%22%23F5F5F5%22%3E%3Cpath%20d%3D%22M195.4%20219.874c-3.33%205.578-5.904%2011.64-7.604%2018.077%2039.15-2.945%2097.062%208.007%20133.922%2043.774%202.406-6.14%203.994-12.683%204.59-19.522-38.06-32.033-90.68-43.424-130.907-42.328zM258.925%20280.1l1.88%205.638%205.943.046c.77.006%201.088.988.47%201.445l-4.78%203.53%201.792%205.666c.232.734-.604%201.34-1.23.893l-4.834-3.457-4.835%203.456c-.625.447-1.46-.16-1.228-.894l1.793-5.666-4.78-3.53c-.62-.458-.3-1.44.468-1.446l5.943-.046%201.88-5.638c.243-.73%201.275-.73%201.52%200zM282.024%20294.685l.81%202.426%202.557.02c.332.003.47.426.203.623l-2.058%201.52.77%202.438c.1.317-.258.578-.528.385l-2.08-1.487-2.082%201.487c-.27.193-.63-.068-.53-.384l.772-2.438-2.058-1.52c-.267-.195-.13-.618.2-.62l2.56-.02.808-2.427c.106-.315.55-.315.656%200zM248.938%20269.39l.81%202.426%202.557.02c.33.002.47.425.202.622l-2.058%201.52.77%202.438c.1.316-.26.577-.53.384l-2.08-1.487-2.08%201.487c-.27.193-.63-.068-.53-.384l.77-2.44-2.057-1.518c-.266-.196-.13-.62.202-.622l2.558-.02.81-2.426c.105-.314.55-.314.655%200zM204.13%20266.448l.81%202.426%202.557.02c.33.002.47.425.202.622l-2.06%201.52.772%202.438c.1.316-.26.577-.53.384l-2.08-1.487-2.08%201.488c-.27.193-.63-.068-.53-.384l.77-2.44-2.057-1.518c-.266-.196-.13-.62.202-.622l2.558-.02.81-2.426c.106-.314.55-.314.655%200zM241.614%20293.847l.81%202.426%202.557.02c.332.002.47.425.203.622l-2.058%201.52.77%202.438c.1.316-.258.577-.528.384l-2.08-1.487-2.082%201.487c-.27.193-.63-.068-.53-.384l.772-2.44-2.058-1.518c-.267-.196-.13-.62.2-.622l2.56-.02.808-2.426c.107-.313.552-.313.656%200zM220.99%20264.755l.662%201.984%202.092.016c.27.002.383.348.166.51l-1.683%201.24.63%201.995c.083.26-.21.473-.432.315l-1.702-1.216-1.702%201.215c-.22.158-.513-.056-.432-.314l.63-1.993-1.682-1.242c-.217-.16-.106-.507.166-.51l2.092-.016.662-1.985c.085-.257.448-.257.534%200zM283.82%20223.794l.827%202.482%202.616.02c.34.002.48.435.206.636l-2.105%201.554.79%202.495c.102.324-.267.59-.542.394l-2.13-1.522-2.128%201.522c-.276.198-.643-.07-.54-.393l.788-2.494-2.104-1.554c-.274-.2-.133-.633.205-.636l2.616-.02.83-2.482c.107-.322.562-.322.67%200zM207.012%20252.617l.662%201.984%202.092.018c.27.002.383.348.166.51l-1.683%201.24.63%201.995c.082.258-.212.472-.433.314l-1.702-1.216-1.702%201.217c-.22.158-.514-.056-.433-.314l.63-1.994-1.682-1.243c-.217-.16-.106-.506.166-.51l2.092-.016.662-1.983c.085-.257.448-.257.534%200zM217.112%20280.58l1.002%203.007%203.168.024c.41.004.58.527.25.77l-2.55%201.883.957%203.02c.123.39-.322.715-.656.476l-2.578-1.843-2.578%201.842c-.333.237-.78-.086-.655-.477l.956-3.02-2.55-1.882c-.33-.243-.16-.766.25-.77l3.168-.023%201.002-3.006c.133-.387.683-.387.812%200zM294.903%20295.315l.63%201.89%201.993.016c.258.003.365.332.158.485l-1.603%201.184.602%201.9c.078.245-.202.448-.413.298l-1.622-1.16-1.622%201.16c-.21.15-.49-.053-.413-.3l.6-1.9-1.602-1.183c-.206-.153-.1-.482.16-.484l1.992-.014.63-1.89c.083-.246.43-.246.51%200zM301.877%20280.885l.81%202.426%202.557.02c.33.003.47.426.202.623l-2.058%201.52.77%202.438c.1.317-.258.578-.528.385l-2.08-1.487-2.082%201.487c-.27.193-.63-.068-.53-.384l.772-2.438-2.058-1.52c-.266-.195-.13-.618.202-.62l2.558-.02.81-2.427c.105-.315.55-.315.655%200z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--no {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.001%20512.001%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M503.172%20423.725H8.828A8.829%208.829%200%200%201%200%20414.897V97.104a8.829%208.829%200%200%201%208.828-8.828h494.345a8.829%208.829%200%200%201%208.828%208.828v317.793a8.83%208.83%200%200%201-8.829%208.828z%22%20fill%3D%22%23FF4B55%22%2F%3E%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M512%20211.863H229.517V88.277h-88.276v123.586H0v88.276h141.241v123.586h88.276V300.139H512%22%2F%3E%3Cpath%20fill%3D%22%2341479B%22%20d%3D%22M512%20229.518H211.862V88.277h-52.965v141.241H0v52.966h158.897v141.241h52.965V282.484H512%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--sv {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20512.001%20512.001%22%20xml%3Aspace%3D%22preserve%22%20enable-background%3D%22new%200%200%20512.001%20512.001%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M503.172%2C423.725H8.828c-4.875%2C0-8.828-3.953-8.828-8.828V97.104c0-4.875%2C3.953-8.828%2C8.828-8.828%09h494.345c4.875%2C0%2C8.828%2C3.953%2C8.828%2C8.828v317.793C512%2C419.773%2C508.047%2C423.725%2C503.172%2C423.725z%22%20fill%3D%22%234173CD%22%2F%3E%3Cpolygon%20points%3D%22512%2C229.518%20211.862%2C229.518%20211.862%2C88.277%20158.897%2C88.277%20158.897%2C229.518%200%2C229.518%200%2C282.484%20158.897%2C282.484%20158.897%2C423.725%20211.862%2C423.725%20211.862%2C282.484%20512%2C282.484%22%20fill%3D%22%23FFE15A%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--bs {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512.001%20512.001%22%20style%3D%22%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%2341479B%3B%22%20d%3D%22M503.172%2C423.724H8.828c-4.875%2C0-8.828-3.953-8.828-8.828V97.104c0-4.875%2C3.953-8.828%2C8.828-8.828%0D%0A%09h494.345c4.875%2C0%2C8.828%2C3.953%2C8.828%2C8.828v317.792C512%2C419.772%2C508.047%2C423.724%2C503.172%2C423.724z%22%2F%3E%0D%0A%3Cpolygon%20style%3D%22fill%3A%23FFE15A%3B%22%20points%3D%22441.378%2C88.276%20441.378%2C423.724%20105.931%2C88.276%20%22%2F%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M207.353%2C213.176l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.17-1.991%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.724-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C205.287%2C211.995%2C206.958%2C211.995%2C207.353%2C213.176z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M170.571%2C176.395l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.6%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.17-1.991%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.725-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C168.505%2C175.213%2C170.177%2C175.213%2C170.571%2C176.395z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M133.79%2C139.613l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.17-1.991%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.725-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C131.724%2C138.431%2C133.396%2C138.431%2C133.79%2C139.613z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M97.008%2C102.832l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339L106%2C130.102%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.17-1.991%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.724-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09L72.62%2C120.55c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C94.942%2C101.65%2C96.613%2C101.65%2C97.008%2C102.832z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M354.479%2C360.303l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.171-1.99%2C1.446L353.249%2C395l-13.082%2C9.351c-1.013%2C0.725-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C352.413%2C359.121%2C354.085%2C359.121%2C354.479%2C360.303z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M317.698%2C323.521l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.171-1.99%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.724-2.366-0.258-1.991-1.446l4.851-15.331%0D%0A%09%09l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254C315.632%2C322.339%2C317.304%2C322.339%2C317.698%2C323.521z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M280.915%2C286.74l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.171-1.991%2C1.445l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.724-2.366-0.258-1.991-1.445%0D%0A%09%09l4.851-15.331l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254%0D%0A%09%09C278.85%2C285.559%2C280.521%2C285.559%2C280.915%2C286.74z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M244.134%2C249.958l5.088%2C15.254l16.079%2C0.125c1.246%2C0.01%2C1.762%2C1.599%2C0.76%2C2.339l-12.936%2C9.553%0D%0A%09%09l4.851%2C15.331c0.376%2C1.187-0.977%2C2.171-1.991%2C1.446l-13.082-9.351l-13.082%2C9.351c-1.013%2C0.724-2.366-0.258-1.991-1.446%0D%0A%09%09l4.851-15.331l-12.936-9.553c-1.002-0.74-0.486-2.329%2C0.76-2.339l16.079-0.125l5.088-15.254%0D%0A%09%09C242.068%2C248.776%2C243.74%2C248.776%2C244.134%2C249.958z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M41.944%2C88.276l6.83%2C5.044l-4.851%2C15.331c-0.375%2C1.187%2C0.977%2C2.17%2C1.991%2C1.447l13.081-9.351%0D%0A%09%09l13.082%2C9.351c1.013%2C0.724%2C2.366-0.258%2C1.99-1.447l-4.85-15.331l6.833-5.044H41.944z%22%2F%3E%0D%0A%09%3Cpath%20style%3D%22fill%3A%23F5F5F5%3B%22%20d%3D%22M412.427%2C412.464l-16.079-0.125l-5.087-15.254c-0.394-1.182-2.066-1.182-2.46%2C0l-5.087%2C15.254%0D%0A%09%09l-16.079%2C0.125c-1.246%2C0.01-1.762%2C1.6-0.76%2C2.339l12.083%2C8.921h22.151l12.082-8.921%0D%0A%09%09C414.189%2C414.063%2C413.673%2C412.473%2C412.427%2C412.464z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3Cg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E");
    }

.icon--gray-chrome {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.3%2028.3%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M27.3%208.8h-9C19.9%2010%2021%2012%2021%2014.1c0%201.7-.8%203.2-1.8%204.5-1.6%202.2-5.5%209.6-5.5%209.6h.4c7.8%200%2014.2-6.3%2014.2-14.1%200-1.9-.3-3.7-1-5.3z%22%2F%3E%3Cpath%20d%3D%22M14.1%207.4c3.1%200%2012.4-.1%2012.4-.1-2.4-4.4-7-7.3-12.3-7.3-4.4%200-8.4%202-11%205.2l4.3%207.7c.6-3.1%203.3-5.5%206.6-5.5z%22%2F%3E%3Cpath%20d%3D%22M14.2%2020.9c-3%200-5.2-2-6.4-4.5-1.2-2.6-5.6-9.8-5.6-9.8C.8%208.8%200%2011.4%200%2014.1c0%207.1%205.2%2013%2012.1%2014l4.4-7.6c-.8.3-1.5.4-2.3.4z%22%2F%3E%3Cellipse%20cx%3D%2214.2%22%20cy%3D%2214.2%22%20rx%3D%224.6%22%20ry%3D%224.6%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--gray-firefox {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2028.3%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M30%209.5l-.7%201.6s-.3-2.9-.8-4.5S27%204%2027%204l.5%202.1s-1.7-2-3.2-2.8c-.3-.1-.6-.2-.8-.3-2.1-1.9-4.8-3-7.8-3-4.3%200-8%202.3-10.1%205.7-.1-.1-.7-.4-1-1.2-.3-.8-.5-1.6-.5-1.6C2.1%204.8%202.6%208%202.6%208s-.8.7-1.6%202-1%203.6-1%203.6l1.3-1.4S1%2012.8.7%2014c-.2%201.2-.2%203.1-.2%203.1l.7-1.5s0%204.8%204.6%209.1%2012.8%205.5%2019%20.1S30%209.5%2030%209.5zM15.6%201.6c2.4%200%204.7.9%206.4%202.3l-2.3.4s2.3.7%204%202.1c.4.3.8.8%201.1%201.2.4.8.7%201.7.8%202.6l-1.1-.9s.4.5.5%201.7c.1%201.3-.3%203.6-.3%203.6l-1-1.2s.2%202-.2%203.7c-.4%201.7-1.3%202.5-1.3%202.5l.2-2.1s-1.2%202.6-4.5%203.6-6.5-1.9-6.5-1.9c2.1.6%203.5-.6%204.6-1.1%201.1-.6%201.7-.6%202.1-.6.5%200%200-1.1-.9-1.6s-1.9-.2-3.9.3c-2.1.6-3.3-1.2-3.2-2.4.1-1.2%202-.5%202-.5l-.1-2.4s3.2-2%202.9-2.5c-.2-.5-1.3-.3-2.3-.6-.9-.3-1.5-1.2-1.5-1.2s-.1-.6.3-1.1c.3-.6%201.4-1.4%201.4-1.4s-.7-.1-1.9.3-2.1%201.2-2.1%201.2-.2-.1-1.2-.2c1.9-2.3%204.8-3.8%208-3.8z%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--gray-safari {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.4%2030%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M14.2%201.9c-.7%200-1.4.1-2.1.2V2c.4-.3.6-.7.5-1.1-.2-.6-.7-.9-1.4-.9h-.5c-.9.2-1.5.9-1.3%201.5.1.4.4.7.9.8v.1C4.3%204.1%200%209.5%200%2015.9%200%2023.7%206.4%2030%2014.2%2030c7.8%200%2014.2-6.3%2014.2-14.1%200-7.7-6.4-14-14.2-14zm-4.4-.5c-.1-.4.4-.8%201-.9h.4c.5%200%20.8.2.9.5%200%20.2-.1.5-.3.6-.2-.1-.5-.2-.7-.2-.3.1-.5.2-.6.4-.4%200-.6-.2-.7-.4zm12%2022.1c-1.3%201.3-2.9%202.2-4.6%202.7l-1.3-2-.3%202.3c-.5.1-1%20.1-1.4.1-2.9%200-5.6-1.1-7.6-3.1-1.3-1.3-2.2-2.8-2.7-4.6l2-1.2-2.4-.3c-.1-.5-.1-.9-.1-1.4%200-2.8%201.1-5.5%203.2-7.5%201.3-1.3%202.9-2.2%204.6-2.7l1.3%202%20.3-2.3c.5-.1%201-.1%201.4-.1%202.9%200%205.6%201.1%207.6%203.1%201.3%201.3%202.2%202.8%202.7%204.6l-2%201.2%202.4.3c.1.5.1.9.1%201.4-.1%202.8-1.2%205.5-3.2%207.5zm-.3-14.9L15.7%2013c-.4-.2-.9-.4-1.4-.4l-1.5-3.1-.1%203.5c-.4.2-.7.5-1%20.8l-1.9-.7%201.4%201.4c-.2.4-.3.8-.3%201.3l-3.2%201.5%203.5.1v.1l-4.4%205.8%205.8-4.4c.4.2.9.4%201.4.4l1.5%203.1.1-3.5c.4-.2.7-.5%201-.8l1.9.7-1.4-1.4c.2-.4.3-.8.3-1.3l3.2-1.5-3.5-.1v-.1l4.4-5.8zM14.2%2013v.1-.1zm-.6.2c.2%200%20.4-.1.6-.1h.4c.3%200%20.5.1.7.2l-2.1%201.6-1.6%202.1c-.1-.2-.1-.3-.2-.5-.3-1.5.7-3%202.2-3.3zm2.1%205.1c-.3.2-.6.3-.9.4-.2%200-.4.1-.6.1h-.4c-.3%200-.5-.1-.7-.2l2.1-1.6%201.6-2.1c.1.2.1.3.2.5.2%201.2-.3%202.3-1.3%202.9z%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--gray-opera {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028.4%2028.3%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M22.3%202.2C20.1.8%2017.3%200%2014.2%200c-2.9%200-5.4.7-7.6%201.9C2.5%204.2%200%208.5%200%2014c0%207.5%205.7%2014.3%2014.2%2014.3S28.4%2021.5%2028.4%2014c0-5.2-2.3-9.4-6.1-11.8zm-8.1.4c4.6%200%205.7%205.9%205.7%2011.3%200%205-.7%2011.7-5.6%2011.7-4.9%200-5.7-6.8-5.7-11.7-.1-5.4%201-11.3%205.6-11.3z%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--gray-yandex {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20256%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M128%206.2C60.7%206.2%206.2%2060.7%206.2%20128S60.7%20249.8%20128%20249.8%20249.8%20195.3%20249.8%20128%20195.3%206.2%20128%206.2zm82.4%2069l-68.5%2067v83.3c0%201.5-6.5%202.7-13.9%202.8-7.1-.1-13.9-1.3-13.9-2.8v-83.3l-68.5-67c-1.1-1.1%202.4-6.3%207.8-11.7%205.4-5.4%2010.7-8.9%2011.7-7.8l62.8%2061.3%2062.8-61.3c1.1-1.1%206.3%202.4%2011.7%207.8%205.4%205.4%209%2010.6%208%2011.7z%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--gray-edge {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2032%2032%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2063.1%20(92452)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3Eedge_32x32%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Browser-Assistant%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22browsers%22%20transform%3D%22translate(-112.000000%2C%200.000000)%22%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22edge_32x32%22%20transform%3D%22translate(112.000000%2C%200.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.8933852%2C23.7248249%20C28.4683932%2C23.9470915%2028.0301042%2C24.1429493%2027.5810117%2C24.311284%20C26.1515277%2C24.8461568%2024.6372441%2C25.1186435%2023.1109728%2C25.115642%20C17.2189883%2C25.115642%2012.086537%2C21.0627237%2012.086537%2C15.8617899%20C12.1018964%2C14.4413409%2012.8845751%2C13.1403697%2014.1322957%2C12.461323%20C8.80311284%2C12.6854475%207.43346304%2C18.2387549%207.43346304%2C21.4922957%20C7.43346304%2C30.6913619%2015.9115953%2C31.6239689%2017.7382101%2C31.6239689%20C18.7231128%2C31.6239689%2020.2085603%2C31.3375875%2021.1000778%2C31.0561868%20L21.2631907%2C31.0014008%20C24.6938448%2C29.815397%2027.6185002%2C27.4967513%2029.5557977%2C24.4270817%20C29.6778633%2C24.234762%2029.6538982%2C23.9841384%2029.4975979%2C23.8184366%20C29.3412976%2C23.6527347%2029.0924992%2C23.614188%2028.8933852%2C23.7248249%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.8933852%2C23.7248249%20C28.4683932%2C23.9470915%2028.0301042%2C24.1429493%2027.5810117%2C24.311284%20C26.1515277%2C24.8461568%2024.6372441%2C25.1186435%2023.1109728%2C25.115642%20C17.2189883%2C25.115642%2012.086537%2C21.0627237%2012.086537%2C15.8617899%20C12.1018964%2C14.4413409%2012.8845751%2C13.1403697%2014.1322957%2C12.461323%20C8.80311284%2C12.6854475%207.43346304%2C18.2387549%207.43346304%2C21.4922957%20C7.43346304%2C30.6913619%2015.9115953%2C31.6239689%2017.7382101%2C31.6239689%20C18.7231128%2C31.6239689%2020.2085603%2C31.3375875%2021.1000778%2C31.0561868%20L21.2631907%2C31.0014008%20C24.6938448%2C29.815397%2027.6185002%2C27.4967513%2029.5557977%2C24.4270817%20C29.6778633%2C24.234762%2029.6538982%2C23.9841384%2029.4975979%2C23.8184366%20C29.3412976%2C23.6527347%2029.0924992%2C23.614188%2028.8933852%2C23.7248249%20Z%22%20id%3D%22Path%22%20opacity%3D%220.35%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.2868482%2C30.0600778%20C12.1762655%2C29.3707733%2011.213798%2C28.4675606%2010.4554086%2C27.4029572%20C8.70568601%2C25.0057203%208.10491608%2C21.9577284%208.8141028%2C19.0758318%20C9.52328953%2C16.1939351%2011.4699167%2C13.7728152%2014.1322957%2C12.461323%20C14.5207782%2C12.2782879%2015.1844358%2C11.9470817%2016.0672374%2C11.9632685%20C17.3280631%2C11.9724485%2018.5118487%2C12.5714836%2019.2659922%2C13.5819455%20C19.768807%2C14.253302%2020.0460353%2C15.0666793%2020.0578988%2C15.9053696%20C20.0578988%2C15.8792218%2023.1035019%2C5.9940856%2010.0968093%2C5.9940856%20C4.63066148%2C5.9940856%200.135719844%2C11.181323%200.135719844%2C15.7322957%20C0.114158979%2C18.1397%200.629258622%2C20.5216636%201.64357977%2C22.7050584%20C5.07488233%2C30.0262283%2013.4445775%2C33.6180575%2021.1150195%2C31.0611673%20C18.4891486%2C31.8890888%2015.6323782%2C31.5250531%2013.2980545%2C30.0650584%20L13.2868482%2C30.0600778%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.2868482%2C30.0600778%20C12.1762655%2C29.3707733%2011.213798%2C28.4675606%2010.4554086%2C27.4029572%20C8.70568601%2C25.0057203%208.10491608%2C21.9577284%208.8141028%2C19.0758318%20C9.52328953%2C16.1939351%2011.4699167%2C13.7728152%2014.1322957%2C12.461323%20C14.5207782%2C12.2782879%2015.1844358%2C11.9470817%2016.0672374%2C11.9632685%20C17.3280631%2C11.9724485%2018.5118487%2C12.5714836%2019.2659922%2C13.5819455%20C19.768807%2C14.253302%2020.0460353%2C15.0666793%2020.0578988%2C15.9053696%20C20.0578988%2C15.8792218%2023.1035019%2C5.9940856%2010.0968093%2C5.9940856%20C4.63066148%2C5.9940856%200.135719844%2C11.181323%200.135719844%2C15.7322957%20C0.114158979%2C18.1397%200.629258622%2C20.5216636%201.64357977%2C22.7050584%20C5.07488233%2C30.0262283%2013.4445775%2C33.6180575%2021.1150195%2C31.0611673%20C18.4891486%2C31.8890888%2015.6323782%2C31.5250531%2013.2980545%2C30.0650584%20L13.2868482%2C30.0600778%20Z%22%20id%3D%22Path%22%20opacity%3D%220.41%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.0891829%2C18.5350973%20C18.9883268%2C18.6658366%2018.6782879%2C18.8463813%2018.6782879%2C19.2398444%20C18.6782879%2C19.5648249%2018.8899611%2C19.8773541%2019.2659922%2C20.1400778%20C21.0564981%2C21.385214%2024.4320623%2C21.220856%2024.4407782%2C21.220856%20C25.767503%2C21.2176719%2027.0690811%2C20.8586307%2028.2098054%2C20.1811673%20C30.5513692%2C18.8139365%2031.9931996%2C16.3083831%2031.9987549%2C13.5968872%20C32.0311284%2C10.806537%2031.0026459%2C8.95128405%2030.5867704%2C8.12949416%20C27.9483268%2C2.96840467%2022.2530739%2C0%2016.0597665%2C0%20C7.3443824%2C-0.000861792642%200.244583394%2C6.99909629%200.122023346%2C15.7136187%20C0.181789883%2C11.1638911%204.70412451%2C7.48949416%2010.0831128%2C7.48949416%20C10.5189105%2C7.48949416%2013.0042023%2C7.53182879%2015.3126848%2C8.7433463%20C17.3472374%2C9.81167315%2018.4130739%2C11.1016342%2019.15393%2C12.3803891%20C19.9234241%2C13.7089494%2020.0603891%2C15.387393%2020.0603891%2C16.0560311%20C20.0603891%2C16.7246693%2019.7192218%2C17.7157977%2019.0891829%2C18.5350973%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.0891829%2C18.5350973%20C18.9883268%2C18.6658366%2018.6782879%2C18.8463813%2018.6782879%2C19.2398444%20C18.6782879%2C19.5648249%2018.8899611%2C19.8773541%2019.2659922%2C20.1400778%20C21.0564981%2C21.385214%2024.4320623%2C21.220856%2024.4407782%2C21.220856%20C25.767503%2C21.2176719%2027.0690811%2C20.8586307%2028.2098054%2C20.1811673%20C30.5513692%2C18.8139365%2031.9931996%2C16.3083831%2031.9987549%2C13.5968872%20C32.0311284%2C10.806537%2031.0026459%2C8.95128405%2030.5867704%2C8.12949416%20C27.9483268%2C2.96840467%2022.2530739%2C0%2016.0597665%2C0%20C7.3443824%2C-0.000861792642%200.244583394%2C6.99909629%200.122023346%2C15.7136187%20C0.181789883%2C11.1638911%204.70412451%2C7.48949416%2010.0831128%2C7.48949416%20C10.5189105%2C7.48949416%2013.0042023%2C7.53182879%2015.3126848%2C8.7433463%20C17.3472374%2C9.81167315%2018.4130739%2C11.1016342%2019.15393%2C12.3803891%20C19.9234241%2C13.7089494%2020.0603891%2C15.387393%2020.0603891%2C16.0560311%20C20.0603891%2C16.7246693%2019.7192218%2C17.7157977%2019.0891829%2C18.5350973%20Z%22%20id%3D%22Path%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        }

.icon--gray-palemoon {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%234d4d4d%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208s3.6%208%208%208%208-3.6%208-8-3.6-8-8-8zm0%2015c-3.9%200-7-3.1-7-7%200-2.4%201.2-4.6%203.2-5.9C4.1%202.7%204%203.4%204%204c0%204.9%204%208.9%208.9%209-1.3%201.3-3%202-4.9%202z%22%2F%3E%3C%2Fsvg%3E");
        }

.icon--browser_extension {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2026%2026%22%20version%3D%221.1%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%0A%3Cg%20id%3D%22surface1%22%3E%0A%3Cpath%20fill%3D%22%234d4d4d%22%20d%3D%22M%203%200%20C%201.34375%200%200%201.34375%200%203%20L%200%2019%20C%200%2020.65625%201.34375%2022%203%2022%20L%208%2022%20L%208%2020%20L%203%2020%20C%202.449219%2020%202%2019.550781%202%2019%20L%202%207%20L%2024%207%20L%2024%2019%20C%2024%2019.550781%2023.550781%2020%2023%2020%20L%2017%2020%20L%2017%2022%20L%2023%2022%20C%2024.65625%2022%2026%2020.65625%2026%2019%20L%2026%203%20C%2026%201.34375%2024.65625%200%2023%200%20Z%20M%202.65625%202.9375%20L%203.375%202.9375%20C%203.773438%202.9375%204.09375%203.257813%204.09375%203.65625%20L%204.09375%204.34375%20L%204.0625%204.34375%20C%204.0625%204.742188%203.742188%205.0625%203.34375%205.0625%20L%202.65625%205.0625%20C%202.257813%205.0625%201.9375%204.742188%201.9375%204.34375%20L%201.9375%203.65625%20C%201.9375%203.257813%202.257813%202.9375%202.65625%202.9375%20Z%20M%205.65625%202.9375%20L%206.375%202.9375%20C%206.773438%202.9375%207.09375%203.257813%207.09375%203.65625%20L%207.09375%204.34375%20L%207.0625%204.34375%20C%207.0625%204.742188%206.742188%205.0625%206.34375%205.0625%20L%205.65625%205.0625%20C%205.257813%205.0625%204.9375%204.742188%204.9375%204.34375%20L%204.9375%203.65625%20C%204.9375%203.257813%205.257813%202.9375%205.65625%202.9375%20Z%20M%208%203%20L%2024%203%20L%2024%205%20L%208%205%20Z%20M%2013.03125%2012.0625%20C%2012.910156%2012.0625%2012.78125%2012.09375%2012.6875%2012.1875%20L%208.1875%2017.1875%20C%208.097656%2017.277344%208.03125%2017.410156%208.03125%2017.53125%20C%208.03125%2017.59375%208.039063%2017.660156%208.0625%2017.71875%20C%208.136719%2017.894531%208.339844%2018%208.53125%2018%20L%2011%2018%20C%2011%2022.1875%2010.269531%2024.460938%205.5%2025.84375%20C%2013.484375%2025.84375%2015.0625%2021.226563%2015.0625%2018%20L%2017.5%2018%20C%2017.691406%2018%2017.832031%2017.894531%2017.90625%2017.71875%20C%2017.980469%2017.542969%2017.949219%2017.324219%2017.8125%2017.1875%20L%2013.34375%2012.1875%20C%2013.25%2012.09375%2013.152344%2012.0625%2013.03125%2012.0625%20Z%20%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
    }

.icon--hidden {
        display: none;
    }

.icon--attention {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20width%3D%2224%22%20height%3D%2224%22%20enable-background%3D%22new%200%200%2048%2048%22%3E%3Cpath%20d%3D%22M44%2024c0%2011.045-8.955%2020-20%2020S4%2035.045%204%2024%2012.955%204%2024%204s20%208.955%2020%2020z%22%20fill%3D%22%23ffca28%22%2F%3E%3Cpath%20d%3D%22M22%2021h4v14h-4V21zM26%2015a2%202%200%201%201-3.999.001A2%202%200%200%201%2026%2015z%22%20fill%3D%22%2337474f%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--adguard {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2277%22%20height%3D%2277%22%20viewBox%3D%220%200%2077%2077%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20transform%3D%22translate(2)%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M31.193%2011C21.443%2011%209.683%2013.289%200%2018.327%200%2029.21-.134%2056.317%2031.193%2074.84%2062.52%2056.317%2062.387%2029.209%2062.387%2018.327%2052.704%2013.29%2040.944%2011%2031.193%2011z%22%20stroke%3D%22%23525252%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20d%3D%22M31%2069.312V16.414h.193c8.097%200%2017.863%201.9%2025.904%206.084%200%209.036.11%2031.547-25.904%2046.928a70.304%2070.304%200%200%201-.193-.114z%22%20fill%3D%22%2399EAA8%22%2F%3E%3Cpath%20d%3D%22M14.45%2018.362c-3.271.942-6.479%202.176-9.45%203.723%200%203.976-.021%2010.563%202.172%2018.003.202-7.14.735-11.994%201.6-14.56.86-2.547%202.752-4.935%205.678-7.166zM30.055%2053.596l18.863-25.381c-1.382-1.106-2.595-.325-3.262.279l-.024.002L29.904%2044.83l-5.926-7.12c-2.827-3.26-6.67-.773-7.568-.116l13.645%2016.002%22%20fill%3D%22%23525252%22%2F%3E%3Ccircle%20fill%3D%22%23525252%22%20cx%3D%2212%22%20cy%3D%2270%22%20r%3D%222%22%2F%3E%3Ccircle%20fill%3D%22%23525252%22%20cx%3D%225.5%22%20cy%3D%2264.5%22%20r%3D%221.5%22%2F%3E%3Cpath%20d%3D%22M73.2%207.1h-.3c-2.7%200-4.9-2.2-4.9-4.9V.8h-2.3l.1%201.2v.3c0%202.7-2.2%204.9-4.9%204.9h-.5l-1.2-.1v2.4l1.2-.2h.5c2.7%200%204.9%202.2%204.9%204.9v.5l-.1%201.2h2.4l-.1-1.3v-.5c0-2.7%202.2-4.9%204.9-4.9h.3l1.2.1V7l-1.2.1z%22%20fill%3D%22%234E4E4E%22%2F%3E%3Cpath%20d%3D%22M66.9%2010.4c-.6-.9-1.3-1.6-2.2-2.2.8-.5%201.6-1.3%202.2-2.2.6.9%201.3%201.6%202.2%202.2-.9.6-1.7%201.4-2.2%202.2z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--github-circle {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%20viewBox%3D%220%200%2056%2056%22%20style%3D%22%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M28%2C0%20C12.537%2C0%200%2C12.537%200%2C28%20C0%2C41.1203333%209.03466667%2C52.0986667%2021.2146667%2C55.1366667%20C21.084%2C54.7586667%2021%2C54.32%2021%2C53.7763333%20L21%2C48.9906667%20C19.8636667%2C48.9906667%2017.9596667%2C48.9906667%2017.4813333%2C48.9906667%20C15.5656667%2C48.9906667%2013.8623333%2C48.167%2013.0363333%2C46.6363333%20C12.1193333%2C44.9353333%2011.9606667%2C42.3336667%209.688%2C40.7423333%20C9.01366667%2C40.2126667%209.527%2C39.6083333%2010.304%2C39.69%20C11.739%2C40.096%2012.929%2C41.0806667%2014.049%2C42.5413333%20C15.1643333%2C44.0043333%2015.6893333%2C44.3356667%2017.773%2C44.3356667%20C18.7833333%2C44.3356667%2020.2953333%2C44.2773333%2021.7186667%2C44.0533333%20C22.484%2C42.1096667%2023.807%2C40.32%2025.424%2C39.4753333%20C16.1%2C38.5163333%2011.6503333%2C33.8776667%2011.6503333%2C27.58%20C11.6503333%2C24.8686667%2012.8053333%2C22.246%2014.7676667%2C20.0363333%20C14.1236667%2C17.843%2013.314%2C13.37%2015.015%2C11.6666667%20C19.2103333%2C11.6666667%2021.7466667%2C14.3873333%2022.3556667%2C15.1223333%20C24.4463333%2C14.406%2026.7423333%2C14%2029.155%2C14%20C31.5723333%2C14%2033.8776667%2C14.406%2035.973%2C15.127%20C36.575%2C14.3966667%2039.1136667%2C11.6666667%2043.3183333%2C11.6666667%20C45.0263333%2C13.3723333%2044.2073333%2C17.864%2043.5563333%2C20.0526667%20C45.507%2C22.2576667%2046.655%2C24.8733333%2046.655%2C27.58%20C46.655%2C33.873%2042.2123333%2C38.5093333%2032.9023333%2C39.473%20C35.4643333%2C40.81%2037.3333333%2C44.5666667%2037.3333333%2C47.397%20L37.3333333%2C53.7763333%20C37.3333333%2C54.019%2037.2796667%2C54.194%2037.2516667%2C54.4016667%20C48.1623333%2C50.5773333%2056%2C40.2173333%2056%2C28%20C56%2C12.537%2043.463%2C0%2028%2C0%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
    }

.icon--community {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M28%200C12.536%200%200%2012.536%200%2028a27.869%2027.869%200%200%200%204.867%2015.778L1.189%2054.81l11.034-3.678A27.868%2027.868%200%200%200%2028%2056c15.464%200%2028-12.536%2028-28S43.464%200%2028%200z%22%2F%3E%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%224%22%20fill%3D%22%23F3F3F3%22%2F%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2228%22%20r%3D%224%22%20fill%3D%22%23F3F3F3%22%2F%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2228%22%20r%3D%224%22%20fill%3D%22%23F3F3F3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--recent {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%20style%3D%22%22%3E%3Cpath%20d%3D%22M28%200C12.535%200%200%2012.536%200%2028c0%2015.462%2012.536%2028%2028%2028%2015.463%200%2028-12.537%2028-28C56%2012.535%2043.462%200%2028%200zm1.933%2031.423c-.002.073-.013.147-.023.22-.007.056-.01.113-.023.167-.012.056-.034.112-.052.169-.022.068-.042.136-.071.2-.005.012-.007.024-.012.035a1.92%201.92%200%200%201-.145.254l-.011.015c-.061.09-.13.17-.204.247a1.854%201.854%200%200%201-.267.228l-.066.049c-.093.06-.19.114-.29.157-.022.01-.045.016-.067.025a1.946%201.946%200%200%201-.357.1c-.114.022-.23.036-.347.036-.024%200-.048-.007-.072-.008a1.948%201.948%200%200%201-.33-.036c-.034-.007-.066-.022-.1-.031a1.965%201.965%200%200%201-.29-.099c-.01-.005-.022-.006-.032-.01l-10.737-5.065a1.937%201.937%200%200%201%201.652-3.503l7.974%203.76V11.62a1.937%201.937%200%200%201%203.873%200v19.768c0%20.012-.003.023-.003.035z%22%2F%3E%3C%2Fsvg%3E");
    }

.icon--edit {
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22none%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20stroke%3D%22%2367b279%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22m4%2020.5h15.9828%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m10.7781%2016.4351-4.24266-4.2427%207.07106-7.07105c1.1716-1.17157%203.0711-1.17157%204.2426%200%201.1716%201.17157%201.1716%203.07107%200%204.24264z%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m5.12136%2017.8493%201.41421-5.6569%204.24263%204.2426z%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22m16.7886%209.0104-2.8284-2.82843%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

.icon--download-btn {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }

.header {
    position: relative;
    z-index: 10;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 400;
}

@media (max-width: 767px) {

    .header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 50px;
    }
}

.header__substrate {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        transition: 0.3s ease opacity;
}

.header__menu-back {
        width: 300px;
        height: 60px;
        padding-left: 60px;
        font-size: 1.45rem;
        line-height: 60px;
        color: #4d4d4d;
        transition: 0.3s ease transform;
        position: fixed;
        top: 0;
        right: 100%;
        z-index: 20;
        background-color: #fff;
        cursor: pointer;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

.header__menu-back:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    width: 19px;
    height: 19px;
    opacity: 0.49;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M22.7%2011.5H5.1l3.8-3.8c.4-.4.4-1%200-1.4s-1-.4-1.4%200L2%2011.8l-.7.7L7%2018.7c.1.2.4.3.7.3.2%200%20.5-.1.7-.3.4-.4.4-1%20.1-1.4L5%2013.5h17.7c.6%200%201-.4%201-1s-.5-1-1-1z%22%2F%3E%3C%2Fsvg%3E");
}

.header__menu-back:hover {
    background-color: #67b279;
    color: #fff;
}

.header__menu-back:hover:after {
    opacity: 1;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M22.7%2011.5H5.1l3.8-3.8c.4-.4.4-1%200-1.4s-1-.4-1.4%200L2%2011.8l-.7.7L7%2018.7c.1.2.4.3.7.3.2%200%20.5-.1.7-.3.4-.4.4-1%20.1-1.4L5%2013.5h17.7c.6%200%201-.4%201-1s-.5-1-1-1z%22%2F%3E%3C%2Fsvg%3E");
}

.header__in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
}

@media (max-width: 1023px) {

    .header__in {
        width: 100%;
    }
}

.header__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}

.header__sandwich {
        display: none;
        width: 27px;
        height: 18px;
        margin-right: 15px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.7%2012%22%20fill%3D%22%23a8a8a8%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M16.7%202H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201zm0%205H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201zm0%205H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
        cursor: pointer;
        background-repeat: no-repeat;
}

@media (max-width: 1023px) {

    .header__sandwich {
        display: block;
    }
}

@media (max-width: 767px) {

    .header__sandwich {
        width: 18px;
        height: 14px;
        margin-right: 22px;
    }
}

.header__label {
        display: none;
        font-size: 1.6rem;
        color: #ffffff;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.header__logo {
        display: block;
        width: 118px;
        height: 26px;
        margin-right: 25px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%20118%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23232323%22%20d%3D%22M92.535%2018.314l-.897-2.259h-4.47l-.849%202.259h-3.034L88.13%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.468%203.949h2.904L89.435%209.88zm-6.607%204.095c0%20.693-.117%201.324-.35%201.893a4.115%204.115%200%200%201-1.004%201.463%204.63%204.63%200%200%201-1.574.95c-.614.228-1.297.341-2.047.341-.761%200-1.447-.113-2.056-.34a4.468%204.468%200%200%201-1.55-.951%204.126%204.126%200%200%201-.978-1.463%205.038%205.038%200%200%201-.343-1.893V6.809H75.7v6.939c0%20.314.041.612.123.893.081.282.206.534.375.756.169.222.392.398.669.528s.612.195%201.003.195c.392%200%20.726-.065%201.003-.195a1.83%201.83%200%200%200%20.677-.528%202.1%202.1%200%200%200%20.376-.756c.076-.281.114-.58.114-.893v-6.94h2.79v7.167zm-11.446%203.64a8.898%208.898%200%200%201-1.982.715%2010.43%2010.43%200%200%201-2.472.276c-.924%200-1.775-.146-2.553-.439a5.895%205.895%200%200%201-2.006-1.235%205.63%205.63%200%200%201-1.314-1.909c-.315-.742-.473-1.568-.473-2.478%200-.92.16-1.755.482-2.502a5.567%205.567%200%200%201%201.33-1.91%205.893%205.893%200%200%201%201.99-1.21%207.044%207.044%200%200%201%202.463-.423c.913%200%201.762.138%202.545.414.783.277%201.419.648%201.908%201.114l-1.762%201.998a3.05%203.05%200%200%200-1.076-.772c-.446-.2-.952-.3-1.517-.3-.49%200-.941.09-1.354.268a3.256%203.256%200%200%200-1.077.747%203.39%203.39%200%200%200-.71%201.138%203.977%203.977%200%200%200-.253%201.438c0%20.53.077%201.018.229%201.463.152.444.378.826.677%201.145.299.32.669.569%201.11.748.44.178.943.268%201.508.268.326%200%20.636-.025.93-.073.294-.05.566-.128.816-.236v-2.096h-2.203V11.52h4.764v6.094zm46.107-5.086c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.208-.544%205.955%205.955%200%200%200-1.394-.163h-1.387v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-55.226%200c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.207-.544%205.955%205.955%200%200%200-1.395-.163H51.3v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-11.86%205.785l-.897-2.259h-4.47l-.848%202.259h-3.034L40.19%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.467%203.949h2.903L41.496%209.88zm61.203%208.434l-2.496-4.566h-.946v4.566h-2.74V6.809h4.404c.555%200%201.096.057%201.623.17.528.114%201%20.306%201.42.577.418.271.752.629%201.003%201.073.25.444.375.996.375%201.657%200%20.78-.212%201.436-.636%201.966-.425.531-1.012.91-1.762%201.138l3.018%204.924h-3.263zm-.114-7.979c0-.27-.057-.49-.171-.658a1.172%201.172%200%200%200-.44-.39%201.919%201.919%200%200%200-.604-.187%204.469%204.469%200%200%200-.645-.049H99.24v2.681h1.321c.228%200%20.462-.018.701-.056.24-.038.457-.106.653-.204.196-.097.356-.238.481-.422s.188-.422.188-.715z%22%2F%3E%3Cpath%20fill%3D%22%2368bc71%22%20d%3D%22M12.651%200C8.697%200%203.927.93%200%202.977c0%204.42-.054%2015.433%2012.651%2022.958C25.357%2018.41%2025.303%207.397%2025.303%202.977%2021.376.93%2016.606%200%2012.651%200z%22%2F%3E%3Cpath%20fill%3D%22%2367b279%22%20d%3D%22M12.638%2025.927C-.054%2018.403%200%207.396%200%202.977%203.923.932%208.687.002%2012.638%200v25.927z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.19%2017.305l7.65-10.311c-.56-.45-1.052-.133-1.323.113h-.01l-6.379%206.636-2.403-2.892c-1.147-1.325-2.705-.314-3.07-.047l5.535%206.5%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
}

.header__logo--hidden {
            display: none;
        }

@media (max-width: 1200px) {

    .header__logo {
        margin-right: 5px;
    }
}

@media (max-width: 1023px) {

    .header__logo {
        margin-right: 0;
    }
}

@media (max-width: 767px) {

    .header__logo {
        width: 93px;
        height: 20px;
    }
}

.header__nav {
        transition: 0.3s ease transform;
}

.header__nav-in {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

@media (max-width: 1023px) {

    .header__nav-in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        min-height: 100vh;
        padding-top: 60px;
        z-index: 15;
        background-color: #fff;
    }
}

@media (max-width: 1023px) {

    .header__nav {
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        position: fixed;
        z-index: 10;
        top: 0;
        right: 100%;
    }
}

@media (max-width: 1023px) {

    .header__nav .header__item--dropdown:after {
        position: absolute;
        right: 20px;
        top: calc(50% - 3.5px);
        margin: 0;
    }
}

.header__badge {
        display: inline-block;
        margin-left: 20px;
        width: 56px;
        height: 24px;
        background: #c23814;
        color: #ffffff;
        text-align: center;
        line-height: 24px;
}

.header__item-wr {
        position: relative;
        cursor: pointer;
}

@media (max-width: 1023px) {

    .header__item-wr--right {
        display: none;
        margin-right: 0;
    }
}

.header__item-wr--right-lang {
            position: static;
}

@media (max-width: 1023px) {

    .header__item-wr--right-lang {
        display: block;
        margin-right: 0;
    }
}

.header__item-wr--last {
            margin-right: 0;
}

@media (max-width: 1023px) {

    .header__item-wr--purchase {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--products {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--faq {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--support {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--report {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--discuss {
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--blog {
        -webkit-box-ordinal-group: 8;
            -ms-flex-order: 7;
                order: 7;
    }
}

@media (max-width: 1023px) {

    .header__item-wr--auth {
        -webkit-box-ordinal-group: 9;
            -ms-flex-order: 8;
                order: 8;
    }
}

.header__item {
        display: block;
        position: relative;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 1.45rem;
        text-align: center;
        line-height: 80px;
        text-decoration: none;
        color: #4d4d4d;
}

.header__item:hover, .header__item--active {
            box-shadow: inset 0 -2px 0 0 #67b279;
        }

.header__item:focus {
    outline: 0;
}

.header__item.header__item-active:hover {
    box-shadow: none;
}

.header__item--mobile {
            display: none;
}

@media (max-width: 1023px) {

    .header__item--mobile {
        display: block;
    }
}

.header__item--dropdown {
            padding-right: 38px;
            max-width: 150px;
}

.header__item--dropdown:after {
    content: "";
    position: absolute;
    top: 38px;
    right: 15px;
    width: 11px;
    height: 7px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2011%207%22%20fill%3D%22none%22%20stroke%3D%22%23888888%22%20stroke-width%3D%221.215%22%20stroke-linecap%3D%22round%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M1%201L5.4%206%2010%201%22%2F%3E%3C%2Fsvg%3E");
}

@media (max-width: 1023px) {

    .header__item--dropdown:after {
        position: static;
        display: inline-block;
        margin-left: 10px;
        margin-bottom: 2px;
    }
}

.header__item--dropdown-disabled {
            cursor: default;
}

.header__item--dropdown-disabled:after {
    display: none;
}

.header__item--phone {
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 700;
}

@media (max-width: 1023px) {

    .header__item--phone:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2017%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22%22%3E%3Crect%20height%3D%2218.5%22%20rx%3D%223%22%20stroke%3D%22%234d4d4d%22%20stroke-width%3D%221.5%22%20width%3D%2215.5%22%20x%3D%22.75%22%20y%3D%22.75%22%2F%3E%3Cpath%20d%3D%22m1.29276316%2013.5542903h14.41447364%22%20fill%3D%22%23d8d8d8%22%20stroke%3D%22%234d4d4d%22%20stroke-linecap%3D%22square%22%20stroke-width%3D%221.5%22%2F%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%2216.80429%22%20fill%3D%22%23898d96%22%20r%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

.header__item--account {
            padding-left: 10px;
            border: 0;
            background-color: transparent;
            cursor: pointer;
            max-width: 170px;
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 400;
}

.header__item--account:before {
    content: "";
    position: absolute;
    left: -12px;
    top: 33px;
    width: 1px;
    height: 18px;
    background-color: #d8d8d8;
}

@media (max-width: 1023px) {

    .header__item--account:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2021%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%234d4d4d%22%20stroke-width%3D%221.5%22%20transform%3D%22%22%3E%3Crect%20height%3D%2218.5%22%20rx%3D%224%22%20width%3D%2218.5%22%20x%3D%221.644167%22%20y%3D%221.17929%22%2F%3E%3Ccircle%20cx%3D%2211.023218%22%20cy%3D%2210.54693%22%20r%3D%223.60651%22%2F%3E%3Cpath%20d%3D%22m16.6583494%2018.6615785c-.5221217-2.5721636-2.7961997-4.508138-5.5224487-4.508138-2.72624902%200-5.00032699%201.9359744-5.52244864%204.508138%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

@media (max-width: 1200px) {

    .header__item--account {
        max-width: 160px;
    }
}

.header__item--account-desktop {
                max-width: 250px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
}

.header__item--button {
            padding-top: 0;
            padding-bottom: 0;
}

@media (max-width: 1023px) {

    .header__item--reg:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2021%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23898d96%22%20stroke-width%3D%221.5%22%20transform%3D%22%22%3E%3Crect%20height%3D%2218.5%22%20rx%3D%224%22%20width%3D%2218.5%22%20x%3D%221.644167%22%20y%3D%221.17929%22%2F%3E%3Ccircle%20cx%3D%2211.023218%22%20cy%3D%2210.54693%22%20r%3D%223.60651%22%2F%3E%3Cpath%20d%3D%22m16.6583494%2018.6615785c-.5221217-2.5721636-2.7961997-4.508138-5.5224487-4.508138-2.72624902%200-5.00032699%201.9359744-5.52244864%204.508138%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }

    .header__item--reg:hover:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2021%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%23898d96%22%20stroke-width%3D%221.5%22%20transform%3D%22%22%3E%3Crect%20height%3D%2218.5%22%20rx%3D%224%22%20width%3D%2218.5%22%20x%3D%221.644167%22%20y%3D%221.17929%22%2F%3E%3Ccircle%20cx%3D%2211.023218%22%20cy%3D%2210.54693%22%20r%3D%223.60651%22%2F%3E%3Cpath%20d%3D%22m16.6583494%2018.6615785c-.5221217-2.5721636-2.7961997-4.508138-5.5224487-4.508138-2.72624902%200-5.00032699%201.9359744-5.52244864%204.508138%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }
}

@media (max-width: 1023px) {

    .header__item--logout:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2020%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22evenodd%22%20stroke-width%3D%221.5%22%20transform%3D%22translate(.140625%20.335938)%22%3E%3Cpath%20d%3D%22m12.641762%2017.6559315v-15.0482812c0-.94428908-.8172552-1.75804688-1.7580469-1.75804688h-8.36015622c-.94079164%200-1.75804687.8137578-1.75804687%201.75804688v15.0482812c0%20.9442891.81725523%201.7580469%201.75804687%201.7580469h8.36015622c.9407917%200%201.7580469-.8137578%201.7580469-1.7580469z%22%20stroke%3D%22%23888d96%22%2F%3E%3Cg%20stroke%3D%22%23898d96%22%20stroke-linecap%3D%22square%22%3E%3Cpath%20d%3D%22m8.79367607%209.7056189h8.40185303%22%2F%3E%3Cpath%20d%3D%22m15.5438491%206.96489189%202.4876956%202.74889122-2.4546305%202.73256279%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }

    .header__item--logout:hover:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2020%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%20stroke-width%3D%221.5%22%20transform%3D%22translate(.140625%20.335938)%22%3E%3Cpath%20d%3D%22m12.641762%2017.6559315v-15.0482812c0-.94428908-.8172552-1.75804688-1.7580469-1.75804688h-8.36015622c-.94079164%200-1.75804687.8137578-1.75804687%201.75804688v15.0482812c0%20.9442891.81725523%201.7580469%201.75804687%201.7580469h8.36015622c.9407917%200%201.7580469-.8137578%201.7580469-1.7580469z%22%20stroke%3D%22%23888d96%22%2F%3E%3Cg%20stroke%3D%22%23898d96%22%20stroke-linecap%3D%22square%22%3E%3Cpath%20d%3D%22m8.79367607%209.7056189h8.40185303%22%2F%3E%3Cpath%20d%3D%22m15.5438491%206.96489189%202.4876956%202.74889122-2.4546305%202.73256279%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }
}

.header__item--home {
            display: none;
}

@media (max-width: 1023px) {

    .header__item--home {
        display: block;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .header__item--home:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M23.1%2011.4L13%202.3h-1L1.9%2011.4c-.4.4-.4%201-.1%201.4.2.2.5.3.7.3s.5-.1.7-.3l1.2-1.1v7.7c0%201.8%201.5%203.2%203.4%203.2H17c1.9%200%203.4-1.4%203.4-3.2v-7.7l1.2%201.1c.2.2.4.3.7.3s.5-.1.7-.3c.5-.4.5-1%20.1-1.4zm-6%209.3H7.9c-.8%200-1.4-.5-1.4-1.2V9.9l6-5.3%206.1%205.3v9.6c0%20.7-.7%201.2-1.5%201.2z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

@media (max-width: 1023px) {

    .header__item--products:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M18.5%2019.1h-12c-2.8%200-5-2.2-5-5V6.5c0-2.8%202.2-5%205-5h12c2.8%200%205%202.2%205%205v7.6c0%202.8-2.2%205-5%205zM6.5%203.5c-1.7%200-3%201.3-3%203v7.6c0%201.7%201.3%203%203%203h12c1.7%200%203-1.3%203-3V6.5c0-1.7-1.3-3-3-3h-12z%22%2F%3E%3Cpath%20d%3D%22M8.6%2018.7H10.6V23H8.6z%22%2F%3E%3Cpath%20d%3D%22M14.4%2018.7H16.4V23H14.4z%22%2F%3E%3Cpath%20d%3D%22M21.8%2023.5H3.2c-.6%200-1-.4-1-1s.4-1%201-1h18.5c.6%200%201%20.4%201%201s-.4%201-.9%201z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

@media (max-width: 1023px) {

    .header__item--faq:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M12.5%2023.5c-6.1%200-11-4.9-11-11s4.9-11%2011-11%2011%204.9%2011%2011-4.9%2011-11%2011zm0-20c-5%200-9%204-9%209s4%209%209%209%209-4%209-9-4-9-9-9z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M8.9%208.9c1-1.2%202.3-1.8%203.9-1.8%201.1%200%202%20.3%202.7.9s1%201.4%201%202.4c0%20.5-.1.9-.2%201.3s-.4.7-.7%201-.6.5-1%20.6-.8.3-1.3.4l-.2%201.3h-1.3l-.3-2.6.1-.1c2-.1%203-.7%203-1.8%200-.5-.2-.8-.5-1.1s-.8-.4-1.3-.4c-.9%200-1.8.4-2.6%201.3L8.9%208.9zm2.5%209.6v-2.2h2.1v2.2h-2.1z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

@media (max-width: 1023px) {

    .header__item--blog:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%20fill%3D%22%234d4d4d%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M3%2C3v22h22V3H3z%20M5%2C5h18v18H5V5z%20M8%2C8v2h12V8H8z%20M8%2C13v2h12v-2H8z%20M8%2C18v2h12v-2H8z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

@media (max-width: 1023px) {

    .header__item--discuss:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%234d4d4d%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M5.5%2023.5v-4.1c-2.3-.5-4-2.5-4-4.9v-8c0-2.8%202.2-5%205-5h12c2.8%200%205%202.2%205%205v8c0%202.8-2.2%205-5%205h-5.4l-7.6%204zm1-20c-1.6%200-3%201.3-3%203v8c0%201.4%201%202.7%202.4%202.9l1.6.3v2.4l5.1-2.7h5.9c1.6%200%203-1.3%203-3v-8c0-1.6-1.3-3-3-3h-12z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }
}

.header__item--report {
            display: none;
}

@media (max-width: 1023px) {

    .header__item--report {
        display: block;
    }

    .header__item--report:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%234d4d4d%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5%2022.5c-6.1%200-11-4.9-11-11s4.9-11%2011-11%2011%204.9%2011%2011-4.9%2011-11%2011zm0-20c-5%200-9%204-9%209s4%209%209%209%209-4%209-9-4-9-9-9z%22%2F%3E%3Cpath%20fill%3D%22%234d4d4d%22%20d%3D%22M11.036%2013.43l-.705-6.63v-.3h2.67v.3l-.705%206.63h-1.26zM10.451%2017v-2.4h2.43V17h-2.43z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-size: 100%;
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }

    .header__item--report:hover:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5%2022.5c-6.1%200-11-4.9-11-11s4.9-11%2011-11%2011%204.9%2011%2011-4.9%2011-11%2011zm0-20c-5%200-9%204-9%209s4%209%209%209%209-4%209-9-4-9-9-9z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M11.036%2013.43l-.705-6.63v-.3h2.67v.3l-.705%206.63h-1.26zM10.451%2017v-2.4h2.43V17h-2.43z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }
}

.header__item--support {
            padding-left: 40px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            height: 80px;
            min-width: 140px;
            max-width: 185px;
}

.header__item--support:before {
    content: "";
    position: absolute;
    left: -12px;
    top: 33px;
    width: 1px;
    height: 18px;
    background-color: #d8d8d8;
}

.header__item--support:after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-width%3D%221.5%22%3E%3Cpath%20stroke%3D%22%23888D96%22%20d%3D%22M4.25%2C6.75%20L2.99686968%2C6.75%20C1.75970439%2C6.75%200.75%2C7.76000567%200.75%2C9.00166547%20L0.75%2C10.9983345%20C0.75%2C12.245164%201.75435639%2C13.25%202.99686968%2C13.25%20L4.25%2C13.25%20L4.25%2C6.75%20Z%22%2F%3E%3Cpath%20stroke%3D%22%23888D96%22%20d%3D%22M19.25%2C6.75%20L17.9968697%2C6.75%20C16.7597044%2C6.75%2015.75%2C7.76000567%2015.75%2C9.00166547%20L15.75%2C10.9983345%20C15.75%2C12.245164%2016.7543564%2C13.25%2017.9968697%2C13.25%20L19.25%2C13.25%20L19.25%2C6.75%20Z%22%20transform%3D%22matrix(-1%200%200%201%2035%200)%22%2F%3E%3Cpath%20stroke%3D%22%23888D96%22%20d%3D%22M6.75%2C17.5%20C6.75%2C18.4718543%207.53252685%2C19.25%208.50738893%2C19.25%20L10.4926111%2C19.25%20C11.4624222%2C19.25%2012.25%2C18.4651917%2012.25%2C17.5%20C12.25%2C16.5281457%2011.4674731%2C15.75%2010.4926111%2C15.75%20L8.50738893%2C15.75%20C7.5375778%2C15.75%206.75%2C16.5348083%206.75%2C17.5%20Z%22%2F%3E%3Cpath%20stroke%3D%22%23898D96%22%20d%3D%22M%2012.25%2C17.3912622%20L%2013.0107127%2C17.2416312%20C%2014.5088637%2C17.1209185%2015.7739258%2C15.7095614%2015.7739258%2C14%20L%2015.7739258%2C4%20C%2015.7739258%2C2.21187974%2014.3899264%2C0.75%2012.8028041%2C0.75%20L%207.22112165%2C0.75%20C%205.63399942%2C0.75%204.25%2C2.21187974%204.25%2C4%20L%204.25%2C11.5912622%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    left: 10px;
    top: 32px;
    width: 18px;
    height: 18px;
}

.header__item--support-shield:after {
                background-repeat: no-repeat;
                background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2031.3%2030.3%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22translate(2%2C0)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23ccc%22%20d%3D%22M13.7%2C2c4%2C0%2C8.7%2C0.9%2C12.7%2C3c0%2C4.4%2C0.1%2C15.4-12.7%2C23C0.9%2C20.4%2C1%2C9.4%2C1%2C5C4.9%2C2.9%2C9.7%2C2%2C13.7%2C2%20M13.7%2C0C8.9%2C0%2C4%2C1.2%2C0.1%2C3.2L-1%2C3.8V5V5c0%2C4.5%2C0%2C16.5%2C13.6%2C24.6l1%2C0.6l1-0.6C28.3%2C21.6%2C28.3%2C9.6%2C28.3%2C5V5V3.8l-1.1-0.6C23.3%2C1.2%2C18.4%2C0%2C13.7%2C0L13.7%2C0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23ccc%22%20d%3D%22M13.2%2C19.3L20.8%2C9c-0.6-0.4-1.1-0.1-1.3%2C0.1h0l-6.4%2C6.6l-2.4-2.9c-1.1-1.3-2.7-0.3-3.1%2C0L13.2%2C19.3%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%0A%3C%2Fsvg%3E");
}

@media (max-width: 1023px) {

    .header__item--shield:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2031.3%2030.3%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22translate(2%2C0)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%234d4d4d%22%20d%3D%22M13.7%2C2c4%2C0%2C8.7%2C0.9%2C12.7%2C3c0%2C4.4%2C0.1%2C15.4-12.7%2C23C0.9%2C20.4%2C1%2C9.4%2C1%2C5C4.9%2C2.9%2C9.7%2C2%2C13.7%2C2%20M13.7%2C0C8.9%2C0%2C4%2C1.2%2C0.1%2C3.2L-1%2C3.8V5V5c0%2C4.5%2C0%2C16.5%2C13.6%2C24.6l1%2C0.6l1-0.6C28.3%2C21.6%2C28.3%2C9.6%2C28.3%2C5V5V3.8l-1.1-0.6C23.3%2C1.2%2C18.4%2C0%2C13.7%2C0L13.7%2C0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%234d4d4d%22%20d%3D%22M13.2%2C19.3L20.8%2C9c-0.6-0.4-1.1-0.1-1.3%2C0.1h0l-6.4%2C6.6l-2.4-2.9c-1.1-1.3-2.7-0.3-3.1%2C0L13.2%2C19.3%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%0A%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
    }

    .header__item--shield:hover:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2031.3%2030.3%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22translate(2%2C0)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M13.7%2C2c4%2C0%2C8.7%2C0.9%2C12.7%2C3c0%2C4.4%2C0.1%2C15.4-12.7%2C23C0.9%2C20.4%2C1%2C9.4%2C1%2C5C4.9%2C2.9%2C9.7%2C2%2C13.7%2C2%20M13.7%2C0C8.9%2C0%2C4%2C1.2%2C0.1%2C3.2L-1%2C3.8V5V5c0%2C4.5%2C0%2C16.5%2C13.6%2C24.6l1%2C0.6l1-0.6C28.3%2C21.6%2C28.3%2C9.6%2C28.3%2C5V5V3.8l-1.1-0.6C23.3%2C1.2%2C18.4%2C0%2C13.7%2C0L13.7%2C0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M13.2%2C19.3L20.8%2C9c-0.6-0.4-1.1-0.1-1.3%2C0.1h0l-6.4%2C6.6l-2.4-2.9c-1.1-1.3-2.7-0.3-3.1%2C0L13.2%2C19.3%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%0A%3C%2Fsvg%3E");
    }
}

@media (max-width: 1023px) {

    .header__item {
        max-width: none;
        max-width: initial;
        width: 100%;
        height: 60px;
        padding-left: 60px;
        line-height: 60px;
        text-align: left;
    }

    .header__item--active, .header__item:hover {
                background-color: #f3f3f3;
                box-shadow: none;
    }
}

.header__item--lang {
            padding-left: 26px;
            padding-right: 41px;
            color: #888888;
}

.header__item--lang:before {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20stroke%3D%22%23818181%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%227.5%22%2F%3E%3Cellipse%20cx%3D%228%22%20cy%3D%228%22%20rx%3D%223.5%22%20ry%3D%227.5%22%2F%3E%3Cpath%20d%3D%22M1.5%204.889h13M1.5%2010.889h13%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    left: 0;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background-size: 100%;
}

@media (max-width: 1023px) {

    .header__item--lang {
        padding-right: 0;
        line-height: 80px;
        height: auto;
        white-space: nowrap;
        transition: 0.3s ease box-shadow, 0.3s ease background-color, 0.3s ease color;
    }

    .header__item--lang:hover {
        box-shadow: inset 0 -2px 0 0 #67b279;
        background-color: transparent;
        color: #4d4d4d;
    }

    .header__item--lang:hover:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2011%207%22%20fill%3D%22none%22%20stroke%3D%22%23888888%22%20stroke-width%3D%221.215%22%20stroke-linecap%3D%22round%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M1%201L5.4%206%2010%201%22%2F%3E%3C%2Fsvg%3E");
    }

    .header__item--lang:before {
        display: block;
    }
}

@media (max-width: 767px) {

    .header__item--lang {
        line-height: 50px;
    }
}

.header__item--landing {
            max-width: none;
            max-width: initial;
}

@media (max-width: 1200px) {

    .header__item--landing {
        padding-left: 30px;
    }
}

.header__item--dashboard {
            max-width: none;
            max-width: initial;
}

.header__item--error {
            max-width: 100%;
}

@media (max-width: 1023px) {

    .header__item--purchase {
        color: #fff;
        background-color: #67b279;
        box-shadow: none;
    }

    .header__item--purchase:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025%2025%22%20style%3D%22fill%3A%23ffffff%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M17.4%2022.5H6.8c-2%200-3.8-2.6-4.2-5.8L1.5%207.3h7.9v2H3.7l.8%207.2c.3%202.4%201.6%204%202.2%204h10.6c.6%200%201.9-1.6%202.2-4l.8-7.2h-4v-2h6.2l-1.1%209.4c-.1%203.2-2%205.8-4%205.8z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M12.5%209.5c-.2%200-.3%200-.5-.1-.5-.3-.6-.9-.4-1.4l4.1-7c.3-.5.9-.6%201.4-.4.5.3.6.9.4%201.4l-4.1%207c-.2.3-.6.5-.9.5z%22%2F%3E%3C%2Fsvg%3E");
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
        opacity: 1;
    }

    .header__item--purchase:hover {
        background-color: #67b279;
    }
}

.header__dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 8px 8px 16px rgba(0, 0, 0, .1);
        transition: 0.3s ease opacity;
}

.header__dropdown--right {
            left: auto;
            left: initial;
            right: 0;
        }

.header__dropdown--open {
            display: block;
        }

.header__dropdown--lang {
            width: 320px;
        }

@media (min-width: 768px) {

    .header__dropdown--lang {
        width: 280px;
        left: -55px;
    }
}

.header__dropdown--lang .header__dropdown-item {
    height: 56px;
}

.header__dropdown--lang .header__dropdown-item--empty {
                    white-space: inherit;
                    height: auto;
}

.header__dropdown--products {
            min-width: 252px;
}

.header__dropdown--discuss {
            min-width: 150px;
}

.header__dropdown--account {
            width: 250px;
}

@media (max-width: 1023px) {

    .header__dropdown {
        position: static;
        box-shadow: none;
    }

    .header__dropdown--lang {
                position: absolute;
                left: auto;
                left: initial;
                right: -15px;
                box-shadow: 0 0 4px rgba(23, 23, 23, .1);
    }
}

.header__search-input {
        width: 100%;
        display: block;
        height: 60px;
        padding: 18px 30px;
        font-size: 1.45rem;
        outline: none;
        border: none;
        border-bottom: 1px solid #f3f3f3;
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20enable-background%3D%22new%200%200%2020%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%20478.208%20478.208%22%20width%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m473.418%20449.285-170.138-170.137c59.759-73.087%2048.954-180.779-24.132-240.538s-180.779-48.954-240.538%2024.132-48.954%20180.779%2024.132%20240.538c62.953%2051.473%20153.453%2051.473%20216.406%200l170.138%20170.138c6.78%206.548%2017.584%206.36%2024.132-.42%206.387-6.614%206.387-17.099%200-23.713zm-302.2-141.534c-75.37-.085-136.449-61.163-136.533-136.533%200-75.405%2061.128-136.533%20136.533-136.533s136.533%2061.128%20136.533%20136.533-61.128%20136.533-136.533%20136.533z%22%20fill%3D%22%23a4a4a4%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%2F%3E%3C%2Fsvg%3E");
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: 280px 20px;
        background-color: #ffffff;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

@media (min-width: 768px) {

    .header__search-input {
        padding: 18px 20px;
        background-position: 245px 20px;
    }
}

.header__search-input:hover {
    background-color: #ffffff;
}

.header__search-input::-webkit-input-placeholder {
    opacity: 0.5;
}

.header__search-input:-ms-input-placeholder {
    opacity: 0.5;
}

.header__search-input::placeholder {
    opacity: 0.5;
}

.header__lang-list {
        height: 400px;
        overflow-y: auto;
}

.header__lang-list--small {
            height: auto;
        }

.header__dropdown-item {
        display: block;
        height: 60px;
        padding: 18px 20px;
        white-space: nowrap;
        text-decoration: none;
        font-size: 1.45rem;
        color: #4d4d4d;
        background-color: #fff;
}

.header__dropdown-item:hover {
    background-color: #f3f3f3;
}

.header__dropdown-item--mark {
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 700;
}

.header__dropdown-item--sub {
            position: relative;
}

.header__dropdown-item--sub:after {
    content: "";
    position: absolute;
    right: 20px;
    top: calc(50% - 3.5px);
    width: 11px;
    height: 7px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2011%207%22%20fill%3D%22none%22%20stroke%3D%22%23888888%22%20stroke-width%3D%221.215%22%20stroke-linecap%3D%22round%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M1%201L5.4%206%2010%201%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {

    .header__dropdown-item--sub:after {
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
    }
}

@media (max-width: 1023px) {

    .header__dropdown-item {
        width: 100%;
        padding-left: 30px;
    }
}

.header__dropdown-item--area {
            position: relative;
}

.header__dropdown-item--area:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    height: 21px;
    margin-bottom: 3px;
    margin-right: 15px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2021%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%234d4d4d%22%20stroke-width%3D%221.5%22%20transform%3D%22%22%3E%3Crect%20height%3D%2218.5%22%20rx%3D%224%22%20width%3D%2218.5%22%20x%3D%221.644167%22%20y%3D%221.17929%22%2F%3E%3Ccircle%20cx%3D%2211.023218%22%20cy%3D%2210.54693%22%20r%3D%223.60651%22%2F%3E%3Cpath%20d%3D%22m16.6583494%2018.6615785c-.5221217-2.5721636-2.7961997-4.508138-5.5224487-4.508138-2.72624902%200-5.00032699%201.9359744-5.52244864%204.508138%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
}

.header__dropdown-item--exit {
            position: relative;
            background-color: #fff;
}

.header__dropdown-item--exit:hover {
    background-color: #f3f3f3;
}

.header__dropdown-item--exit:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 24px;
    width: 19px;
    height: 21px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2020%2021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-width%3D%221.5%22%20transform%3D%22translate(.140625%20.335938)%22%3E%3Cpath%20d%3D%22m12.641762%2017.6559315v-15.0482812c0-.94428908-.8172552-1.75804688-1.7580469-1.75804688h-8.36015622c-.94079164%200-1.75804687.8137578-1.75804687%201.75804688v15.0482812c0%20.9442891.81725523%201.7580469%201.75804687%201.7580469h8.36015622c.9407917%200%201.7580469-.8137578%201.7580469-1.7580469z%22%20stroke%3D%22%234d4d4d%22%2F%3E%3Cg%20stroke%3D%22%234d4d4d%22%20stroke-linecap%3D%22square%22%3E%3Cpath%20d%3D%22m8.79367607%209.7056189h8.40185303%22%2F%3E%3Cpath%20d%3D%22m15.5438491%206.96489189%202.4876956%202.74889122-2.4546305%202.73256279%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
}

@media (max-width: 1023px) {

    .header__dropdown-item--exit:before {
        content: "";
        position: absolute;
        top: 20px;
        left: 30px;
        width: 19px;
        height: 19px;
        opacity: 0.49;
        background-color: transparent;
        left: 33px;
    }
}

.header__dropdown-item--medium {
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 600;
}

.header__logout-submit {
        position: relative;
        z-index: 1;
        display: inline-block;
        border: 0;
        padding: 20px 20px 20px 60px;
        color: inherit;
        font-size: 1.45rem;
        cursor: pointer;
        text-align: left;
        width: 100%;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        border-radius: 0;
        background-color: transparent;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.header__logout-submit:hover {
    background-color: transparent;
}

@media (max-width: 1023px) {

    .header__logout-submit {
        padding: 0;
        padding-left: 60px;
        padding-right: 14px;
    }
}

.header__dropdown-sub {
        display: none;
}

@media (min-width: 1024px) {

    .header__dropdown-sub {
        position: absolute;
        left: 100%;
        bottom: 0;
        box-shadow: 8px 8px 16px rgba(0, 0, 0, .1);
    }
}

.header__dropdown-sub--open {
            display: block;
}

.header__dropdown-sub-item {
        display: block;
        white-space: nowrap;
        height: 48px;
        background-color: #fff;
        padding: 12px 35px;
        color: #4d4d4d;
        font-size: 1.45rem;
        text-decoration: none;
}

@media (max-width: 1023px) {

    .header__dropdown-sub-item {
        width: 100%;
    }
}

.header__dropdown-sub-item:hover {
    background-color: #f3f3f3;
}

.header__right {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}

.header__support-label {
        font-size: 1.3rem;
        line-height: 19px;
        text-align: left;
}

.header__support-phone {
        line-height: 20px;
}

.header--fixed {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
}

.header--transparent .header__item--support:after, .header--presentation .header__item--support:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-width%3D%221.5%22%3E%3Cpath%20stroke%3D%22%23ffffff%22%20d%3D%22M4.25%2C6.75%20L2.99686968%2C6.75%20C1.75970439%2C6.75%200.75%2C7.76000567%200.75%2C9.00166547%20L0.75%2C10.9983345%20C0.75%2C12.245164%201.75435639%2C13.25%202.99686968%2C13.25%20L4.25%2C13.25%20L4.25%2C6.75%20Z%22%2F%3E%3Cpath%20stroke%3D%22%23ffffff%22%20d%3D%22M19.25%2C6.75%20L17.9968697%2C6.75%20C16.7597044%2C6.75%2015.75%2C7.76000567%2015.75%2C9.00166547%20L15.75%2C10.9983345%20C15.75%2C12.245164%2016.7543564%2C13.25%2017.9968697%2C13.25%20L19.25%2C13.25%20L19.25%2C6.75%20Z%22%20transform%3D%22matrix(-1%200%200%201%2035%200)%22%2F%3E%3Cpath%20stroke%3D%22%23ffffff%22%20d%3D%22M6.75%2C17.5%20C6.75%2C18.4718543%207.53252685%2C19.25%208.50738893%2C19.25%20L10.4926111%2C19.25%20C11.4624222%2C19.25%2012.25%2C18.4651917%2012.25%2C17.5%20C12.25%2C16.5281457%2011.4674731%2C15.75%2010.4926111%2C15.75%20L8.50738893%2C15.75%20C7.5375778%2C15.75%206.75%2C16.5348083%206.75%2C17.5%20Z%22%2F%3E%3Cpath%20stroke%3D%22%23ffffff%22%20d%3D%22M%2012.25%2C17.3912622%20L%2013.0107127%2C17.2416312%20C%2014.5088637%2C17.1209185%2015.7739258%2C15.7095614%2015.7739258%2C14%20L%2015.7739258%2C4%20C%2015.7739258%2C2.21187974%2014.3899264%2C0.75%2012.8028041%2C0.75%20L%207.22112165%2C0.75%20C%205.63399942%2C0.75%204.25%2C2.21187974%204.25%2C4%20L%204.25%2C11.5912622%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@media (min-width: 768px) {

    .header--transparent, .header--presentation {
        background-color: transparent;
        box-shadow: none;
    }

    .header--transparent .header__sandwich, .header--presentation .header__sandwich {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.7%2012%22%20fill%3D%22%23ffffff%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M16.7%202H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201zm0%205H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201zm0%205H1c-.6%200-1-.4-1-1s.4-1%201-1h15.7c.6%200%201%20.4%201%201s-.5%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
    }

    .header--transparent .header__item--lang, .header--presentation .header__item--lang {
                    max-width: 150px;
                    color: #ffffff;
    }
}

@media (min-width: 768px) and (min-width: 1024px) {

    .header--transparent .header__item, .header--presentation .header__item {
        color: #ffffff;
    }
}

@media (min-width: 768px) {

    .header--transparent .header__logo, .header--presentation .header__logo {
        display: none;
    }

    .header--transparent .header__item--lang:before, .header--presentation .header__item--lang:before {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20stroke%3D%22%23ffffff%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%227.5%22%2F%3E%3Cellipse%20cx%3D%228%22%20cy%3D%228%22%20rx%3D%223.5%22%20ry%3D%227.5%22%2F%3E%3Cpath%20d%3D%22M1.5%204.889h13M1.5%2010.889h13%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }
}

@media (min-width: 768px) {

    .header--presentation .header__logo {
        display: block;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%20118%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M92.535%2018.314l-.897-2.259h-4.47l-.849%202.259h-3.034L88.13%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.468%203.949h2.904L89.435%209.88zm-6.607%204.095c0%20.693-.117%201.324-.35%201.893a4.115%204.115%200%200%201-1.004%201.463%204.63%204.63%200%200%201-1.574.95c-.614.228-1.297.341-2.047.341-.761%200-1.447-.113-2.056-.34a4.468%204.468%200%200%201-1.55-.951%204.126%204.126%200%200%201-.978-1.463%205.038%205.038%200%200%201-.343-1.893V6.809H75.7v6.939c0%20.314.041.612.123.893.081.282.206.534.375.756.169.222.392.398.669.528s.612.195%201.003.195c.392%200%20.726-.065%201.003-.195a1.83%201.83%200%200%200%20.677-.528%202.1%202.1%200%200%200%20.376-.756c.076-.281.114-.58.114-.893v-6.94h2.79v7.167zm-11.446%203.64a8.898%208.898%200%200%201-1.982.715%2010.43%2010.43%200%200%201-2.472.276c-.924%200-1.775-.146-2.553-.439a5.895%205.895%200%200%201-2.006-1.235%205.63%205.63%200%200%201-1.314-1.909c-.315-.742-.473-1.568-.473-2.478%200-.92.16-1.755.482-2.502a5.567%205.567%200%200%201%201.33-1.91%205.893%205.893%200%200%201%201.99-1.21%207.044%207.044%200%200%201%202.463-.423c.913%200%201.762.138%202.545.414.783.277%201.419.648%201.908%201.114l-1.762%201.998a3.05%203.05%200%200%200-1.076-.772c-.446-.2-.952-.3-1.517-.3-.49%200-.941.09-1.354.268a3.256%203.256%200%200%200-1.077.747%203.39%203.39%200%200%200-.71%201.138%203.977%203.977%200%200%200-.253%201.438c0%20.53.077%201.018.229%201.463.152.444.378.826.677%201.145.299.32.669.569%201.11.748.44.178.943.268%201.508.268.326%200%20.636-.025.93-.073.294-.05.566-.128.816-.236v-2.096h-2.203V11.52h4.764v6.094zm46.107-5.086c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.208-.544%205.955%205.955%200%200%200-1.394-.163h-1.387v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-55.226%200c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.207-.544%205.955%205.955%200%200%200-1.395-.163H51.3v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-11.86%205.785l-.897-2.259h-4.47l-.848%202.259h-3.034L40.19%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.467%203.949h2.903L41.496%209.88zm61.203%208.434l-2.496-4.566h-.946v4.566h-2.74V6.809h4.404c.555%200%201.096.057%201.623.17.528.114%201%20.306%201.42.577.418.271.752.629%201.003%201.073.25.444.375.996.375%201.657%200%20.78-.212%201.436-.636%201.966-.425.531-1.012.91-1.762%201.138l3.018%204.924h-3.263zm-.114-7.979c0-.27-.057-.49-.171-.658a1.172%201.172%200%200%200-.44-.39%201.919%201.919%200%200%200-.604-.187%204.469%204.469%200%200%200-.645-.049H99.24v2.681h1.321c.228%200%20.462-.018.701-.056.24-.038.457-.106.653-.204.196-.097.356-.238.481-.422s.188-.422.188-.715z%22%2F%3E%3Cpath%20fill%3D%22%2368bc71%22%20d%3D%22M12.651%200C8.697%200%203.927.93%200%202.977c0%204.42-.054%2015.433%2012.651%2022.958C25.357%2018.41%2025.303%207.397%2025.303%202.977%2021.376.93%2016.606%200%2012.651%200z%22%2F%3E%3Cpath%20fill%3D%22%2367b279%22%20d%3D%22M12.638%2025.927C-.054%2018.403%200%207.396%200%202.977%203.923.932%208.687.002%2012.638%200v25.927z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.19%2017.305l7.65-10.311c-.56-.45-1.052-.133-1.323.113h-.01l-6.379%206.636-2.403-2.892c-1.147-1.325-2.705-.314-3.07-.047l5.535%206.5%22%2F%3E%3C%2Fsvg%3E");
    }
}

.header--reports .header__dropdown--lang {
    left: auto;
    left: initial;
    right: 0;
}

@media (max-width: 1023px) {

    .header--reports .header__dropdown--lang {
        right: -15px;
    }
}

@supports ((display: -ms-grid) or (display: grid)) {

    .header--reports .header__dropdown--lang.header__dropdown--open {
        -ms-grid-rows: (1fr)[11];
            grid-template-rows: repeat(11, 1fr);
    }

    @media (max-width: 1023px) {

        .header--reports .header__dropdown--lang.header__dropdown--open {
            -ms-grid-rows: (1fr)[15];
                grid-template-rows: repeat(15, 1fr);
        }
    }
}

@media (max-width: 767px) {

    .header--mobile-relative {
        position: relative;
    }

    .header--mobile-relative + div {
        padding-top: 0;
    }
}

.header--account .header__logo {
    width: 93px;
    height: 26px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22118%22%20height%3D%2233%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M93.971%2017.05l-.875-2.191h-4.36l-.828%202.191h-2.96l4.727-11.16h2.641l4.68%2011.16H93.97zm-3.023-8.18l-1.433%203.83h2.833l-1.4-3.83zm-6.309%203.978c0%20.673-.113%201.286-.339%201.838a3.995%203.995%200%200%201-.97%201.42c-.42.394-.928.702-1.523.923a5.645%205.645%200%200%201-1.98.331c-.736%200-1.398-.11-1.987-.331a4.318%204.318%200%200%201-1.499-.923%204.007%204.007%200%200%201-.946-1.42%204.909%204.909%200%200%201-.332-1.838V5.89h2.682v6.737c0%20.305.04.594.118.868.08.273.2.518.363.733.163.216.379.387.647.513s.592.19.97.19c.379%200%20.702-.064.97-.19a1.77%201.77%200%200%200%20.655-.513c.169-.215.29-.46.363-.733.074-.274.11-.563.11-.868V5.89h2.698v6.958zm-11.43%203.547a8.238%208.238%200%200%201-1.87.696%209.563%209.563%200%200%201-2.333.269%206.61%206.61%200%200%201-2.41-.427%205.54%205.54%200%200%201-1.894-1.202%205.486%205.486%200%200%201-1.24-1.858c-.297-.722-.446-1.525-.446-2.41%200-.897.152-1.709.454-2.436a5.421%205.421%200%200%201%201.255-1.858%205.535%205.535%200%200%201%201.879-1.178%206.47%206.47%200%200%201%202.325-.411c.862%200%201.663.134%202.402.403.74.269%201.34.63%201.802%201.083L71.47%209.011a2.883%202.883%200%200%200-1.016-.75%203.368%203.368%200%200%200-1.432-.293c-.462%200-.888.087-1.279.26-.39.174-.728.417-1.016.728-.287.31-.51.68-.67%201.107-.159.427-.238.893-.238%201.4%200%20.516.072.99.215%201.422.144.432.357.804.64%201.115.282.31.63.553%201.046.727.416.174.89.261%201.425.261.308%200%20.6-.024.877-.071.278-.047.534-.124.77-.23v-2.039h-2.078v-2.182h4.496v5.93zM118%2011.438c0%20.978-.177%201.821-.532%202.53a5.078%205.078%200%200%201-1.403%201.75%205.803%205.803%200%200%201-1.966%201.009c-.73.215-1.47.323-2.221.323h-4.071V5.89h3.948c.77%200%201.532.092%202.282.276.75.184%201.419.488%202.005.914.586.426%201.059.996%201.419%201.71.36.715.54%201.598.54%202.648zm-2.745%200c0-.63-.1-1.153-.3-1.568a2.628%202.628%200%200%200-.802-.993%203.175%203.175%200%200%200-1.141-.528%205.493%205.493%200%200%200-1.319-.158h-1.31v6.526h1.248c.473%200%20.928-.055%201.365-.165.437-.11.823-.292%201.157-.544.334-.252.601-.589.802-1.009.2-.42.3-.94.3-1.56zm-53.474%200c0%20.978-.178%201.821-.533%202.53a5.078%205.078%200%200%201-1.403%201.75%205.803%205.803%200%200%201-1.966%201.009c-.73.215-1.47.323-2.22.323h-4.072V5.89h3.948c.77%200%201.532.092%202.282.276.75.184%201.419.488%202.005.914.586.426%201.059.996%201.419%201.71.36.715.54%201.598.54%202.648zm-2.746%200c0-.63-.1-1.153-.3-1.568a2.628%202.628%200%200%200-.802-.993%203.175%203.175%200%200%200-1.141-.528%205.493%205.493%200%200%200-1.319-.158h-1.31v6.526h1.248c.473%200%20.928-.055%201.365-.165.437-.11.823-.292%201.157-.544.334-.252.601-.589.802-1.009.2-.42.3-.94.3-1.56zM47.636%2017.05l-.875-2.191h-4.36l-.828%202.191h-2.96L43.34%205.89h2.641l4.68%2011.16h-3.025zm-3.023-8.18L43.18%2012.7h2.833l-1.4-3.83zm58.864%208.18l-2.367-4.43h-.898v4.43h-2.599V5.89h4.177c.526%200%201.04.055%201.54.166.5.11.949.296%201.346.56.397.262.714.609.951%201.04.238.43.356.966.356%201.607%200%20.757-.2%201.393-.603%201.908-.402.514-.96.882-1.671%201.103l2.862%204.776h-3.094zm-.109-7.74c0-.262-.054-.475-.162-.638a1.12%201.12%200%200%200-.418-.378%201.79%201.79%200%200%200-.572-.181%204.145%204.145%200%200%200-.611-.048h-1.408v2.601h1.253c.217%200%20.438-.018.665-.055.227-.037.433-.103.62-.197.185-.095.337-.231.456-.41.118-.179.177-.41.177-.693z%22%20fill%3D%22%23242424%22%2F%3E%3Cpath%20fill%3D%22%2368BC71%22%20d%3D%22M15.225%200C10.465%200%204.725%201.109%200%203.55c0%205.27-.065%2018.4%2015.225%2027.372C30.515%2021.951%2030.45%208.82%2030.45%203.55%2025.724%201.11%2019.984%200%2015.225%200z%22%2F%3E%3Cpath%20fill%3D%22%2367B279%22%20d%3D%22M15.21%2030.913C-.066%2021.942%200%208.818%200%203.55%204.72%201.111%2010.453.002%2015.21%200v30.913z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M14.67%2020.632l9.206-12.294c-.675-.535-1.266-.157-1.592.136h-.012l-7.677%207.912-2.892-3.448c-1.38-1.58-3.255-.375-3.694-.056l6.66%207.75%22%2F%3E%3Cpath%20fill%3D%22%234D4D4D%22%20d%3D%22M40.176%2032l.684-2.016h3.696L45.252%2032h1.104l-3.012-8.508h-1.248l-3%208.508h1.08zm4.032-3.024h-3.012l1.5-4.416%201.512%204.416zm6.472%203.192c.924%200%201.764-.396%202.28-.912a2.964%202.964%200%200%200%20.84-1.968h-1.104a1.949%201.949%200%200%201-.468%201.224c-.336.372-.9.648-1.548.648a2.16%202.16%200%200%201-1.548-.648c-.65-.672-.714-1.72-.72-2.58v-.18c0-.888.024-2.04.72-2.76a2.16%202.16%200%200%201%201.548-.648c.648%200%201.2.252%201.536.624.276.312.456.72.468%201.188h1.104a2.903%202.903%200%200%200-.84-1.944c-.516-.516-1.344-.876-2.268-.876-.852%200-1.692.312-2.304.912-.924.9-1.068%202.148-1.068%203.504%200%201.356.144%202.604%201.068%203.504.612.6%201.452.912%202.304.912zm8.008%200c.924%200%201.764-.396%202.28-.912a2.964%202.964%200%200%200%20.84-1.968h-1.104a1.949%201.949%200%200%201-.468%201.224c-.336.372-.9.648-1.548.648a2.16%202.16%200%200%201-1.548-.648c-.65-.672-.714-1.72-.72-2.58v-.18c0-.888.024-2.04.72-2.76a2.16%202.16%200%200%201%201.548-.648c.648%200%201.2.252%201.536.624.276.312.456.72.468%201.188h1.104a2.903%202.903%200%200%200-.84-1.944c-.516-.516-1.344-.876-2.268-.876-.852%200-1.692.312-2.304.912-.924.9-1.068%202.148-1.068%203.504%200%201.356.144%202.604%201.068%203.504.612.6%201.452.912%202.304.912zm8.02%200A3.26%203.26%200%200%200%2069%2031.256c.924-.9%201.092-2.148%201.092-3.504%200-1.356-.168-2.604-1.092-3.504a3.26%203.26%200%200%200-2.292-.912%203.26%203.26%200%200%200-2.292.912c-.924.9-1.092%202.148-1.092%203.504%200%201.356.168%202.604%201.092%203.504.612.6%201.44.912%202.292.912zm0-1.02c-.576%200-1.14-.216-1.548-.636-.65-.672-.724-1.72-.731-2.58l-.001-.18c0-.888.036-2.04.732-2.76.408-.42.972-.636%201.548-.636.576%200%201.14.216%201.548.636.696.72.732%201.872.732%202.76%200%20.888-.036%202.04-.732%202.76-.408.42-.972.636-1.548.636zm8.488%201.008c1.908%200%203.108-1.152%203.108-3.276v-5.388h-1.068v5.412c0%201.356-.564%202.256-2.04%202.256s-2.04-.9-2.04-2.256v-5.412h-1.068v5.388c0%202.124%201.2%203.276%203.108%203.276zm6.7-.156v-6.84L86.072%2032h1.2v-8.508H86.24v6.864l-4.176-6.864h-1.2V32h1.032zm10.744%200v-7.512h2.532v-.996h-6.144v.996h2.532V32h1.08z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: 100%;
}

@media (min-width: 768px) {

    .header--account .header__logo {
        width: 119px;
        height: 33px;
    }
}

@media (max-width: 1023px) {

    .header.menu-active .header__menu-back {
        -webkit-transform: translateX(300px);
                transform: translateX(300px);
    }

    .header.menu-active .header__nav {
        -webkit-transform: translateX(300px);
                transform: translateX(300px);
    }

    .header.menu-active .header__nav .header__item-active {
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
    }

    .header.menu-active .header__nav .header__item-active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .header.menu-active .header__nav .header__dropdown-item--sub-open {
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
    }

    .header.menu-active .header__nav .header__dropdown-item--sub-open:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .header.menu-active .header__substrate {
        opacity: 0.4;
        visibility: visible;
    }
}

.header__download-button {
        text-transform: none;
        padding: 6px 20px 6px 30px;
        font-size: 1.3rem;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.header__download-button .icon--download {
    width: 16px;
    height: 16px;
    margin: 0 8px -3px -12px;
}

@media (min-width: 768px) {

    .header__download-button {
        padding: 10px 34px 10px 43px;
        font-size: 1.5rem;
    }

    .header__download-button .icon--download {
        width: 20px;
        height: 20px;
        margin: 0 8px -4px -10px;
    }
}

.header__button {
        padding-left: 18px;
        padding-right: 18px;
        line-height: 80px;
}

@media (max-width: 1023px) {

    .header__button {
        display: none;
    }
}

.translated-ltr .header--fixed, .translated-rtl .header--fixed {
    top: 40px;
}

* {
    box-sizing: border-box;
}

.input-text:focus::-webkit-input-placeholder {
    outline: none;
    color: transparent;
}

.input-text:focus:-ms-input-placeholder {
    outline: none;
    color: transparent;
}

.input-text:focus::placeholder {
    outline: none;
    color: transparent;
}

html {
    font-size: 11px;
}

body {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.428571429;
    color: #4d4d4d;
    background-color: #ffffff;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 400
}

body.body--overflow {
    overflow: hidden;
}

.wrapper {
    position: relative;
    min-height: calc(100vh - 230px);
}

@media (max-width: 767px) {

    .wrapper {
        min-height: calc(100vh - 115px);
    }
}

.wrapper--flash .flash-wrapper {
    z-index: 1;
}

@media (max-width: 767px) {

    .wrapper--flash .issue, .wrapper--flash .report {
        padding-top: 0;
    }
}

.md__link {
    color: #67b279;
    text-decoration: none;
}

.md__link:hover {
    text-decoration: underline;
}

[v-cloak] {
    display: none;
}

.footer {
    background-color: #585865;
    color: #ffffff
}

.footer.sticky-on-page {
    padding-top: 50px;
}

.footer__inner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
}

.footer__inner:before {
        content: '';
        display: table;
}

.footer__inner:after {
        content: '';
        display: table;
        clear: both;
}

.footer__inner:before {
        content: '';
        display: table;
}

.footer__inner:after {
        content: '';
        display: table;
        clear: both;
}

.footer__inner--bottom {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            padding: 50px 15px;
        }

@media (max-width: 767px) {

    .footer__inner--bottom {
        padding: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

.footer__bottom {
        background-color: #4d4d4d;
}

.footer__logo {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 220px;
        margin-right: auto;
}

@media (max-width: 767px) {

    .footer__logo {
        display: none;
    }
}

.footer__logo-title {
        position: relative;
        left: -25px;
        width: 220px;
        height: 45px;
        outline: 0;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

.footer__logo-subtitle {
        position: absolute;
        bottom: 5px;
        left: 61px;
        font-size: 1.2rem;
        white-space: nowrap;
        opacity: 0.45;
}

.footer__icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 47px;
}

@media (max-width: 767px) {

    .footer__icons {
        height: 100%;
        padding: 20px 15px;
    }
}

.footer__icons-title {
        margin-right: 20px;
}

@media (max-width: 767px) {

    .footer__icons-title {
        margin-right: auto;
        font-size: 1.2rem;
    }
}

.footer__social {
        display: inline-block;
        vertical-align: middle;
        min-width: 23px;
        width: 25px;
        height: 25px;
        margin-left: 8px;
        background-color: #4d4d4d;
        border-radius: 50%;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 768px) {

    .footer__social {
        width: 35px;
        height: 35px;
    }

    .footer__social:hover, .footer__social:focus {
        outline: 0;
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

.footer__social:first-child {
    margin-left: 0;
}

.footer__social-icon {
        position: relative;
        width: 25px;
        height: 25px;
}

@media (min-width: 768px) {

    .footer__social-icon {
        width: 35px;
        height: 35px;
    }
}

.footer__social-icon--facebook, .footer__social-icon--twitter {
            width: 26px;
}

@media (min-width: 768px) {

    .footer__social-icon--facebook, .footer__social-icon--twitter {
        width: 36px;
    }
}

.footer__social-icon--ok {
            top: 5px;
            width: 26px;
            height: 15px;
}

@media (min-width: 768px) {

    .footer__social-icon--ok {
        top: 7px;
        width: 36px;
        height: 20px;
    }
}

.footer__social-icon--google {
            top: 5px;
            width: 26px;
            height: 15px;
}

@media (min-width: 768px) {

    .footer__social-icon--google {
        top: 7px;
        width: 38px;
        height: 22px;
    }
}

.footer__social-icon--telegram {
            width: 65%;
            left: 4px;
}

.rating {
    position: relative;
    width: 91px;
    height: 18px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218px%22%20height%3D%2218px%22%20viewBox%3D%220%200%2016%2015%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M15.6%205.8L10.4%205%208%200.3%205.6%205%200.4%205.8%204.2%209.5%203.3%2014.7%208%2012.3%2012.7%2014.7%2011.8%209.5z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: repeat-x;
    background-position: center
}

.rating:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 18px;
    background-color: #ffffff;
}

.rating--green {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218px%22%20height%3D%2218px%22%20viewBox%3D%220%200%2016%2015%22%3E%3Cpath%20fill%3D%22%2367b279%22%20d%3D%22M15.6%205.8L10.4%205%208%200.3%205.6%205%200.4%205.8%204.2%209.5%203.3%2014.7%208%2012.3%2012.7%2014.7%2011.8%209.5z%22%2F%3E%3C%2Fsvg%3E");
}

.rating--gold {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218px%22%20height%3D%2218px%22%20viewBox%3D%220%200%2016%2015%22%3E%3Cpath%20fill%3D%22%2367b279%22%20d%3D%22M15.6%205.8L10.4%205%208%200.3%205.6%205%200.4%205.8%204.2%209.5%203.3%2014.7%208%2012.3%2012.7%2014.7%2011.8%209.5z%22%2F%3E%3C%2Fsvg%3E");
}

.rating--4star:after {
    width: 18px;
}

.rating--3star:after {
    width: 36px;
}

.rating--2star:after {
    width: 54px;
}

.rating--1star:after {
    width: 72px;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: auto;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.breadcrumbs__item {
        position: relative;
        display: inline-block;
        margin-right: 5px
    }

.breadcrumbs__item:last-child {
    margin-right: 0;
}

.breadcrumbs__item:last-child:after {
    display: none;
}

.breadcrumbs__item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 9px;
    height: 6px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2011%207%22%20fill%3D%22none%22%20stroke%3D%22%234d4d4d%22%20stroke-width%3D%221.215%22%20stroke-linecap%3D%22round%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M1%201L5.4%206%2010%201%22%2F%3E%3C%2Fsvg%3E");
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

.breadcrumbs__link {
        padding-right: 15px;
        font-size: 1.3rem;
        color: inherit;
        transition: 0.3s ease color
    }

.breadcrumbs__link:hover {
    color: #67b279;
}

@-webkit-keyframes eye {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes eye {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.report {
    padding-bottom: 185px;
}

@media (max-width: 767px) {

    .report {
        padding-top: 50px;
        padding-bottom: 45px;
    }
}

.report--ok .report__check {
    background: linear-gradient(45deg, #637d78 0%, #58b165 100%);
}

.report--warning .report__check {
    background: linear-gradient(to right, #ec7f12 0%,#e3ce52 100%);
}

.report--danger .report__check {
    background: linear-gradient(to right, #d63823 40%,#ec7f12 100%);
}

.report__check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #fff;
        min-height: 193px;
        padding: 20px 0;
}

@media (max-width: 1200px) {

    .report__check {
        min-height: 258px;
        padding: 0;
    }
}

.report__check-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
}

@media (max-width: 1200px) {

    .report__check-in {
        position: relative;
        padding-top: 78px;
        max-width: none;
        max-width: initial;
    }
}

.report__check-left {
        width: 890px;
}

@media (max-width: 1200px) {

    .report__check-left {
        width: 100%;
    }
}

.report__check-right {
        position: static;
        width: 0;
}

@media (min-width: 1200px) {

    .report__check-right {
        width: 280px;
        position: relative;
    }
}

.report__check-sub-title {
        font-size: 18px;
        line-height: 38px;
        margin: 0;
        margin-bottom: 4px;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

@media (max-width: 767px) {

    .report__check-sub-title {
        font-size: 14px;
    }
}

.report__check-title {
        font-size: 38px;
        line-height: 33px;
        margin-bottom: 16px;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

@media (max-width: 767px) {

    .report__check-title {
        font-size: 24px;
    }
}

.report__check-label {
        font-size: 14px;
        margin-bottom: 15px;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

@media (min-width: 1200px) {

    .report__check-label {
        padding-right: 360px;
    }
}

.report__check-form {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
}

@media (max-width: 1200px) {

    .report__check-form {
        position: absolute;
        top: -2px;
        left: 0;
        width: 100%;
    }
}

.report__check-input {
        display: block;
        width: 280px;
        height: 50px;
        padding: 1px 50px 0 20px;
        line-height: 33px;
        min-height: 33px;
        border: 1px solid transparent;
        border-radius: 6px;
        font-size: 13px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

.report__check-input::-webkit-input-placeholder {
    color: #888888;
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.report__check-input:-ms-input-placeholder {
    color: #888888;
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.report__check-input::placeholder {
    color: #888888;
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.report__check-input:focus {
    outline: 0;
    border-color: rgba(74, 74, 74, .20);
    box-shadow: inset 1px 1px 5px 0 rgba(74, 74, 74, .20);
}

@media (max-width: 1200px) {

    .report__check-input {
        width: 100%;
        height: auto;
        border-radius: 0;
        padding-top: 22.5px;
        padding-bottom: 22.5px;
        outline: 0;
    }
}

.report__check-input--error {
            border-color: #c23814;
}

.report__check-btn {
        position: absolute;
        padding: 0;
        top: calc(50% - 9px);
        right: 15px;
        width: 17px;
        height: 18px;
        border: 0;
        font-size: 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20250.313%20250.313%22%20style%3D%22enable-background%3Anew%200%200%20250.313%20250.313%3B%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%0A%3Cg%20id%3D%22Search%22%3E%0A%09%3Cpath%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3B%22%20d%3D%22M244.186%2C214.604l-54.379-54.378c-0.289-0.289-0.628-0.491-0.93-0.76%20%20%20c10.7-16.231%2C16.945-35.66%2C16.945-56.554C205.822%2C46.075%2C159.747%2C0%2C102.911%2C0S0%2C46.075%2C0%2C102.911%20%20%20c0%2C56.835%2C46.074%2C102.911%2C102.91%2C102.911c20.895%2C0%2C40.323-6.245%2C56.554-16.945c0.269%2C0.301%2C0.47%2C0.64%2C0.759%2C0.929l54.38%2C54.38%20%20%20c8.169%2C8.168%2C21.413%2C8.168%2C29.583%2C0C252.354%2C236.017%2C252.354%2C222.773%2C244.186%2C214.604z%20M102.911%2C170.146%20%20%20c-37.134%2C0-67.236-30.102-67.236-67.235c0-37.134%2C30.103-67.236%2C67.236-67.236c37.132%2C0%2C67.235%2C30.103%2C67.235%2C67.236%20%20%20C170.146%2C140.044%2C140.043%2C170.146%2C102.911%2C170.146z%22%20fill%3D%22%23818181%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        cursor: pointer;
        transition: 0.3s ease transform;
}

.report__check-btn:hover, .report__check-btn:focus {
    outline: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
}

@media (max-width: 1200px) {

    .report__check-btn {
        top: 31px;
        right: 40px;
    }
}

.report__check-error {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        text-align: left;
        font-size: 1.27rem;
        line-height: 1.64rem;
        color: #c23814;
        visibility: hidden;
}

.report__check-error--active {
            visibility: visible;
        }

@media (min-width: 1200px) {

    .report__check-error {
        top: 52px;
        background-color: transparent;
        color: #ffffff;
    }
}

.report__in {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 0 15px;
        padding-top: 41px;
}

.report__in:before {
        content: '';
        display: table;
}

.report__in:after {
        content: '';
        display: table;
        clear: both;
}

@media (max-width: 767px) {

    .report__in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

.report__left {
        width: calc(99.9% * 9/12 - (30px - 30px * 9/12));
}

.report__left:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
}

.report__left:last-child {
        margin-right: 0;
}

.report__left:nth-child(12n) {
        margin-right: 0;
        float: right;
}

.report__left:nth-child(12n + 1) {
        clear: both;
}

@media (max-width: 1200px) {

    .report__left {
        width: calc(99.9% * 8/12 - (30px - 30px * 8/12));
    }

    .report__left:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
    }

    .report__left:last-child {
        margin-right: 0;
    }

    .report__left:nth-child(12n) {
        margin-right: 0;
        float: right;
    }

    .report__left:nth-child(12n + 1) {
        clear: both;
    }
}

@media (max-width: 767px) {

    .report__left {
        padding: 0;
        width: calc(99.9% * 3/3 - (30px - 30px * 3/3));
    }

    .report__left:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
    }

    .report__left:last-child {
        margin-right: 0;
    }

    .report__left:nth-child(3n) {
        margin-right: 0;
        float: right;
    }

    .report__left:nth-child(3n + 1) {
        clear: both;
    }
}

.report__breadcrubms {
        padding-bottom: 20px;
}

.report__right {
        width: calc(99.9% * 3/12 - (30px - 30px * 3/12));
        padding-left: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
}

.report__right:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
}

.report__right:last-child {
        margin-right: 0;
}

.report__right:nth-child(12n) {
        margin-right: 0;
        float: right;
}

.report__right:nth-child(12n + 1) {
        clear: both;
}

@media (max-width: 1200px) {

    .report__right {
        width: calc(99.9% * 4/12 - (30px - 30px * 4/12));
    }

    .report__right:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
    }

    .report__right:last-child {
        margin-right: 0;
    }

    .report__right:nth-child(12n) {
        margin-right: 0;
        float: right;
    }

    .report__right:nth-child(12n + 1) {
        clear: both;
    }
}

@media (max-width: 767px) {

    .report__right {
        width: calc(99.9% * 12/12 - (30px - 30px * 12/12));
        padding-left: 0;
    }

    .report__right:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
    }

    .report__right:last-child {
        margin-right: 0;
    }

    .report__right:nth-child(12n) {
        margin-right: 0;
        float: right;
    }

    .report__right:nth-child(12n + 1) {
        clear: both;
    }
}

.report__desc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 45px;
}

@media (max-width: 1200px) {

    .report__desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-left: 0;
    }
}

.report__info-wr {
        margin-bottom: 12px;
}

.report__info-wr:before {
        content: '';
        display: table;
}

.report__info-wr:after {
        content: '';
        display: table;
        clear: both;
}

@media (max-width: 1200px) {

    .report__info-wr {
        margin-bottom: 0;
    }
}

.report__info-wr--last {
            margin-bottom: 50px;
}

.report__info {
        width: calc(99.9% * 1/4 - (30px - 30px * 1/4));
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__info:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
}

.report__info:last-child {
        margin-right: 0;
}

.report__info:nth-child(4n) {
        margin-right: 0;
        float: right;
}

.report__info:nth-child(4n + 1) {
        clear: both;
}

@media (max-width: 1200px) {

    .report__info {
        width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
        margin-bottom: 10px;
    }

    .report__info:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
    }

    .report__info:last-child {
        margin-right: 0;
    }

    .report__info:nth-child(2n) {
        margin-right: 0;
        float: right;
    }

    .report__info:nth-child(2n + 1) {
        clear: both;
    }
}

.report__info-title {
        text-transform: uppercase;
        font-size: 9px;
        line-height: 22px;
        margin-bottom: 2px;
        color: rgba(74, 74, 74, .36);
}

@media (max-width: 767px) {

    .report__info-title {
        font-size: 8px;
        line-height: 15px;
    }
}

.report__info-val {
        text-transform: uppercase;
        font-size: 1.3rem;
        line-height: 1.4;
        color: #131313;
}

.report__download {
        display: none;
        text-align: center;
        border: 3px solid #eee;
        padding: 37px 60px 48px;
}

@media (max-width: 1200px) {

    .report__download {
        padding: 37px 40px 39px;
    }
}

.report__download--visible {
            display: block;
}

.report__download-title {
        margin-bottom: 17px;
        font-size: 22px;
        line-height: 34px;
        color: #131313;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

@media (max-width: 1200px) {

    .report__download-title {
        margin-bottom: 30px;
    }
}

.report__download-desc {
        margin-bottom: 33px;
        font-size: 13px;
        line-height: 22px;
        color: rgba(74, 74, 74, .70);
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.report__download-btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: auto;
        max-width: 430px;
}

.report__download-btn {
        margin: 0 auto 11px;
        min-width: 200px;
        font-size: 1rem;
        line-height: 32px;
}

.report__download-version {
        font-size: 12px;
        line-height: 24px;
        color: #9a9a9a;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result {
        width: 280px;
}

@media (max-width: 1200px) {

    .report__result {
        width: auto;
    }
}

@media (max-width: 767px) {

    .report__result {
        width: 100%;
        margin-bottom: 40px;
    }
}

.report__result-contact {
        margin-bottom: 30px;
        border-top: 2px solid rgba(74, 74, 74, .36);
        border-bottom: 2px solid rgba(74, 74, 74, .36);
        padding-top: 22px;
        padding-bottom: 27px;
        text-align: center;
}

.report__result-contact-title {
        width: 210px;
        margin: 0 auto;
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 20px;
        color: rgba(74, 74, 74, .70);
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result-wr {
        margin-bottom: 50px;
}

.report__result-wr:last-child {
    margin-bottom: 0;
}

.report__result-label {
        text-transform: uppercase;
        width: 100%;
        margin-bottom: 3px;
        color: rgba(74, 74, 74, .36);
        font-size: 11px;
        line-height: 20px;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result-title {
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(74, 74, 74, .20);
        font-size: 18px;
        line-height: 23px;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

.report__result-sub-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 7px;
        color: #131313;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result-wot-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(74, 74, 74, .20);
}

.report__result-wot-wr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 90px;
}

.report__result-wot-wr--label {
            text-align: right;
        }

.report__result-bullet {
        width: 27px;
        height: 27px;
        margin-right: 3px;
        background-size: 27px;
        background-repeat: no-repeat;
}

.report__result-bullet--gray {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%23808080%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-bullet--green {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%23008000%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-bullet--lime {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%2300B702%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-bullet--yellow {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%23CFCC00%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-bullet--red {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%23E80000%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-bullet--orange {
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20302%20288%22%20style%3D%22fill%3A%23FFA500%3B%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st1%7Bfill%3Aurl(%23SVGID_1_)%3B%7D%0D%0A%09.st2%7Bfill%3Aurl(%23SVGID_2_)%3B%7D%0D%0A%09.st3%7Bfill%3Aurl(%23SVGID_3_)%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_1_%22%20cx%3D%22151%22%20cy%3D%22144%22%20r%3D%22147.5415%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.4242%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9316%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st1%22%20d%3D%22M151%2C0C67.6%2C0%2C0%2C64.5%2C0%2C144s67.6%2C144%2C151%2C144s151-64.5%2C151-144S234.4%2C0%2C151%2C0z%20M214%2C151.5%0D%0A%09c0%2C34.5-28%2C62.5-62.5%2C62.5h0C117%2C214%2C89%2C186%2C89%2C151.5v-13C89%2C104%2C117%2C76%2C151.5%2C76h0c34.5%2C0%2C62.5%2C28%2C62.5%2C62.5V151.5z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_2_%22%20cx%3D%22164.2616%22%20cy%3D%22139.1667%22%20r%3D%22147.8352%22%20gradientTransform%3D%22matrix(-6.021479e-03%20-1%201.1037%20-6.646232e-03%2011.6477%20304.3502)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7438%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.3%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9457%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.8%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st2%22%20d%3D%22M32.6%2C215.3c12.3%2C11.9%2C27.5%2C21.5%2C45%2C27.4c12.1%2C4.1%2C25.3%2C6.4%2C39.3%2C6.4c8.7%2C0%2C16.5-1%2C23.5-2.7%0D%0A%09c24.2-5.8%2C39.4-20.1%2C48.6-33c9.2-12.9%2C12.3-24.3%2C12.3-24.3S181%2C222%2C136%2C222s-91-30-91-96c0-15.8%2C3.9-30.3%2C10.5-43.2%0D%0A%09C76.8%2C41.5%2C126.6%2C16%2C170%2C16c57%2C0%2C101.4%2C37.9%2C115.2%2C61.9C274.4%2C58%2C258.8%2C40.8%2C240%2C27.6c-18.9-13.1-41-22.2-65.1-25.9%0D%0A%09C167.1%2C0.6%2C159.1%2C0%2C151%2C0c-17.1%2C0-33.5%2C2.7-48.8%2C7.7c-22.8%2C7.4-43.1%2C19.8-59.5%2C35.9C20%2C65.9%2C4.8%2C95.2%2C1%2C127.7%0D%0A%09c-0.6%2C5.3-1%2C10.8-1%2C16.3C0%2C169.3%2C12.1%2C195.4%2C32.6%2C215.3z%22%2F%3E%0D%0A%3CradialGradient%20id%3D%22SVGID_3_%22%20cx%3D%22169.486%22%20cy%3D%22146.7355%22%20r%3D%22124.6648%22%20fx%3D%22153.7161%22%20fy%3D%22159.3701%22%20gradientTransform%3D%22matrix(1%200%200%201.0244%200%20-3.5844)%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0D%0A%09%3Cstop%20offset%3D%220.7575%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0.2%22%2F%3E%0D%0A%09%3Cstop%20offset%3D%220.9586%22%20style%3D%22stop-color%3A%23FFFFFF%3Bstop-opacity%3A0%22%2F%3E%0D%0A%3C%2FradialGradient%3E%0D%0A%3Cpath%20class%3D%22st3%22%20d%3D%22M285.1%2C77.8c-5-8.6-11.8-16.2-19.1-22.9c-7.5-6.9-15.8-13-24.5-18.3c-17.5-10.7-37.7-17.9-58.2-19.8%0D%0A%09c-10.1-1-20.1-0.9-30.1%2C0.5C143%2C18.7%2C133%2C21.3%2C123.4%2C25C104%2C32.5%2C85.9%2C44.1%2C71.8%2C59.6c-13.7%2C15-23.1%2C33.4-26%2C53.6%0D%0A%09c-1.3%2C9.3-1.1%2C18.9%2C0%2C28.2c0.9%2C7.9%2C2.7%2C15.8%2C5.4%2C23.3c4.7%2C13.2%2C12.5%2C25.1%2C22.9%2C34.5c9.5%2C8.6%2C21.1%2C14.9%2C33.4%2C18.6%0D%0A%09c13.9%2C4.2%2C28.7%2C5.3%2C43%2C2.9c18.7-3%2C36.4-13.3%2C48.3-28.1c0.9-1.2%2C1.9-2.4%2C2.7-3.6c-5.4%2C6.1-11.3%2C12.2-18.4%2C16.4%0D%0A%09c-11.2%2C6.6-24.4%2C9.5-37.4%2C8.3c-10.2-1-20.2-4.5-28.7-10.2c-8.4-5.6-15.4-13.2-20.3-22.1c-5-9.2-7.6-19.5-7.6-30%0D%0A%09c0-6.4-0.3-12.8%2C0.3-19.2c0.3-3.4%2C1-6.8%2C1.9-10.2c0.7-2.7%2C1.8-5.2%2C2.7-7.9c0.2-0.5%2C0.2-1%2C0.4-1.4c0.9-2.9%2C2-5.8%2C3.3-8.6%0D%0A%09c2.2-4.6%2C4.8-9%2C7.9-13.1c4-5.3%2C8.8-10.1%2C14.1-14.1c6.5-4.9%2C13.9-8.7%2C21.7-11.3c9.9-3.3%2C20.4-4.7%2C30.8-4.8c11-0.1%2C22%2C1.4%2C32.5%2C4.6%0D%0A%09c9.4%2C2.9%2C18.4%2C7.2%2C26.5%2C12.8c7.7%2C5.3%2C14.6%2C11.6%2C20.6%2C18.8c5.7%2C6.9%2C10.6%2C14.4%2C14.4%2C22.5c3.6%2C7.6%2C6.4%2C15.6%2C8.1%2C23.9%0D%0A%09c1.8%2C9%2C2.2%2C18%2C1.4%2C27.1c-1.1%2C13-4.3%2C25.8-8.5%2C38.2c-4.1%2C11.9-9.2%2C23.5-15.1%2C34.6c-2.5%2C4.7-5.1%2C9.3-7.9%2C13.8%0D%0A%09c9.9-7.4%2C18.9-16.1%2C26.7-25.7c7.7-9.6%2C14.3-20.2%2C19.3-31.4c5.1-11.4%2C8.6-23.5%2C10.5-35.9c2-13.6%2C2-27.5%2C0-41.1%0D%0A%09c-2.1-14.2-6.5-27.9-12.9-40.8C286.8%2C81%2C286%2C79.4%2C285.1%2C77.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E");
        }

.report__result-man {
        width: 6px;
        height: 15px;
        margin-right: 3px;
        background-color: #808080;
        border-radius: 6px;
}

.report__result-man--active {
            background-color: #67b279;
        }

.report__result-link {
        text-decoration: none;
        color: #67b279;
        font-size: 13px;
        line-height: 22px;
        transition: 0.3s ease color;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result-link:hover {
    color: #67b279;
    text-decoration: underline;
}

.report__result-status {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 24px;
        color: #131313;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.report__result-checklist {
        padding-top: 15px;
}

.report__result-check {
        position: relative;
        margin-bottom: 15px;
        padding-left: 27px;
        font-size: 13px;
        line-height: 22px;
        color: #d8d8d8;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

.report__result-check:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 7px;
    width: 12px;
    height: 9px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015%2015%22%20fill%3D%22%23979797%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%09%3Cpolygon%20points%3D%228.9%2C7.5%2011.5%2C5%2015%2C1.4%2013.6%2C0%2010%2C3.5%207.5%2C6.1%205%2C3.5%201.4%2C0%200%2C1.4%203.5%2C5%206.1%2C7.5%203.5%2C10%200%2C13.6%201.4%2C15%205%2C11.5%207.5%2C8.9%2010%2C11.5%2013.6%2C15%2015%2C13.6%2011.5%2C10%20%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
}

.report__result-check--checked {
            color: #dd3a24;
}

.report__result-check--checked:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015%2015%22%20style%3D%22fill%3A%23dd3a24%3B%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%0A%09%3Cpolygon%20points%3D%226%2C13.5%200.1%2C6.9%201.6%2C5.6%206%2C10.5%2013.4%2C1.6%2014.9%2C2.9%20%22%2F%3E%0A%3C%2Fsvg%3E");
}

.report__comments {
        border-top: 1px solid rgba(74, 74, 74, .20);
        margin: 35px 0;
        padding: 30px 0;
}

@media (min-width: 768px) {

    .report__comments {
        margin: 35px 0 0 0;
        padding: 30px 0 0 0;
    }
}

.report__comments-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}

@media (min-width: 1024px) {

    .report__comments-block {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.report__comments-show {
        min-height: 45px;
        margin: 0 0 12px 0;
        padding: 5px 24px;
        font-size: 1.1rem;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        text-transform: uppercase;
        white-space: nowrap;
        transition: 0.3s ease background-color;
}

@media (min-width: 1024px) {

    .report__comments-show {
        margin: 0 20px 0 0;
    }
}

.report__comments-text {
        text-align: center;
}

@media (min-width: 1024px) {

    .report__comments-text {
        text-align: left;
    }
}

.report__comments-powered {
        margin-bottom: 1px;
        font-size: 1.2rem;
        line-height: 1.4;
}

@media (min-width: 768px) {

    .report__comments-powered {
        font-size: 1.3rem;
    }
}

.report__comments-terms, .report__comments-terms .md__link {
        font-size: 1rem;
        line-height: 1.6;
        color: #919191;
}

@media (min-width: 768px) {

    .report__comments-terms, .report__comments-terms .md__link {
        font-size: 1.1rem;
    }
}

.report__comments-terms .md__link {
        text-decoration: underline;
}

.report__comments-wrap {
        display: none;
        margin-top: 70px;
}

.report__comments-wrap--visible {
            display: block;
            margin-top: 0;
        }

.report__category {
        margin-bottom: 15px;
        font-size: 1.25rem;
        color: #888888;
}

.report__category-name:after {
    content: ",";
}

.report__category-name:last-child:after {
    content: "";
}

.website-check {
    min-height: calc(100vh - 65px);
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 768px) {

    .website-check {
        min-height: calc(100vh - 230px);
    }
}

@media (min-width: 1024px) {

    .website-check {
        padding: 60px 0;
    }
}

.website-check__in {
        max-width: 560px;
        padding: 0 24px;
}

@media (min-width: 1024px) {

    .website-check__in {
        padding: 0 15px;
    }
}

.website-check__logo {
        display: none;
        width: 186px;
        height: 41px;
        margin: auto;
        margin-bottom: 32px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%20118%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23232323%22%20d%3D%22M92.535%2018.314l-.897-2.259h-4.47l-.849%202.259h-3.034L88.13%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.468%203.949h2.904L89.435%209.88zm-6.607%204.095c0%20.693-.117%201.324-.35%201.893a4.115%204.115%200%200%201-1.004%201.463%204.63%204.63%200%200%201-1.574.95c-.614.228-1.297.341-2.047.341-.761%200-1.447-.113-2.056-.34a4.468%204.468%200%200%201-1.55-.951%204.126%204.126%200%200%201-.978-1.463%205.038%205.038%200%200%201-.343-1.893V6.809H75.7v6.939c0%20.314.041.612.123.893.081.282.206.534.375.756.169.222.392.398.669.528s.612.195%201.003.195c.392%200%20.726-.065%201.003-.195a1.83%201.83%200%200%200%20.677-.528%202.1%202.1%200%200%200%20.376-.756c.076-.281.114-.58.114-.893v-6.94h2.79v7.167zm-11.446%203.64a8.898%208.898%200%200%201-1.982.715%2010.43%2010.43%200%200%201-2.472.276c-.924%200-1.775-.146-2.553-.439a5.895%205.895%200%200%201-2.006-1.235%205.63%205.63%200%200%201-1.314-1.909c-.315-.742-.473-1.568-.473-2.478%200-.92.16-1.755.482-2.502a5.567%205.567%200%200%201%201.33-1.91%205.893%205.893%200%200%201%201.99-1.21%207.044%207.044%200%200%201%202.463-.423c.913%200%201.762.138%202.545.414.783.277%201.419.648%201.908%201.114l-1.762%201.998a3.05%203.05%200%200%200-1.076-.772c-.446-.2-.952-.3-1.517-.3-.49%200-.941.09-1.354.268a3.256%203.256%200%200%200-1.077.747%203.39%203.39%200%200%200-.71%201.138%203.977%203.977%200%200%200-.253%201.438c0%20.53.077%201.018.229%201.463.152.444.378.826.677%201.145.299.32.669.569%201.11.748.44.178.943.268%201.508.268.326%200%20.636-.025.93-.073.294-.05.566-.128.816-.236v-2.096h-2.203V11.52h4.764v6.094zm46.107-5.086c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.208-.544%205.955%205.955%200%200%200-1.394-.163h-1.387v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-55.226%200c0%201.007-.188%201.877-.563%202.608a5.262%205.262%200%200%201-1.484%201.804%206.199%206.199%200%200%201-2.08%201.04%208.459%208.459%200%200%201-2.35.333h-4.306V6.809h4.176c.816%200%201.62.095%202.414.284.794.19%201.501.504%202.121.943.62.438%201.12%201.026%201.5%201.763.382.736.572%201.646.572%202.73zm-2.904%200c0-.65-.106-1.19-.318-1.617a2.724%202.724%200%200%200-.848-1.024%203.4%203.4%200%200%200-1.207-.544%205.955%205.955%200%200%200-1.395-.163H51.3v6.728h1.321c.5%200%20.982-.057%201.444-.17.462-.115.87-.301%201.224-.562a2.78%202.78%200%200%200%20.848-1.04c.212-.433.318-.97.318-1.608zm-11.86%205.785l-.897-2.259h-4.47l-.848%202.259h-3.034L40.19%206.809h2.708l4.796%2011.505h-3.1zm-3.1-8.434l-1.467%203.949h2.903L41.496%209.88zm61.203%208.434l-2.496-4.566h-.946v4.566h-2.74V6.809h4.404c.555%200%201.096.057%201.623.17.528.114%201%20.306%201.42.577.418.271.752.629%201.003%201.073.25.444.375.996.375%201.657%200%20.78-.212%201.436-.636%201.966-.425.531-1.012.91-1.762%201.138l3.018%204.924h-3.263zm-.114-7.979c0-.27-.057-.49-.171-.658a1.172%201.172%200%200%200-.44-.39%201.919%201.919%200%200%200-.604-.187%204.469%204.469%200%200%200-.645-.049H99.24v2.681h1.321c.228%200%20.462-.018.701-.056.24-.038.457-.106.653-.204.196-.097.356-.238.481-.422s.188-.422.188-.715z%22%2F%3E%3Cpath%20fill%3D%22%2368bc71%22%20d%3D%22M12.651%200C8.697%200%203.927.93%200%202.977c0%204.42-.054%2015.433%2012.651%2022.958C25.357%2018.41%2025.303%207.397%2025.303%202.977%2021.376.93%2016.606%200%2012.651%200z%22%2F%3E%3Cpath%20fill%3D%22%2367b279%22%20d%3D%22M12.638%2025.927C-.054%2018.403%200%207.396%200%202.977%203.923.932%208.687.002%2012.638%200v25.927z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.19%2017.305l7.65-10.311c-.56-.45-1.052-.133-1.323.113h-.01l-6.379%206.636-2.403-2.892c-1.147-1.325-2.705-.314-3.07-.047l5.535%206.5%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
}

@media (min-width: 1024px) {

    .website-check__logo {
        display: block;
    }
}

.website-check__title {
        text-align: center;
        margin-bottom: 24px;
        font-size: 2.73rem;
        color: #4d4d4d;
}

@media (min-width: 1024px) {

    .website-check__title {
        font-size: 3.64rem;
    }
}

.website-check__subtitle {
        margin: auto;
        margin-bottom: 32px;
        text-align: center;
        color: #4d4d4d;
        line-height: 26px;
        font-size: 1.45rem;
}

.website-check__form {
        position: relative;
        margin: auto;
}

.website-check__input {
        display: block;
        width: 100%;
        height: 50px;
        padding: 0 50px 0 20px;
        margin-bottom: 4px;
        line-height: 33px;
        min-height: 33px;
        border: 1px solid #a4a4a4;
        border-radius: 6px;
        font-size: 1.3rem;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 700;
}

.website-check__input:focus {
    outline: 0;
    border: 1px solid #4d4d4d;
}

.website-check__input::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.website-check__input:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.website-check__input::placeholder {
    text-transform: uppercase;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.website-check__input:focus::-webkit-input-placeholder {
    color: #d8d8d8;
}

.website-check__input:focus:-ms-input-placeholder {
    color: #d8d8d8;
}

.website-check__input:focus::placeholder {
    color: #d8d8d8;
}

.website-check__input--error {
            border-color: #c23814;
}

.website-check__check-btn {
        position: absolute;
        top: 16px;
        right: 15px;
        width: 17px;
        height: 18px;
        border: 0;
        font-size: 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20250.313%20250.313%22%20style%3D%22enable-background%3Anew%200%200%20250.313%20250.313%3B%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%0A%3Cg%20id%3D%22Search%22%3E%0A%09%3Cpath%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3B%22%20d%3D%22M244.186%2C214.604l-54.379-54.378c-0.289-0.289-0.628-0.491-0.93-0.76%20%20%20c10.7-16.231%2C16.945-35.66%2C16.945-56.554C205.822%2C46.075%2C159.747%2C0%2C102.911%2C0S0%2C46.075%2C0%2C102.911%20%20%20c0%2C56.835%2C46.074%2C102.911%2C102.91%2C102.911c20.895%2C0%2C40.323-6.245%2C56.554-16.945c0.269%2C0.301%2C0.47%2C0.64%2C0.759%2C0.929l54.38%2C54.38%20%20%20c8.169%2C8.168%2C21.413%2C8.168%2C29.583%2C0C252.354%2C236.017%2C252.354%2C222.773%2C244.186%2C214.604z%20M102.911%2C170.146%20%20%20c-37.134%2C0-67.236-30.102-67.236-67.235c0-37.134%2C30.103-67.236%2C67.236-67.236c37.132%2C0%2C67.235%2C30.103%2C67.235%2C67.236%20%20%20C170.146%2C140.044%2C140.043%2C170.146%2C102.911%2C170.146z%22%20fill%3D%22%23e0e0e0%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3Cg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
        cursor: pointer;
        transition: 0.3s ease transform;
}

.website-check__check-btn:hover, .website-check__check-btn:focus {
    outline: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
}

.website-check__btn {
        display: block;
        margin: 26px auto 0;
}

.website-check__btn:hover, .website-check__btn:focus {
    outline: 0;
    background-color: #67b279;
}

.website-check__error {
        font-size: 1.27rem;
        line-height: 1.64rem;
        text-align: center;
        color: #c23814;
        visibility: hidden;
}

@media (min-width: 1024px) {

    .website-check__error {
        text-align: left;
    }
}

.website-check__error--active {
            visibility: visible;
}

.issue {
    height: 100%;
    min-height: calc(100vh - 65px);
    margin: 0;
    padding: 50px 0 30px;
    font-size: 1.4rem;
    color: #4d4d4d;
    line-height: 1.48;
    background: #f3f3f3;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 400;
}

@media (min-width: 768px) {

    .issue {
        min-height: calc(100vh - 230px);
        padding: 70px 0;
    }
}

.issue__container {
        max-width: 900px;
        margin: 0 auto;
        padding: 30px 20px;
        line-height: 1.2;
        background-color: #fff;
        box-shadow: 0 1px 4px rgba(74, 74, 74, .36);
}

@media (min-width: 768px) {

    .issue__container {
        padding: 40px 30px;
    }
}

.issue__row--radio {
            margin-bottom: -10px;
        }

.issue__row--checkbox {
            margin-bottom: 20px
        }

.issue__row--checkbox .issue__input {
    margin-bottom: 0;
}

.issue__row:after, .issue__row:before {
    content: "";
    display: table;
    clear: both;
}

.issue__title {
        margin: 0 0 30px;
        font-size: 2.3rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
}

@media (min-width: 768px) {

    .issue__title {
        margin-bottom: 35px;
        font-size: 2.8rem;
    }
}

.issue__title--submit {
            margin-bottom: 10px;
}

.issue__title--first-step {
            margin-bottom: 10px;
}

.issue__subtitle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 0 30px;
        font-size: 1.6rem;
        text-align: center;
        line-height: 1.5;
        color: #eb9300;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 600;
}

@media (min-width: 768px) {

    .issue__subtitle {
        margin-bottom: 35px;
    }
}

.issue__subtitle .icon--attention {
    display: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (min-width: 768px) {

    .issue__subtitle .icon--attention {
        display: inline-block;
    }
}

.issue__subtitle--submit {
            margin: 30px 0 -10px;
}

.issue__text {
        display: block;
        width: 100%;
        margin: 10px 0;
        color: #4d4d4d;
        line-height: 1.6;
}

.issue__text--bold {
            font-weight: 700;
        }

.issue__text--subtitle {
            margin-top: 20px;
            font-weight: 600;
        }

.issue__text--strong {
            display: inline;
            margin: 0;
            font-weight: 700;
        }

.issue__text--center {
            text-align: center;
        }

.issue__text--loading {
            position: relative;
            margin: 55px 0 20px 0;
            padding-top: 30px;
            font-size: 1.6rem;
            text-align: center
        }

.issue__text--loading .issue__loading {
    top: 0;
}

.issue__text--break {
            word-break: break-all;
        }

@media (min-width: 768px) {

    .issue__text--break {
        word-break: normal;
    }
}

.issue__text--github-account {
            margin: 20px 0 20px;
}

.issue__text--attention {
            display: inline-block;
            width: auto;
            margin: 5px 0 0 0;
            padding: 5px 20px 5px 30px;
            font-size: 1.2rem;
            color: #eb9300;
            background-position: 1px center;
            background-repeat: no-repeat;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20width%3D%2224%22%20height%3D%2224%22%20enable-background%3D%22new%200%200%2048%2048%22%3E%3Cpath%20d%3D%22M44%2024c0%2011.045-8.955%2020-20%2020S4%2035.045%204%2024%2012.955%204%2024%204s20%208.955%2020%2020z%22%20fill%3D%22%23ffca28%22%2F%3E%3Cpath%20d%3D%22M22%2021h4v14h-4V21zM26%2015a2%202%200%201%201-3.999.001A2%202%200%200%201%2026%2015z%22%20fill%3D%22%2337474f%22%2F%3E%3C%2Fsvg%3E");
            background-size: 20px 20px;
}

.issue__text--first-step {
            display: block;
            max-width: 650px;
            margin: 0 auto 30px;
            padding: 0;
            font-size: 1.4rem;
            text-align: center;
            background: none;
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 600;
}

.issue__text--auto-filled {
            color: #67b279;
}

.issue__text--privacy_notice {
            margin-bottom: 7px;
}

.issue__text--screenshots {
            width: 100%;
            margin: 5px 0 10px;
            padding: 0;
            font-size: 1.4rem;
            text-align: left;
            background: none;
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 600;
}

.issue__text--rejected {
            margin: 10px 0 20px;
            text-align: center;
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 600;
}

.issue__link {
        padding: 0 2px;
        color: #67b279;
        text-decoration: underline;
}

.issue__link:hover, .issue__link:focus {
    text-decoration: none;
}

.issue__link--attention {
            color: #c23814;
}

.issue__buttons {
        margin-top: 35px;
        text-align: center;
}

.issue__button {
        display: inline-block;
        vertical-align: middle;
        min-width: 120px;
        margin: 0 5px;
        padding: 10px 12px;
        font-size: 1.4rem;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
        line-height: 1.428571429;
        cursor: pointer;
        background-image: none;
        border: 0;
        outline: 0;
        border-radius: 4px;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        transition: 0.3s ease-in-out color, 0.3s ease-in-out background;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.issue__button--file {
            margin: 5px 0 10px;
        }

.issue__button--green {
            color: #fff;
            background-color: #67b279;
        }

.issue__button--green:focus, .issue__button--green:focus:active {
            background-color: #67b279;
        }

.issue__button:disabled {
    color: #000;
    background-color: #d8d8d8;
}

.issue__input-wrapper {
        position: relative;
}

.issue__input {
        display: block;
        width: 100%;
        min-height: 34px;
        margin: 10px 0;
        padding: 7px 15px;
        font-size: 1.4rem;
        line-height: 1.42857143;
        color: #4d4d4d;
        background-color: #fff;
        background-image: none;
        border: 1px solid #d8d8d8;
        border-radius: 4px;
        transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

.issue__input:focus {
    outline: none;
    border-color: #67b279;
}

.issue__input:disabled {
    border-color: #d8d8d8;
    background-color: #f3f3f3;
}

.issue__input--empty {
            border-color: #d8d8d8;
}

.issue__input--valid {
            border-color: #67b279;
}

.issue__input--invalid {
            border-color: #c23814;
}

.issue__input--invalid:focus {
    border-color: #c23814;
}

.issue__input--textarea {
            height: 100px;
            resize: vertical;
}

.issue__input--userscripts {
            height: 80px;
            resize: vertical;
}

.issue__loading {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 26px;
        margin: -13px 0 0 -13px;
        background-size: 26px 26px;
        text-indent: -9999em;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2047.6%2047.6%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20opacity%3D%22.235%22%20fill%3D%22%23979797%22%20d%3D%22M44.4%2011.9l-5.2%203c1.5%202.6%202.4%205.6%202.4%208.9%200%209.8-8%2017.8-17.8%2017.8-6.6%200-12.3-3.6-15.4-8.9l-5.2%203C7.3%2042.8%2015%2047.6%2023.8%2047.6c13.1%200%2023.8-10.7%2023.8-23.8%200-4.3-1.2-8.4-3.2-11.9z%22%2F%3E%3Cpath%20fill%3D%22%2366b574%22%20d%3D%22M3.2%2035.7C0%2030.2-.8%2023.8.8%2017.6%202.5%2011.5%206.4%206.4%2011.9%203.2%2017.4%200%2023.8-.8%2030%20.8c6.1%201.6%2011.3%205.6%2014.4%2011.1l-5.2%203c-2.4-4.1-6.2-7.1-10.8-8.3C23.8%205.4%2019%206%2014.9%208.4s-7.1%206.2-8.3%2010.8c-1.2%204.6-.6%209.4%201.8%2013.5l-5.2%203z%22%2F%3E%3C%2Fsvg%3E");
        -webkit-animation: eye 2s linear infinite;
                animation: eye 2s linear infinite;
}

.issue__captcha {
        max-width: 305px;
        margin: 25px auto 0;
}

.issue__filters {
        margin-bottom: 5px;
}

.issue__filters .issue__list-selection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.issue__filters .issue__list-entries {
    margin-bottom: 10px;
}

.issue__markdown {
        line-height: 1.7;
}

.issue__markdown--result {
            margin-bottom: 20px;
            padding: 15px 0 10px;
            border-bottom: 3px solid #d8d8d8;
            border-top: 3px solid #d8d8d8;
        }

.issue__markdown h2, .issue__markdown h3, .issue__markdown p {
            margin: 10px 0;
        }

.issue .list {
    margin: 10px 0;
    padding-left: 30px;
    counter-reset: list;
}

.issue .list__item {
            position: relative;
}

.issue .list__item:before {
            counter-increment: list;
            content: counter(list)".";
            position: absolute;
            top: 3px;
            left: -15px;
            margin-right: 10px;
            font-size: 15.399px;
            font-size: 1.4rem;
}

.issue .tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 300px;
    text-align: center;
    content: "";
    border-radius: 3px;
    padding: 10px 15px;
    line-height: 1.428571429;
    color: #fff;
    background-color: #4d4d4d;
    transition: 0.3s ease opacity;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 400;
}

.issue .tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4d4d4d;
    transition: 0.3s ease opacity;
}

.issue .tooltip--error {
            background-color: #c23814;
}

.issue .tooltip--error .issue__text {
    margin: 0;
    color: #fff;
}

.issue .tooltip--error .issue__link {
    color: #fff;
}

.issue .tooltip--error:after {
    border-top: 8px solid #c23814;
}

.issue .tooltip--visible {
            opacity: 1;
            visibility: visible;
}

.issue .tooltip--visible:after {
    opacity: 1;
    visibility: visible;
}

.issue .select {
    margin: 10px 0;
}

.issue .select.has-value .Select-control {
    border-color: #67b279;
}

.issue .select.is-focused:not(.is-open) > .Select-control {
    border-color: #67b279;
    box-shadow: none;
}

.issue .radio-wrapper {
    display: block;
}

.issue .radio {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 15px 0;
    cursor: pointer;
}

.issue .radio__input {
            display: none;
}

.issue .radio__input:checked + .radio__text:after {
    -webkit-transform: scale(1);
            transform: scale(1);
}

.issue .radio__text {
            display: inline-block;
            vertical-align: middle;
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
}

.issue .radio__text:before, .issue .radio__text:after {
    box-sizing: border-box;
}

.issue .radio__text:before {
    content: "";
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    min-width: 16px;
    height: 16px;
    margin-right: 10px;
    background-color: rgba(151, 151, 151, .3);
    border-radius: 50%;
}

.issue .radio__text:after {
    content: "";
    -webkit-transform: scale(0);
            transform: scale(0);
    position: absolute;
    bottom: 4px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #67b279;
    border-radius: 50%;
    transition: 0.3s ease-in-out transform;
}

.issue .checkbox {
    position: relative;
    display: block;
}

.issue .checkbox__input {
            display: none;
}

.issue .checkbox__input:checked + .checkbox__text:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012.3%209.2%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20d%3D%22M11.8%200.5L5.3%208.5%200.5%204.2%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

.issue .checkbox__text {
            position: relative;
            display: inline-block;
            vertical-align: bottom;
            font-size: 1.3rem;
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            cursor: pointer;
}

.issue .checkbox__text:before {
    content: "";
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #d8d8d8;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px 10px;
    border-radius: 3px;
}

.issue .filter {
    margin: 5px 5px 0 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1rem;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    white-space: nowrap;
}

@media (min-width: 768px) {

    .issue .filter {
        margin: 10px 10px 0 0;
        font-size: 1.3rem;
    }

    .issue .filter:last-child {
        margin-right: 0;
    }
}

.issue .filter__title {
            display: inline-block;
            vertical-align: middle;
            padding: 6px 10px 5px;
            white-space: nowrap;
}

.issue .filter__remove {
            display: inline-block;
            vertical-align: middle;
            padding: 6px 15px 5px;
            text-indent: -9999em;
            border-left: 1px solid #d8d8d8;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            cursor: pointer;
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020.5%2020.5%22%20style%3D%22%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M11.3%2010.3l9-9c.3-.3.3-.8%200-1.1s-.8-.3-1.1%200l-9%209-9-9C1-.1.5-.1.2.2s-.3.8%200%201.1l9%209-9%209c-.3.3-.3.8%200%201.1.1.1.3.2.5.2s.4-.1.5-.2l9-9%209%209c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8%200-1.1l-8.9-9z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 10px;
}

.issue .filter__remove:hover {
    background-color: #f3f3f3;
}

.issue .form-group--file {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
}

@media (min-width: 768px) {

    .issue .form-group--file {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.issue .form-group--file .issue__input {
    min-height: 40px;
    margin: 0;
    padding: 9px 12px;
}

.issue .form-group--file .issue__input-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0 10px 0;
}

@media (min-width: 768px) {

    .issue .form-group--file .issue__input-wrapper {
        margin: 0 10px 0 0;
    }
}

.issue .form-group--file .issue__button--file {
    margin: 0;
    min-width: 100px;
}

.issue .form-group--drop {
            position: relative;
            width: 100%;
            margin-top: 15px;
            padding: 20px 0;
            font-size: 1.4rem;
            text-align: center;
            border: 2px dashed #d8d8d8;
            border-radius: 4px;
            background: #fff;
            cursor: pointer;
            opacity: 0.8;
            font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
            font-weight: 600;
}

.issue .form-group--drop:before {
    content: "";
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2050%2050%22%20version%3D%221.1%22%20width%3D%2250%22%20height%3D%2250%22%20style%3D%22%22%3E%3Cg%20id%3D%22surface1%22%3E%3Cpath%20d%3D%22M%2029%204.53125%20C%2023.785156%204.53125%2019.371094%207.652344%2017.25%2012.0625%20C%2016.121094%2011.285156%2014.8125%2010.71875%2013.34375%2010.71875%20C%209.617188%2010.71875%206.644531%2013.667969%206.4375%2017.34375%20C%202.710938%2018.6875%200%2022.164063%200%2026.34375%20C%200%2031.671875%204.328125%2036%209.65625%2036%20L%2018%2036%20C%2018.359375%2036.003906%2018.695313%2035.816406%2018.878906%2035.503906%20C%2019.058594%2035.191406%2019.058594%2034.808594%2018.878906%2034.496094%20C%2018.695313%2034.183594%2018.359375%2033.996094%2018%2034%20L%209.65625%2034%20C%205.40625%2034%202%2030.589844%202%2026.34375%20C%202%2022.808594%204.382813%2019.832031%207.625%2018.9375%20C%208.066406%2018.808594%208.363281%2018.394531%208.34375%2017.9375%20C%208.339844%2017.796875%208.34375%2017.726563%208.34375%2017.71875%20C%208.34375%2014.941406%2010.566406%2012.71875%2013.34375%2012.71875%20C%2014.734375%2012.71875%2016%2013.277344%2016.90625%2014.1875%20C%2017.144531%2014.417969%2017.484375%2014.519531%2017.808594%2014.449219%20C%2018.136719%2014.378906%2018.40625%2014.152344%2018.53125%2013.84375%20C%2020.105469%209.59375%2024.191406%206.53125%2029%206.53125%20C%2035.171875%206.53125%2040.15625%2011.519531%2040.15625%2017.6875%20C%2040.15625%2018.144531%2040.121094%2018.59375%2040.0625%2019.0625%20C%2040.027344%2019.34375%2040.113281%2019.625%2040.296875%2019.839844%20C%2040.480469%2020.054688%2040.75%2020.179688%2041.03125%2020.1875%20L%2041.09375%2020.1875%20C%2044.917969%2020.1875%2048%2023.269531%2048%2027.09375%20C%2048%2030.917969%2044.917969%2034%2041.09375%2034%20L%2032%2034%20C%2031.640625%2033.996094%2031.304688%2034.183594%2031.121094%2034.496094%20C%2030.941406%2034.808594%2030.941406%2035.191406%2031.121094%2035.503906%20C%2031.304688%2035.816406%2031.640625%2036.003906%2032%2036%20L%2041.09375%2036%20C%2046%2036%2050%2032%2050%2027.09375%20C%2050%2022.542969%2046.507813%2018.925781%2042.09375%2018.40625%20C%2042.109375%2018.164063%2042.15625%2017.9375%2042.15625%2017.6875%20C%2042.15625%2010.4375%2036.25%204.53125%2029%204.53125%20Z%20M%2025%2021.59375%20L%2024.28125%2022.28125%20L%2019.28125%2027.28125%20C%2018.882813%2027.679688%2018.882813%2028.320313%2019.28125%2028.71875%20C%2019.679688%2029.117188%2020.320313%2029.117188%2020.71875%2028.71875%20L%2024%2025.4375%20L%2024%2043%20C%2023.996094%2043.359375%2024.183594%2043.695313%2024.496094%2043.878906%20C%2024.808594%2044.058594%2025.191406%2044.058594%2025.503906%2043.878906%20C%2025.816406%2043.695313%2026.003906%2043.359375%2026%2043%20L%2026%2025.4375%20L%2029.28125%2028.71875%20C%2029.679688%2029.117188%2030.320313%2029.117188%2030.71875%2028.71875%20C%2031.117188%2028.320313%2031.117188%2027.679688%2030.71875%2027.28125%20L%2025.71875%2022.28125%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center;
    background-size: 25px;
}

.issue .form-group--drop.dragover, .issue .form-group--drop:hover {
    border-color: #67b279;
}

.issue .form-group--drop.dragover {
    opacity: 1;
}

.issue .screenshot {
    position: relative;
    display: inline-block;
    vertical-align: top;
    min-width: 68px;
    min-height: 68px;
    margin: 30px 15px 0 0;
    padding: 20px;
    border: 2px dashed #d8d8d8;
}

.issue .screenshot:last-child {
    margin-right: 0;
}

.issue .screenshot__image {
            position: relative;
            display: block;
            max-width: 100%;
            margin: 0 auto;
}

@media (min-width: 768px) {

    .issue .screenshot__image {
        max-width: 220px;
    }
}

.issue .screenshot__remove {
            position: absolute;
            top: -8px;
            right: -9px;
            width: 25px;
            height: 25px;
            padding: 3px 0;
            text-align: center;
            text-indent: -9999em;
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 8px rgba(74, 74, 74, .46);
            cursor: pointer;
            background-color: #f3f3f3;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020.5%2020.5%22%20style%3D%22%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M11.3%2010.3l9-9c.3-.3.3-.8%200-1.1s-.8-.3-1.1%200l-9%209-9-9C1-.1.5-.1.2.2s-.3.8%200%201.1l9%209-9%209c-.3.3-.3.8%200%201.1.1.1.3.2.5.2s.4-.1.5-.2l9-9%209%209c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8%200-1.1l-8.9-9z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 11px;
}

.issue .screenshot__error {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 26px;
            height: 26px;
            margin: -13px 0 0 -13px;
            background-size: 26px 26px;
            background-color: #fff;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%20enable-background%3D%22new%200%200%20512%20512%22%20style%3D%22%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M362.087%2C164.017H149.915c-6.62%2C0-11.988%2C5.367-11.988%2C11.988c0%2C6.621%2C5.367%2C11.988%2C11.988%2C11.988h212.172%20c6.621%2C0%2C11.988-5.368%2C11.988-11.988C374.075%2C169.384%2C368.708%2C164.017%2C362.087%2C164.017z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M362.087%2C236.355H149.915c-6.62%2C0-11.988%2C5.368-11.988%2C11.988c0%2C6.621%2C5.367%2C11.988%2C11.988%2C11.988h212.172%20c6.621%2C0%2C11.988-5.368%2C11.988-11.988S368.708%2C236.355%2C362.087%2C236.355z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M447.937%2C103.439c-0.082-3.008-1.276-5.944-3.489-8.158l-91.69-91.69c-2.176-2.214-5.2-3.592-8.55-3.592H89.285%20c-13.92%2C0-25.247%2C11.325-25.247%2C25.248l0.005%2C299.353c0%2C0.106%2C0.013%2C0.207%2C0.016%2C0.313c0.164%2C6.065%2C3.303%2C11.562%2C8.484%2C14.779%20l41.352%2C25.667c13.649%2C8.469%2C30.605%2C8.469%2C44.252-0.001l28.381-17.614c5.849-3.631%2C13.116-3.63%2C18.965-0.001l28.381%2C17.615%20c6.824%2C4.237%2C14.474%2C6.355%2C22.126%2C6.354c7.651%2C0%2C15.304-2.118%2C22.126-6.354l28.381-17.615c5.849-3.629%2C13.116-3.629%2C18.965%2C0%20l28.381%2C17.615c13.645%2C8.472%2C30.6%2C8.472%2C44.252%2C0l41.355-25.667c5.179-3.215%2C8.317-8.713%2C8.482-14.777%20c0.002-0.104%2C0.016-0.207%2C0.016-0.313l0.005-220.845C447.964%2C103.64%2C447.946%2C103.543%2C447.937%2C103.439z%20M356.193%2C40.935h0.001%20l50.834%2C50.834h-49.573c-0.695%2C0-1.262-0.567-1.262-1.262V40.935z%20M423.983%2C321.08l-38.52%2C23.908%20c-5.849%2C3.631-13.116%2C3.63-18.965%2C0.001l-28.381-17.616c-13.649-8.469-30.605-8.468-44.252%2C0.001l-28.381%2C17.615%20c-5.849%2C3.629-13.116%2C3.629-18.965%2C0l-28.381-17.615c-13.646-8.472-30.602-8.472-44.252%2C0l-28.381%2C17.615%20c-5.849%2C3.629-13.116%2C3.629-18.965%2C0l-38.52-23.909L88.014%2C25.248c0-0.701%2C0.571-1.272%2C1.271-1.272h242.933v66.532%20c0%2C13.916%2C11.321%2C25.238%2C25.238%2C25.238h66.532L423.983%2C321.08z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M447.958%2C395.948c0.001-0.031-0.004-0.061-0.004-0.092s0.005-0.061%2C0.005-0.092c0-6.521-3.541-12.544-9.242-15.714%20c-5.7-3.168-12.682-3.003-18.223%2C0.436l-35.44%2C21.994c-5.598%2C3.473-12.554%2C3.473-18.15%2C0.001l-29.197-18.121%20c-13.397-8.317-30.042-8.317-43.437%2C0l-29.197%2C18.12c-5.598%2C3.473-12.553%2C3.473-18.151%2C0.001l-29.197-18.121%20c-13.396-8.315-30.042-8.315-43.437%2C0l-29.195%2C18.12c-5.598%2C3.473-12.554%2C3.474-18.15%2C0l-35.439-21.994%20c-5.541-3.438-12.523-3.608-18.224-0.436c-5.7%2C3.171-9.242%2C9.192-9.242%2C15.714c0%2C0.031%2C0.005%2C0.061%2C0.005%2C0.092%20c0%2C0.031-0.005%2C0.061-0.005%2C0.092l-0.005%2C90.804c0%2C13.922%2C11.325%2C25.248%2C25.247%2C25.248h333.434%20c13.92%2C0%2C25.247-11.325%2C25.247-25.249L447.958%2C395.948z%20M422.717%2C488.024H89.285c-0.7%2C0-1.271-0.571-1.271-1.271l0.004-80.215%20l26.285%2C16.314c13.398%2C8.312%2C30.042%2C8.312%2C43.436-0.001l29.195-18.121c5.597-3.474%2C12.551-3.473%2C18.151%2C0l29.195%2C18.122%20c6.699%2C4.156%2C14.209%2C6.235%2C21.719%2C6.235c7.509%2C0%2C15.02-2.079%2C21.719-6.236l29.195-18.121c5.597-3.474%2C12.551-3.475%2C18.151%2C0%20l29.197%2C18.122c13.4%2C8.314%2C30.042%2C8.312%2C43.436%2C0l26.285-16.314l0.004%2C80.214C423.988%2C487.453%2C423.418%2C488.024%2C422.717%2C488.024z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.issue .progress {
    margin-top: 25px;
    text-align: center;
}

.issue .progress__wrapper {
            height: 5px;
            margin: 20px -20px -30px -20px;
            overflow: hidden;
            background-color: #f3f3f3;
}

@media (min-width: 768px) {

    .issue .progress__wrapper {
        margin: 20px -30px -40px -30px;
    }
}

.issue .progress__inner {
            float: left;
            width: 0;
            height: 100%;
            font-size: 1.2rem;
            line-height: 20px;
            color: #fff;
            text-align: center;
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
            transition: width 0.6s ease;
            background: linear-gradient(45deg, rgba(99, 125, 120, 1) 0%, rgba(88, 177, 101, 1) 100%);
}

.issue .progress__step {
            font-size: 1.3rem;
}

.issue .summary {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.issue .summary__row {
            display: table-row;
            border-top: 1px solid #f3f3f3;
}

.issue .summary__cell {
            display: table-cell;
            vertical-align: top;
            padding: 12px 10px;
            word-break: break-all;
}

.issue .summary__cell:first-child {
    min-width: 140px;
    font-weight: 600;
    word-break: normal;
}

.issue .summary__cell__submit_list {
                padding: 0 0 12px 0;
                list-style-type: none;
                margin: 0;
}

.issue .summary__cell__submit_list:last-child {
    padding: 0;
}

.issue .Select-placeholder, .issue .Select--single > .Select-control .Select-value {
    padding-left: 15px;
    padding-right: 15px;
}

.issue .Select-input {
    padding-left: 15px;
    padding-right: 15px;
}

.issue .Select-menu {
    max-height: 198px;
}

@media (min-width: 768px) {

    .issue .Select-menu {
        max-height: 298px;
    }
}

.issue .Select-menu-outer {
    max-height: 200px;
}

@media (min-width: 768px) {

    .issue .Select-menu-outer {
        max-height: 300px;
    }
}

.issue .Select-menu-outer .Select-option {
    padding-left: 23px;
}

.issue .Select-menu-outer .Select-option.is-disabled {
    cursor: default;
    padding-left: 13px;
    color: #4d4d4d;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 700;
}

.alertify-logs .error {
    display: block;
    min-height: 100%;
    background-color: #c23814;
}

.flash-wrapper {
    position: relative;
}

.flash-wrapper-none-click {
        pointer-events: none;
    }

.flash-wrapper--license {
        padding-top: 0;
    }

.flash {
    display: block;
    height: 80px;
    color: inherit;
    background-color: #fff;
    font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    font-weight: 600;
    text-decoration: none;

}

.flash__wrapper {
        width: 100%;
        height: 100%;
    }

.flash__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        padding: 0;
    }

.flash__discount {
        display: none;
    }

.flash__ico {
        display: block;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }

.flash__ico--left {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: right center;
        }

.flash__ico--right {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: left;
        }

.flash__text-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 40px;
        line-height: 42px;
        color: #fff;
        font-weight: normal;
    }

@media (max-width: 1023px) {

    .flash__text-in {
        font-size: 28px;
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .wrapper--flash .product, .wrapper--flash .article, .wrapper--flash .download, .wrapper--flash .uninstall, .wrapper--flash .cabinet, .wrapper--flash .purchase, .wrapper--flash .header + .flash-wrapper, .wrapper--flash .header + .purchase.purchase--renew {
        padding-top: 0;
    }

    .wrapper--flash .header + .purchase {
        padding-top: 50px;
    }

    .flash-wrapper {
        padding-top: 50px;
    }
}

.sticky-bar {
    position: absolute;
    top: 100%;
    width: 100%;
    transition: 0.3s ease all;
    height: 60px;
    padding: 10px 0;
    background-color: #ffffff;
    box-shadow: inset 0 1px 0 0 rgba(74, 74, 74, .20);
}

.sticky-bar__in {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

@media (min-width: 768px) {

    .sticky-bar--article.sticky-bar--hide {
        height: 80px;
        opacity: 1;
    }
}

@media (min-width: 768px) {

    .sticky-bar--mobile-only {
        display: none;
    }
}

@media (min-width: 768px) {

    .sticky-bar {
        padding-right: 40px;
    }
}

.sticky-bar--cookie {
        height: auto;
        padding: 8px 0;
        opacity: 0.85;
}

@media (min-width: 768px) {

    .sticky-bar--cookie {
        height: 43px;
    }
}

.sticky-bar--fixed {
        position: fixed;
        z-index: 9;
        bottom: 0;
        top: auto;
}

.sticky-bar--hide {
        height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
}

.sticky-bar--closed {
        display: none;
}

.sticky-bar__close {
        position: absolute;
        top: calc(50% - 6px);
        right: 0;
        width: 14px;
        height: 14px;
        opacity: 0.3;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020.5%2020.5%22%20style%3D%22%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M11.3%2010.3l9-9c.3-.3.3-.8%200-1.1s-.8-.3-1.1%200l-9%209-9-9C1-.1.5-.1.2.2s-.3.8%200%201.1l9%209-9%209c-.3.3-.3.8%200%201.1.1.1.3.2.5.2s.4-.1.5-.2l9-9%209%209c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8%200-1.1l-8.9-9z%22%2F%3E%3C%2Fsvg%3E");
        cursor: pointer;
        transition: 0.3s ease opacity;
}

.sticky-bar__close:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {

    .sticky-bar__close {
        right: 20px;
    }
}

.sticky-bar__in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
}

@media (min-width: 768px) {

    .sticky-bar__in {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {

    .sticky-bar__in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

.sticky-bar__up {
        position: relative;
        margin-right: auto;
        padding-left: 25px;
        text-transform: uppercase;
        font-size: 1.4rem;
        color: #67b279;
        cursor: pointer;
        transition: 0.3s ease color;
        overflow: visible;
        text-decoration: none;
}

.sticky-bar__up:hover {
    text-decoration: underline;
}

.sticky-bar__up {
    border: 0;
    background-color: transparent;
    outline: none;
    font-family: inherit;
}

.sticky-bar__up:after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 11px;
    height: 16px;
    background-size: cover;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22%2367B279%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20transform%3D%22matrix(0%20-1%20-1%200%2015%2015)%22%3E%3Cpath%20transform%3D%22rotate(90%207%203.5)%22%20d%3D%22M3.5%203.167L10.5%20-3.5%2010.5%2010.5%22%2F%3E%3Cpath%20transform%3D%22matrix(0%20-1%20-1%200%2017.5%2017.5)%22%20d%3D%22M3.5%2010.167L10.5%203.5%2010.5%2017.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    transition: 0.3s ease transform;
}

.sticky-bar__up:hover {
    color: #67b279;
}

.sticky-bar__up:hover:after {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}

@media (max-width: 767px) {

    .sticky-bar__up {
        display: none;
    }
}

.sticky-bar__download {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.sticky-bar__download-in {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }

@media (max-width: 767px) {

    .sticky-bar__download {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.sticky-bar__label {
        font-size: 1.6rem;
        color: rgba(74, 74, 74, .36);
        padding-right: 20px;
}

@media (max-width: 767px) {

    .sticky-bar__label {
        display: none;
    }
}

.sticky-bar__btn {
        min-width: 0;
        line-height: 40px;
        padding: 0 35px 0 50px;
        font-size: 1.5rem;
}

.sticky-bar__btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 9px);
    left: 23px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%22100%25%22%20width%3D%22100%25%22%3E%3Cg%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M16.531%2010.414a.75.75%200%200%201%201.019%201.096l-.081.076L12%2015.96l-5.469-4.374a.75.75%200%200%201%20.846-1.235l.092.063L12%2014.04l4.531-3.625zM18%2018.25a.75.75%200%200%201%20.11%201.492l-.11.008H6a.75.75%200%200%201-.11-1.492L6%2018.25h12z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.75%2014a.75.75%200%200%201-1.492.11L11.25%2014V4a.75.75%200%200%201%201.492-.11l.008.11v10z%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: cover;
}

.sticky-bar__btn:hover + .tooltip-license {
    visibility: visible;
    opacity: 1;
}

.sticky-bar__terms {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}

.sticky-bar__text {
        margin-right: 10px;
        font-size: 1rem;
        line-height: 1.3;
        color: #131313;
}

@media (min-width: 768px) {

    .sticky-bar__text {
        margin-right: 20px;
        font-size: 1.2rem;
        line-height: 1.4;
        text-align: left;
    }
}

.sticky-bar__accept {
        padding: 4px 10px;
        font-size: 1rem;
        text-transform: none;
        font-family: "Akkurat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
        font-weight: 400;
}

@media (min-width: 768px) {

    .sticky-bar__accept {
        padding: 4px 20px;
        font-size: 1.2rem;
    }
}
