*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background: transparent;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #111;
}

body {
    font-family: 'Gilroy', sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: #111;
    overflow-x: hidden;
}

body.lock {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #000;
    transition: .25s all;
}

img {
    object-fit: cover;
}

input,
textarea {
    border: 0;
    background: 0;
    font-family: inherit;
    font-size: 14px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 0, 0, .6);
}

.container {
    width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    background: linear-gradient(to right, #6382F5 22.62%, #35488F 100%);
    border-radius: 15px;
    width: 220px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    padding: 20px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    background: #6382F5;
    opacity: 0;
    transition: .25s all;
}

.btn:hover::before {
    opacity: 1;
}

.btn.black {
    background: #6382F5;
    color: #fff;
}

.btn.gray::before,
.btn.gray2::before,
.btn.black::before {
    display: none;
}
.btn.black:hover {
    background: #4e68c6;
}

.btn.gray {
    background: rgba(0, 0, 0, .02);
    color: #000;
}
.btn.gray:hover {
    background: #000;
    color: #fff;
}

.btn.gray2 {
    background: #f5f5f5;
    color: #000;
}
.btn.gray2:hover {
    background: #000;
    color: #fff;
}

.btn.icon-left .icon {
    margin-right: 18px;
}

.btn.icon-right .icon {
    margin-left: auto;
}

.btn span {
    position: relative;
    font-size: 16px;
}

.carousel {
    display: flex;
    align-items: center;
    margin-right: -30px;
}

.carousel .block-wrapper {
    width: 25%;
    padding-right: 30px;
}

.carousel .block-wrapper .block {
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.carousel .block-wrapper .block.hide {
    opacity: 0;
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: black;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: -40px;
    left: -30px;
    background: #fff;
    font-size: 12px;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip .tooltiptext .title {
    font-weight: 600;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip.red .tooltiptext {
    background: rgba(251, 215, 219, 1.0);
    color: #EA384D;
/*    left: -37px;*/
}
.tooltip.red .tooltiptext::after {
    border-color: rgba(251, 215, 219, 1.0) transparent transparent transparent;
}

.tooltip.green .tooltiptext {
    background: rgba(216, 240, 228, 1.0);
    color: #3db37a;
    left: -37px;
}
.tooltip.green .tooltiptext::after {
    border-color: rgba(216, 240, 228, 1.0) transparent transparent transparent;
}

.tooltip.orange .tooltiptext {
    background: rgba(255, 233, 206, 1.0);
    color: #ffa22e;
/*    left: -37px;*/
}
.tooltip.orange .tooltiptext::after {
    border-color: rgba(255, 233, 206, 1.0) transparent transparent transparent;
}

.modal-wrapper {
    position: fixed;
    top: -10000%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: .45s opacity;
}

.modal2-wrapper {
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .45s opacity;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-width: 550px;
    display: none;
}

.modal .pre-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}
.modal .pre-text {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}
.modal .pre-title2 {
    display: inline-block;
    position: relative;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal .radio-boxes {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.modal .radio-boxes .radio-box {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .25s all;
}

.modal .radio-boxes .radio-box .radio {
    margin-left: auto;
    height: 28px;
    width: 28px;
    border: 7px solid rgba(0, 0, 0, 0);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .radio-boxes .radio-box .radio span {
    height: 14px;
    width: 14px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}

.modal .radio-boxes .radio-box.active,
.modal .radio-boxes .radio-box:hover {
    background: rgba(0, 0, 0, 0.05);
}

.modal .radio-boxes .radio-box.active .radio {
    border-color: #3DB37A;
}

.modal .radio-boxes .radio-box.active .radio span {
    opacity: 1;
}

.modal.cash-up {
    background: 0;
    border-radius: 0;
    padding: 0;
}

.modal.cash-up .header {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    color: #000;
}

.modal.cash-up .header .avatar {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.modal.cash-up .header span {
    text-align: right;
    margin-left: auto;
    margin-right: 10px;
}

.modal.cash-up .body {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.modal.cash-up .body .go-up {
    display: flex;
    align-items: center;
}

.inputtext {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    height: 60px;
    padding: 20px;
    text-align: left;
    width: 100%;
    margin-right: 15px;
}
.inputtext::placeholder {
    color: rgba(0, 0, 0, .6);
}

.modal.cash-up .body .go-up input {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    height: 60px;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-right: 15px;
}

.modal.cash-up .body .go-up input::placeholder {
    color: rgba(0, 0, 0, .6);
}

.modal.cash-up .body .go-up .btn.black {
    height: 60px;
    background: #3DB37A;
    border-radius: 12px;
    font-size: 16px;
}

.modal.cash-up .body .go-up .btn.black:hover {
    background: #329565;
}

.modal-wrapper.show {
    top: 0;
    opacity: 1;
}

.modal.show {
    display: block;
}

header {
    height: 80px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    background: #fff;
}

header .navbar {
    display: flex;
    align-items: center;
}

header .navbar .logo,
footer .content .logo {
    display: flex;
    align-items: center;
}

header .navbar .logo img,
footer .content .logo img {
    margin-right: 7px;
}

header .navbar .logo .info,
footer .content .logo .info {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color: #fff;
}

header .navbar .logo .info span,
footer .content .logo .info span {
    font-weight: 500;
    font-size: 14px;
}

header .navbar .logo .info .name,
footer .content .logo .info .name {
    font-weight: 700;
    font-size: 16px;
}

header .navbar .navbar-menu {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

header .navbar .navbar-menu a {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;

    font-size: 18px;
    font-weight: 600;
}

header .navbar .navbar-menu a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    height: 6px;
    width: 100px;
    opacity: 0;
    transition: .25s all;
    background: linear-gradient(to right, #6382F5 22.62%, #35488F 100%);
    border-radius: 39px;
}

header .navbar .navbar-menu a.active,
header .navbar .navbar-menu a:hover {
    color: #fff;
}

header .navbar .navbar-menu a.active {
    font-weight: 600;
}

header .navbar .navbar-menu a.active::before,
header .navbar .navbar-menu a:hover::before {
    opacity: 1;
    width: 50px;
}

#header-wrapper {
    padding: 50px 0;
    background: #000;
}

#header-wrapper .content {
    display: flex;
}

#header-wrapper .content .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#header-wrapper .content .block.left {
    width: 35%;
    position: relative;
}

#header-wrapper .content .block.left::before {
    content: '';
    position: absolute;
    height: 320px;
    width: 320px;
    background: #6382F5;
    opacity: 0.2;
    filter: blur(120px);
    left: -30%;
    top: 10%;
}

#header-wrapper .content .block.left::after {
    content: '';
    position: absolute;
    height: 320px;
    width: 320px;
    background: #6382F5;
    opacity: 0.2;
    filter: blur(120px);
    left: 60%;
    top: 30%;
}

#header-wrapper .content .block.left .subject {
    background: rgba(99, 130, 245, .2);
    border-radius: 10px;
    color: #6382F5;
    padding: 15px 25px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

#header-wrapper .content .block.left h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
}

#header-wrapper .content .block.left .description {
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

#header-wrapper .content .block.left .more-info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

#header-wrapper .content .block.left .more-info .link {
    display: flex;
    align-items: center;
    margin-left: 30px;
    color: rgba(99, 130, 245, .7);
    font-size: 14px;
}

#header-wrapper .content .block.left .more-info .link:hover {
    color: #6382f5;
}

#header-wrapper .content .block.left .more-info .link .icon {
    margin-right: 10px;
}

#header-wrapper .content .block.right {
    width: 65%;
    padding-left: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#header-wrapper .content .block.right .block-inner {
    position: relative;
    border-radius: 10px;
}

#header-wrapper .content .block.right .block-inner.gray:nth-child(1) {
    background-image: url(/static/media/block-sea-of-thieves-bg.22bec301a4bb1c4767d7.png);
    height: 530px;
    width: 220px;
}

#header-wrapper .content .block.right .block-inner.gray:nth-child(1) img {
    position: absolute;
    bottom: 0;
    left: -116%;
}

#header-wrapper .content .block.right .block-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

#header-wrapper .content .block.right .block-wrapper .block-inner.gradient {
    width: 360px;
    height: 120px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 35px;
    background: linear-gradient(90deg, #6382F5 -8.56%, #35488F 106.35%);
    color: #fff;
}

#header-wrapper .content .block.right .block-wrapper .block-inner .icon-wrapper {
    height: 46px;
    width: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

#header-wrapper .content .block.right .block-wrapper .block-inner .more-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

#header-wrapper .content .block.right .block-wrapper .block-inner .more-info b {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

#header-wrapper .content .block.right .block-wrapper .block-inner.gray:nth-child(2) {
    background-image: url(/static/media/block-gtav-bg.661f30ec0a2a5c8882a3.png);
    width: 360px;
    height: 400px;
}

#header-wrapper .content .block.right .block-wrapper .block-inner.gray:nth-child(2) img {
    position: absolute;
    bottom: 0;
    right: -35%;
}

#popular {
    padding-top: 40px;
    position: relative;
    background: #111111FF;
}

#popular .content .title {
    font-family: 'Neometric', sans-serif;
    --margin-bottom: 55px;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

#popular .content .block {
    padding: 35px 30px;
}

#popular .content .block .user {
    display: flex;
    align-items: center;
}

#popular .content .block .user img {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    margin-right: 13px;
    object-fit: cover;
}

#popular .content .block .user .name {
    font-size: 16px;
    font-weight: 700;
}

#popular .content .block .step-circle {
    height: 10px;
    width: 10px;
    background: #000;
    border-radius: 50%;
    margin: 40px 0;
    position: relative;
    z-index: 5;
}

#popular .content .block .review {
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
    font-weight: 400;
}

#popular .content .block-wrapper.active .block {
    transition:  all 0.5s ease;
    background: #6382F5;
    color: #fff;
}
#popular .content .block-wrapper.active .block .step-circle {
    background: #fff;
}
#popular .content .block-wrapper.active .block .review {
    color: #fff;
}

#popular .content .carousel .arrows-action {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    left: 0;
    margin-top: -62px;
}

#popular .content .carousel .arrows-action .arrow {
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: #F8F8FC;
    z-index: 99;
}

#popular .content .carousel .arrows-action .arrow .icon {
    background: rgba(0, 0, 0, 0.4);
}

#popular .content .carousel .arrows-action .arrow.left {
    left: 200px;
}

#popular .content .carousel .arrows-action .arrow.right {
    right: 200px;
}

#popular .content .carousel .arrows-action .arrow.active {
    border-color: #6382F5;
    cursor: pointer;
}

#popular .content .carousel .arrows-action .arrow.active .icon {
    background: #6382F5;
}

#popular .content .carousel .line-step {
    height: 1px;
    width: 100%;
    background: rgb(0, 0, 0, .05);
    display: flex;
    align-items: center;
}

#popular .content .carousel .line-step .step {
    display: flex;
    align-items: center;
    width: 17%;
    justify-content: center;
    position: relative;
    height: 1px;
}

#popular .content .carousel .line-step .step:nth-child(2) {
    width: 17.6%;
}

#popular .content .carousel .line-step .step:nth-child(3) {
    width: 18%;
}

#popular .content .carousel .line-step .step:nth-child(4) {
    width: 18%;
}

#popular .content .carousel .line-step .step::before {
    content: '';
    opacity: 0;
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    background: #000;
}

#popular .content .carousel .line-step .step.active::before {
    opacity: 1;
}

#advantages {
    padding: 45px 0;
    background: linear-gradient(90deg, #6382f575 22.62%, #35488F 100%);
}

#advantages .content {
    color: #fff;
}

#advantages .content .title {
    font-family: 'Neometric', sans-serif;
    margin-bottom: 55px;
    
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

#advantages .content .block {
    color: #000;
}

#advantages .content .block .header {
    display: flex;
    flex-direction: column;
    padding: 25px;
    padding-bottom: 0;
}

#advantages .content .block .header .icon-wrapper {
    height: 40px;
    width: 40px;
    background: #6382F5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

#advantages .content .block .header .name {
    font-weight: 700;
    font-size: 16px;
}

.hl {
    margin: 15px 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

#advantages .content .block .body {
    padding: 25px;
    padding-top: 0;
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
}

#advantages .content .arrows-action {
    margin-top: 55px;
    display: flex;
    align-items: center;
}

#advantages .content .arrows-action .arrow {
    display: none;
}

#advantages .content .arrows-action .arrow:last-child {
    margin-left: 25px;
}

#advantages .content .arrows-action .arrow .icon {
    background: rgba(255, 255, 255, .6);
}

#advantages .content .arrows-action .arrow.active .icon {
    background: #fff;
    cursor: pointer;
}

#faq {
    padding: 70px 0;
    background: #111111FF;
}

#faq .content {
    display: flex;
    align-items: center;
}

#faq .content .block.left {
    width: 40%;
}

#faq .content .block.left .big-title {
    font-weight: 800;
    font-size: 113px;
    color: #ffffffdd;
}

#faq .content .block.left .middle-title {
    font-weight: 600;
    font-size: 35px;
    color: rgba(0, 0, 0, .6);
    width: 60%;
    color: #ffffffbb;
}

#faq .content .block.right {
    width: 60%;
    margin-left: auto;
    position: relative;
}

#faq .content .block.right::before {
    content: '';
    position: absolute;
    height: 233px;
    width: 233px;
    background: #6382F5;
    opacity: 0.7;
    filter: blur(120px);
    left: 50%;
    z-index: -1;
}

#faq .content .block.right::after {
    content: '';
    position: absolute;
    height: 233px;
    width: 233px;
    background: #6382F5;
    opacity: 0.7;
    filter: blur(120px);
    left: 20%;
    top: 50%;
    z-index: -1;
}

#faq .content .block.right .dropdown {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    padding: 25px;
    max-height: 70px;
    transition: .25s all;
    cursor: pointer;
    position: relative;
    background: #ffffff15;
    display: flex;
    flex-direction: column;
}

#faq .content .block.right .dropdown:last-child {
    margin-bottom: 0;
}

#faq .content .block.right .dropdown .title {
    font-size: 18px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Neometric', sans-serif;
}

#faq .content .block.right .dropdown .title .icon.arrow-down {
    background: #ffffff99;
    transition: .25s all;
}

#faq .content .block.right .dropdown span {
    padding-top: 20px;
    overflow: hidden;
    transition: .25s all;
    padding-right: 35px;
    font-weight: 400;
    opacity: 0;
    line-height: 1.5;
}

#faq .content .block.right .dropdown.show {
    max-height: 270px;
}

#faq .content .block.right .dropdown.show .title .icon {
    transform: rotate(180deg);
    transition: .25s all;
}

#faq .content .block.right .dropdown.show span {
    font-size: 16px;
    opacity: 1;
}

#faq .content .block.right .dropdown:hover {
    background: #6382F5;
    color: #fff;
}

#faq .content .block.right .dropdown:hover .title .icon {
    background: #fff;
}

#news {
    padding: 40px 0;
}

#news .container {
    width: 1170px;
}

#news .content .header {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

#news .content .header .bg {
    height: 200px;
    border-radius: 15px 15px 0px 0px;
}

#news .content .header .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-radius: 0px 0px 15px 15px;
    background: #191919;
}

#news .content .header .info .profile {
    display: flex;
    align-items: center;
}

#news .content .header .info .profile img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

#news .content .header .info .profile {
    display: flex;
    align-items: center;
}

#news .content .header .info .profile div {
    display: flex;
    flex-direction: column;
}

#news .content .header .info .profile span {
    color: rgba(255, 255, 255, 0.80);
}

#news .content .header .info .profile .name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 7px;
    color: #fff;
}

#news .content .main {
    display: flex;
    align-items: flex-start;
}

#news .content .main .posts {
    width: 75%;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}

#news .content .main .posts .search {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #191919;
    border-radius: 15px;
    margin-bottom: 30px;
}

#news .content .main .posts .search p {
    font-weight: 600;
    font-size: 16px;
}

#news .content .main .posts .search .input {
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-left: auto;
}

#news .content .main .posts .search .input input {
    width: 100px;
    padding-right: 10px;
}

#news .content .main .posts .search .input .icon.search-i {
    background: rgba(0, 0, 0, .6);
}

#news .content .main .posts .post {
    display: flex;
    flex-direction: column;
    background: #191919;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

#news .content .main .posts .post:last-child {
    margin-bottom: 0;
}

#news .content .main .posts .post .header-p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#news .content .main .posts .post .header-p img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 13px;
}

#news .content .main .posts .post .header-p div {
    display: flex;
    flex-direction: column;
}

#news .content .main .posts .post .header-p div .name {
    font-weight: 600;
    font-size: 16px;
}

#news .content .main .posts .post .header-p div .date {
    font-size: 14px;
    color: #818C99;
}

#news .content .main .posts .post .text-p {
    white-space: pre-line;
    font-size: 16px;
}

#news .content .main .posts .post .text-p .more-text {
    display: none;
}

#news .content .main .posts .post .text-p .link-more {
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

#news .content .main .posts .post .text-p img {
    max-height: 350px;
    width: 100%;
}

#news .content .main .posts .post .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

#news .content .main .posts .post .actions .send-like {
    display: flex;
    align-items: center;
    color: #818C99;
    font-size: 14px;
    background: #111;
    border-radius: 32px;
    padding: 7px 12px;
    cursor: pointer;
    transition: .25s all;
}
#news .content .main .posts .post .actions .send-like:hover {
    background: #e6e6e6;
}
#news .content .main .posts .post .actions .send-like .icon,
#news .content .main .posts .post .actions .views-count .icon {
    background: #818C99;
    margin-right: 5px;
}

#news .content .main .posts .post .actions .views-count {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #818C99;
}

#news .content .main .followers {
    background: #191919;
    border-radius: 15px;
    padding: 25px 30px;
    width: 25%;
}

#news .content .main .followers .pre-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #818C99;
    font-weight: 400;
    margin-bottom: 15px;
}

#news .content .main .followers .pre-title span {
    font-size: 16px;
    color: #fff;
}

#news .content .main .followers .list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-bottom: -15px;
}

#news .content .main .followers .list .follower-wrapper {
    padding: 15px;
    padding-left: 0;
    padding-top: 0;
    width: 33.333333333333%;
}

#news .content .main .followers .list .follower-wrapper .follower {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

#news .content .main .followers .list .follower-wrapper .follower img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 5px;
}

#products {
    background: #111111FF;
}

#products .filter-sort {
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg width=%271920%27 height=%27201%27 viewBox=%270 0 1920 201%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cmask id=%27mask0_662_682%27 style=%27mask-type:alpha%27 maskUnits=%27userSpaceOnUse%27 x=%270%27 y=%270%27 width=%271920%27 height=%27201%27%3E%3Crect width=%271920%27 height=%27201%27 fill=%27black%27/%3E%3C/mask%3E%3Cg mask=%27url%28%23mask0_662_682%29%27%3E%3Cpath d=%27M464.569 511.926C419.227 534.402 402.006 589.501 431.641 620.954C492.613 685.68 743.623 653.707 755.433 609.833C767.068 566.609 559.182 465.011 464.569 511.926Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M576.919 367.961C680.489 325.01 854.393 630.815 782.61 703.012C738.476 747.405 631.635 741.858 544.507 727.268C462.714 713.574 345.841 657.579 317.007 564.582C301.74 515.212 310.905 444.874 343.24 420.241C368.265 401.182 402.049 409.757 409.502 406.587C445.031 424.035 450.245 430.817 478.552 434.909C515.553 440.262 548.437 379.771 576.919 367.961Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M682.004 217.553C802.29 240.289 933.003 686.954 802.521 789.746C719.421 855.213 574.549 826.306 473.569 791.695C380.811 759.903 226.356 653.811 195.108 501.766C176.942 413.42 199.015 289.139 262.259 253.19C312.672 224.543 377.628 249.176 389.065 251.072C456.666 294.128 462.132 316.032 512.468 330.778C579.115 350.279 631.734 208.004 682.004 217.553Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M779.471 68.1454C912.281 110.058 1004 743.728 814.814 877.468C692.716 963.774 509.768 912.001 395.014 857.11C291.203 807.467 99.8137 651.252 65.5905 439.937C44.9446 312.499 79.3983 134.547 173.649 87.1266C249.384 49.0081 346.105 88.127 360.988 96.5458C465.041 155.439 466.358 202.236 538.8 227.635C635.026 261.466 709.916 46.2409 779.471 68.1454Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M871.077 -74.4677C1018.16 -14.003 1068.89 806.662 821.246 971.998C659.986 1078.7 439.039 1004.63 310.608 929.345C195.623 861.956 -32.4583 655.63 -69.8317 384.903C-92.8045 218.489 -46.1235 -13.1975 79.1459 -72.1681C180.246 -119.719 307.963 -63.9442 327.028 -51.2251C461.155 38.2637 464.624 95.4285 559.149 131.299C684.978 179.461 783.038 -110.65 871.077 -74.4677Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M-19.4737 -229.566C106.948 -286.536 265.585 -214.184 288.953 -197.086C452.792 -77.196 458.85 -9.91055 575.427 36.7697C730.88 99.0143 852.692 -266.723 958.49 -215.275C1121 -136.245 1130.12 872.466 823.485 1068.33C623.403 1196.14 364.028 1099.16 221.999 1003.37C95.8623 918.315 -168.748 661.879 -209.359 331.688C-234.604 126.31 -175.783 -159.136 -19.4737 -229.566Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1348.53 -333.502C1298.74 -333.996 1239.01 -436.229 1283.68 -453.301C1309.47 -463.175 1377.76 -447.558 1404.59 -419.769C1442.37 -380.663 1382.8 -333.151 1348.53 -333.502Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1213.2 -438.984C1218.07 -452.703 1240.89 -458.797 1261.71 -475.504C1303.95 -509.413 1310.01 -525.523 1340.01 -545.973C1351.71 -553.963 1367.45 -564.46 1382.81 -559.653C1406.34 -552.287 1412.22 -520.405 1442.08 -464.253C1480.81 -391.29 1495.47 -372.426 1484.41 -333.762C1481.83 -324.771 1478.49 -295.656 1459.84 -277.896C1434.01 -253.341 1403.74 -272.31 1365.9 -256.057C1320.45 -236.569 1297.91 -201.88 1278.19 -217.211C1264.29 -228.007 1263.78 -257.577 1253.37 -309.064C1245.45 -348.287 1240.46 -374.024 1230.83 -395.019C1219.27 -420.016 1207.78 -423.731 1213.2 -438.984Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1137.08 -410.389C1137.93 -434.709 1170.2 -446.48 1196.79 -481.623C1251.33 -553.716 1226.06 -605.229 1269.78 -657.899C1288.33 -680.258 1317.44 -701.916 1346.61 -697.719C1388.01 -691.756 1401.92 -641.126 1465.66 -538.477C1548.99 -404.269 1584.49 -377.987 1576.7 -306.466C1575.11 -291.889 1573.56 -235.919 1541 -202.231C1497.57 -157.305 1445.51 -198.177 1377.51 -164.411C1301.53 -126.734 1273.14 -46.1841 1247.52 -62.8529C1229.73 -74.4287 1236.55 -121.044 1222.87 -211.962C1213.19 -276.584 1207.21 -314.352 1187.86 -345.286C1163.43 -384.301 1136.17 -383.976 1137.08 -410.389Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1060.89 -382.105C1057.59 -416.962 1099.38 -434.489 1131.79 -488.068C1198.52 -598.37 1140.99 -684.584 1199.48 -770.15C1224.52 -806.761 1267.45 -839.514 1310.34 -836.097C1369.77 -831.368 1391.74 -762.38 1489.25 -613.012C1617.45 -417.846 1672.66 -383.482 1669.03 -279.481C1668.32 -259.201 1668.65 -176.52 1622.19 -126.838C1561.14 -61.5797 1487.18 -124.435 1389.17 -73.0516C1282.59 -17.1861 1248.43 109.187 1216.84 91.232C1195.17 78.8117 1209.05 15.2029 1192.36 -115.146C1180.83 -205.167 1173.88 -254.783 1144.86 -295.838C1107.46 -348.742 1064.41 -344.558 1060.89 -382.105Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M984.514 -353.899C977.127 -399.254 1028.31 -422.601 1066.61 -494.577C1145.4 -643.153 1055.47 -763.732 1129.01 -882.465C1160.45 -933.264 1217.33 -977.125 1273.9 -974.553C1351.41 -971.019 1381.08 -883.44 1512.61 -687.611C1685.28 -431.15 1760.42 -388.796 1761.09 -252.562C1761.22 -226.578 1763.39 -117.263 1703.09 -51.5238C1624.35 33.9895 1528.64 -50.8092 1400.54 18.2432C1263.34 92.2195 1223.42 264.532 1185.99 245.252C1160.42 232.026 1181.38 151.372 1161.67 -18.3942C1148.27 -133.828 1140.4 -195.228 1101.71 -246.456C1051.28 -313.182 992.461 -305.127 984.514 -353.899Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M908 -325.707C920.37 -265.684 994.941 -277.636 1058.37 -197.086C1106.74 -135.673 1115.53 -62.5152 1130.81 78.3439C1153.5 287.515 1125.49 385.228 1154.96 399.246C1198.28 419.864 1243.95 201.599 1411.8 109.525C1569.92 22.7902 1687.58 129.714 1783.89 23.7776C1858.13 -57.903 1854 -193.851 1853.04 -225.669C1847.92 -394.097 1752.97 -444.48 1535.83 -762.237C1370.26 -1004.53 1332.91 -1110.67 1237.28 -1113.02C1167.03 -1114.75 1096.18 -1059.75 1058.37 -994.794C969.828 -842.788 1092.32 -687.78 1001.3 -501.099C957.184 -410.635 896.486 -381.546 908 -325.707Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1540.82 640.377C1527.83 632.582 1500.54 647.601 1498.13 670.999C1495.39 697.542 1526.27 719.498 1539.83 712.678C1555.88 704.597 1558.07 650.693 1540.82 640.377Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1577.44 781.405C1599.59 756.889 1609.27 711.898 1620.34 634.778C1631.32 558.307 1629.6 503.559 1619.95 499.583C1614.69 497.439 1599.8 514.212 1587.02 526.503C1563.1 549.446 1522.16 546.9 1511.67 549.381C1473.25 558.476 1461.97 575.365 1445.91 607.715C1438.48 622.656 1421.15 655.786 1413.52 694.762C1401.89 753.784 1349.74 771.973 1356.1 795.631C1361.44 815.379 1413.11 820.173 1446.6 820.732C1494.61 821.538 1543.19 819.264 1577.44 781.405Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1615.83 847.314C1652.24 803.505 1666.56 729.983 1688.63 592.489C1711.04 454.332 1710.9 359.568 1699.85 356.035C1691.57 353.332 1664.73 387.488 1641.92 411.9C1598.93 458.112 1521.97 450.512 1506.11 453.474C1433.77 466.7 1415.95 498.388 1387.92 558.281C1376.24 583.225 1344.2 644.028 1329.6 715.835C1307.13 825.838 1200.61 854.641 1209.42 895.423C1216.79 929.384 1315.57 934.594 1377.73 931.8C1465.49 927.76 1554.31 921.368 1615.83 847.314Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1654.02 912.793C1704.72 849.704 1723.52 747.6 1756.69 549.771C1790.37 349.889 1791.94 215.331 1779.54 211.979C1768.18 208.861 1729.42 260.31 1696.65 296.908C1634.69 366.506 1521.6 353.709 1500.37 357.061C1394.14 373.847 1369.67 420.787 1329.74 508.353C1313.81 543.288 1267.08 631.777 1245.49 736.375C1212.22 897.372 1051.31 936.764 1062.56 994.682C1071.96 1042.86 1217.89 1048.69 1308.68 1042.31C1436.18 1033.8 1565.36 1023.12 1654.02 912.793Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1692.08 978.234C1757.11 895.865 1780.36 765.165 1824.64 507.002C1869.64 245.421 1872.94 71.1074 1859.13 67.8724C1844.68 64.4555 1793.98 132.988 1751.27 181.799C1670.22 274.627 1521.14 256.763 1494.53 260.596C1354.41 280.72 1323.11 343.03 1271.46 458.36C1251.2 503.26 1189.85 619.46 1161.29 756.864C1117.19 968.841 901.897 1018.83 915.617 1093.89C927.021 1156.25 1120.09 1162.47 1239.53 1152.78C1406.71 1139.44 1576.34 1124.87 1692.08 978.234Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M1488.63 164.091C1314.63 187.477 1276.79 265.429 1213.13 408.34C1188.66 463.284 1112.57 607.118 1077.03 777.313C1022.15 1040.3 752.437 1100.88 768.605 1193.06C782.039 1269.71 1022.24 1276.21 1170.33 1263.21C1377.25 1245.02 1587.3 1226.6 1730.1 1043.65C1809.45 941.986 1837.15 782.73 1892.55 464.206C1948.78 140.913 1953.8 -73.1166 1938.65 -76.2606C1921.09 -79.8984 1858.52 5.58886 1805.84 66.6512C1705.69 182.696 1520.64 159.791 1488.63 164.091Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M73.8225 -460.823C93.5794 -371.179 235.39 -413.286 404.201 -211.377C464.69 -139.025 505.246 -63.3466 585.305 -51.5759C593.384 -50.3936 673.585 -40.0131 730.189 -100.945C801.401 -177.598 757.936 -283.938 841.046 -432.241C871.659 -486.872 876.752 -471.009 899.219 -514.091C995.106 -697.992 848.861 -884.687 933.245 -1071.45C972.089 -1157.41 1029.83 -1177.15 1024.35 -1188.37C1000.66 -1236.54 20.4352 -702.383 73.8225 -460.823Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M607.257 -174.129C612.109 -174.909 664.991 -170.232 701.267 -213.313C747.136 -267.711 714.438 -342.609 766.991 -443.726C786.331 -480.961 789.02 -470.866 802.784 -500.319C861.506 -626.003 756.114 -752.442 807.723 -875.476C831.607 -932.433 869.31 -945.489 863.701 -951.05C838.335 -976.41 191.332 -601.761 242.151 -438.737C261.205 -377.597 365.225 -399.293 484.249 -267.607C527.527 -219.757 556.833 -166.035 607.257 -174.129Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M629.209 -296.696C630.592 -300.814 656.452 -300.723 672.345 -325.681C692.98 -358.057 671.006 -401.19 692.936 -455.198C700.981 -475.024 701.311 -470.788 706.36 -486.548C728.037 -554.327 663.279 -620.118 682.212 -679.517C691.07 -707.476 707.534 -712.244 703.144 -713.738C671.05 -708.347 362.887 -500.774 410.424 -416.651C428.985 -383.781 495.422 -385.353 564.242 -323.836C590.398 -300.45 607.521 -283.327 629.209 -296.696Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3Cpath d=%27M651.161 -419.249C634.126 -478.168 567.063 -498.201 542.499 -476.414C506.278 -444.246 537.175 -402.359 578.72 -394.564C609.771 -388.783 670.655 -351.821 651.161 -419.249Z%27 stroke=%27%236382F5%27 stroke-opacity=%270.12%27 stroke-miterlimit=%2710%27/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-color: #111;
    display: flex;
    align-items: center;
    width: 100%;
}

#products .filter-sort .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#products .filter-sort .content .pre-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

#products .filter-sort .content .pre-title span {
    color: #6382F5;
}

#products .filter-sort .content .actions {
    display: flex;
    align-items: center;
}

#products .filter-sort .content .actions .radio {
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
    cursor: pointer;
    transition: .25s all;

    border: solid;
    border-color: #202020;
}

#products .filter-sort .content .actions .radio:nth-child(1) {
    border-radius: 15px 0px 0px 15px;
}

#products .filter-sort .content .actions .radio:nth-child(2) {
    border-radius: 0px 15px 15px 0px;
}

#products .filter-sort .content .actions .radio:hover,
#products .filter-sort .content .actions .radio.active {
    background: #6382F5;
    border: solid 0px;
    border-color: #00000000;
}

#products .products {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-right: -30px;
}

#products .products .product-wrapper {
    padding: 30px;
    padding-left: 0;
    padding-top: 0;
    width: 25%;
}

#products .products .product-wrapper .product {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;

    border: solid;
    border-color: #191919;
}

#products .products .product-wrapper .product .sale {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 25px;
    background: #DDA44D;
    padding: 12px;
    font-weight: 700;
    font-size: 18px;
}

#products .products .product-wrapper .product .stats {
    position: absolute;
    bottom: 200px;
    left: 15px;
    border-radius: 25px;
    background: #00000055;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #bbb;
}

#products .products .product-wrapper .product img {
    transition: 0.5s ease all;
    height: 350px;
    width: 100%;
}
#products .products .product-wrapper .product img:hover {
    transition: 0.5s ease all;
    width: 110%;
    margin: 0 0 0 -5%;
}

#products .products .product-wrapper .product .info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    --background: #000;
    margin-top: -100px;
}

#products .products .product-wrapper .product .info .name {
    font-weight: 700;
    font-size: 18px;
    color: #ffffffff;
}

#products .products .product-wrapper .product .info .hl {
    margin: 25px 0;
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
}

#products .products .product-wrapper .product .info .price {
    display: flex;
    --align-items: center;
    --justify-content: space-between;
    --width: 100%;
}

#products .products .product-wrapper .product .info .price span {
    font-size: 20px;
    color: rgba(0, 0, 0, .7);
    font-weight: 600;
    color: #ffffffcc;
}

#products .products .product-wrapper .product .info .price .btn {
    width: auto;
    padding: 18px 48px;
    border-radius: 46px;
    font-weight: 600;
    font-size: 16px;
}

#product .product-header {
    background: #181818; 
    padding: 30px 0;
}

#product .product-header .content {
    width: 65%;
    padding-right: 30px;
}

#product .product-header .content .navigation {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, .6);
    margin-bottom: 25px;
}

#product .product-header .content .navigation a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .6);
}

#product .product-header .content .navigation a:hover {
    color: rgba(255, 255, 255, .8);
}

#product .product-header .content .navigation a .icon {
    margin-right: 8px;
    background: rgba(255, 255, 255, .6);
    transition: .25s all;
}

#product .product-header .content .navigation a:hover .icon {
    background: rgba(255, 255, 255, .8);
}

#product .product-header .content .navigation span {
    margin: 0 8px;
    color: rgba(255, 255, 255, .6);
}

#product .product-header .content .product-main-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#product .product-header .content .product-main-info img {
    height: 100px;
    width: 100px;
    margin-right: 15px;
    border-radius: 20px;
}

#product .product-header .content .product-main-info div {
    display: flex;
    flex-direction: column;
}

#product .product-header .content .product-main-info div .name {
    font-weight: 700;
    font-size: 24px;
}

#product .product-header .content .product-main-info div span {
    --font-size: 12px;
}

#product .product-header .content .product-main-info div span.status b {
    color: #4AC297;
}

#product .product-header .content .description {
    color: rgba(255, 255, 255, 0.80);
}

#product .product-header .content .hl {
    margin-top: 15px;
    margin-bottom: 20px;
    height: 1px;
    width: 100%;
    background: #202020;
}

#product .product-header .content .accept-anticheat {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 25px;
}

#product .product-header .content .accept-anticheat .icon {
    margin-right: 8px;
    background: #fff;
}

#product .product-header .content .accept-anticheat-list {
    display: flex;
    align-items: center;
}

#product .product-header .content .accept-anticheat-list p {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    cursor: pointer;
}

#product .product-header .content .accept-anticheat-list p:last-child {
    margin-right: 0;
}

#product .product-header .content .accept-anticheat-list p .status {
    height: 8px;
    width: 8px;
    min-height: 8px;
    min-width: 8px;
    border-radius: 50%;
    margin-right: 7px;
}

#product .product-header .content .accept-anticheat-list p.risks .status {
    background: #ffa22e;
}

#product .product-header .content .accept-anticheat-list p.detected .status {
    background: #EA384D;
}

#product .product-header .content .accept-anticheat-list p.undetected .status {
    background: #3DB37A;
}

#product .product-header .container {
    display: flex;
    position: relative;
    z-index: 2;
}

#product .product-header .block-payment-wrapper {
    position: absolute;
    right: 0;
    top: 80px;
    width: 35%;
    padding-right: 30px;
}

#product .product-header .block-payment-wrapper .block-payment {
    background: #191919;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 15px;

    border-radius: 15px;
    border: solid;
    border-color: #202020;
}

#product .product-header .block-payment-wrapper .block-payment::before {
    content: '';
    position: absolute;
    background: #6382F5;
    opacity: .3;
    filter: blur(120px);
    height: 200px;
    width: 300px;
    z-index: -1;
    bottom: -5%;
    left: 20%;
}

#product .product-header .block-payment-wrapper .block-payment .title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

#product .product-header .block-payment-wrapper .block-payment .title span {
    color: #6382F5;
}

#product .product-header .block-payment-wrapper .block-payment .description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.80);
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio {
    padding: 15px;
    background: #222222;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    cursor: pointer;
    transition: .25s all;
    display: flex;
    align-items: center;
    color: #ffffffcc;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio .circle {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s all;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio .circle span {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: .25s all;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio .price {
    margin-left: auto;
    font-weight: 600;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio:last-child {
    margin-bottom: 20px;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio:hover,
#product .product-header .block-payment-wrapper .block-payment .radio-box .radio.active {
    background: #303030;
    color: #fff;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio:hover .circle,
#product .product-header .block-payment-wrapper .block-payment .radio-box .radio.active .circle {
    border-color: #fff;
}

#product .product-header .block-payment-wrapper .block-payment .radio-box .radio.active .circle span {
    opacity: 1;
}

#product .product-header .block-payment-wrapper .block-payment .btn.black {
    width: 100%;
    height: 60px;
    background: #3e9d6f;
    display: flex;
    align-items: center;
    justify-content: space-between;

    -border-radius: 15px;
    -border: solid;
    -border-color: #202020;
}

#product .product-header .block-payment-wrapper .block-payment .btn.black:hover {
    background: #33835c;
}

#product .product-header .block-payment-wrapper .block-payment .btn.black span {
    font-weight: 700;
    font-size: 18px;
}

#product .product-header .block-payment-wrapper .support {
    background: #191C26;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
}

#product .product-header .block-payment-wrapper .support .icon {
    background: #fff;
    margin-right: 20px;
}

#product .product-header .block-payment-wrapper .support .btn {
    margin-left: auto;
    padding: 18px 25px;
    background: #6382F5;
    border-radius: 61px;
    width: auto;
}

#product .product-header .block-payment-wrapper .support .btn:hover {
    background: #4e68c6;
}

#product .product-more-info {
    padding: 40px 0;
}

#product .product-more-info .content {
    width: 65%;
    padding-right: 30px;
}

#product .product-more-info .content .block-cont {
    margin-bottom: 40px;
}

#product .product-more-info .content .block-cont .pre-title-icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 30px;
    font-weight: 600;
}

#product .product-more-info .content .block-cont .pre-title-icon .icon {
    background: #fff;
    margin-right: 10px;
}

#product .product-more-info .content .block-cont .pre-title-icon p {
    margin-left: auto;
}

#product .product-more-info .content .block-cont.screens .carousel-screens {
    display: flex;
    align-items: center;
    height: 150px;
    width: 100%;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link {
    height: 100%;
    width: 30px;
    min-width: 30px;
    background: #202020;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link .icon {
    background: #fff;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link.active {
    background: #6382F5;
    cursor: pointer;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link.active .icon {
    background: #fff;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link.left {
    margin-right: 20px;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-link.right {
    transform: rotate(180deg);
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-img-wrapper {
    width: 33.3333333333333%;
    padding-right: 20px;
    height: 100%;
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-img {
    cursor: pointer;
    height: 100%
}

#product .product-more-info .content .block-cont.screens .carousel-screens .car-img img {
/*    width: 100%;*/
/*    height: 100%;*/
    border-radius: 15px;
}

#product .product-more-info .content .block-cont.system-recom .systems {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -20px;
}

#product .product-more-info .content .block-cont.system-recom .systems .system-wrapper {
    padding: 20px;
    padding-left: 0;
    padding-top: 0;
    width: 50%;
}

#product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system {
    background: #191919;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system span {
    display: flex;
    align-items: center;
    font-size: 16px;
}

#product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system span .icon {
    background: rgba(255, 255, 255, 0.80);
    margin-right: 10px;
}

#product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system b {
    font-size: 16px;
}

#product .product-more-info .content .block-cont.functions .radio-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

#product .product-more-info .content .block-cont.functions .radio-box .radio {
    width: 100%;
    background: #ffffff15;
    padding: 22px 30px;
    transition: .25s all;
    cursor: pointer;
    text-align: center;
}

#product .product-more-info .content .block-cont.functions .radio-box .radio:hover,
#product .product-more-info .content .block-cont.functions .radio-box .radio.active {
    background: #333;
    color: #fff;
}

#product .product-more-info .content .block-cont.functions .radio-box .radio:first-child {
    border-radius: 83px 0px 0px 83px;
}

#product .product-more-info .content .block-cont.functions .radio-box .radio:last-child {
    border-radius: 4px 83px 83px 0px;
}

#product .product-more-info .content .block-cont.functions .dropdown {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    padding: 25px;
    max-height: 70px;
    transition: .25s all;
    position: relative;
    background: #191919;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#product .product-more-info .content .block-cont.functions .dropdown:last-child {
    margin-bottom: 0;
}

#product .product-more-info .content .block-cont.functions .dropdown .title {
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Neometric', sans-serif;
    position: relative;
}

#product .product-more-info .content .block-cont.functions .dropdown .title .icon.arrow-down {
    background: #000;
    transition: .25s all;
}

#product .product-more-info .content .block-cont.functions .dropdown span {
    padding-top: 40px;
    overflow: hidden;
    padding-right: 35px;
    font-weight: 400;
    opacity: 0;
    line-height: 1.5;
    position: relative;
    display: flex;
    flex-direction: column;
}

#product .product-more-info .content .block-cont.functions .dropdown.show {
    max-height: 800px;
}

#product .product-more-info .content .block-cont.functions .dropdown.show .title .icon {
    transform: rotate(180deg);
    transition: .25s all;
}

#product .product-more-info .content .block-cont.functions .dropdown.show span {
    opacity: 1;
    transition: 0;
}

#product .product-more-info .content .block-cont.functions .dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #6382F5;
    opacity: 0;
    transition: .25s all;
}

#product .product-more-info .content .block-cont.functions .dropdown:hover:not(.show) {
    background: #6382F5;
}

#product .product-more-info .content .block-cont.functions .dropdown:hover .title,
#product .product-more-info .content .block-cont.functions .dropdown.show .title {
    color: #fff;
}

#product .product-more-info .content .block-cont.functions .dropdown:hover .title .icon,
#product .product-more-info .content .block-cont.functions .dropdown.show .title .icon {
    background: #fff;
}

#product .product-more-info .content .block-cont.functions .dropdown.show::before {
    height: 70px;
    opacity: 1;
}

#product .product-more-info .content .block-cont.functions .dropdown span b {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

#product .product-more-info .content .block-cont.functions .dropdown span b:last-child {
    margin-bottom: 0;
}

#product .product-more-info .content .block-cont.functions .dropdown span b .icon {
    background: #000;
    margin-right: 12px;
}

.profile-page {
    padding-top: 30px;
}

.profile-page .navigation {
    width: 100px;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 66;
    outline: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-page .navigation .logo img {
    height: 62px;
    width: 62px;
}

.profile-page .navigation .hl {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    width: 100%;
    margin: 15px 0;
    margin-bottom: 35px;
}

.profile-page .navigation .nav-link {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.profile-page .navigation .nav-link:last-child {
    margin-bottom: 0;
}

.profile-page .navigation .nav-link .icon {
    background: #fff;
    transition: .25s all;
}

.profile-page .navigation .nav-link:hover,
.profile-page .navigation .nav-link.active {
    background: #FFFFFF;
}

.profile-page .navigation .nav-link:hover .icon,
.profile-page .navigation .nav-link.active .icon {
    background: #000;
}

.profile-page .navigation .nav-link.logout {
    margin-top: auto;
    background: rgba(234, 56, 77, .2);
}

.profile-page .navigation .nav-link.logout:hover {
    background: rgba(234, 56, 77, .4);
}

.profile-page .navigation .nav-link.logout .icon {
    background: #EA384D;
}

.profile-page .container {
    width: 100%;
    padding-left: 150px;
    padding-right: 50px;
}

.profile-page .content .header {
    display: flex;
    align-items: center;
}

.profile-page .content .header .profile-user {
    display: flex;
    align-items: center;
}

.profile-page .content .header .profile-user img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    margin-right: 8px;
}

.profile-page .content .header .profile-user .name {
    font-weight: 600;
    font-size: 16px;
}

.profile-page .content .header .profile-user span {
    color: rgba(255, 255, 255, 0.70);
}

.profile-page .content .header .input.activate-key,
.mobile-menu-overlay .input.activate-key {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.profile-page .content .header .input.activate-key .btn.black,
.mobile-menu-overlay .input.activate-key .btn.black {
    border-radius: 30px;
    width: auto;
    cursor: pointer;
    transition: .25s all;
}

.profile-page .content .header .input.activate-key input,
.mobile-menu-overlay .input.activate-key input {
    width: 280px;
    font-weight: 600;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    margin-left: -50px;
    border-radius: 30px;
    padding-left: 65px;
    font-size: 16px;
    height: 55px;
    color: #fff;
}

input::placeholder {
    color: #ffffffaa;
}

.mobile-menu-overlay .input.activate-key .btn.black {
    height: 70px;
    width: 150px;
    border-radius: 80px;
    font-size: 16px;
}

.mobile-menu-overlay .input.activate-key input {
    height: 70px;
    width: 340px;
    border-radius: 60px;
}

.mobile-menu-overlay .input.activate-key {
    margin-bottom: 20px;
}

.profile-page .content .header .payment-block,
.mobile-menu-overlay .payment-block {
    display: flex;
    align-items: center;
}

.profile-page .content .header .payment-block .balance,
.mobile-menu-overlay .payment-block .balance {
    display: flex;
    align-items: center;
}

.profile-page .content .header .payment-block .balance .btn.black,
.mobile-menu-overlay .payment-block .balance .btn.black {
    background: #6382F5;
    border-radius: 33px;
    width: auto;
    padding: 20px 30px;
}

.mobile-menu-overlay .payment-block .balance .btn.black {
    height: 70px;
    width: 130px;
    border-radius: 80px;
    font-size: 16px;
}

.profile-page .content .header .payment-block .balance .btn.black:hover,
.mobile-menu-overlay .payment-block .balance .btn.black:hover {
    background: #4e68c6;
}

.profile-page .content .header .payment-block .balance span,
.mobile-menu-overlay .payment-block .balance span {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 170px;
    font-weight: 600;
    font-size: 18px;
    background: #191919;
    border-radius: 33px;
    margin-left: -50px;
    padding-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.mobile-menu-overlay .payment-block .balance span {
    height: 70px;
    width: 180px;
    justify-content: flex-start;
    padding-left: 70px;
}

.profile-page .content .header .payment-block .balance span b,
.mobile-menu-overlay .payment-block .balance span b {
    font-weight: 600;
    font-size: 14px;
    margin-left: 5px;
}

.profile-page .content .header .payment-block .pay,
.mobile-menu-overlay .payment-block .pay {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    min-height: 55px;
    min-width: 55px;
}

.profile-page .content .header .payment-block .pay .icon,
.mobile-menu-overlay .payment-block .pay .icon {
    background: #fff;
}

.profile-page .content .hl-reson {
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    margin: 25px 0;
}

.profile-page .content .pre-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
}

.profile-page .content .pre-title .icon.products {
    background: #fff;
    margin-right: 10px;
}

#history .content .pre-title div {
    margin-left: auto;
    display: flex;
    align-items: center;
}

#history .content .pre-title div.title-m-verse {
    margin-left: 0;
}

#history .content .pre-title div .activate-sub {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

#history .content .pre-title div .activate-sub span {
    font-size: 16px;
    color: #6382F5;
    margin-left: 5px;
    margin-right: 10px;
}

#history .content .pre-title div .activate-sub .icon {
    background: #6382F5;
}

#history .content .pre-title div .icon.mouse {
    background: rgba(0, 0, 0, .6);
}

#history .content .history-buy {
    display: flex;
    flex-wrap: wrap;
    margin-right: 7px;
    padding-bottom: 30px;
    max-height: 82vh;
    overflow: auto;
}

#history .content .history-buy::-webkit-scrollbar {
    width: 2px;
    background: transparent;
}

#history .content .history-buy::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

#history .content .history-buy::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #000;
}

#history .content .history-buy .product-wrapper {
    padding: 25px;
    padding-left: 0;
    padding-top: 0;
    width: 16.66666666666666%;
}

#history .content .history-buy .product-wrapper .product {
    transition: 0.5s ease all;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 20px;
    color: #fff;

    border-radius: 15px;
    border: solid;
    border-color: #191919;
}
#history .content .history-buy .product-wrapper .product:hover {
    transition: 0.5s ease all;
    opacity: 0.92;
}

#history .content .history-buy .product-wrapper .product img {
    --object-fit: cover;
    --transition: 0.5s ease all;
    --z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 15px;
}
#history .content .history-buy .product-wrapper .product img:hover {
    --z-index: 2;
    --transition: 0.5s ease all;
    --width: 110%;
    --margin: 0 0 0 -5%;
}

#history .content .history-buy .product-wrapper .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 2;
}

#history .content .history-buy .product-wrapper .product .link-download {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3DB37A;
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
}

#history .content .history-buy .product-wrapper .product .link-download:hover {
    background: #48d18f;
}

#history .content .history-buy .product-wrapper .product .info {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
}

#history .content .history-buy .product-wrapper .product .info .text {
    display: flex;
    flex-direction: column;
}

#history .content .history-buy .product-wrapper .product .info .text .status-text {
    font-weight: 600;
    margin-bottom: 5px;
}

#history .content .history-buy .product-wrapper .product .info .text .status-text.inactive {
    color: #FF9B29;
}

#history .content .history-buy .product-wrapper .product .info .text .status-text.active {
    color: #3DB27A;
}

#history .content .history-buy .product-wrapper .product .info .text .status-text.inactive-red {
    color: #EA384D;
}

#history .content .history-buy .product-wrapper .product .info .text .btn.black {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    width: auto;
    height: 35px;
    border-radius: 8px;
    margin-top: 10px;
    padding: 0 40px;
}

#history .content .history-buy .product-wrapper .product .info .text .btn.black:hover {
    background: rgba(255, 255, 255, .3);
}

#history .content .history-buy .product-wrapper .product .info .text .name {
    font-weight: 600;
    font-size: 18px;
}

#history .content .history-buy .product-wrapper .product .info .status-view {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#history .content .history-buy .product-wrapper .product .info .status-view.inactive {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #FF9B29;
}

#history .content .history-buy .product-wrapper .product .info .status-view.active {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #43d991;
}

#history .content .history-buy .product-wrapper .product .info .status-view.inactive:hover {
    cursor: pointer;
}
#history .content .history-buy .product-wrapper .product .info .status-view.inactive-red:hover {
    cursor: pointer;
}
#history .content .history-buy .product-wrapper .product .info .status-view.active:hover {
    cursor: pointer;
}

#history .content .history-buy .product-wrapper .product .info .status-view.inactive-red {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #EA384D;
}

#history .content .history-buy .product-wrapper .product .info .status-view .icon {
    background: #000;
}

#history.history-product .content .pre-title .btn {
    border-radius: 33px;
    width: 150px;
    cursor: pointer;
    margin-right: 10px;
    transition: .25s all;
}

#history.history-product .content .pre-title .btn.active {
    background: #000;
    color: #fff;
}

#history.history-product .content .pre-title .title-m-verse .subject-title {
    margin-right: 45px;
}

#history.history-product .content .pre-title .btn:last-child {
    margin-right: 0;
}

#history.history-product .content .sort-block .sort-more {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    width: 170px;
}

#history.history-product .content .sort-block .sort-more .selected-sort {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    transition: .25s all;
    width: 100%;
}

#history.history-product .content .sort-block .sort-more.active .selected-sort {
    background: #000;
    color: #fff;
}

#history.history-product .content .sort-block .sort-more .selected-sort span {
    margin-right: 10px;
    font-size: 14px;
}

#history.history-product .content .sort-block .sort-more .selected-sort i {
    background: #000;
    margin-left: auto;
}

#history.history-product .content .sort-block .sort-more.active .selected-sort i {
    background: #fff;
}

#history.history-product .content .sort-block .sort-more .sort-dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: -1;
    opacity: 0;
    margin-top: 38px;
    background: #000;
    color: rgba(255, 255, 255, .6);
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 14px;
    width: 100%;
    transition: .25s all;
}

#history.history-product .content .sort-block .sort-more.active .sort-dropdown {
    z-index: 77;
    opacity: 1;
}

#history.history-product .content .sort-block .sort-more .sort-dropdown p {
    cursor: pointer;
    margin-bottom: 10px;
    transition: .25s all;
    position: relative;
    width: 100%;
    padding-bottom: 10px;
}

#history.history-product .content .sort-block .sort-more .sort-dropdown p::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .2);
}

#history.history-product .content .sort-block .sort-more .sort-dropdown p:hover,
#history.history-product .content .sort-block .sort-more .sort-dropdown p.active {
    color: #fff;
}

#history.history-product .content .sort-block .sort-more .sort-dropdown p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

#history.history-product .content .sort-block .sort-more .sort-dropdown p:last-child::before {
    display: none;
}

#history.history-product .content .history-buy .product-wrapper {
    width: 20%;
}

#history.history-product .content .history-buy .product-wrapper .product {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: #000;
    height: 420px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#history.history-product .content .history-buy .product-wrapper .product::before {
    display: none;
}

#history.history-product .content .history-buy .product-wrapper .product img {
    height: 50%;
    width: 100%;
    border-radius: 0;
}

#history.history-product .content .history-buy .product-wrapper .product .info {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50%;
}

#history.history-product .content .history-buy .product-wrapper .product .info .name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: auto;
}

#history.history-product .content .history-buy .product-wrapper .product .info .hl {
    margin: 25px 0;
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
}

#history.history-product .content .history-buy .product-wrapper .product .info .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#history.history-product .content .history-buy .product-wrapper .product .info .price span {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: rgba(0, 0, 0, .6);
}

#history.history-product .content .history-buy .product-wrapper .product .info .price span b {
    color: #000;
    font-size: 16px;
}

#history.history-product .content .history-buy .product-wrapper .product .info .price .btn {
    width: auto;
    padding: 18px 48px;
    border-radius: 46px;
    font-weight: 600;
    font-size: 16px;
    background: #6382F5;
}

#history.history-product .content .history-buy .product-wrapper .product .info .price .btn:hover {
    background: #4e68c6;
}

#history.history-product .content .history-buy .product-wrapper.free .product .info .price .btn {
    width: 100%;
    background: #000;
}

#history.history-product .content .history-buy .product-wrapper.free .product .info .price .btn:hover {
    background: #6382F5;
}

#settings .content .pre-title .icon.user {
    background: #000;
    margin-right: 10px;
}

#settings .content .blocks {
    display: flex;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-bottom: -25px;
}

#settings .content .blocks .block-wrapper {
    width: 25%;
    padding: 25px;
    padding-left: 0;
    padding-top: 0;
}

#settings .content .blocks .block-wrapper .block {
    background: #191919;
    border-radius: 12px;
    padding: 20px;
}

#settings .content .blocks .block-wrapper .block .header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

#settings .content .blocks .block-wrapper .block .header .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    margin-right: 10px;
}

#settings .content .blocks .block-wrapper .block .subject {
    margin: 15px 0;
    font-weight: 600;
    font-size: 12px;
}

#settings .content .blocks .block-wrapper .block .simple-truline {
    width: 100%;
    background: rgba(0, 0, 0, .1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

#settings .content .blocks .block-wrapper .block .simple-truline.green {
    background: rgba(61, 179, 122, 0.1);
    color: #3DB27A;
}
#settings .content .blocks .block-wrapper .block .simple-truline.red {
    background: rgba(179, 61, 61, 0.1);
    color: #B23D3D;
}

#settings .content .blocks .block-wrapper .block .btn {
    transition: .25s all;
    cursor: pointer;
    height: 40px;
    background: #6382F5;
    border-radius: 64px;
    width: 100%;
}

#settings .content .blocks .block-wrapper .block .btn:hover {
    background: #4e68c6;
}

#settings .content .blocks .block-wrapper .block .btn.red {
    background: #EA384D;
}

#settings .content .blocks .block-wrapper .block .btn.red:hover {
    background: #c33142;
}

#tickets .split {
    display: flex;
}

#tickets .split .tickets {
    display: flex;
    flex-direction: column;
    min-width: 30%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 80vh;
}

#tickets .split .tickets .sort-block {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-bottom: 25px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 6;
    background-color: #000;
}

#tickets .split .tickets .sort-block .sort-wrapper {
    width: 25%;
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort {
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0);
    font-weight: 700;
    cursor: pointer;
    transition: .25s all;
    -webkit-user-select: none;
            user-select: none;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort.no-reply {
    color: #3DB37A;
    border-color: #3DB37A;
}
#tickets .split .tickets .sort-block .sort-wrapper .sort.no-reply:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.no-reply.active {
    background: #3DB37A;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort.reply {
    color: #6382F5;
    border-color: #6382F5;
}
#tickets .split .tickets .sort-block .sort-wrapper .sort.reply:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.reply.active {
    background: #6382F5;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort.admin {
    color: #EA384D;
    border-color: #EA384D;
}
#tickets .split .tickets .sort-block .sort-wrapper .sort.admin:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.admin.active {
    background: #EA384D;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort.refund {
    color: #FF9B29;
    border-color: #FF9B29;
}
#tickets .split .tickets .sort-block .sort-wrapper .sort.refund:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.refund.active {
    background: #FF9B29;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort.close {
    color: #ffffff88;
    border-color: #ffffff88;
}
#tickets .split .tickets .sort-block .sort-wrapper .sort.close:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.close.active {
    background: #000;
}

#tickets .split .tickets .sort-block .sort-wrapper .sort:hover,
#tickets .split .tickets .sort-block .sort-wrapper .sort.active {
    color: #fff;
}

#tickets .split .tickets .ticket {
    background: #191919;
    border-radius: 12px;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: .25s all;
    border: 2px solid rgba(255, 255, 255, 0.20);
}

#tickets .split .tickets .ticket.active,
#tickets .split .tickets .ticket:hover {
    border-color: #6382F5;
}

#tickets .split .tickets .ticket:last-child {
    margin-bottom: 0;
}

#tickets .split .tickets .ticket .status-view {
    border-radius: 12px;
    height: 100%;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    background: #3DB37A;
    color: #fff;
}

#tickets .split .tickets .ticket.admin .status-view {
    background: #EA384D;
}

#tickets .split .tickets .ticket.refund .status-view {
    background: #FF9B29;
}

#tickets .split .tickets .ticket.close .status-view {
    background: #111;
}

#tickets .split .tickets .ticket div {
    display: flex;
    flex-direction: column;
}

#tickets .split .tickets .ticket div .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#tickets .split .tickets .ticket div span {
    color: rgba(255, 255, 255, .6);
}

#tickets .split .tickets .ticket .last-reply {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .6);
}

#tickets .split .tickets .ticket .last-reply span {
    margin-left: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tickets .split .tickets .ticket.open .last-reply {
    color: #6382F5;
}

#tickets .split .tickets .ticket.open .last-reply span {
    background: #6382F5;
}

#tickets .split .vr-repos {
    width: 2px;
    height: 80vh;
    margin: 0 40px;
    background: rgba(0, 0, 0, 0.05);
}

#tickets .split .create-ticket-block .warning {
    background: #FF9B29;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    margin-bottom: 30px;
}

#tickets .split .create-ticket-block .warning .icon.warn-info {
    background: #000;
    margin-right: 15px;
}

#tickets .split .create-ticket-block .form-create .type {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#tickets .split .create-ticket-block .form-create .type p {
    margin-right: 20px;
}

#tickets .split .create-ticket-block .form-create .type input {
    width: 60% !important;
    margin-left: auto;
}

#tickets .split .create-ticket-block .form-create input,
#tickets .split .create-ticket-block .form-create select,
#tickets .split .create-ticket-block .form-create textarea {
    background: #191919;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    font-weight: 600;
    min-height: 70px;
    color: #aaa;
    border: 2px solid rgba(255, 255, 255, 0.20);
}
#tickets .split .create-ticket-block .form-create select {
    cursor: pointer;
}
#tickets .split .create-ticket-block .form-create textarea {
    margin: 30px 0;
    height: 140px;
}

textarea::placeholder {
    color: #ffffffaa;
}

#tickets .split .create-ticket-block .form-create .btn {
    width: 100%;
    height: 70px;
    background: #6382F5;
}

#tickets .split .create-ticket-block .form-create .btn i {
    margin-right: 15px;
}

#tickets .split .create-ticket-block .form-create .btn:hover {
    background: #4e68c6;
}

#tickets .split .ticket-messanger {
    height: 100%;
    width: 50%;
}

#tickets .split .ticket-messanger .header {
    background: #191919;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 20px;
    height: 100px;
    margin-bottom: 40px;
}

#tickets .split .ticket-messanger .header .info {
    display: flex;
    align-items: center;
}

#tickets .split .ticket-messanger .header .info .theme {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 16px;
    height: 55px;
    width: 55px;
    margin-right: 15px;
}

#tickets .split .ticket-messanger .header .info .theme .icon.document {
    background: #fff;
}

#tickets .split .ticket-messanger .header .info .more {
    display: flex;
    flex-direction: column;
}

#tickets .split .ticket-messanger .header .info span.id {
    font-weight: 600;
    font-size: 16px;
}

#tickets .split .ticket-messanger .header .actions {
    font-weight: 600;
    color: #EA384D;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

#tickets .split .ticket-messanger .header .actions p {
    margin-left: 10px;
    display: flex;
    cursor: pointer;
}

#tickets .split .ticket-messanger .header .actions p .icon.close-box {
    background: #EA384D;
}

#tickets .split .ticket-messanger .header .actions p .icon.arrow-box {
    background: #000;
}

#tickets .split .ticket-messanger .chat-window {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 53vh;
    overflow-y: auto;
}

#tickets .split .ticket-messanger .chat-window .msg:first-child {
    margin-top: auto;
}

#tickets .split .ticket-messanger .chat-window .msg {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    margin-left: auto;
}

#tickets .split .ticket-messanger .chat-window .msg .flex {
    display: flex;
}

#tickets .split .ticket-messanger .chat-window .msg .info {
    background: #202020;
    border-radius: 20px 0px 20px 20px;
    padding: 20px;
    font-size: 16px;
    color: #fff;
    display: flex;
}

#tickets .split .ticket-messanger .chat-window .msg .avatar {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

#tickets .split .ticket-messanger .chat-window .msg .postfix {
    margin-top: 15px;
    margin-left: auto;
}

#tickets .split .ticket-messanger .chat-window .msg .postfix .name {
    font-weight: 600;
}

#tickets .split .ticket-messanger .chat-window .msg .postfix .date {
    color: rgba(0, 0, 0, .6);
}

#tickets .split .ticket-messanger .chat-window .msg.admin {
    margin-right: auto;
    margin-left: 0;
}

#tickets .split .ticket-messanger .chat-window .msg.admin .info {
    background: #191919;
    border-radius: 0px 20px 20px 20px;
    color: #000;
}

#tickets .split .ticket-messanger .chat-window .msg.admin .postfix .name {
    color: #FF9B29;
}

#tickets .split .ticket-messanger .send-msg {
    display: flex;
    align-items: center;
    width: 100%;
    background: #000;
    border-radius: 15px;
    padding: 20px 25px;
    height: 100px;
    position: relative;
}
#tickets .split .ticket-messanger .send-msg p {
    display: flex;
    cursor: pointer;
}
#tickets .split .ticket-messanger .send-msg input {
    color: #fff;
    width: 100%;
    padding: 25px;
    font-size: 16px;
}
#tickets .split .ticket-messanger .send-msg textarea::placeholder {
    color: rgba(255, 255, 255, .7);
}
#tickets .split .ticket-messanger .send-msg .btn.black {
    height: 60px;
    width: 60px;
    min-height: 60px;
    min-width: 60px;
    background: #6382F5;
    border-radius: 16px;
    margin-left: 25px;
}
#tickets .split .ticket-messanger .send-msg .btn.black:hover {
    background: #4e68c6;
}


#tickets .split .ticket-messanger .send-msg-closed {
    display: flex;
    align-items: center;
    width: 100%;
    background: #000;
    border-radius: 15px;
    padding: 20px 25px;
    height: 60px;
    position: relative;
}
#tickets .split .ticket-messanger .send-msg-closed p {
    display: flex;
    color: #bbb;
    width: 100%;
    padding: 25px;
    font-size: 16px;
}


.accept-icon-input {
    overflow: auto;
    outline: none;
    border: none;
    background: 0;
    font-family: inherit;
    font-size: 16px;
    resize: none;
    width: 100%;
    background: 0;
    border-radius: 15px;
    padding-right: 70px;
    color: #fff;
    padding: 15px;
    padding-right: 120px;
    max-height: 60px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.20);
}



footer {
    padding: 30px 0;
    background: #000;
}

footer .content {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
}

footer .content .logo .info span {
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
}

footer .content .logo .info .name {
    color: #fff;
}

footer .content .links {
    display: flex;
    margin: 0 auto;
    margin-left: 40px;
}

footer .content .links div {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

footer .content .links div:last-child {
    margin-right: 0;
}

footer .content .links div a {
    color: rgba(255, 255, 255, .6);
    text-decoration: underline;
    margin-bottom: 20px;
}

footer .content .links div a:last-child {
    margin-bottom: 0;
}

footer .content .links div a:hover {
    color: #fff;
}

footer .content .main-info {
    display: flex;
    align-items: center;
}

footer .content .copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}
footer .content .copyright p {
    margin-bottom: 20px;
}
footer .content .copyright p a {
    font-weight: 600;
}
footer .content .copyright p a:nth-child(1) {
    color: orange;
}
footer .content .copyright a:nth-child(2) {
    color: #6382F5;
}
footer .content .copyright a:nth-child(3) {
    color: #f56363;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    width: 50px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu span {
    background: #fff;
    border-radius: 10px;
    height: 5px;
    margin: 5px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu span:nth-of-type(1) {
    width: 50%;
}

.mobile-menu span:nth-of-type(2) {
    width: 100%;
}

.mobile-menu span:nth-of-type(3) {
    width: 75%;
}

.mobile-menu input[type="checkbox"] {
    display: none;
}

.mobile-menu.active span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(7px, 1px);
}

.mobile-menu.active span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}

.mobile-menu.active span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(20px, -8px) rotatez(45deg);
}

.mobile-menu {
    display: none;
    z-index: 999;
}

.mobile-menu-overlay {
    opacity: 1;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    transition: .45s all;
    overflow: hidden;
}

.mobile-menu-overlay.show {
    right: 0;
}

.mobile-menu-overlay .link {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 600;
}

.mobile-menu-overlay .link.active {
    border-bottom: 5px solid #6382F5;
    padding: 10px;
    border-radius: 5px;
    color: #000;
}

.mobile-menu-overlay .btn.icon-left {
    font-size: 18px;
    width: auto;
    height: 70px;
}

body .notification-wrapper-block {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

body .notification-wrapper-block .notification-block {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    min-height: 50px;
    border-radius: 5px;
    padding-right: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transition: .25s all;
    max-width: 300px;
}

body .notification-wrapper-block .notification-block.show {
    opacity: 1;
}

body .notification-wrapper-block .notification-block:last-child {
    margin-bottom: 0;
}

body .notification-wrapper-block .notification-block .icon-note {
    height: 60px;
    width: 60px;
    min-width: 60px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

body .notification-wrapper-block .notification-block .icon-note .icon {
    height: 25px;
    width: 25px;
}

body .notification-wrapper-block .notification-block.warning .icon-note,
body .notification-wrapper-block .notification-block.bigger.warning .header-note {
    background: #EA384D;
}

body .notification-wrapper-block .notification-block.warning .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M501.362,383.95L320.497,51.474c-29.059-48.921-99.896-48.986-128.994,0L10.647,383.95 c-29.706,49.989,6.259,113.291,64.482,113.291h361.736C495.039,497.241,531.068,433.99,501.362,383.95z M256,437.241 c-16.538,0-30-13.462-30-30c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30C286,423.779,272.538,437.241,256,437.241z M286,317.241c0,16.538-13.462,30-30,30c-16.538,0-30-13.462-30-30v-150c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30 V317.241z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M501.362,383.95L320.497,51.474c-29.059-48.921-99.896-48.986-128.994,0L10.647,383.95 c-29.706,49.989,6.259,113.291,64.482,113.291h361.736C495.039,497.241,531.068,433.99,501.362,383.95z M256,437.241 c-16.538,0-30-13.462-30-30c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30C286,423.779,272.538,437.241,256,437.241z M286,317.241c0,16.538-13.462,30-30,30c-16.538,0-30-13.462-30-30v-150c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30 V317.241z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block.info .icon-note,
body .notification-wrapper-block .notification-block.bigger.info .header-note {
    background: #6382F5;
}

body .notification-wrapper-block .notification-block.info .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M256,0C114.509,0,0,114.496,0,256c0,141.489,114.496,256,256,256c141.491,0,256-114.496,256-256 C512,114.511,397.504,0,256,0z M282.289,357.621c0,8.088-11.794,16.174-26.284,16.174c-15.164,0-25.946-8.086-25.946-16.174 V229.234c0-9.435,10.783-15.839,25.946-15.839c14.49,0,26.284,6.404,26.284,15.839V357.621z M256.006,182.396 c-15.501,0-27.631-11.457-27.631-24.263c0-12.805,12.131-23.925,27.631-23.925c15.164,0,27.296,11.12,27.296,23.925 C283.302,170.939,271.169,182.396,256.006,182.396z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M256,0C114.509,0,0,114.496,0,256c0,141.489,114.496,256,256,256c141.491,0,256-114.496,256-256 C512,114.511,397.504,0,256,0z M282.289,357.621c0,8.088-11.794,16.174-26.284,16.174c-15.164,0-25.946-8.086-25.946-16.174 V229.234c0-9.435,10.783-15.839,25.946-15.839c14.49,0,26.284,6.404,26.284,15.839V357.621z M256.006,182.396 c-15.501,0-27.631-11.457-27.631-24.263c0-12.805,12.131-23.925,27.631-23.925c15.164,0,27.296,11.12,27.296,23.925 C283.302,170.939,271.169,182.396,256.006,182.396z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block.success .icon-note,
body .notification-wrapper-block .notification-block.bigger.success .header-note {
    background: #3DB27A;
}

body .notification-wrapper-block .notification-block.success .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 408.576 408.576%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M204.288,0C91.648,0,0,91.648,0,204.288s91.648,204.288,204.288,204.288s204.288-91.648,204.288-204.288 S316.928,0,204.288,0z M318.464,150.528l-130.56,129.536c-7.68,7.68-19.968,8.192-28.16,0.512L90.624,217.6 c-8.192-7.68-8.704-20.48-1.536-28.672c7.68-8.192,20.48-8.704,28.672-1.024l54.784,50.176L289.28,121.344 c8.192-8.192,20.992-8.192,29.184,0C326.656,129.536,326.656,142.336,318.464,150.528z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 408.576 408.576%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M204.288,0C91.648,0,0,91.648,0,204.288s91.648,204.288,204.288,204.288s204.288-91.648,204.288-204.288 S316.928,0,204.288,0z M318.464,150.528l-130.56,129.536c-7.68,7.68-19.968,8.192-28.16,0.512L90.624,217.6 c-8.192-7.68-8.704-20.48-1.536-28.672c7.68-8.192,20.48-8.704,28.672-1.024l54.784,50.176L289.28,121.344 c8.192-8.192,20.992-8.192,29.184,0C326.656,129.536,326.656,142.336,318.464,150.528z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block p {
    font-weight: 600;
}

body .notification-wrapper-block .notification-block.bigger {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
}

body .notification-wrapper-block .notification-block.bigger .header-note {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 16px;
}

body .notification-wrapper-block .notification-block.bigger .header-note .icon-note {
    width: auto;
    min-width: auto;
}

body .notification-wrapper-block .notification-block.bigger p {
    padding: 10px;
}

@media screen and (max-width: 1600px) {
    body {
        /*        background-color: #3BCEAC;*/
    }

    .container {
        width: 100%;
    }

    #popular .content .carousel .arrows-action .arrow.left {
        left: 15px;
    }

    #popular .content .carousel .arrows-action .arrow.right {
        right: 15px;
    }

    #popular .content .carousel .line-step .step {
        width: 5%;
    }

    #popular .content .carousel .line-step .step:nth-child(2) {
        width: 24.6%;
    }

    #popular .content .carousel .line-step .step:nth-child(3) {
        width: 24%;
    }

    #popular .content .carousel .line-step .step:nth-child(4) {
        width: 25%;
    }

    #history .content .history-buy .product-wrapper {
        width: 25%;
    }

    #history.history-product .content .history-buy .product-wrapper {
        width: 25%;
    }

    #tickets .split .tickets {
        min-width: 40%;
    }

    #tickets .split .ticket-messanger {
        max-width: 50%;
    }

    #settings .content .blocks .block-wrapper {
        width: 33.3333333333%;
    }
}

@media screen and (max-width: 1280px) {
    body {
        /*        background-color: #FFD23F;*/
    }

    #header-wrapper .content .block.left {
        width: auto;
    }

    #header-wrapper .content .block.right .block-inner.gray:nth-child(1) {
        display: none;
    }

    .carousel .block-wrapper {
        width: 33.33333333333%;
    }

    .carousel .block-wrapper:nth-child(4) {
        display: none;
    }

    #popular .content .carousel .line-step .step {
        width: 7%;
    }

    #popular .content .carousel .line-step .step:nth-child(2) {
        width: 31.6%;
    }

    #popular .content .carousel .line-step .step:nth-child(3) {
        width: 33%;
    }

    footer .content {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .content .copyright {
        align-items: flex-start;
        margin-right: auto;
        margin-left: 0;
        margin-top: 40px;
    }

    #products .products .product-wrapper {
        width: 33.33333333333%;
    }

    #products .products .product-wrapper .product img {
        height: 250px;
        width: 100%;
    }

    #product .product-header .block-payment-wrapper {
        position: relative;
        padding-right: 0;
        width: 50%;
        top: 0;
    }

    #product .product-more-info .content {
        width: 100%;
        padding-right: 0;
    }

    #news .content .main .followers {
        display: none;
    }

    #news .content .main .posts {
        width: 100%;
        padding-right: 0;
    }

    #news .container {
        width: 100%;
    }

    #settings .content .blocks .block-wrapper {
        width: 50%;
    }

    #history .content .history-buy .product-wrapper {
        width: 33.33333333333333333%;
    }

    #history .content .history-buy .product-wrapper .product .info .text .btn.black {
        padding: 0 20px;
    }

    #history.history-product .content .history-buy .product-wrapper {
        width: 33.3333333333333%;
    }

    #history .content .history-buy.max-piffer {
        margin-right: -25px;
    }

    .profile-page .content .pre-title .icon.products {
        min-width: 20px;
    }

    #history.history-product .content .pre-title .btn.black {
        margin-left: 0;
    }

    body.mb {
        overflow-y: auto;
    }

    /*#tickets .split {
        flex-direction: column;
        padding-bottom: 30px;
    }*/

    /*#tickets .split .vr-repos {
        width: 100%;
        height: 2px;
        margin: 40px 0;
        background: rgba(0, 0, 0, 0.05);
    }*/

    /*#tickets .split .tickets {
        min-width: 100%;
    }*/

    /*#tickets .split .ticket-messanger {
        width: 100%;
        max-width: 100%;
    }*/
}

@media screen and (max-width: 960px) {
    
    .profile-page .content .header .payment-block {
        display: none;
    }
    
    .header .mobile-menu {
        display: flex;
    }


    body {
        /*        background-color: #EE4266;*/
    }

    header .navbar .navbar-menu a {
        display: none;
    }
    header .navbar a {
        display: none;
    }

    #header-wrapper .content .block.right {
        display: none;
    }

    .carousel .block-wrapper {
        width: 50%;
    }

    .carousel .block-wrapper:nth-child(3) {
        display: none;
    }

    #popular .content .carousel .arrows-action {
        margin-top: -80px;
    }

    #faq .content {
        flex-direction: column;
        align-items: flex-start;
    }

    #faq .content .block.right {
        width: 100%;
    }

    #faq .content .block.left .middle-title {
        display: none;
    }

    #faq .content .block.left .big-title {
        font-size: 100px;
        margin-bottom: 20px;
    }

    footer .content .main-info {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .content .links {
        margin-left: 0;
        margin-top: 20px;
    }

    header .navbar .logo,
    footer .content .logo {
        margin-left: -15px;
    }

    #popular .content .carousel .line-step .step {
        width: 10%;
    }

    #popular .content .carousel .line-step .step:nth-child(2) {
        width: 72.6%;
    }

    #products .products .product-wrapper {
        width: 50%;
    }

    #product .product-more-info .content .block-cont.functions .radio-box .radio {
        padding: 22px 30px;
    }

    #product .product-more-info .content .block-cont.screens .carousel-screens .car-img-wrapper {
        width: 50%;
    }

    #product .product-more-info .content .block-cont.screens .carousel-screens .car-img-wrapper:nth-child(3) {
        display: none;
    }

    #product .product-header .container {
        flex-flow: column-reverse;
    }

    #product .product-header .block-payment-wrapper {
        width: 100%;
        padding-bottom: 30px;
    }

    #product .product-header .content {
        width: 100%;
        padding-right: 0;
    }

    #settings .content .blocks .block-wrapper {
        width: 100%;
    }

    .profile-page .container {
        padding-left: 130px;
        padding-right: 30px;
    }

    #tickets .split .create-ticket-block .warning .icon.warn-info {
        min-height: 26px;
        min-width: 26px;
    }

    #history .content .history-buy .product-wrapper {
        width: 50%;
    }

    #history .content .history-buy .product-wrapper .product .info .text .btn.black {
        padding: 0 10px;
    }

    #history.history-product .content .history-buy .product-wrapper {
        width: 50%;
    }
    
    #history .content .pre-title div.title-m-verse {
        flex-wrap: wrap;
    }

    .profile-page .content .pre-title:not(.no-m) {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-page .content .pre-title .title-m-verse {
        margin-bottom: 20px;
    }

    #history .content .pre-title div {
        margin-left: 0;
    }

    #history .content .history-buy {
        max-height: 70vh;
    }

    .mobile-menu {
        display: flex;
    }

    #header-wrapper .content .block.left::after {
        display: none;
    }

    #faq .content .block.right::before {
        display: none;
    }
    
    #history.history-product .content .sort-block .sort-more {
        margin-top: 15px;
    }
}

@media screen and (max-width: 600px) {
    body {
        /*        background-color: #540D6E;*/
    }

    header .navbar .btn.icon-left {
        display: none;
    }

    #header-wrapper .content .block.left .more-info .btn {
        width: 160px;
    }

    .carousel .block-wrapper {
        width: 100%;
    }

    .carousel .block-wrapper:nth-child(2) {
        display: none;
    }

    #popular .content .carousel .line-step {
        display: none;
    }

    #popular .content .block-wrapper .block .step-circle {
        display: none;
    }

    #popular .content .block .user {
        margin-bottom: 20px;
    }

    #news .content .header .info {
        padding: 15px;
    }

    #news .content .header .info .profile img {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    #news .content .header .info .profile .name {
        font-size: 16px;
        margin-bottom: 0px;
    }

    #news .content .header .info .profile span:nth-child(2) {
        font-size: 12px;
    }

    #news .content .header .info .btn {
        width: auto;
        padding: 15px;
        height: 40px;
    }

    #news .content .main .posts .search .input input {
        width: 130px;
    }

    #news .content .main .posts .post .text-p img {
        min-height: 150px;
        border-radius: 15px;
    }

    #product .product-more-info .content .block-cont.screens .carousel-screens .car-img-wrapper {
        width: 100%;
    }

    #product .product-more-info .content .block-cont.screens .carousel-screens .car-img-wrapper:nth-child(2) {
        display: none;
    }

    #product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system {
        flex-direction: column;
        align-items: flex-start;
        justify-content: normal;
    }

    #product .product-more-info .content .block-cont.system-recom .systems .system-wrapper .system span {
        margin-bottom: 10px;
    }

    #product .product-more-info .content .block-cont.functions .radio-box .radio {
        padding: 15px 10px;
    }

    #product .product-more-info .content .block-cont.functions .dropdown span b .icon {
        min-width: 22px;
        min-height: 22px;
    }

    #product .product-more-info .content .block-cont.functions .dropdown.show {
        max-height: 600px;
    }

    .profile-page .navigation {
        bottom: 0;
        height: 100px;
        width: 100%;
        top: auto;
        flex-direction: row;
    }

    .profile-page .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .profile-page .navigation .nav-link {
        margin-bottom: 0;
        margin-right: 30px;
        min-height: 40px;
        min-width: 40px;
    }

    .profile-page .navigation .nav-link.logout {
        margin-top: 0;
        margin-right: 0;
        margin-left: auto;
    }

    .profile-page .navigation .hl {
        height: 100%;
        width: 1px;
        margin: 0 15px;
    }

    #history .content .history-buy .product-wrapper {
        width: 100%;
    }

    #history .content .pre-title div .activate-sub {
        margin-right: 20px;
    }

    #history .content .pre-title div .activate-sub .icon {
        min-width: 18px;
    }

    #history .content .pre-title div .icon.mouse {
        min-width: 16px;
    }

    .profile-page .content .pre-title .title-m-verse {
        flex-wrap: wrap;
    }

    #history.history-product .content .pre-title .title-m-verse .btn {
        margin-top: 20px;
    }

    #history .content .history-buy {
        max-height: 54vh;
    }

    #tickets .split .ticket-messanger .send-msg input {
        font-size: 14px;
    }

    #tickets .split .ticket-messanger .send-msg .btn.black {
        min-height: 50px;
        min-width: 50px;
        height: 50px;
        width: 50px;
        margin-left: 10px;
    }

    .icon.start {
        min-width: 15px;
    }

    /*#tickets .split .ticket-messanger .header .actions span {
        display: none;
    }*/

    .mobile-menu-overlay .input.activate-key input {
        width: 100%;
    }

    .mobile-menu-overlay .input.activate-key {
        width: 100%;
        padding: 0 30px;
    }

    .mobile-menu-overlay .payment-block {
        width: 100%;
        padding: 0 30px;
    }

    body {
        overflow: auto !important;
    }

    .profile-page {
        padding-bottom: 150px;
    }

    .modal-wrapper {
        padding: 0 30px;
    }

    .modal-wrapper .modal {
        min-width: 100%;
        padding: 20px;
    }

    .modal-wrapper .modal.cash-up .body {
        padding: 20px;
    }

    .modal-wrapper .modal .radio-boxes .radio-box {
        padding: 10px;
    }

    .modal-wrapper .modal .radio-boxes .radio-box .radio {
        height: 24px;
        width: 24px;
    }

    .modal-wrapper .modal .radio-boxes .radio-box .radio span {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }

    #history .content .history-buy {
        max-height: 66vh;
    }

    #history .content .history-buy:not(.no-m) {
        overflow: hidden;
        max-height: 100% !important;
    }

    #history.history-product .content .history-buy .product-wrapper {
        width: 100%;
    }

    #products .products .product-wrapper {
        width: 100%;
    }

    .emoji-menu {
        margin-left: -20px;
    }

    #tickets .split .tickets .sort-block .sort-wrapper {
        width: 33.333333333333333%;
    }

    #tickets .split .tickets .sort-block .sort-wrapper .sort {
        font-size: 12px;
    }

    #tickets .split .tickets .ticket div span {
        font-size: 10px;
    }

    #advantages .content .arrows-action .arrow {
        display: flex;
    }
}

.fadeout {
    opacity: 0;
    animation: fade 0.5s forwards;
}
@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.loading {
    background: linear-gradient(100deg, #6382f51a 8%, #6382f52a 18%, #6382f51a 33%);
    border-radius: 15px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    color: #00000000;
}
@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.hide {
    display: none !important;
}

.clickable {
    cursor:  pointer;
}

.text {
    white-space: pre-wrap; /* or pre-line */
    color: #ffffffcc;
}


body .notification-wrapper-block {
    position: fixed;
    top: 10%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

body .notification-wrapper-block .notification-block {
    background: #1a1a22;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    z-index: 1000;
    display: flex;
    align-items: center;
    min-height: 50px;
    max-width: 600px;
    border-radius: 5px;
    padding-right: 15px;
    opacity: 0;
    transition: .25s all;
    margin: 0 auto;
    margin-bottom: 10px;
}
body.light .notification-wrapper-block .notification-block {
    background: #fff;
}

body .notification-wrapper-block .notification-block.show {
    opacity: 1;
}

body .notification-wrapper-block .notification-block:last-child {
    margin-bottom: 0;
}

body .notification-wrapper-block .notification-block .icon-note {
    height: 60px;
    width: 60px;
    min-width: 60px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

body .notification-wrapper-block .notification-block .icon-note .icon {
    background: #fff;
    height: 25px;
    width: 25px;
}

body .notification-wrapper-block .notification-block.warning .icon-note,
body .notification-wrapper-block .notification-block.bigger.warning .header-note {
    background: #EA384D;
}

body .notification-wrapper-block .notification-block.warning .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M501.362,383.95L320.497,51.474c-29.059-48.921-99.896-48.986-128.994,0L10.647,383.95 c-29.706,49.989,6.259,113.291,64.482,113.291h361.736C495.039,497.241,531.068,433.99,501.362,383.95z M256,437.241 c-16.538,0-30-13.462-30-30c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30C286,423.779,272.538,437.241,256,437.241z M286,317.241c0,16.538-13.462,30-30,30c-16.538,0-30-13.462-30-30v-150c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30 V317.241z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M501.362,383.95L320.497,51.474c-29.059-48.921-99.896-48.986-128.994,0L10.647,383.95 c-29.706,49.989,6.259,113.291,64.482,113.291h361.736C495.039,497.241,531.068,433.99,501.362,383.95z M256,437.241 c-16.538,0-30-13.462-30-30c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30C286,423.779,272.538,437.241,256,437.241z M286,317.241c0,16.538-13.462,30-30,30c-16.538,0-30-13.462-30-30v-150c0-16.538,13.462-30,30-30c16.538,0,30,13.462,30,30 V317.241z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block.info .icon-note,
body .notification-wrapper-block .notification-block.bigger.info .header-note {
    background: #6382F5;
}

body .notification-wrapper-block .notification-block.info .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M256,0C114.509,0,0,114.496,0,256c0,141.489,114.496,256,256,256c141.491,0,256-114.496,256-256 C512,114.511,397.504,0,256,0z M282.289,357.621c0,8.088-11.794,16.174-26.284,16.174c-15.164,0-25.946-8.086-25.946-16.174 V229.234c0-9.435,10.783-15.839,25.946-15.839c14.49,0,26.284,6.404,26.284,15.839V357.621z M256.006,182.396 c-15.501,0-27.631-11.457-27.631-24.263c0-12.805,12.131-23.925,27.631-23.925c15.164,0,27.296,11.12,27.296,23.925 C283.302,170.939,271.169,182.396,256.006,182.396z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 512 512%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M256,0C114.509,0,0,114.496,0,256c0,141.489,114.496,256,256,256c141.491,0,256-114.496,256-256 C512,114.511,397.504,0,256,0z M282.289,357.621c0,8.088-11.794,16.174-26.284,16.174c-15.164,0-25.946-8.086-25.946-16.174 V229.234c0-9.435,10.783-15.839,25.946-15.839c14.49,0,26.284,6.404,26.284,15.839V357.621z M256.006,182.396 c-15.501,0-27.631-11.457-27.631-24.263c0-12.805,12.131-23.925,27.631-23.925c15.164,0,27.296,11.12,27.296,23.925 C283.302,170.939,271.169,182.396,256.006,182.396z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block.success .icon-note,
body .notification-wrapper-block .notification-block.bigger.success .header-note {
    background: #3DB27A;
}

body .notification-wrapper-block .notification-block.success .icon-note .icon {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 408.576 408.576%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M204.288,0C91.648,0,0,91.648,0,204.288s91.648,204.288,204.288,204.288s204.288-91.648,204.288-204.288 S316.928,0,204.288,0z M318.464,150.528l-130.56,129.536c-7.68,7.68-19.968,8.192-28.16,0.512L90.624,217.6 c-8.192-7.68-8.704-20.48-1.536-28.672c7.68-8.192,20.48-8.704,28.672-1.024l54.784,50.176L289.28,121.344 c8.192-8.192,20.992-8.192,29.184,0C326.656,129.536,326.656,142.336,318.464,150.528z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2725%27 height=%2725%27 x=%270%27 y=%270%27 viewBox=%270 0 408.576 408.576%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M204.288,0C91.648,0,0,91.648,0,204.288s91.648,204.288,204.288,204.288s204.288-91.648,204.288-204.288 S316.928,0,204.288,0z M318.464,150.528l-130.56,129.536c-7.68,7.68-19.968,8.192-28.16,0.512L90.624,217.6 c-8.192-7.68-8.704-20.48-1.536-28.672c7.68-8.192,20.48-8.704,28.672-1.024l54.784,50.176L289.28,121.344 c8.192-8.192,20.992-8.192,29.184,0C326.656,129.536,326.656,142.336,318.464,150.528z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27 class=%27%27/%3E%3C/g%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3Cg xmlns=%27http://www.w3.org/2000/svg%27%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body .notification-wrapper-block .notification-block p {
    font-weight: 600;
    color: #ffffffdd;
}

body .notification-wrapper-block .notification-block.bigger {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
}

body .notification-wrapper-block .notification-block.bigger .header-note {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 16px;
}

body .notification-wrapper-block .notification-block.bigger .header-note .icon-note {
    width: auto;
    min-width: auto;
}

body .notification-wrapper-block .notification-block.bigger p {
    padding: 10px;
}



.main_header_bg {
    height: 80px;
    background: #000;
}
.main_header {
    position: fixed;
    z-index: 666;
    top: 0;
    left: 0;

    -webkit-backdrop-filter: blur(12px);

            backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.8);
    outline: 1px solid rgba(255, 255, 255, 0.2);
}

.dynamic {
    transition: 0.3s ease all;
}
.dynamic:hover {
    transition: 0.5s ease all;
    transform: translate(0%, -5%);
}


.close-button {
    position: absolute;
    right: 0;
}

.cabinet-button {
    height: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 18px;
    margin-right: 25px;
    align-content: center;
}
.cabinet-button:hover {
    color: #fff;
}
.cabinet-button::before {
    content: '';
    position: absolute;
    bottom: -3px;
    height: 6px;
    width: 0px;
    opacity: 0;
    transition: .25s all;
    background: linear-gradient(to right, #6382F5 22.62%, #35488F 100%);
    border-radius: 39px;
}
.cabinet-button:hover::before {
    opacity: 1;
    width: 50px;
}

.custom-input {
    background: #edecf896;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    font-weight: 600;
    min-height: 60px;
    color: #444;
    cursor: pointer;
}


.terminal-container {
    background-color: #000;
    width: 100%; 
    height: 300px;
    overflow-y: auto; 
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
.terminal {
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    padding: 10px;
    white-space: pre-wrap;
  }
#command-input {
  width: 100%; 
  padding: 5px;
  margin-bottom: 10px; 
  border: 1px solid #ccc; 
}
#userid-input {
  width: 100%; 
  padding: 5px;
  margin-bottom: 10px; 
  border: 1px solid #ccc; 
}
#userid-input::placeholder {
    color: rgba(0, 0, 0, .6);
}

.feed_language {
    margin-right: 5px;
    background: #111;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
}
.feed_language.active {
    background: #6382F5;
    color: #fff;
}

.footer_language_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.footer_language {
    margin: 0;
    background: #000;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
}
.footer_language.active {
    background: #6382F599;
    font-weight: bold;
    color: #fff;
}

.like_active {
    color: #fb0b0b !important;
    background: #f1caca !important;
}
.like_active .icon {
    background: #fb0b0b !important;
}

.video-custom {
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
}



@media screen and (max-width: 900px) {
    #tickets .split {
        flex-direction: column;
        padding-bottom: 30px;
    }
    #tickets .split .tickets {
        min-width: 100%;
    }
    #tickets .split .vr-repos {
        display: none;
    }
    #tickets .split .create-ticket-block {
        display: none !important;
    }
    #tickets .split .ticket-messanger {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .profile-page .content .header .input.activate-key {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .modal {
        min-width: 100px;
    }
    .button_fix_1 {
        --width: 100px;
    }
    .button_fix_2 {
        --width: auto;
    }
    .button_fix_3 {
        --width: 150px;
    }
    .button_fix_4 {
        --width: 100px;
    }

    .profile-page .navigation .logo {
        display: none;
    }
    .profile-page .navigation div {
        display: none;
    }
}
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url(/static/media/Gilroy-Regular.fa652e766b6a85a1f9cb.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Extrabold Italic'), local('Gilroy-ExtraboldItalic'),
        url(/static/media/Gilroy-ExtraboldItalic.465aa5d03dff4ec5094d.ttf) format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url(/static/media/Gilroy-Bold.901a60fc2835c74fba67.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Black'), local('Gilroy-Black'),
        url(/static/media/Gilroy-Black.4628979a4dac24916ba7.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Light'), local('Gilroy-Light'),
        url(/static/media/Gilroy-Light.0ac7c2f9cb59ea1ba11c.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
        url(/static/media/Gilroy-Semibold.41fa36c3c8e966b35423.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url(/static/media/Gilroy-Medium.1c23f810e531d0702f76.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Medium Italic'), local('Gilroy-MediumItalic'),
        url(/static/media/Gilroy-MediumItalic.89dade8d917dd5318037.ttf) format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Black Italic'), local('Gilroy-BlackItalic'),
        url(/static/media/Gilroy-BlackItalic.9d038b5d638246ddec64.ttf) format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy UltraLight'), local('Gilroy-UltraLight'),
        url(/static/media/Gilroy-UltraLight.6c356bf421a0b34d2b76.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular Italic'), local('Gilroy-RegularItalic'),
        url(/static/media/Gilroy-RegularItalic.5f3ed3d83ee07d26cfdf.ttf) format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Semibold Italic'), local('Gilroy-SemiboldItalic'),
        url(/static/media/Gilroy-SemiboldItalic.4d55ee19689866217144.ttf) format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Heavy Italic'), local('Gilroy-HeavyItalic'),
        url(/static/media/Gilroy-HeavyItalic.4e271337918ba3adf19f.ttf) format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
        url(/static/media/Gilroy-Extrabold.92e435f7fae6070d73bb.ttf) format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold Italic'), local('Gilroy-BoldItalic'),
        url(/static/media/Gilroy-BoldItalic.244d410b6e64d3508107.ttf) format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy UltraLight Italic'), local('Gilroy-UltraLightItalic'),
        url(/static/media/Gilroy-UltraLightItalic.68a9a27f1aa1261013f3.ttf) format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Light Italic'), local('Gilroy-LightItalic'),
        url(/static/media/Gilroy-LightItalic.7b6800605c7db5758e74.ttf) format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Heavy'), local('Gilroy-Heavy'),
        url(/static/media/Gilroy-Heavy.bf729a99bcad6fccc3f4.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Thin'), local('Gilroy-Thin'),
        url(/static/media/Gilroy-Thin.fc813b757bc09eb509dc.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Thin Italic'), local('Gilroy-ThinItalic'),
        url(/static/media/Gilroy-ThinItalic.aa74839cb8a7e4237fa2.ttf) format('truetype');
    font-weight: 100;
    font-style: italic;
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{touch-action:pan-y;-webkit-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
.icon {
    background: #fff;
    -webkit-mask-repeat: no-repeat !important;
    -moz-mask-repeat: no-repeat !important;
    -ms-mask-repeat: no-repeat !important;
    -o-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
}

.icon.user {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2719%27 viewBox=%270 0 16 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175V13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175V13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2719%27 viewBox=%270 0 16 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175V13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175V13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 19px;
}

.icon.products {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271.63092%27 y=%271.00439%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%271.63092%27 y=%2711.0488%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%2711.6754%27 y=%271.00439%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%2711.6754%27 y=%2711.0488%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271.63092%27 y=%271.00439%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%271.63092%27 y=%2711.0488%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%2711.6754%27 y=%271.00439%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Crect x=%2711.6754%27 y=%2711.0488%27 width=%277.0311%27 height=%277.0311%27 rx=%272.5%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 19px;
}

.icon.vk {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.0729 0H6.9375C1.33331 0 0 1.33331 0 6.92706V13.0625C0 18.6666 1.32294 20 6.92706 20H13.0625C18.6667 20 20 18.6771 20 13.0729V6.9375C20 1.33331 18.6771 0 13.0729 0ZM16.1458 14.2708H14.6875C14.1354 14.2708 13.9688 13.8229 12.9792 12.8333C12.1146 12 11.75 11.8958 11.5312 11.8958C11.2292 11.8958 11.1458 11.9791 11.1458 12.3958V13.7083C11.1458 14.0625 11.0312 14.2708 10.1042 14.2708C9.20458 14.2104 8.33219 13.9371 7.55888 13.4735C6.78557 13.0098 6.13346 12.3691 5.65625 11.6041C4.52336 10.194 3.73511 8.53906 3.35419 6.77081C3.35419 6.55206 3.4375 6.35413 3.85419 6.35413H5.3125C5.6875 6.35413 5.82294 6.52081 5.96875 6.90625C6.67706 8.98956 7.88544 10.8021 8.375 10.8021C8.5625 10.8021 8.64581 10.7188 8.64581 10.25V8.10413C8.58331 7.125 8.0625 7.04163 8.0625 6.6875C8.06936 6.59407 8.11236 6.50699 8.18237 6.44475C8.25239 6.3825 8.34391 6.35 8.4375 6.35413H10.7292C11.0417 6.35413 11.1458 6.51038 11.1458 6.88538V9.78125C11.1458 10.0938 11.2812 10.1979 11.375 10.1979C11.5625 10.1979 11.7083 10.0938 12.0521 9.75C12.7907 8.84918 13.3943 7.84559 13.8438 6.77081C13.8896 6.64149 13.9766 6.53074 14.0913 6.4555C14.2061 6.38025 14.3423 6.34465 14.4792 6.35413H15.9375C16.375 6.35413 16.4688 6.57288 16.375 6.88538C15.8444 8.07369 15.1878 9.20168 14.4167 10.25C14.2604 10.4896 14.1979 10.6146 14.4167 10.8958C14.5625 11.1146 15.0729 11.5416 15.4167 11.9479C15.9167 12.4466 16.3318 13.0237 16.6458 13.6562C16.7708 14.0625 16.5625 14.2708 16.1458 14.2708Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.0729 0H6.9375C1.33331 0 0 1.33331 0 6.92706V13.0625C0 18.6666 1.32294 20 6.92706 20H13.0625C18.6667 20 20 18.6771 20 13.0729V6.9375C20 1.33331 18.6771 0 13.0729 0ZM16.1458 14.2708H14.6875C14.1354 14.2708 13.9688 13.8229 12.9792 12.8333C12.1146 12 11.75 11.8958 11.5312 11.8958C11.2292 11.8958 11.1458 11.9791 11.1458 12.3958V13.7083C11.1458 14.0625 11.0312 14.2708 10.1042 14.2708C9.20458 14.2104 8.33219 13.9371 7.55888 13.4735C6.78557 13.0098 6.13346 12.3691 5.65625 11.6041C4.52336 10.194 3.73511 8.53906 3.35419 6.77081C3.35419 6.55206 3.4375 6.35413 3.85419 6.35413H5.3125C5.6875 6.35413 5.82294 6.52081 5.96875 6.90625C6.67706 8.98956 7.88544 10.8021 8.375 10.8021C8.5625 10.8021 8.64581 10.7188 8.64581 10.25V8.10413C8.58331 7.125 8.0625 7.04163 8.0625 6.6875C8.06936 6.59407 8.11236 6.50699 8.18237 6.44475C8.25239 6.3825 8.34391 6.35 8.4375 6.35413H10.7292C11.0417 6.35413 11.1458 6.51038 11.1458 6.88538V9.78125C11.1458 10.0938 11.2812 10.1979 11.375 10.1979C11.5625 10.1979 11.7083 10.0938 12.0521 9.75C12.7907 8.84918 13.3943 7.84559 13.8438 6.77081C13.8896 6.64149 13.9766 6.53074 14.0913 6.4555C14.2061 6.38025 14.3423 6.34465 14.4792 6.35413H15.9375C16.375 6.35413 16.4688 6.57288 16.375 6.88538C15.8444 8.07369 15.1878 9.20168 14.4167 10.25C14.2604 10.4896 14.1979 10.6146 14.4167 10.8958C14.5625 11.1146 15.0729 11.5416 15.4167 11.9479C15.9167 12.4466 16.3318 13.0237 16.6458 13.6562C16.7708 14.0625 16.5625 14.2708 16.1458 14.2708Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    background: #6382F5;
}

.icon.users {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%273.40426%27 transform=%27matrix%28-1 0 0 1 11.2128 4.40426%29%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M5.25532 12.8594C5.25532 12.1272 5.71562 11.474 6.40518 11.2277V11.2277C9.51408 10.1174 12.9115 10.1174 16.0203 11.2277V11.2277C16.7099 11.474 17.1702 12.1272 17.1702 12.8594V13.979C17.1702 14.9896 16.2751 15.7659 15.2747 15.6229L14.9412 15.5753C12.4681 15.222 9.95741 15.222 7.48437 15.5753L7.15081 15.6229C6.15039 15.7659 5.25532 14.9896 5.25532 13.979V12.8594Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M16.3192 7.90264C17.7964 7.90264 18.9939 6.70511 18.9939 5.22787C18.9939 3.75064 17.7964 2.5531 16.3192 2.5531%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M19.2486 14.0051L19.5107 14.0425C20.2967 14.1548 21 13.5448 21 12.7508V11.8711C21 11.2958 20.6383 10.7826 20.0965 10.5891C19.5561 10.3961 19.0045 10.2458 18.4468 10.1382%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5.68085 7.90264C4.20362 7.90264 3.00608 6.70511 3.00608 5.22787C3.00608 3.75064 4.20362 2.5531 5.68085 2.5531%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M2.7514 14.0051L2.48932 14.0425C1.70327 14.1548 1 13.5448 1 12.7508V11.8711C1 11.2958 1.36167 10.7826 1.90347 10.5891C2.44392 10.3961 2.99546 10.2458 3.55319 10.1382%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%273.40426%27 transform=%27matrix%28-1 0 0 1 11.2128 4.40426%29%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M5.25532 12.8594C5.25532 12.1272 5.71562 11.474 6.40518 11.2277V11.2277C9.51408 10.1174 12.9115 10.1174 16.0203 11.2277V11.2277C16.7099 11.474 17.1702 12.1272 17.1702 12.8594V13.979C17.1702 14.9896 16.2751 15.7659 15.2747 15.6229L14.9412 15.5753C12.4681 15.222 9.95741 15.222 7.48437 15.5753L7.15081 15.6229C6.15039 15.7659 5.25532 14.9896 5.25532 13.979V12.8594Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M16.3192 7.90264C17.7964 7.90264 18.9939 6.70511 18.9939 5.22787C18.9939 3.75064 17.7964 2.5531 16.3192 2.5531%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M19.2486 14.0051L19.5107 14.0425C20.2967 14.1548 21 13.5448 21 12.7508V11.8711C21 11.2958 20.6383 10.7826 20.0965 10.5891C19.5561 10.3961 19.0045 10.2458 18.4468 10.1382%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5.68085 7.90264C4.20362 7.90264 3.00608 6.70511 3.00608 5.22787C3.00608 3.75064 4.20362 2.5531 5.68085 2.5531%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M2.7514 14.0051L2.48932 14.0425C1.70327 14.1548 1 13.5448 1 12.7508V11.8711C1 11.2958 1.36167 10.7826 1.90347 10.5891C2.44392 10.3961 2.99546 10.2458 3.55319 10.1382%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 17px;
    background: #000;
}

.icon.pc {
    -webkit-mask: url(/static/media/chalkboard-user-solid.1721273c5eaba280b4fc.svg);
    mask: url(/static/media/chalkboard-user-solid.1721273c5eaba280b4fc.svg);
    width: 22px;
    height: 17px;
}

.icon.dev {
    -webkit-mask: url(/static/media/code-solid.83ef4d5a8a8686c987b3.svg);
    mask: url(/static/media/code-solid.83ef4d5a8a8686c987b3.svg);
    width: 22px;
    height: 17px;
}

.icon.support {
    -webkit-mask: url(/static/media/comments-regular.68feaaf09690146abdf7.svg);
    mask: url(/static/media/comments-regular.68feaaf09690146abdf7.svg);
    width: 22px;
    height: 17px;
}

.icon.security {
    -webkit-mask: url(/static/media/user-shield-solid.10ede5644e9840041939.svg);
    mask: url(/static/media/user-shield-solid.10ede5644e9840041939.svg);
    width: 21px;
    height: 18px;
}

.icon.fire {
    -webkit-mask: url(/static/media/fire-solid.ffa18174a3341cf0b782.svg);
    mask: url(/static/media/fire-solid.ffa18174a3341cf0b782.svg);
    width: 18px;
    height: 24px;
}

.icon.download {
    -webkit-mask: url(/static/media/download-solid.1a739b0e874e000378cc.svg);
    mask: url(/static/media/download-solid.1a739b0e874e000378cc.svg);
    width: 20px;
    height: 20px;
}

.icon.freezed {
    -webkit-mask: url(/static/media/lock-solid.458a297c54567e26784f.svg);
    mask: url(/static/media/lock-solid.458a297c54567e26784f.svg);
    width: 18px;
    height: 24px;
}

.icon.expired {
    -webkit-mask: url(/static/media/cart-shopping-solid.30255b02b4d20766b412.svg);
    mask: url(/static/media/cart-shopping-solid.30255b02b4d20766b412.svg);
    width: 22px;
    height: 18px;
}

.icon.settings {
    -webkit-mask: url(/static/media/gears-solid.05338853285cdd38b768.svg);
    mask: url(/static/media/gears-solid.05338853285cdd38b768.svg);
    width: 25px;
    height: 22px;
}
.icon.settings2 {
    -webkit-mask: url(/static/media/gears-solid.05338853285cdd38b768.svg);
    mask: url(/static/media/gears-solid.05338853285cdd38b768.svg);
    width: 24px;
    height: 21px;
    background: #fff;
    margin-right: 8px;
}

.icon.support {
    -webkit-mask: url(/static/media/headset-solid.3e3ac2e1cc524f78a803.svg);
    mask: url(/static/media/headset-solid.3e3ac2e1cc524f78a803.svg);
    width: 25px;
    height: 22px;
}
.icon.support2 {
    -webkit-mask: url(/static/media/headset-solid.3e3ac2e1cc524f78a803.svg);
    mask: url(/static/media/headset-solid.3e3ac2e1cc524f78a803.svg);
    width: 25px;
    height: 22px;
    background: #fff;
    margin-right: 8px;
}


.icon.logout {
    -webkit-mask: url(/static/media/arrow-right-from-bracket-solid.489fc3861a23add3de95.svg);
    mask: url(/static/media/arrow-right-from-bracket-solid.489fc3861a23add3de95.svg);
    width: 22px;
    height: 18px;
}

.icon.week {
    -webkit-mask: url(/static/media/calendar-week-solid.f360217cf3b8e3daa85c.svg);
    mask: url(/static/media/calendar-week-solid.f360217cf3b8e3daa85c.svg);
    width: 18px;
    height: 21px;
}

.icon.month {
    -webkit-mask: url(/static/media/calendar-days-solid.4575664ce86f5430cc81.svg);
    mask: url(/static/media/calendar-days-solid.4575664ce86f5430cc81.svg);
    width: 18px;
    height: 21px;
}

.icon.edit {
    -webkit-mask: url(/static/media/pen-to-square-solid.eba13f47dfe29b03b3ee.svg);
    mask: url(/static/media/pen-to-square-solid.eba13f47dfe29b03b3ee.svg);
    width: 18px;
    height: 21px;
}

.icon.upload {
    -webkit-mask: url(/static/media/code-compare-solid.4936a97d6e3477971754.svg);
    mask: url(/static/media/code-compare-solid.4936a97d6e3477971754.svg);
    width: 20px;
    height: 20px;
}

.icon.message {
    -webkit-mask: url(/static/media/message-captions-solid.a87058a608c44caf27f5.svg);
    mask: url(/static/media/message-captions-solid.a87058a608c44caf27f5.svg);
    width: 19px;
    height: 19px;
}

.icon.question {
    -webkit-mask: url(/static/media/circle-question-regular.086964d53a807a371a67.svg);
    mask: url(/static/media/circle-question-regular.086964d53a807a371a67.svg);
    width: 22px;
    height: 19px;
}

.icon.attach {
    -webkit-mask: url(/static/media/paperclip-light.7075e9edcb8dc615e012.svg);
    mask: url(/static/media/paperclip-light.7075e9edcb8dc615e012.svg);
    width: 26px;
    height: 26px;
}

.icon.send {
    -webkit-mask: url(/static/media/paper-plane-top-regular.0a5f2aa3622da0548d2e.svg);
    mask: url(/static/media/paper-plane-top-regular.0a5f2aa3622da0548d2e.svg);
    width: 22px;
    height: 20px;
}

.icon.ticket {
    -webkit-mask: url(/static/media/ballot-check-solid.16dd2628aafd32b9733c.svg);
    mask: url(/static/media/ballot-check-solid.16dd2628aafd32b9733c.svg);
    width: 18px;
    height: 19px;
}

.icon.ticket_close {
    -webkit-mask: url(/static/media/square-xmark-light.b82d2da2b307f3e70b58.svg);
    mask: url(/static/media/square-xmark-light.b82d2da2b307f3e70b58.svg);
    width: 30px;
    height: 30px;
    background-color: #ea384dd9;
}
.icon.ticket_leave {
    -webkit-mask: url(/static/media/square-arrow-left-light.08651705cf9a8cf424f7.svg);
    mask: url(/static/media/square-arrow-left-light.08651705cf9a8cf424f7.svg);
    width: 30px;
    height: 30px;
    background-color: #ffffffd4;
}
.icon.ticket_more {
    -webkit-mask: url(/static/media/square-list-light.94c66471af8a0e85b352.svg);
    mask: url(/static/media/square-list-light.94c66471af8a0e85b352.svg);
    width: 30px;
    height: 30px;
    background-color: #000000d4;
}
.icon.ticket_more2 {
    -webkit-mask: url(/static/media/square-ellipsis-light.8869c42223ca735d386a.svg);
    mask: url(/static/media/square-ellipsis-light.8869c42223ca735d386a.svg);
    width: 30px;
    height: 30px;
    background-color: #ffffffd4;
}

.icon.partner {
    -webkit-mask: url(/static/media/handshake-solid.6322d6a44f9688a02fc9.svg);
    mask: url(/static/media/handshake-solid.6322d6a44f9688a02fc9.svg);
    width: 26px;
    height: 20px;
    background-color: #000000d4;
}

.icon.plus {
    -webkit-mask: url(/static/media/plus-solid.c4ad914c4a4c568589ae.svg);
    mask: url(/static/media/plus-solid.c4ad914c4a4c568589ae.svg);
    width: 22px;
    height: 22px;
    min-height: 22px;
    min-width: 22px;
}

.icon.hwid {
    -webkit-mask: url(/static/media/laptop-binary-solid.db2771aaff0feec94032.svg);
    mask: url(/static/media/laptop-binary-solid.db2771aaff0feec94032.svg);
    width: 24px;
    height: 20px;
}

.icon.terminal {
    -webkit-mask: url(/static/media/terminal-solid.f34e0d6359bb543a2025.svg);
    mask: url(/static/media/terminal-solid.f34e0d6359bb543a2025.svg);
    width: 20px;
    height: 18px;
}
.icon.terminal2 {
    -webkit-mask: url(/static/media/square-terminal-solid.b06da85573727a57e8db.svg);
    mask: url(/static/media/square-terminal-solid.b06da85573727a57e8db.svg);
    width: 24px;
    height: 26px;
}
.icon.copy {
    -webkit-mask: url(/static/media/copy-solid.5feaac5620e18e9f8d21.svg);
    mask: url(/static/media/copy-solid.5feaac5620e18e9f8d21.svg);
    width: 24px;
    height: 26px;
}
.icon.eye2 {
    -webkit-mask: url(/static/media/eye-solid.960626cf300fd233c5c5.svg);
    mask: url(/static/media/eye-solid.960626cf300fd233c5c5.svg);
    width: 26px;
    height: 22px;
}
.icon.eye3 {
    -webkit-mask: url(/static/media/eye-slash-sharp-solid.42096a075572af8c5eb8.svg);
    mask: url(/static/media/eye-slash-sharp-solid.42096a075572af8c5eb8.svg);
    width: 28px;
    height: 22px;
}


.icon.freeze {
    -webkit-mask: url(/static/media/snowflake-regular.2fddf04dcbe24f130638.svg);
    mask: url(/static/media/snowflake-regular.2fddf04dcbe24f130638.svg);
    width: 20px;
    height: 22px;
}

.icon.reseller {
    -webkit-mask: url(/static/media/dollar-sign-solid.e3b329334ada6866a095.svg);
    mask: url(/static/media/dollar-sign-solid.e3b329334ada6866a095.svg);
    width: 15px;
    height: 24px;
}
.icon.reseller2 {
    -webkit-mask: url(/static/media/dollar-sign-solid.e3b329334ada6866a095.svg);
    mask: url(/static/media/dollar-sign-solid.e3b329334ada6866a095.svg);
    width: 20px;
    height: 22px;
    background: #fff;
}

.icon.keys {
    -webkit-mask: url(/static/media/key-regular.2b335a710fd365ef0cdf.svg);
    mask: url(/static/media/key-regular.2b335a710fd365ef0cdf.svg);
    width: 28px;
    height: 22px;
    background-color: #fff;
}

.icon.email {
    -webkit-mask: url(/static/media/envelope-solid.555fc28d9cd079e05c5e.svg);
    mask: url(/static/media/envelope-solid.555fc28d9cd079e05c5e.svg);
    width: 20px;
    height: 20px;
}

.icon.promocode {
    -webkit-mask: url(/static/media/billboard-solid.739355651c2449c6ed6e.svg);
    mask: url(/static/media/billboard-solid.739355651c2449c6ed6e.svg);
    width: 24px;
    height: 20px;
    margin-right: 10px;
    background-color: #fff;
}

.icon.link {
    -webkit-mask: url(/static/media/link-solid.8b8f3f7dbd35d4817c0e.svg);
    mask: url(/static/media/link-solid.8b8f3f7dbd35d4817c0e.svg);
    width: 24px;
    height: 20px;
    margin-right: 10px;
    background-color: #000000d4;
}

.icon.link3 {
    -webkit-mask: url(/static/media/link-solid.8b8f3f7dbd35d4817c0e.svg);
    mask: url(/static/media/link-solid.8b8f3f7dbd35d4817c0e.svg);
    width: 24px;
    height: 20px;
    margin-right: 10px;
    background-color: #ffffffaa;
}

.icon.restart {
    -webkit-mask: url(/static/media/power-off-solid.ea695cf9a73fdeb7fd65.svg);
    mask: url(/static/media/power-off-solid.ea695cf9a73fdeb7fd65.svg);
    width: 20px;
    height: 20px;
}

.icon.arrow-left {
    -webkit-mask: url(/static/media/angle-left-solid.319135097826a44c2402.svg);
    mask: url(/static/media/angle-left-solid.319135097826a44c2402.svg);
    width: 16px;
    height: 22px;
}
.icon.arrow-right {
    -webkit-mask: url(/static/media/angle-right-solid.cd7d8846f4aeb368b8c2.svg);
    mask: url(/static/media/angle-right-solid.cd7d8846f4aeb368b8c2.svg);
    width: 16px;
    height: 22px;
}

.icon.arrow-left-small {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2710%27 viewBox=%270 0 16 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.44178 1L1.28113 4.29289C0.90629 4.68342 0.90629 5.31658 1.28113 5.70711L4.44178 9M1.56226 5.00001L15 5.00001%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2710%27 viewBox=%270 0 16 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.44178 1L1.28113 4.29289C0.90629 4.68342 0.90629 5.31658 1.28113 5.70711L4.44178 9M1.56226 5.00001L15 5.00001%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 10px;
}

.icon.arrow-right-small {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%2710%27 viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10.8041 9L13.739 5.70711C14.087 5.31658 14.087 4.68342 13.739 4.29289L10.8041 1M13.4779 4.99999L1 4.99999%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%2710%27 viewBox=%270 0 15 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10.8041 9L13.739 5.70711C14.087 5.31658 14.087 4.68342 13.739 4.29289L10.8041 1M13.4779 4.99999L1 4.99999%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 15px;
    height: 10px;
}

.icon.arrow-left-big {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2751%27 height=%2751%27 viewBox=%270 0 51 51%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M23.0263 18.1316L17.4148 23.7432C16.459 24.6989 16.459 26.2485 17.4148 27.2043L23.0263 32.8158M18.1316 25.4737H35.2632M25.4737 1.00002C11.9572 1.00002 1 11.9573 1 25.4737C1 38.9901 11.9572 49.9474 25.4737 49.9474C38.9901 49.9474 49.9474 38.9901 49.9474 25.4737C49.9474 11.9573 38.9901 1.00002 25.4737 1.00002Z%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2751%27 height=%2751%27 viewBox=%270 0 51 51%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M23.0263 18.1316L17.4148 23.7432C16.459 24.6989 16.459 26.2485 17.4148 27.2043L23.0263 32.8158M18.1316 25.4737H35.2632M25.4737 1.00002C11.9572 1.00002 1 11.9573 1 25.4737C1 38.9901 11.9572 49.9474 25.4737 49.9474C38.9901 49.9474 49.9474 38.9901 49.9474 25.4737C49.9474 11.9573 38.9901 1.00002 25.4737 1.00002Z%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 51px;
    height: 51px;
}

.icon.arrow-right-big {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2751%27 height=%2751%27 viewBox=%270 0 51 51%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M27.8684 32.8159L33.48 27.2044C34.4357 26.2486 34.4357 24.699 33.48 23.7433L27.8684 18.1317M32.7632 25.4738L15.6316 25.4738M25.4211 49.9475C38.9375 49.9475 49.8948 38.9902 49.8948 25.4738C49.8948 11.9574 38.9375 1.00012 25.4211 1.00013C11.9046 1.00013 0.947387 11.9574 0.947388 25.4738C0.947389 38.9903 11.9046 49.9475 25.4211 49.9475Z%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2751%27 height=%2751%27 viewBox=%270 0 51 51%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M27.8684 32.8159L33.48 27.2044C34.4357 26.2486 34.4357 24.699 33.48 23.7433L27.8684 18.1317M32.7632 25.4738L15.6316 25.4738M25.4211 49.9475C38.9375 49.9475 49.8948 38.9902 49.8948 25.4738C49.8948 11.9574 38.9375 1.00012 25.4211 1.00013C11.9046 1.00013 0.947387 11.9574 0.947388 25.4738C0.947389 38.9903 11.9046 49.9475 25.4211 49.9475Z%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 51px;
    height: 51px;
}

.icon.arrow-down {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.8 9.70001L10.3172 12.4109C10.7128 12.8369 11.3872 12.8369 11.7828 12.4109L14.3 9.70001M1 11C1 16.5228 5.47715 21 11 21C16.5228 21 21 16.5228 21 11C21 5.47715 16.5228 1 11 1C5.47715 1 1 5.47715 1 11Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.8 9.70001L10.3172 12.4109C10.7128 12.8369 11.3872 12.8369 11.7828 12.4109L14.3 9.70001M1 11C1 16.5228 5.47715 21 11 21C16.5228 21 21 16.5228 21 11C21 5.47715 16.5228 1 11 1C5.47715 1 1 5.47715 1 11Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 22px;
}

.icon.search-i {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%277.7027%27 cy=%277.7027%27 r=%276.7027%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M12.311 12.6945L16.5002 16.8837L12.311 12.6945Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M12.311 12.6945L16.5002 16.8837%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%277.7027%27 cy=%277.7027%27 r=%276.7027%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M12.311 12.6945L16.5002 16.8837L12.311 12.6945Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M12.311 12.6945L16.5002 16.8837%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    width: 18px;
    height: 18px;
}

.icon.like {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2716%27 viewBox=%270 0 19 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.8802 0.133362C11.5745 0.195071 10.3374 0.735734 9.40513 1.65203L9.29793 1.7503L9.19073 1.65203C8.20202 0.684589 6.87561 0.139926 5.49233 0.133362C4.13629 0.13336 2.83566 0.671434 1.87595 1.62946C0.916247 2.58749 0.375902 3.88719 0.373535 5.24323C0.373535 7.9947 1.383 9.3079 5.89434 12.8723L8.2974 14.7483C8.887 15.2128 9.72674 15.2128 10.3163 14.7483L12.4246 13.1046L13.2643 12.4435C17.3111 9.19176 18.2402 7.8875 18.2402 5.24323C18.2378 3.88719 17.6975 2.58749 16.7378 1.62946C15.7781 0.671434 14.4774 0.13336 13.1214 0.133362H12.8802ZM13.1214 1.74136C14.051 1.74136 14.9426 2.11002 15.6008 2.76649C16.2589 3.42296 16.6298 4.31366 16.6322 5.24323V5.51123C16.5607 7.4319 15.6763 8.48603 11.7099 11.6216L9.32474 13.4798C9.3193 13.4829 9.31314 13.4845 9.30687 13.4845C9.3006 13.4845 9.29443 13.4829 9.289 13.4798L7.16287 11.836L6.38567 11.2107C2.6962 8.2627 1.98154 7.26216 1.98154 5.25216C1.98154 4.32104 2.35142 3.42805 3.00982 2.76965C3.66823 2.11125 4.56121 1.74136 5.49233 1.74136C6.6894 1.74136 7.7346 2.29523 8.68153 3.45656C8.75757 3.54929 8.85337 3.62383 8.96194 3.67474C9.07051 3.72564 9.18909 3.75162 9.309 3.75076C9.42891 3.74991 9.54711 3.72224 9.65494 3.66979C9.76277 3.61734 9.8575 3.54143 9.9322 3.44763C10.8613 2.2863 11.8975 1.74136 13.1214 1.74136Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2716%27 viewBox=%270 0 19 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.8802 0.133362C11.5745 0.195071 10.3374 0.735734 9.40513 1.65203L9.29793 1.7503L9.19073 1.65203C8.20202 0.684589 6.87561 0.139926 5.49233 0.133362C4.13629 0.13336 2.83566 0.671434 1.87595 1.62946C0.916247 2.58749 0.375902 3.88719 0.373535 5.24323C0.373535 7.9947 1.383 9.3079 5.89434 12.8723L8.2974 14.7483C8.887 15.2128 9.72674 15.2128 10.3163 14.7483L12.4246 13.1046L13.2643 12.4435C17.3111 9.19176 18.2402 7.8875 18.2402 5.24323C18.2378 3.88719 17.6975 2.58749 16.7378 1.62946C15.7781 0.671434 14.4774 0.13336 13.1214 0.133362H12.8802ZM13.1214 1.74136C14.051 1.74136 14.9426 2.11002 15.6008 2.76649C16.2589 3.42296 16.6298 4.31366 16.6322 5.24323V5.51123C16.5607 7.4319 15.6763 8.48603 11.7099 11.6216L9.32474 13.4798C9.3193 13.4829 9.31314 13.4845 9.30687 13.4845C9.3006 13.4845 9.29443 13.4829 9.289 13.4798L7.16287 11.836L6.38567 11.2107C2.6962 8.2627 1.98154 7.26216 1.98154 5.25216C1.98154 4.32104 2.35142 3.42805 3.00982 2.76965C3.66823 2.11125 4.56121 1.74136 5.49233 1.74136C6.6894 1.74136 7.7346 2.29523 8.68153 3.45656C8.75757 3.54929 8.85337 3.62383 8.96194 3.67474C9.07051 3.72564 9.18909 3.75162 9.309 3.75076C9.42891 3.74991 9.54711 3.72224 9.65494 3.66979C9.76277 3.61734 9.8575 3.54143 9.9322 3.44763C10.8613 2.2863 11.8975 1.74136 13.1214 1.74136Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 19px;
    height: 16px;
}

.icon.eye {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.9375 4C5.9375 4.24864 5.83873 4.4871 5.66291 4.66291C5.4871 4.83873 5.24864 4.9375 5 4.9375C4.75136 4.9375 4.5129 4.83873 4.33709 4.66291C4.16127 4.4871 4.0625 4.24864 4.0625 4C4.0625 3.75136 4.16127 3.5129 4.33709 3.33709C4.5129 3.16127 4.75136 3.0625 5 3.0625C5.24864 3.0625 5.4871 3.16127 5.66291 3.33709C5.83873 3.5129 5.9375 3.75136 5.9375 4V4Z%27 fill=%27%23fff%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.6875 4C9.6875 3.375 7.8125 0.875 5 0.875C2.1875 0.875 0.3125 3.375 0.3125 4C0.3125 4.625 2.1875 7.125 5 7.125C7.8125 7.125 9.6875 4.625 9.6875 4ZM7.1875 4C7.1875 4.58016 6.95703 5.13656 6.5468 5.5468C6.13656 5.95703 5.58016 6.1875 5 6.1875C4.41984 6.1875 3.86344 5.95703 3.4532 5.5468C3.04297 5.13656 2.8125 4.58016 2.8125 4C2.8125 3.41984 3.04297 2.86344 3.4532 2.4532C3.86344 2.04297 4.41984 1.8125 5 1.8125C5.58016 1.8125 6.13656 2.04297 6.5468 2.4532C6.95703 2.86344 7.1875 3.41984 7.1875 4V4Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.9375 4C5.9375 4.24864 5.83873 4.4871 5.66291 4.66291C5.4871 4.83873 5.24864 4.9375 5 4.9375C4.75136 4.9375 4.5129 4.83873 4.33709 4.66291C4.16127 4.4871 4.0625 4.24864 4.0625 4C4.0625 3.75136 4.16127 3.5129 4.33709 3.33709C4.5129 3.16127 4.75136 3.0625 5 3.0625C5.24864 3.0625 5.4871 3.16127 5.66291 3.33709C5.83873 3.5129 5.9375 3.75136 5.9375 4V4Z%27 fill=%27%23fff%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.6875 4C9.6875 3.375 7.8125 0.875 5 0.875C2.1875 0.875 0.3125 3.375 0.3125 4C0.3125 4.625 2.1875 7.125 5 7.125C7.8125 7.125 9.6875 4.625 9.6875 4ZM7.1875 4C7.1875 4.58016 6.95703 5.13656 6.5468 5.5468C6.13656 5.95703 5.58016 6.1875 5 6.1875C4.41984 6.1875 3.86344 5.95703 3.4532 5.5468C3.04297 5.13656 2.8125 4.58016 2.8125 4C2.8125 3.41984 3.04297 2.86344 3.4532 2.4532C3.86344 2.04297 4.41984 1.8125 5 1.8125C5.58016 1.8125 6.13656 2.04297 6.5468 2.4532C6.95703 2.86344 7.1875 3.41984 7.1875 4V4Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 10px;
    height: 8px;
}

.icon.home {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 19px;
    height: 19px;
}

.icon.shield {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2722%27 viewBox=%270 0 18 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 6.03285C1 5.66968 1.19689 5.33506 1.51436 5.15869L8.51436 1.2698C8.81638 1.10201 9.18362 1.10201 9.48564 1.2698L16.4856 5.15869C16.8031 5.33506 17 5.66968 17 6.03285V10.6715C17 14.3032 15.0311 17.6494 11.8564 19.4131L9.48564 20.7302C9.18362 20.898 8.81638 20.898 8.51436 20.7302L6.14357 19.4131C2.96892 17.6494 1 14.3032 1 10.6715V6.03285Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M6.5 11L8.5 13L12.5 9%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2722%27 viewBox=%270 0 18 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 6.03285C1 5.66968 1.19689 5.33506 1.51436 5.15869L8.51436 1.2698C8.81638 1.10201 9.18362 1.10201 9.48564 1.2698L16.4856 5.15869C16.8031 5.33506 17 5.66968 17 6.03285V10.6715C17 14.3032 15.0311 17.6494 11.8564 19.4131L9.48564 20.7302C9.18362 20.898 8.81638 20.898 8.51436 20.7302L6.14357 19.4131C2.96892 17.6494 1 14.3032 1 10.6715V6.03285Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M6.5 11L8.5 13L12.5 9%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    width: 18px;
    height: 22px;
}

.icon.screen-img {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1.06407 15.8897C0.727012 16.1305 0.648943 16.5989 0.8897 16.9359C1.13046 17.273 1.59887 17.3511 1.93593 17.1103L1.06407 15.8897ZM20.5199 15.5762C20.8381 15.8413 21.311 15.7983 21.5762 15.4801C21.8413 15.1619 21.7983 14.689 21.4801 14.4238L20.5199 15.5762ZM6.07822 15.0782L5.54789 15.6085L6.07822 15.0782ZM1.93593 17.1103L4.19512 15.4966L3.32327 14.276L1.06407 15.8897L1.93593 17.1103ZM5.54789 15.6085L6.62114 16.6818L7.6818 15.6211L6.60855 14.5479L5.54789 15.6085ZM9.37886 16.6818L14.368 11.6927L13.3073 10.632L8.3182 15.6211L9.37886 16.6818ZM15.7827 11.6285L20.5199 15.5762L21.4801 14.4238L16.7429 10.4762L15.7827 11.6285ZM14.368 11.6927C14.752 11.3087 15.3655 11.2808 15.7827 11.6285L16.7429 10.4762C15.7297 9.63184 14.2399 9.69942 13.3073 10.632L14.368 11.6927ZM6.62114 16.6818C7.38266 17.4433 8.61734 17.4433 9.37886 16.6818L8.3182 15.6211C8.14246 15.7969 7.85754 15.7969 7.6818 15.6211L6.62114 16.6818ZM4.19512 15.4966C4.6128 15.1983 5.18494 15.2456 5.54789 15.6085L6.60855 14.5479C5.72711 13.6664 4.33762 13.5515 3.32327 14.276L4.19512 15.4966Z%27 fill=%27%23fff%27/%3E%3Ccircle r=%272%27 transform=%27matrix%28-1 0 0 1 7 7%29%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1.06407 15.8897C0.727012 16.1305 0.648943 16.5989 0.8897 16.9359C1.13046 17.273 1.59887 17.3511 1.93593 17.1103L1.06407 15.8897ZM20.5199 15.5762C20.8381 15.8413 21.311 15.7983 21.5762 15.4801C21.8413 15.1619 21.7983 14.689 21.4801 14.4238L20.5199 15.5762ZM6.07822 15.0782L5.54789 15.6085L6.07822 15.0782ZM1.93593 17.1103L4.19512 15.4966L3.32327 14.276L1.06407 15.8897L1.93593 17.1103ZM5.54789 15.6085L6.62114 16.6818L7.6818 15.6211L6.60855 14.5479L5.54789 15.6085ZM9.37886 16.6818L14.368 11.6927L13.3073 10.632L8.3182 15.6211L9.37886 16.6818ZM15.7827 11.6285L20.5199 15.5762L21.4801 14.4238L16.7429 10.4762L15.7827 11.6285ZM14.368 11.6927C14.752 11.3087 15.3655 11.2808 15.7827 11.6285L16.7429 10.4762C15.7297 9.63184 14.2399 9.69942 13.3073 10.632L14.368 11.6927ZM6.62114 16.6818C7.38266 17.4433 8.61734 17.4433 9.37886 16.6818L8.3182 15.6211C8.14246 15.7969 7.85754 15.7969 7.6818 15.6211L6.62114 16.6818ZM4.19512 15.4966C4.6128 15.1983 5.18494 15.2456 5.54789 15.6085L6.60855 14.5479C5.72711 13.6664 4.33762 13.5515 3.32327 14.276L4.19512 15.4966Z%27 fill=%27%23fff%27/%3E%3Ccircle r=%272%27 transform=%27matrix%28-1 0 0 1 7 7%29%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 22px;
}

.icon.gamepad {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 6.00049C1 3.04238 3.55409 0.730958 6.49752 1.0253L10.403 1.41585C10.8 1.45555 11.2 1.45555 11.597 1.41585L15.5025 1.0253C18.4459 0.730958 21 3.04238 21 6.00049V12C21 15.5932 16.3041 16.9552 14.3815 13.9196C13.0112 11.7559 9.88031 11.6836 8.4116 13.7818L8.12736 14.1878C5.93073 17.3259 1 15.7716 1 11.9411V6.00049Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Ccircle cx=%2717%27 cy=%275.97552%27 r=%271%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2715%27 cy=%278.97552%27 r=%271%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7 9.47553L7 5.47552%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5 7.47552L9 7.47552%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 6.00049C1 3.04238 3.55409 0.730958 6.49752 1.0253L10.403 1.41585C10.8 1.45555 11.2 1.45555 11.597 1.41585L15.5025 1.0253C18.4459 0.730958 21 3.04238 21 6.00049V12C21 15.5932 16.3041 16.9552 14.3815 13.9196C13.0112 11.7559 9.88031 11.6836 8.4116 13.7818L8.12736 14.1878C5.93073 17.3259 1 15.7716 1 11.9411V6.00049Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Ccircle cx=%2717%27 cy=%275.97552%27 r=%271%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2715%27 cy=%278.97552%27 r=%271%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7 9.47553L7 5.47552%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5 7.47552L9 7.47552%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 17px;
}

.icon.server {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2714%27 height=%2724%27 viewBox=%270 0 14 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M14 1.62191C14 0.730477 13.2626 0.00787354 12.3529 0.00787354H1.64706C0.737388 0.00787354 0 0.730477 0 1.62191V21.3938C0 22.2853 0.737388 23.0079 1.64706 23.0079H12.3529C13.2626 23.0079 14 22.2853 14 21.3938V1.62191ZM11.8588 19.0938C11.8588 19.651 11.4072 20.1026 10.8501 20.1026H3.14995C2.59282 20.1026 2.14118 19.651 2.14118 19.0938C2.14118 18.5367 2.59282 18.0851 3.14995 18.0851H10.8501C11.4072 18.0851 11.8588 18.5367 11.8588 19.0938ZM6.32866 10.4604C6.32866 9.89158 6.79922 9.43045 7.37965 9.43045C7.96007 9.43045 8.43064 9.89158 8.43064 10.4604C8.43064 11.0292 7.96007 11.4903 7.37965 11.4903C6.79922 11.4903 6.32866 11.0292 6.32866 10.4604ZM9.53944 10.4604C9.53944 9.89158 10.01 9.43045 10.5904 9.43045C11.1708 9.43045 11.6414 9.89158 11.6414 10.4604C11.6414 11.0292 11.1708 11.4903 10.5904 11.4903C10.0099 11.4903 9.53944 11.0292 9.53944 10.4604ZM11.8588 6.54472C11.8588 7.12413 11.3891 7.59384 10.8097 7.59384H3.1903C2.61088 7.59384 2.14118 7.12413 2.14118 6.54472C2.14118 5.9653 2.61088 5.49559 3.1903 5.49559H10.8097C11.3891 5.49559 11.8588 5.9653 11.8588 6.54472ZM11.8588 2.83243C11.8588 3.41185 11.3891 3.88156 10.8097 3.88156H3.1903C2.61088 3.88156 2.14118 3.41185 2.14118 2.83243C2.14118 2.25302 2.61088 1.78331 3.1903 1.78331H10.8097C11.3891 1.78331 11.8588 2.25302 11.8588 2.83243Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    mask: url("data:image/svg+xml,%3Csvg width=%2714%27 height=%2724%27 viewBox=%270 0 14 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M14 1.62191C14 0.730477 13.2626 0.00787354 12.3529 0.00787354H1.64706C0.737388 0.00787354 0 0.730477 0 1.62191V21.3938C0 22.2853 0.737388 23.0079 1.64706 23.0079H12.3529C13.2626 23.0079 14 22.2853 14 21.3938V1.62191ZM11.8588 19.0938C11.8588 19.651 11.4072 20.1026 10.8501 20.1026H3.14995C2.59282 20.1026 2.14118 19.651 2.14118 19.0938C2.14118 18.5367 2.59282 18.0851 3.14995 18.0851H10.8501C11.4072 18.0851 11.8588 18.5367 11.8588 19.0938ZM6.32866 10.4604C6.32866 9.89158 6.79922 9.43045 7.37965 9.43045C7.96007 9.43045 8.43064 9.89158 8.43064 10.4604C8.43064 11.0292 7.96007 11.4903 7.37965 11.4903C6.79922 11.4903 6.32866 11.0292 6.32866 10.4604ZM9.53944 10.4604C9.53944 9.89158 10.01 9.43045 10.5904 9.43045C11.1708 9.43045 11.6414 9.89158 11.6414 10.4604C11.6414 11.0292 11.1708 11.4903 10.5904 11.4903C10.0099 11.4903 9.53944 11.0292 9.53944 10.4604ZM11.8588 6.54472C11.8588 7.12413 11.3891 7.59384 10.8097 7.59384H3.1903C2.61088 7.59384 2.14118 7.12413 2.14118 6.54472C2.14118 5.9653 2.61088 5.49559 3.1903 5.49559H10.8097C11.3891 5.49559 11.8588 5.9653 11.8588 6.54472ZM11.8588 2.83243C11.8588 3.41185 11.3891 3.88156 10.8097 3.88156H3.1903C2.61088 3.88156 2.14118 3.41185 2.14118 2.83243C2.14118 2.25302 2.61088 1.78331 3.1903 1.78331H10.8097C11.3891 1.78331 11.8588 2.25302 11.8588 2.83243Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 14px;
    height: 24px;
}

.icon.contact {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 28px;
    height: 27px;
}

.icon.crosshair {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 22px;
}

.icon.payment {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 23px;
    height: 26px;
}

.icon.loading {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
}

.icon.cart {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 18px;
    height: 16px;
}

.icon.mouse {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 22px;
}

.icon.start-hack {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 66px;
    height: 35px;
}

.icon.user-check {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 19px;
}

.icon.user-plus {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 19px;
}

.icon.plus-box {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 22px;
}

.icon.document {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2722%27 viewBox=%270 0 18 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2716%27 height=%2720%27 rx=%274%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M5 6H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 11H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 16H9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2725%27 height=%2725%27 rx=%275%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M10.8481 16.1519L16.1514 10.8486%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10.8481 10.8486L16.1514 16.1519%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%277%27 height=%277%27 viewBox=%270 0 7 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.848066 6.15193L6.15137 0.848633%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M0.848066 0.848555L6.15137 6.15186%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%277%27 height=%277%27 viewBox=%270 0 7 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.848066 6.15193L6.15137 0.848633%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M0.848066 0.848555L6.15137 6.15186%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2722%27 viewBox=%270 0 18 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2716%27 height=%2720%27 rx=%274%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M5 6H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 11H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 16H9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2722%27 viewBox=%270 0 18 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2716%27 height=%2720%27 rx=%274%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M5 6H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 11H13%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M5 16H9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2725%27 height=%2725%27 rx=%275%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M10.8481 16.1519L16.1514 10.8486%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10.8481 10.8486L16.1514 16.1519%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2725%27 height=%2725%27 rx=%275%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M10.8481 16.1519L16.1514 10.8486%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10.8481 10.8486L16.1514 16.1519%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%277%27 height=%277%27 viewBox=%270 0 7 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.848066 6.15193L6.15137 0.848633%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M0.848066 0.848555L6.15137 6.15186%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%277%27 height=%277%27 viewBox=%270 0 7 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.848066 6.15193L6.15137 0.848633%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M0.848066 0.848555L6.15137 6.15186%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 18px;
    height: 22px;
}

.icon.smile {
    background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%2710%27 fill=%27white%27/%3E%3Cpath d=%27M10 18C13.866 18 17 14.866 17 11C17 11 12.7729 12.19 10 12.19C7.22711 12.19 3 11 3 11C3 14.866 6.13401 18 10 18Z%27 fill=%27black%27/%3E%3Cpath d=%27M10.0004 15.9996C13.0932 15.9996 15.6004 14.4774 15.6004 12.5996C15.6004 12.5996 12.2187 13.1776 10.0004 13.1776C7.78208 13.1776 4.40039 12.5996 4.40039 12.5996C4.40039 14.4774 6.9076 15.9996 10.0004 15.9996Z%27 fill=%27white%27/%3E%3Cellipse cx=%276.4%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3Cellipse cx=%2713.1998%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%2710%27 fill=%27white%27/%3E%3Cpath d=%27M10 18C13.866 18 17 14.866 17 11C17 11 12.7729 12.19 10 12.19C7.22711 12.19 3 11 3 11C3 14.866 6.13401 18 10 18Z%27 fill=%27black%27/%3E%3Cpath d=%27M10.0004 15.9996C13.0932 15.9996 15.6004 14.4774 15.6004 12.5996C15.6004 12.5996 12.2187 13.1776 10.0004 13.1776C7.78208 13.1776 4.40039 12.5996 4.40039 12.5996C4.40039 14.4774 6.9076 15.9996 10.0004 15.9996Z%27 fill=%27white%27/%3E%3Cellipse cx=%276.4%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3Cellipse cx=%2713.1998%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%2710%27 fill=%27white%27/%3E%3Cpath d=%27M10 18C13.866 18 17 14.866 17 11C17 11 12.7729 12.19 10 12.19C7.22711 12.19 3 11 3 11C3 14.866 6.13401 18 10 18Z%27 fill=%27black%27/%3E%3Cpath d=%27M10.0004 15.9996C13.0932 15.9996 15.6004 14.4774 15.6004 12.5996C15.6004 12.5996 12.2187 13.1776 10.0004 13.1776C7.78208 13.1776 4.40039 12.5996 4.40039 12.5996C4.40039 14.4774 6.9076 15.9996 10.0004 15.9996Z%27 fill=%27white%27/%3E%3Cellipse cx=%276.4%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3Cellipse cx=%2713.1998%27 cy=%276.7841%27 rx=%271.4%27 ry=%272.184%27 fill=%27black%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    border-radius: 50%;
    
}

.icon.files {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2722%27 viewBox=%270 0 20 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.21935 21.3043C3.81389 21.3043 2.49756 20.701 1.54754 19.739C-0.294885 17.8738 -0.807938 14.6183 1.77472 12.0041L12.3706 1.27564C13.4445 0.18866 14.8108 -0.232001 16.1185 0.123441C17.4044 0.471274 18.4566 1.5376 18.8011 2.83871C19.1511 4.16482 18.737 5.54855 17.6642 6.63552L7.53027 16.8966C6.952 17.4825 6.29763 17.8292 5.6411 17.8988C4.99 17.9684 4.36934 17.7575 3.93455 17.3173C3.14757 16.5172 3.03453 15.0161 4.34542 13.69L11.463 6.48335C11.7553 6.18769 12.2293 6.18769 12.5217 6.48335C12.8141 6.77901 12.8141 7.25945 12.5217 7.55511L5.40305 14.7629C4.78782 15.3846 4.7313 15.9792 4.99326 16.2455C5.10848 16.3607 5.2824 16.414 5.48349 16.3911C5.7911 16.3596 6.1422 16.1564 6.47155 15.8248L16.6054 5.56485C17.3011 4.86049 17.5674 4.03221 17.3555 3.23328C17.2495 2.8426 17.0444 2.48591 16.7601 2.19777C16.4758 1.90964 16.1218 1.69983 15.7326 1.58869C14.9435 1.37455 14.1239 1.64521 13.4282 2.34957L2.83235 13.078C0.858398 15.077 1.33123 17.3781 2.60517 18.6684C3.8802 19.9586 6.15089 20.4391 8.12593 18.4379L18.7218 7.70946C18.7909 7.63919 18.8733 7.58339 18.9642 7.54529C19.055 7.5072 19.1526 7.48758 19.2511 7.48758C19.3497 7.48758 19.4473 7.5072 19.5381 7.54529C19.629 7.58339 19.7114 7.63919 19.7805 7.70946C19.9212 7.85257 20 8.04521 20 8.24588C20 8.44655 19.9212 8.63919 19.7805 8.7823L9.18465 19.5108C7.93571 20.7738 6.53677 21.3043 5.21935 21.3043Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2722%27 viewBox=%270 0 20 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.21935 21.3043C3.81389 21.3043 2.49756 20.701 1.54754 19.739C-0.294885 17.8738 -0.807938 14.6183 1.77472 12.0041L12.3706 1.27564C13.4445 0.18866 14.8108 -0.232001 16.1185 0.123441C17.4044 0.471274 18.4566 1.5376 18.8011 2.83871C19.1511 4.16482 18.737 5.54855 17.6642 6.63552L7.53027 16.8966C6.952 17.4825 6.29763 17.8292 5.6411 17.8988C4.99 17.9684 4.36934 17.7575 3.93455 17.3173C3.14757 16.5172 3.03453 15.0161 4.34542 13.69L11.463 6.48335C11.7553 6.18769 12.2293 6.18769 12.5217 6.48335C12.8141 6.77901 12.8141 7.25945 12.5217 7.55511L5.40305 14.7629C4.78782 15.3846 4.7313 15.9792 4.99326 16.2455C5.10848 16.3607 5.2824 16.414 5.48349 16.3911C5.7911 16.3596 6.1422 16.1564 6.47155 15.8248L16.6054 5.56485C17.3011 4.86049 17.5674 4.03221 17.3555 3.23328C17.2495 2.8426 17.0444 2.48591 16.7601 2.19777C16.4758 1.90964 16.1218 1.69983 15.7326 1.58869C14.9435 1.37455 14.1239 1.64521 13.4282 2.34957L2.83235 13.078C0.858398 15.077 1.33123 17.3781 2.60517 18.6684C3.8802 19.9586 6.15089 20.4391 8.12593 18.4379L18.7218 7.70946C18.7909 7.63919 18.8733 7.58339 18.9642 7.54529C19.055 7.5072 19.1526 7.48758 19.2511 7.48758C19.3497 7.48758 19.4473 7.5072 19.5381 7.54529C19.629 7.58339 19.7114 7.63919 19.7805 7.70946C19.9212 7.85257 20 8.04521 20 8.24588C20 8.44655 19.9212 8.63919 19.7805 8.7823L9.18465 19.5108C7.93571 20.7738 6.53677 21.3043 5.21935 21.3043Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2722%27 viewBox=%270 0 20 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.21935 21.3043C3.81389 21.3043 2.49756 20.701 1.54754 19.739C-0.294885 17.8738 -0.807938 14.6183 1.77472 12.0041L12.3706 1.27564C13.4445 0.18866 14.8108 -0.232001 16.1185 0.123441C17.4044 0.471274 18.4566 1.5376 18.8011 2.83871C19.1511 4.16482 18.737 5.54855 17.6642 6.63552L7.53027 16.8966C6.952 17.4825 6.29763 17.8292 5.6411 17.8988C4.99 17.9684 4.36934 17.7575 3.93455 17.3173C3.14757 16.5172 3.03453 15.0161 4.34542 13.69L11.463 6.48335C11.7553 6.18769 12.2293 6.18769 12.5217 6.48335C12.8141 6.77901 12.8141 7.25945 12.5217 7.55511L5.40305 14.7629C4.78782 15.3846 4.7313 15.9792 4.99326 16.2455C5.10848 16.3607 5.2824 16.414 5.48349 16.3911C5.7911 16.3596 6.1422 16.1564 6.47155 15.8248L16.6054 5.56485C17.3011 4.86049 17.5674 4.03221 17.3555 3.23328C17.2495 2.8426 17.0444 2.48591 16.7601 2.19777C16.4758 1.90964 16.1218 1.69983 15.7326 1.58869C14.9435 1.37455 14.1239 1.64521 13.4282 2.34957L2.83235 13.078C0.858398 15.077 1.33123 17.3781 2.60517 18.6684C3.8802 19.9586 6.15089 20.4391 8.12593 18.4379L18.7218 7.70946C18.7909 7.63919 18.8733 7.58339 18.9642 7.54529C19.055 7.5072 19.1526 7.48758 19.2511 7.48758C19.3497 7.48758 19.4473 7.5072 19.5381 7.54529C19.629 7.58339 19.7114 7.63919 19.7805 7.70946C19.9212 7.85257 20 8.04521 20 8.24588C20 8.44655 19.9212 8.63919 19.7805 8.7823L9.18465 19.5108C7.93571 20.7738 6.53677 21.3043 5.21935 21.3043Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 22px;
    height: 22px;
}

.icon.start {
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%2716%27 viewBox=%270 0 15 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.18877 1.00147L13.0933 8.0925L1.00001 14.8566L1.18877 1.00147Z%27 stroke=%27white%27 stroke-width=%272%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%2716%27 viewBox=%270 0 15 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.18877 1.00147L13.0933 8.0925L1.00001 14.8566L1.18877 1.00147Z%27 stroke=%27white%27 stroke-width=%272%27/%3E%3C/svg%3E%0A");
            mask: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%2716%27 viewBox=%270 0 15 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.18877 1.00147L13.0933 8.0925L1.00001 14.8566L1.18877 1.00147Z%27 stroke=%27white%27 stroke-width=%272%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2727%27 viewBox=%270 0 27 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.25 9.75L9.38388 12.6161C8.89573 13.1043 8.89573 13.8957 9.38388 14.3839L12.25 17.25M9.75 13.5H18.5M7.25 26H19.75C23.2018 26 26 23.2018 26 19.75V7.25C26 3.79822 23.2018 1 19.75 1H7.25C3.79822 1 1 3.79822 1 7.25V19.75C1 23.2018 3.79822 26 7.25 26Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2720%27 height=%2720%27 rx=%275%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8 11H14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11 8L11 14%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2724%27 height=%2724%27 rx=%2712%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M13.5996 19L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M11.1996 11.8L13.5996 11.8%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M13.5996 8.2L13.5996 7%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.35921 14.9498L0.652055 14.6999H0.652055L1.35921 14.9498ZM2.89045 16.481L3.14033 17.1881H3.14033L2.89045 16.481ZM4.34413 15.9673L4.59401 16.6745L4.34413 15.9673ZM5.21084 16.0475L5.56658 15.3872L5.21084 16.0475ZM1.75 9C1.75 4.99594 4.99594 1.75 9 1.75V0.25C4.16751 0.25 0.25 4.16751 0.25 9H1.75ZM2.51053 12.2365C2.02406 11.2631 1.75 10.1647 1.75 9H0.25C0.25 10.4026 0.580589 11.7302 1.16878 12.9071L2.51053 12.2365ZM2.06636 15.1996L2.61078 13.6589L1.19648 13.1592L0.652055 14.6999L2.06636 15.1996ZM2.64057 15.7738C2.2839 15.8999 1.94032 15.5563 2.06636 15.1996L0.652055 14.6999C0.105907 16.2455 1.59474 17.7343 3.14033 17.1881L2.64057 15.7738ZM4.09425 15.2602L2.64057 15.7738L3.14033 17.1881L4.59401 16.6745L4.09425 15.2602ZM9 16.25C7.75629 16.25 6.5878 15.9375 5.56658 15.3872L4.85509 16.7078C6.08955 17.3729 7.50185 17.75 9 17.75V16.25ZM16.25 9C16.25 13.0041 13.0041 16.25 9 16.25V17.75C13.8325 17.75 17.75 13.8325 17.75 9H16.25ZM9 1.75C13.0041 1.75 16.25 4.99594 16.25 9H17.75C17.75 4.16751 13.8325 0.25 9 0.25V1.75ZM4.59401 16.6745C4.65818 16.6518 4.75292 16.6527 4.85509 16.7078L5.56658 15.3872C5.13526 15.1548 4.60146 15.081 4.09425 15.2602L4.59401 16.6745ZM1.16878 12.9071C1.21856 13.0067 1.21831 13.0974 1.19648 13.1592L2.61078 13.6589C2.78312 13.1712 2.7213 12.6582 2.51053 12.2365L1.16878 12.9071Z%27 fill=%27white%27/%3E%3Ccircle cx=%275.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%279.04004%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3Ccircle cx=%2713.04%27 cy=%279.03979%27 r=%271%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2719%27 viewBox=%270 0 20 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle r=%274%27 transform=%27matrix%28-1 0 0 1 8 5%29%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M1 14.9347C1 14.0743 1.54085 13.3068 2.35109 13.0175C6.00404 11.7128 9.99596 11.7128 13.6489 13.0175C14.4591 13.3068 15 14.0743 15 14.9347V16.2502C15 17.4376 13.9483 18.3498 12.7728 18.1818L11.8184 18.0455C9.28565 17.6837 6.71435 17.6837 4.18162 18.0455L3.22721 18.1818C2.0517 18.3498 1 17.4376 1 16.2502V14.9347Z%27 fill=%27white%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15 9H19%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M17 7L17 11%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2766%27 height=%2735%27 viewBox=%270 0 66 36%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M58.7957 3.96312C57.3612 1.50872 54.7318 0 51.8889 0H8C3.58172 0 0 3.58172 0 8V28C0 32.4183 3.58172 36 8 36H51.8889C54.7318 36 57.3612 34.4913 58.7957 32.0369L64.6405 22.0369C66.0981 19.543 66.0981 16.457 64.6405 13.9631L58.7957 3.96312Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.418 14.3734V16.1049C13.418 18.314 11.6271 20.1049 9.41797 20.1049H4.99979C2.79065 20.1049 0.999789 18.314 0.999789 16.1049V5C0.999789 2.79086 2.79065 1 4.99979 1H9.41797C11.6271 1 13.418 2.79086 13.418 5V6.73147%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M16.2837 13.4182L18.4423 11.2595C18.8328 10.869 18.8328 10.2358 18.4423 9.84531L16.2837 7.68668%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M18.1939 10.5524L6.73096 10.5524%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2717%27 viewBox=%270 0 22 17%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.9259 12.4539C16.5137 12.4949 16.2127 12.8622 16.2537 13.2744C16.2946 13.6866 16.6619 13.9875 17.0741 13.9466L16.9259 12.4539ZM5 13.9722C5.41421 13.9722 5.75 13.6364 5.75 13.2222C5.75 12.808 5.41421 12.4722 5 12.4722V13.9722ZM15.9093 4.37305L16.5796 4.03656L15.9093 4.37305ZM15.9198 4.37847L16.0261 5.1209L15.9198 4.37847ZM4.35907 6.54647L5.10594 6.61489L4.35907 6.54647ZM4.34902 6.55563L4.34967 5.80563L4.34902 6.55563ZM4.33333 12.4722C2.9066 12.4722 1.75 11.3156 1.75 9.88889H0.25C0.25 12.1441 2.07817 13.9722 4.33333 13.9722V12.4722ZM5.10594 6.61489C5.35585 3.88704 7.65101 1.75 10.4444 1.75V0.25C6.86848 0.25 3.93219 2.98514 3.6122 6.47805L5.10594 6.61489ZM10.4444 1.75C12.5406 1.75 14.3572 2.95291 15.239 4.70953L16.5796 4.03656C15.4531 1.79263 13.1296 0.25 10.4444 0.25V1.75ZM1.75 9.88889C1.75 8.47969 2.9362 7.3044 4.34837 7.30563L4.34967 5.80563C2.11793 5.80369 0.25 7.64142 0.25 9.88889H1.75ZM16.0261 5.1209C18.2032 4.80912 20.25 6.565 20.25 8.77778H21.75C21.75 5.64476 18.8872 3.19586 15.8134 3.63605L16.0261 5.1209ZM20.25 8.77778C20.25 10.693 18.792 12.2687 16.9259 12.4539L17.0741 13.9466C19.6998 13.6859 21.75 11.4717 21.75 8.77778H20.25ZM5 12.4722H4.33333V13.9722H5V12.4722ZM15.239 4.70953C15.3871 5.00442 15.7057 5.16677 16.0261 5.1209L15.8134 3.63605C16.1252 3.5914 16.4354 3.74938 16.5796 4.03656L15.239 4.70953ZM3.6122 6.47805C3.6472 6.09601 3.96779 5.8053 4.34967 5.80563L4.34837 7.30563C4.74063 7.30597 5.07 7.00727 5.10594 6.61489L3.6122 6.47805Z%27 fill=%27white%27/%3E%3Cpath d=%27M8.5 13.5L10.6464 15.6464C10.8417 15.8417 11.1583 15.8417 11.3535 15.6464L13.5 13.5%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M11 15L11 9%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2722%27 viewBox=%270 0 16 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%271%27 y=%271%27 width=%2714%27 height=%2720%27 rx=%277%27 stroke=%27%23fff%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M8.75 6C8.75 5.58579 8.41421 5.25 8 5.25C7.58579 5.25 7.25 5.58579 7.25 6L8.75 6ZM7.25 10C7.25 10.4142 7.58579 10.75 8 10.75C8.41421 10.75 8.75 10.4142 8.75 10L7.25 10ZM7.25 6L7.25 10L8.75 10L8.75 6L7.25 6Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2724%27 viewBox=%270 0 18 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M11.2519 0.172602C11.2502 0.0963702 11.1669 0.0464314 11.1012 0.0850806C6.54268 2.7655 6.68917 9.62661 6.74159 10.7047C6.74504 10.7757 6.67751 10.8221 6.6127 10.793C6.13458 10.5782 4.5679 9.67488 4.50213 7.04279C4.50023 6.96644 4.41788 6.91667 4.35197 6.95524C1.74908 8.47834 0 11.3158 0 14.4643C0 19.2573 4.02943 23.1429 9 23.1429C13.9706 23.1429 18 19.2573 18 14.4643C18 7.48145 11.3805 5.99514 11.2519 0.172602Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2718%27 height=%2716%27 viewBox=%270 0 18 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L1.54936 1.10987C2.41136 1.28227 3.05973 1.99732 3.1472 2.87203L3.24 3.8M3.24 3.8L3.98859 10.0383C4.10922 11.0435 4.96195 11.8 5.97435 11.8H12.2673C13.8733 11.8 15.2733 10.707 15.6628 9.14887L16.2855 6.65783C16.6485 5.20619 15.5505 3.8 14.0542 3.8H3.24Z%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Ccircle cx=%276.2%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2713.4002%27 cy=%2714.6%27 r=%271.2%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10 0.999951L10 3.69995%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M10 16.3L10 19%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M18.9998 10L16.2998 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.7 10L1 10%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M16.3643 3.63598L14.4551 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M5.54493 14.4549L3.63574 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M3.63573 3.63598L5.54492 5.54517%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M14.4541 14.4549L16.3633 16.3641%27 stroke=%27%23fff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2726%27 viewBox=%270 0 23 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M5.93429 9.61293C5.93429 10.0271 6.27008 10.3629 6.68429 10.3629C7.09851 10.3629 7.43429 10.0271 7.43429 9.61293L7.4343 5.61122H7.54221C8.61434 5.61122 9.27974 6.18313 10.0261 7.14371L10.0288 7.14724C10.2193 7.39263 10.4152 7.66333 10.6244 7.95628C11.4799 9.15392 12.8611 9.86471 14.3329 9.86471H17.3178C18.7472 9.86471 20.0411 10.4454 20.9762 11.3838C21.9072 12.318 22.4827 13.6066 22.4827 15.0297V20.4984C22.4827 23.3509 20.1703 25.6634 17.3178 25.6634H5.16495C2.31243 25.6634 0 23.3509 0 20.4984V10.7762C0 7.92365 2.31243 5.61122 5.16495 5.61122H5.9343L5.93429 9.61293ZM5.9343 5.61122L5.9343 2.30898L4.17646 4.06682C3.88356 4.35972 3.40869 4.35972 3.1158 4.06682C2.8229 3.77393 2.8229 3.29906 3.1158 3.00616L5.72431 0.397644C6.25451 -0.132547 7.11412 -0.132549 7.64431 0.397644L10.2528 3.00616C10.5457 3.29906 10.5457 3.77393 10.2528 4.06682C9.95993 4.35972 9.48506 4.35972 9.19217 4.06682L7.4343 2.30896L7.4343 5.61122H5.9343ZM11.2414 20.1946C10.738 20.1946 10.3299 20.6027 10.3299 21.1061C10.3299 21.6094 10.738 22.0175 11.2414 22.0175H18.533C19.0364 22.0175 19.4445 21.6094 19.4445 21.1061C19.4445 20.6027 19.0364 20.1946 18.533 20.1946H11.2414ZM12.0262 6.78238C11.8291 6.50572 11.618 6.20954 11.3848 5.91504H16.7101C19.1768 5.91504 21.262 7.54809 21.9436 9.792C20.7113 8.70282 19.0917 8.04179 17.3178 8.04179H14.3329C13.4498 8.04179 12.6211 7.61531 12.1078 6.89673L12.0262 6.78238L12.0262 6.78238Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.0621 18.9691C15.1077 20.9235 10.1028 19.0871 5.88327 14.8676C1.66372 10.648 -0.172609 5.64313 1.7817 3.6888L3.06847 2.40204C3.9568 1.51371 5.42054 1.53719 6.33784 2.45449L8.33092 4.44757C9.24822 5.36487 9.2717 6.82861 8.38337 7.71694L8.10699 7.99332C7.62737 8.47294 7.58045 9.24667 8.0261 9.78672C8.45597 10.3076 8.9194 10.8265 9.42188 11.329C9.92435 11.8315 10.4432 12.2949 10.9641 12.7248C11.5042 13.1704 12.2779 13.1235 12.7575 12.6439L13.0339 12.3675C13.9222 11.4792 15.386 11.5026 16.3033 12.4199L18.2964 14.413C19.2137 15.3303 19.2371 16.7941 18.3488 17.6824L17.0621 18.9691Z%27 stroke=%27white%27 stroke-width=%271.5%27/%3E%3Cpath d=%27M15.6267 7.75071C15.3827 7.15553 15.0191 6.5979 14.5358 6.11463C14.0798 5.65865 13.5576 5.30918 13.0002 5.06622%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M13.0002 1.66329C14.3348 2.14679 15.587 2.92353 16.657 3.99352C17.7539 5.09037 18.5426 6.37871 19.0231 7.75101%27 stroke=%27white%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2722%27 height=%2722%27 viewBox=%270 0 22 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg%3E%3Cpath d=%27M0 4.86047C0 2.1761 2.1761 0 4.86047 0H6.90698C7.33082 0 7.67442 0.343595 7.67442 0.767442C7.67442 1.19129 7.33082 1.53488 6.90698 1.53488H4.86047C3.0238 1.53488 1.53488 3.0238 1.53488 4.86047V6.90698C1.53488 7.33082 1.19129 7.67442 0.767442 7.67442C0.343595 7.67442 0 7.33082 0 6.90698V4.86047Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M14.3256 0.767442C14.3256 0.343595 14.6692 0 15.093 0H17.1395C19.8239 0 22 2.1761 22 4.86047V6.90698C22 7.33082 21.6564 7.67442 21.2326 7.67442C20.8087 7.67442 20.4651 7.33082 20.4651 6.90698V4.86047C20.4651 3.0238 18.9762 1.53488 17.1395 1.53488H15.093C14.6692 1.53488 14.3256 1.19129 14.3256 0.767442Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M0.767442 14.3256C1.19129 14.3256 1.53488 14.6692 1.53488 15.093V17.1395C1.53488 18.9762 3.0238 20.4651 4.86047 20.4651H6.90698C7.33082 20.4651 7.67442 20.8087 7.67442 21.2326C7.67442 21.6564 7.33082 22 6.90698 22H4.86047C2.1761 22 0 19.8239 0 17.1395V15.093C0 14.6692 0.343595 14.3256 0.767442 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M21.2326 14.3256C21.6564 14.3256 22 14.6692 22 15.093V17.1395C22 19.8239 19.8239 22 17.1395 22H15.093C14.6692 22 14.3256 21.6564 14.3256 21.2326C14.3256 20.8087 14.6692 20.4651 15.093 20.4651H17.1395C18.9762 20.4651 20.4651 18.9762 20.4651 17.1395V15.093C20.4651 14.6692 20.8087 14.3256 21.2326 14.3256Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 5.88372C9.97674 5.31859 10.4349 4.86047 11 4.86047C11.5651 4.86047 12.0233 5.31859 12.0233 5.88372V7.93023C12.0233 8.49536 11.5651 8.95349 11 8.95349C10.4349 8.95349 9.97674 8.49536 9.97674 7.93023V5.88372Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M9.97674 14.0698C9.97674 13.5046 10.4349 13.0465 11 13.0465C11.5651 13.0465 12.0233 13.5046 12.0233 14.0698V16.1163C12.0233 16.6814 11.5651 17.1395 11 17.1395C10.4349 17.1395 9.97674 16.6814 9.97674 16.1163V14.0698Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M7.93023 9.97674C8.49536 9.97674 8.95349 10.4349 8.95349 11C8.95349 11.5651 8.49536 12.0233 7.93023 12.0233H5.88372C5.31859 12.0233 4.86047 11.5651 4.86047 11C4.86047 10.4349 5.31859 9.97674 5.88372 9.97674H7.93023Z%27 fill=%27%23fff%27/%3E%3Cpath d=%27M16.1163 9.97674C16.6814 9.97674 17.1395 10.4349 17.1395 11C17.1395 11.5651 16.6814 12.0233 16.1163 12.0233H14.0698C13.5046 12.0233 13.0465 11.5651 13.0465 11C13.0465 10.4349 13.5046 9.97674 14.0698 9.97674H16.1163Z%27 fill=%27%23fff%27/%3E%3C/g%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2728%27 height=%2727%27 viewBox=%270 0 28 27%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2.62469 25.7003L2.15617 25.1146H2.15617L2.62469 25.7003ZM22 21.8V21.05V21.8ZM6.95217 22.2383L7.42069 22.8239L6.95217 22.2383ZM8.20156 21.8L8.20156 21.05L8.20156 21.8ZM1.75 6C1.75 3.65279 3.65279 1.75 6 1.75V0.25C2.82436 0.25 0.25 2.82437 0.25 6H1.75ZM1.75 14.65V6H0.25V14.65H1.75ZM1.75 16.8V14.65H0.25V16.8H1.75ZM1.75 24.9194V16.8H0.25V24.9194H1.75ZM2.15617 25.1146C1.99248 25.2456 1.75 25.129 1.75 24.9194H0.25C0.25 26.3868 1.94738 27.2026 3.09322 26.2859L2.15617 25.1146ZM6.48365 21.6526L2.15617 25.1146L3.09322 26.2859L7.42069 22.8239L6.48365 21.6526ZM22 21.05L8.20156 21.05L8.20156 22.55L22 22.55V21.05ZM26.25 16.8C26.25 19.1472 24.3472 21.05 22 21.05V22.55C25.1756 22.55 27.75 19.9756 27.75 16.8H26.25ZM26.25 6V16.8H27.75V6H26.25ZM22 1.75C24.3472 1.75 26.25 3.65279 26.25 6H27.75C27.75 2.82436 25.1756 0.25 22 0.25V1.75ZM6 1.75H22V0.25H6V1.75ZM7.42069 22.8239C7.64233 22.6466 7.91772 22.55 8.20156 22.55L8.20156 21.05C7.57711 21.05 6.97126 21.2625 6.48365 21.6526L7.42069 22.8239Z%27 fill=%27%23fff%27/%3E%3Ccircle cx=%277.5647%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2714.0645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3Ccircle cx=%2720.5645%27 cy=%2711.4647%27 r=%271.625%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    -webkit-mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");    mask: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 8.43841C0 7.21422 0.56058 6.05744 1.52142 5.29888L7.02142 0.95677C8.47466 -0.190522 10.5253 -0.190521 11.9786 0.956771L17.4786 5.29888C18.4394 6.05744 19 7.21422 19 8.43841V15C19 17.2091 17.2091 19 15 19H13.5C12.9477 19 12.5 18.5523 12.5 18V15C12.5 13.8954 11.6046 13 10.5 13H8.5C7.39543 13 6.5 13.8954 6.5 15V18C6.5 18.5523 6.05228 19 5.5 19H4C1.79086 19 0 17.2091 0 15L0 8.43841Z%27 fill=%27%23fff%27/%3E%3C/svg%3E%0A");
    width: 15px;
    height: 16px;
}

.icon.sort-items {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2715%27 height=%2715%27 x=%270%27 y=%270%27 viewBox=%270 0 24 24%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cpath d=%27m12 13.5a1 1 0 0 1 -1 1h-7a1 1 0 0 1 0-2h7a1 1 0 0 1 1 1zm-2 5.5h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2zm-6-11h12a1 1 0 0 0 0-2h-12a1 1 0 0 0 0 2zm16-5a1 1 0 0 0 -1 1v9.555a3.955 3.955 0 0 0 -2-.555 4 4 0 1 0 4 4v-13a1 1 0 0 0 -1-1z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 xmlns:svgjs=%27http://svgjs.com/svgjs%27 version=%271.1%27 width=%2715%27 height=%2715%27 x=%270%27 y=%270%27 viewBox=%270 0 24 24%27 style=%27enable-background:new 0 0 512 512%27 xml:space=%27preserve%27 class=%27%27%3E%3Cg%3E%3Cpath d=%27m12 13.5a1 1 0 0 1 -1 1h-7a1 1 0 0 1 0-2h7a1 1 0 0 1 1 1zm-2 5.5h-6a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2zm-6-11h12a1 1 0 0 0 0-2h-12a1 1 0 0 0 0 2zm16-5a1 1 0 0 0 -1 1v9.555a3.955 3.955 0 0 0 -2-.555 4 4 0 1 0 4 4v-13a1 1 0 0 0 -1-1z%27 fill=%27%23ffffff%27 data-original=%27%23000000%27/%3E%3C/g%3E%3C/svg%3E");
    width: 15px;
    height: 15px;
}
