html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sup, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; font-size: 100%; font: inherit; vertical-align: baseline } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block } body { line-height: 1 } ol, ul { list-style: none } blockquote, q { quotes: none } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none } table { border-collapse: collapse; border-spacing: 0 }

html, body { height: 100%; min-height: 100%; }
body{background: #E8F6FB;}

body, select, input, textarea, button {
    font-family: 'Rubik', sans-serif;
    font: normal 16px/1.5 'Rubik', sans-serif;
    color: #094153;
    outline: none;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

b{font-weight:500;}
i{font-style:italic;}
hr{
    border: none;
    border-top: 1px solid #D3E8EF;
    padding: 0;
    height: 0;
}
.hr-m{
    width:100%;
    height:1px;
    background: #B6E0EE;
    margin:20px 0;
}
.hr-blue{
    border-top: 1px solid #B6E0EE;
}

a{
    outline: none;
    color: #0D6F8F;
    text-decoration: none;
    transition: background .3s,color .3s,border-radius .3s,border .3s;
}
a:hover {
    text-decoration: none;
    color:#31ABD3;
}

select{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #CEE4EC;
    border-radius: 5px;
    height: 38px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: var(--ar) no-repeat right 20px center #fff;
    padding-left: 20px;
    padding-right: 30px;
    color: #1984a8;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select:hover, select:focus{
    border: 1px solid #1984A8;
}

h1,h2,h3,h4,h5,h6{font-weight: 500;color: #094153;line-height: 36px;text-align: left;}

h1{font-size: 30px;}
h2{font-size: 27px;}
h3{font-size: 24px;}
h4{font-size: 20px;}
h5{font-size: 18px;}
h6{font-size: 16px;}

::-webkit-input-placeholder {color:#8BB7C6;}
::-moz-placeholder          {color:#8BB7C6;}
:-moz-placeholder           {color:#8BB7C6;}
:-ms-input-placeholder      {color:#8BB7C6;}

input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="date"]{
    background: #fff;
    border: 1px solid #CEE4EC;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
    line-height: 20px;
    height: 38px;
    padding: 0 20px;
}
input[type="number"]{padding: 0 10px;}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="text"]:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="date"]:hover{
    color: #1984A8;
    border: 1px solid #1984A8;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

textarea{
    background: #fff;
    border: 1px solid #CEE4EC;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
    line-height: 20px;
    padding: 15px 24px;
    resize: vertical;
}

textarea:focus, textarea:hover{
    color: #1984A8;
    border: 1px solid #1984A8;
}

input.e, textarea.e{
    color: #EB001B;
    border: 1px solid #EB001B;
}

/* для элемента input c type="checkbox" */
input[type="checkbox"] {
  position: absolute;
  /*z-index: -1;*/
  opacity: 0;
}

/* для элемента label, связанного с checkbox */
input[type="checkbox"]+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
input[type="checkbox"]+label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #AAD9E9;
  border-radius: 5px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
  background-color:#fff;
  box-sizing: border-box;
}

/* стили при наведении курсора на checkbox */
input[type="checkbox"]:not(:disabled):not(:checked)+label:hover::before {
  border-color: #AAD9E9;
}

/* стили для активного чекбокса (при нажатии на него) */
input[type="checkbox"]:not(:disabled):active+label::before {
  background-color: #AAD9E9;
  border-color: #AAD9E9;
}

/* стили для чекбокса, находящегося в фокусе */
input[type="checkbox"]:focus+label::before {
  box-shadow: 0 0 7px rgba(25, 132, 168, 0.3);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
input[type="checkbox"]:focus:not(:checked)+label::before {
  border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
input[type="checkbox"]:checked+label::before {
  border-color: #1984A8;
  background-color: #1984A8;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.716 5.033a.697.697 0 01-.985 0L.204 3.506a.697.697 0 01.985-.985l.91.91c.069.068.18.068.249 0L4.81.966a.697.697 0 01.985.986l-3.08 3.08z' fill='white'/%3E%3C/svg%3E");
}

/* стили для чекбокса, находящегося в состоянии disabled */
input[type="checkbox"]:disabled+label::before {
  background-color: #e9ecef;
}

sup, sub{
    font-size: 0.8em;
    vertical-align: baseline;
    position: relative;
}

sub {bottom: -0.4em;}
sup {top: -0.4em;}

iframe{border: 0;}

.ui-state-error {
    border: 1px solid red !important;
}

.cssload-thecube {
    width: 64px;
    height: 64px;
    margin: 40px auto;
    position: relative;
    transform: rotateZ(45deg);
        -o-transform: rotateZ(45deg);
        -ms-transform: rotateZ(45deg);
        -webkit-transform: rotateZ(45deg);
        -moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
    position: relative;
    transform: rotateZ(45deg);
        -o-transform: rotateZ(45deg);
        -ms-transform: rotateZ(45deg);
        -webkit-transform: rotateZ(45deg);
        -moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
}
.cssload-thecube .cssload-cube:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(25,132,168);
    animation: cssload-fold-thecube 2.76s infinite linear both;
        -o-animation: cssload-fold-thecube 2.76s infinite linear both;
        -ms-animation: cssload-fold-thecube 2.76s infinite linear both;
        -webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
        -moz-animation: cssload-fold-thecube 2.76s infinite linear both;
    transform-origin: 100% 100%;
        -o-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
        -webkit-transform-origin: 100% 100%;
        -moz-transform-origin: 100% 100%;
}
.cssload-thecube .cssload-c2 {
    transform: scale(1.1) rotateZ(90deg);
        -o-transform: scale(1.1) rotateZ(90deg);
        -ms-transform: scale(1.1) rotateZ(90deg);
        -webkit-transform: scale(1.1) rotateZ(90deg);
        -moz-transform: scale(1.1) rotateZ(90deg);
}
.cssload-thecube .cssload-c3 {
    transform: scale(1.1) rotateZ(180deg);
        -o-transform: scale(1.1) rotateZ(180deg);
        -ms-transform: scale(1.1) rotateZ(180deg);
        -webkit-transform: scale(1.1) rotateZ(180deg);
        -moz-transform: scale(1.1) rotateZ(180deg);
}
.cssload-thecube .cssload-c4 {
    transform: scale(1.1) rotateZ(270deg);
        -o-transform: scale(1.1) rotateZ(270deg);
        -ms-transform: scale(1.1) rotateZ(270deg);
        -webkit-transform: scale(1.1) rotateZ(270deg);
        -moz-transform: scale(1.1) rotateZ(270deg);
}
.cssload-thecube .cssload-c2:before {
    animation-delay: 0.35s;
        -o-animation-delay: 0.35s;
        -ms-animation-delay: 0.35s;
        -webkit-animation-delay: 0.35s;
        -moz-animation-delay: 0.35s;
}
.cssload-thecube .cssload-c3:before {
    animation-delay: 0.69s;
        -o-animation-delay: 0.69s;
        -ms-animation-delay: 0.69s;
        -webkit-animation-delay: 0.69s;
        -moz-animation-delay: 0.69s;
}
.cssload-thecube .cssload-c4:before {
    animation-delay: 1.04s;
        -o-animation-delay: 1.04s;
        -ms-animation-delay: 1.04s;
        -webkit-animation-delay: 1.04s;
        -moz-animation-delay: 1.04s;
}



@keyframes cssload-fold-thecube {
    0%, 10% {
        transform: perspective(119px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
                75% {
        transform: perspective(119px) rotateX(0deg);
        opacity: 1;
    }
    90%,
                100% {
        transform: perspective(119px) rotateY(180deg);
        opacity: 0;
    }
}

@-o-keyframes cssload-fold-thecube {
    0%, 10% {
        -o-transform: perspective(119px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
                75% {
        -o-transform: perspective(119px) rotateX(0deg);
        opacity: 1;
    }
    90%,
                100% {
        -o-transform: perspective(119px) rotateY(180deg);
        opacity: 0;
    }
}

@-ms-keyframes cssload-fold-thecube {
    0%, 10% {
        -ms-transform: perspective(119px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
                75% {
        -ms-transform: perspective(119px) rotateX(0deg);
        opacity: 1;
    }
    90%,
                100% {
        -ms-transform: perspective(119px) rotateY(180deg);
        opacity: 0;
    }
}

@-webkit-keyframes cssload-fold-thecube {
    0%, 10% {
        -webkit-transform: perspective(119px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
                75% {
        -webkit-transform: perspective(119px) rotateX(0deg);
        opacity: 1;
    }
    90%,
                100% {
        -webkit-transform: perspective(119px) rotateY(180deg);
        opacity: 0;
    }
}

@-moz-keyframes cssload-fold-thecube {
    0%, 10% {
        -moz-transform: perspective(119px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
                75% {
        -moz-transform: perspective(119px) rotateX(0deg);
        opacity: 1;
    }
    90%,
                100% {
        -moz-transform: perspective(119px) rotateY(180deg);
        opacity: 0;
    }
}

.mp-materials-parent, #auto_search_result2, #pm_block, #pm_block_parent, #pm_list, #pm_message, #comm_text, #modal_body, .navigation, .user-info-block-panel, .mp-news-other-parent, .notifications, .presentation-text-content, .fileinfo-tree, .chosen-results, .similar-articles, .fileinfo-table-div, textarea, .unzipped-text, .comment_text, #comment_text, .hints-result, .login, .contenteditable, .fileinfo-attaches, .heads-in-news, .fileinfo-meta-flex-right-fixed.active{
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.mp-materials-parent::-webkit-scrollbar, .navigation::-webkit-scrollbar, .chosen-results::-webkit-scrollbar, .user-info-block-panel::-webkit-scrollbar,  .fileinfo-table-div::-webkit-scrollbar, .mp-news-other-parent::-webkit-scrollbar, .unzipped-text::-webkit-scrollbar, .notifications::-webkit-scrollbar, .presentation-text-content::-webkit-scrollbar, .fileinfo-tree::-webkit-scrollbar, .similar-articles::-webkit-scrollbar, #auto_search_result2::-webkit-scrollbar, #comm_text::-webkit-scrollbar, .contenteditable::-webkit-scrollbar, #pm_message::-webkit-scrollbar, #pm_block::-webkit-scrollbar, #pm_block_parent::-webkit-scrollbar, #pm_list::-webkit-scrollbar, textarea::-webkit-scrollbar, #modal_body::-webkit-scrollbar, #comment_text::-webkit-scrollbar, .comment_text::-webkit-scrollbar, .hints-result::-webkit-scrollbar, .login::-webkit-scrollbar, .fileinfo-attaches::-webkit-scrollbar, .heads-in-news::-webkit-scrollbar, .fileinfo-meta-flex-right-fixed.active::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height:3px;
}

.mp-materials-parent::-webkit-scrollbar-thumb, .navigation::-webkit-scrollbar-thumb, .chosen-results::-webkit-scrollbar-thumb, .user-info-block-panel::-webkit-scrollbar-thumb, .fileinfo-table-div::-webkit-scrollbar-thumb, .mp-news-other-parent::-webkit-scrollbar-thumb, .notifications::-webkit-scrollbar-thumb, .presentation-text-content::-webkit-scrollbar-thumb, .unzipped-text::-webkit-scrollbar-thumb, .fileinfo-tree::-webkit-scrollbar-thumb, .similar-articles::-webkit-scrollbar-thumb, #auto_search_result2::-webkit-scrollbar-thumb, #pm_block::-webkit-scrollbar-thumb, #pm_block_parent::-webkit-scrollbar-thumb, #pm_list::-webkit-scrollbar-thumb, #pm_message::-webkit-scrollbar-thumb, .contenteditable::-webkit-scrollbar-thumb, #comm_text::-webkit-scrollbar-thumb, #modal_body::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb, .comment_text::-webkit-scrollbar-thumb, .hints-result::-webkit-scrollbar-thumb, #comment_text::-webkit-scrollbar-thumb, .login::-webkit-scrollbar-thumb, .fileinfo-attaches::-webkit-scrollbar-thumb, .heads-in-news::-webkit-scrollbar-thumb, .fileinfo-meta-flex-right-fixed.active::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(10,80,103,0.3);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,0.5);
}

.disnone{display:none!important;}
.disflex{display:flex;}
.jcsb{justify-content: space-between;}
.jcc{justify-content: center;}
.aic{align-items:center;}
.fww{flex-wrap:wrap;}
.ofv{overflow:visible!important;}
.clr{clear: both;}
.bsbb{box-sizing: border-box;}
.w100{width:100%;}
.w100i{width:100%!important;}
.w340px{width:340px;}
.h38{height:38px!important;}
.fw400{font-weight:400!important}

.m0i{margin:0!important}
.m10{margin:10px;}

.p0i{padding:0!important}

.mtop0{margin-top:0!important;}
.mtop5{margin-top: 5px;}
.mtop7{margin-top: 7px;}
.mtop10{margin-top: 10px;}
.mtop12{margin-top: 12px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}

.f18{font-size: 18px;}
.f38{font-size: 38px;}

.mleft0{margin-left:0!important;}
.mleft5{margin-left:5px;}
.mleft10{margin-left:10px;}
.mleft20{margin-left:20px;}

.mright0{margin-right:0!important;}
.mright5{margin-right:5px;}
.mright10{margin-right:10px;}
.mright20{margin-right:20px;}

.ptop10{padding-top:10px;}
.ptop20{padding-top:20px;}
.ptop30{padding-top:30px;}
.ptop40{padding-top:40px;}
.ptop50{padding-top:50px;}

.p20{padding:20px;}
.p20i{padding:20px!important;}

.ac{text-align:center;}
.al{text-align:left;}
.ar{text-align:right;}

.aci{text-align:center!important;}
.ali{text-align:left!important;}
.ari{text-align:right!important;}

.ti30{text-indent: 30px;}

/*.fltl{
    float: left;
  }
.fltr {
    float: right;
  }*/

.h2-ac{text-align:center;margin: 20px 0 10px!important;}

.cr{color:red!important;}
.cg{color:green!important;}

.wb{
    background: #FFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.btn{
    border-radius: 5px;
    padding: 0 20px;
    line-height: 50px;
    display:inline-block;
    border: 0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.btn.y{
    background: #FFCE1F;
    color: #094153;
    font-weight: 500;
}
.btn.y:hover{
    background: #FFE459;
}
.btn.r{
    background: #ff0000;
    color: #fff;
    font-weight: 500;
}
.btn.r:hover{
    background: rgb(255, 73, 73);
}
.btn.b{
    background: #1984A8;
    color: #fff;
    font-weight: 500;
}
.btn.b:hover{
    background: #31ABD3;
    color: #fff;
}
.btn.z{
    background: none;
    border: 1px solid #1984A8;
    box-sizing: border-box;
    color: #1984A8;
    font-weight: 400;
    font-size: 12px;
    line-height: 48px;
    vertical-align: top;
}
.btn.z:hover{
    background: #31ABD3;
    border: 1px solid #31ABD3;
    color: #fff;
}
.btn.s{
    line-height: 36px;
}
.btn.z.s{
    line-height: 34px;
}

header{
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 12;
    box-sizing: border-box;
    border-bottom: 1px solid #E8F6FB;
}
.antiheader{margin-top:83px;height:1px}

.w{
    width:100%;
    box-sizing: border-box;
    padding:0 3px;
    max-width:1256px;
    margin: auto;
}

.head{
    display:flex;
    justify-content:space-between;
    align-items: center;
    height: 84px;
    position: relative;
    padding: 0 20px;
}

.logo{
    display:flex;
    position:relative;
}

.logo-holiday.pc{
    position:absolute;
    bottom:0;
    right:0;
    width:114px;
    height:46px;
}

.logo-holiday.mob{
    position:absolute;
    top: -18px;
    right: -11px;
    width:44px;
    height:50px;
}

nav{
    transition: background 0.3s, color 0.3s, border 0.3s, left 0.3s, opacity 0.3s;
    opacity: 0;
    left:-1000px;
    display:flex;
    position:absolute;
    padding: 20px;
    top: 64px;
    background: #fff;
}
nav.open{
    left:0px;
    opacity: 1;
    z-index: 10;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content:"";
    display:table;
    clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    width: 250px;
}

/* Positioning the navigation items inline */
nav ul li {
    display: block;
    position: relative;
    width:230px;

    }

/* Styling the links */
nav a {
    padding:0 20px;
    line-height: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    position:relative;
}

/* Background color change on Hover */
nav a:hover {
    background-color: #E8F6FB;
    border-radius: 22px;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    width: 230px;
    position: absolute;
    display: none;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 0;
    left: 230px;
    background: #fff;
    padding: 20px;
    z-index: 10;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width:230px;
    float:none;
    display:list-item;
    position: relative;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top:-60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left:170px;
}
#nav {
    width: 30px;
    height: 23px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;

}
#nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #0A5067;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav span:nth-child(1) {
    top: 0px;
}
#nav span:nth-child(2) {
    top: 9px;
}
#nav span:nth-child(3) {
    top: 18px;
}
#nav.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}
#nav.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
#nav.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}
#nav.open span{
    background: #D3E8EF;
}

.blue-block{
    background: #E8F6FB;
}

.main-search{
    background: linear-gradient(180deg, rgba(232, 246, 251, 0.02) 0%, #E8F6FB 99%), url(../i/mainbg.png) top center #E8F6FB;
    max-height: 652px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.main-search h1{
    text-align: center;
    color: #094153;
    font-weight: 500;
    font-size: 40px;
    line-height: 55px;
    width:100%;
    max-width:750px;
    margin: auto;
}

.main-search-flex{
    display:flex;
    justify-content: space-between;
}


/*.main-search-small-text{
    font-weight: 500;
    font-size: 18px;
    line-height: 44px;
    text-align: center;
    color: #094153;
}*/

.main-search-form{
    display:flex;
    max-width:610px;
    width:100%;
    align-items: center;
    align-content: center;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.main-search-form input{
    height: 50px;
    width:100%;
    padding-left: 60px;
    background: var(--main-search) 22px no-repeat #fff;
}
/*
.main-search-form button{
    border: 1px solid #B3E7F8;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
    box-sizing: border-box;
    color: #0D6F8F;
    font-weight: 500;
    font-size: 16px;
    line-height: 48px;
    padding: 0 20px;
    display:inline-block;
    cursor: pointer;
    border-left: 0;
}

.main-search-form button:hover{
    background: #31ABD3;
    border: 1px solid #31ABD3;
    color: #fff;
    border-left: 0;
}*/

.main-buttons{
    display:flex;
    justify-content: space-between;
    width:100%;
    margin: 0 auto;
    max-width:550px;
}

.main-buttons div{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #094153;
    width:100%;
    max-width:225px;
}

.btn.main{
    width:100%;
    display: block;
    padding:0;
    margin-top:20px;
    line-height: 60px;
}

.main-stat{
    display:flex;
    justify-content: space-between;
    width:100%;
    max-width:1256px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.main-one-stat{
    display:flex;
    width:100%;
    max-width:220px;
    align-items: center;
}

.main-one-stat-number{
    color: #094153;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.main-one-stat-text{
    font-size: 13px;
    line-height: 18px;
    color: #094153;
    margin-left: 20px;
}

.mp-h2{
    font-size: 30px;
    padding: 20px 0;
}

.mp-news{
    box-sizing: border-box;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mp-news-top{
    margin-right:60px;
    width: 50%;
}

.mp-news-other-parent{
    width: 50%;
}

.mp-news-top-one-title{
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

.mp-news-top-one img{
    width:100%;
    height:300px;
    object-fit: cover;
    border-radius: 3px;
    transition: opacity 0.3s;
}

.mp-news-other-one{
    margin-bottom:24px;
}

.mp-news-other-one img{
    width:165px;
    height:115px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 30px;
    transition: opacity 0.3s;
}

.mp-news-other-one:hover img, .mp-news-top-one:hover img{
    opacity:0.7;
}

.mp-news-other-one-title{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.mp-news-other-one-descr, .mp-news-other-one-descr:hover{
    color: #567D89;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin-top:10px;
}

.mp-news-other-one{
    display:flex;
    align-items: center;
}

#auto_search_result2{
    position: absolute;
    background-color: #fff;
    z-index: 105;
    top: 50px;
    max-width: 570px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #CEE4EC;
    padding: 10px;
    border-radius: 5px;
    border-top: 0;
    max-height: 400px;
    overflow-y: auto;
}

.fast-search-big-title{
    padding:5px 10px;
    box-sizing: border-box;
    font-weight: 500;
}

.fast-search-result a{
    display:flex;
    align-items: center;
    padding:5px 10px;
    box-sizing: border-box;
}

.fast-search-result a:hover{
    background-color: #E8F6FB;
    border-radius: 5px;
}

.fast-search-result img{
    width:50px;
    height:50px;
    border-radius:50%;
    margin-right:20px;
    object-fit: cover;
}

.fast-search-result i{
    margin-right:25px;
    margin-left:5px;
}

.fast-search-content{
    max-height: 96px;
    overflow:hidden;
    max-width: calc(100% - 70px);
    width: 100%;
}

.fast-search-title{
    font-weight: 500;
    width: 100%;
    line-height: 22px;
}

.fast-search-descr{
    color: #567D89;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    width: 100%;
}

.fast-search-span{
    background: #C5EBF8;
}

.main-search-btns{
    display:flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
}

.ui-dialog {
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 0px 9999px rgba(9, 65, 83, 0.5);
    border-radius: 5px;
    z-index: 1002;
}
.ui-dialog-titlebar {
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
}
.ui-dialog-title{
    font-weight: 500;
    width: calc(100% - 25px);
}
.ui-dialog-titlebar-close {
    text-indent: -99999px;
    width: 20px!important;
    height: 20px!important;
    padding: 0!important;
    margin: 0!important;
    border-radius: 0!important;
    background: var(--close) no-repeat!important;
    background-size: cover!important;
}
.ui-button{
    border-radius: 5px;
    padding: 0 20px;
    line-height: 40px;
    display:inline-block;
    border: 0;
    cursor: pointer;
    background: #1984A8;
    color: #fff;
    font-weight: 500;
    margin-right:10px;
    margin-top:10px;
}
.ui-button:hover{
    background: #31ABD3;
    color: #fff;
}

.ui-dialog-buttonset {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-dialog-buttonset button:last-child {
    margin-right:0;
}

.highslide-container div {
    /*font-family: Verdana, Helvetica;*/
    font-size: 10pt;
}
.highslide-container table {
    background: none;
    table-layout: auto;
}
.highslide {
    outline: none;
    text-decoration: none;
}
.highslide-active-anchor img {
    visibility: hidden;
}
.highslide-gallery .highslide-active-anchor img {
    border-color: black;
    visibility: visible;
    cursor: default;
}
.highslide-image {
    border-width: 2px;
    border-style: solid;
    border-color: white;
}
.highslide-wrapper, .highslide-outline {
    background: white;
}
.glossy-dark {
    background: #111;
}

.highslide-image-blur {
}
.highslide-number {
    font-weight: bold;
    color: gray;
    font-size: .9em;
}
.highslide-caption {
    display: none;
    font-size: 1em;
    padding: 5px;
    /*background: white;*/
}
.highslide-heading {
    display: none;
    font-weight: bold;
    margin: 0.4em;
}
.highslide-dimming {
    /*position: absolute;*/
    background: black;
}
a.highslide-full-expand {
    display: block;
    margin: 0 10px 10px 0;
    width: 34px;
    height: 34px;
    background: var(--hs-full) center no-repeat RGBA(255, 255, 255, 0.3);
    background-size: 34px 34px;
    border-radius: 5px;
    transition: box-shadow 0.3s;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

a.highslide-full-expand:hover {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}
.highslide-loading {
    display: block;
    color: black;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 3px;
    border: 1px solid white;
    background-color: white;
    padding-left: 22px;
}
a.highslide-credits,
a.highslide-credits i {
    padding: 2px;
    color: silver;
    text-decoration: none;
    font-size: 10px;
}
a.highslide-credits:hover,
a.highslide-credits:hover i {
    color: white;
    background-color: gray;
}
.highslide-move, .highslide-move * {
    cursor: move;
}

.highslide-viewport {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: none;
    left: 0;
    top: 0;
}
.highslide-overlay {
    display: none;
}
.hidden-container {
    display: none;
}

/*****************************************************************************/
/* Controls for the galleries.                                                 */
/* Remove these if you are not using a gallery                                 */
/*****************************************************************************/
.highslide-controls {
    width: 190px;
    height: 40px;
    margin: 20px 5px 10px 5px;
}
.highslide-controls ul {
    position: relative;
    left: 15px;
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
.highslide-controls li {
    float: left;
    padding: 5px 0;
    margin:0;
    list-style: none;
}
.highslide-controls a {
    display: block;
    float: left;
    height: 30px;
    width: 30px;
    outline: none;
    transition: opacity 0.3s;
    opacity: 0.6;
}
.highslide-controls a.disabled {
    cursor: default;
}
.highslide-controls a.disabled span {
    cursor: default;
}
.highslide-controls a span {
    /* hide the text for these graphic buttons */
    display: none;
    cursor: pointer;
}


/* The CSS sprites for the controlbar - see http://www.google.com/search?q=css+sprites */
.highslide-controls .highslide-previous a {
    background: var(--hs-arrow) center no-repeat;
}
.highslide-controls .highslide-previous a:hover {
    opacity: 1;
}
.highslide-controls .highslide-previous a.disabled {
    opacity: 0.2!important;
}
.highslide-controls .highslide-play a {
    background: var(--hs-play) center no-repeat;
}
.highslide-controls .highslide-play a:hover {
    opacity: 1;
}
.highslide-controls .highslide-play a.disabled {
    opacity: 0.2!important;
}
.highslide-controls .highslide-pause a {
    background: var(--hs-pause) center no-repeat;
}
.highslide-controls .highslide-pause a:hover {
    opacity: 1;
}
.highslide-controls .highslide-next a {
    background: var(--hs-arrow) center no-repeat;
    transform: scale(-1, 1)
}
.highslide-controls .highslide-next a:hover {
    opacity: 1;
}
.highslide-controls .highslide-next a.disabled {
    opacity: 0.2!important;
}
.highslide-controls .highslide-move a {
    background: var(--hs-move) center no-repeat;
}
.highslide-controls .highslide-move a:hover {
    opacity: 1;
}
.highslide-controls .highslide-full-expand a {
    background: var(--hs-full) center no-repeat;
}
.highslide-controls .highslide-full-expand a:hover {
    opacity: 1;
}
.highslide-controls .highslide-full-expand a.disabled {
    opacity: 0.2!important;
}
.highslide-controls .highslide-close a {
    background: var(--hs-close) center no-repeat;
}
.highslide-controls .highslide-close a:hover {
    opacity: 1;
}


.login{
    width: 300px;
    box-sizing: border-box;
    padding: 20px;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.login.open{
    position: fixed;
    z-index: 10;
    top:84px;
    left: calc(50% + 470px);
    transform: translate(-50%,0%);
    display:block!important;
}

.login.guest{
    background: #fff;
}

.login a{
    text-align:center;
}

.login input{
    height: 50px;
}

.login input, .login a, .login button{
    display:block;
    width:100%;
    box-sizing: border-box;
}

.vk-auth span{
    padding-right: 22px;
    background: var(--vk) bottom right no-repeat;
}

.top-btns{
    display:flex;
    justify-content: space-between;
    flex-direction:row;
    width:70px;
    align-items: center;
}

.top-btns i{
    cursor: pointer;
}

.top-btns .i-user, .top-btns #userclose{
    margin: 0 5px 0 6px;
}

.top-btns-plus{width:110px;}

.white-section{
    background: #fff;
}

.mp-materials-parent{
    margin:0;
    width:100%;
    position:relative;
    overflow-x: auto;
}

.mp-materials-child{
    display: flex;
    white-space: nowrap;
}

.mp-materials-one{
    width: 235px;
    height: 174px;
    border: 1px solid #B3E7F8;
    box-sizing: border-box;
    border-radius: 3px;
    text-align: center;
    display:block;
    padding-top: 120px;
    margin-right:10px;
    font-size: 14px;
}

.mp-materials-one span{
    width:230px;
    display:block;
}

.mp-materials-one:last-child{
    margin-right:0;
}

.mp-materials-one:hover{
    border: 1px solid #1984A8;
    color:#fff;
}

.mmo-teachers{
    background: var(--teacher-blue) center 34px no-repeat;
    background-size: 64px 64px;
}

.mmo-teachers:hover{
    background: var(--teacher-white) center 34px no-repeat #1984A8;
    background-size: 64px 64px;
}

.mmo-lectures{
    background: var(--lect-blue) center 34px no-repeat;
    background-size: 64px 64px;
}

.mmo-lectures:hover{
    background: var(--lect-white) center 34px no-repeat #1984A8;
    background-size: 64px 64px;
}

.mmo-diss{
    background: var(--diss-blue) center 34px no-repeat;
    background-size: 64px 64px;
}

.mmo-diss:hover{
    background: var(--diss-white) center 34px no-repeat #1984A8;
    background-size: 64px 64px;
}

.mmo-other{
    background: var(--other-blue) center 34px no-repeat;
    background-size: 64px 64px;
}

.mmo-other:hover{
    background: var(--other-white) center 34px no-repeat #1984A8;
    background-size: 64px 64px;
}

.mmo-articles{
    background: var(--news-blue) center 34px no-repeat;
    background-size: 64px 64px;
}

.mmo-articles:hover{
    background: var(--news-white) center 34px no-repeat #1984A8;
    background-size: 64px 64px;
}

.mp-files{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.similar-file, .one-su {
    padding: 20px;
    border: 1px solid #D3E8EF;
    box-sizing: border-box;
    border-radius: 3px;
    position: relative;
    background: #fff;
}

.similar-file{
    width:32%;
    margin-bottom:20px;
}

.one-su {
    min-width:350px;
    max-width:450px;
    margin:5px;
}

.su-blue-block {
    padding: 0 20px;
}

.su-white-block {
    padding: 0 20px;
}

.similar-file-main{
    display: flex;
    align-items: center;
}

.similar-file:nth-child(3), .similar-file:nth-child(6) {
    margin-right:0;
}

.similar-file:hover, .one-su:hover{
    background: #E8F6FB;
}

.similar-file i, .one-su i{
    margin-right:20px;
}

.similar-file-content{
    width: calc(100% - 60px);
}
.similar-file-title{
    font-weight: 500;
    font-size: 16px;
    color: #0D6F8F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-file-date{
    font-size: 12px;
    color: #95B8C5;
}

.similar-file-subj{
    font-size: 12px;
    color: #95B8C5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-file-free, .similar-file-discount {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 3px;
    font-weight: 500;
    font-size: 8px;
    line-height: 16px;
    color: #fff;
    padding: 0 10px;
}

.similar-file-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.similar-file-free{
    background: #15D69C;
}

.similar-file-discount{
    background: #FF7131;
}

.similar-file-fileinfo a{
    width: calc(33% - 10px);
}

.similar-file-price{
    white-space: nowrap;
    margin-left: 5px;
}

.similar-file-price-old-price {
    position: relative;
    color: #8BB7C6;
    font-size: 10px;
    line-height: 20px;
}

.similar-file-price-old-price:before {
    border-bottom: 2px solid #FF7131;
    position: absolute;
    content: "";
    width: 100%;
    height: 110%;
    transform: rotate(-15deg);
}

.similar-file-price-number, .similar-file-price-discount, .similar-file-price-free{
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}

.similar-file-price-number{
    color: #1984A8;
}

.similar-file-price-discount{
    color: #FF7131;
}

.similar-file-price-text {
    color: #8BB7C6;
    font-size: 10px;
}

.main-add{
    background: url(../i/mp-add.png) bottom right no-repeat #E8F6FB;
    padding: 50px 3px 100px;
}

.main-add-text {
    font-size: 20px;
    color: #094153;
}

.main-add-stat{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-add-one-stat{
    display: flex;
    align-items: center;
    padding-left:52px;
    margin-bottom: 20px;
}

.main-add-one-stat-number{
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #094153;
    margin-right:20px;
    width: 70px;
}

.main-add-one-stat:first-child{
    background: var(--add-user) center left no-repeat;
    margin-right:40px;
}

.main-add-one-stat:last-child{
    background: var(--rub) center left no-repeat;
}

.main-add-one-stat-text{
    font-size: 16px;
    line-height: 22px;
    color: #094153;
}

.main-add a{
    line-height:60px;
    padding: 0 50px;
}

footer{
    border-top: 1px solid #E8F6FB;
    background:#fff;
    padding:20px 0;
}

.footer{
    display:flex;
    justify-content: space-between;
}

.footer-menu-header{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #094153;
}

.copyright{
    font-size: 11px;
    line-height: 16px;
    color: #50899B;
    margin: 20px 0;
}

.footer-menu a{
    font-size: 13px;
    line-height: 24px;
}

.footer-pay{
    display:flex;
    align-items: center;
}

.footer-pay i{
    margin-right:5px;
}

.footer-left{
    max-width: 25%;
}

.soc{
    display:flex;
}

.soc a{
    width:37px;
    height:37px;
    border-radius:50%;
    border: 1px solid #D3E8EF;
    display:block;
    margin-right:7px;
    transition: background 0.3s, color 0.3s, border 0.3s;
    box-sizing: border-box;
}

.soc-vk{
    background: var(--vk-blue) center no-repeat;
}

.soc-vk:hover{
    background: var(--vk) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}

/*.soc-i{
    background: var(--insta-blue) center no-repeat;
}

.soc-i:hover{
    background: var(--insta-white) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}*/

.soc-yt{
    background: var(--yt-blue) center no-repeat;
}

.soc-yt:hover{
    background: var(--yt-white) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}

.soc-dz{
    background: var(--dz-blue) center no-repeat;
}

.soc-dz:hover{
    background: var(--dz-white) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}

.soc-tg{
    background: var(--tg-blue) center no-repeat;
}

.soc-tg:hover{
    background: var(--tg-white) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}

.soc-wa{
    background: var(--wa-blue) center no-repeat;
}

.soc-wa:hover{
    background: var(--wa-white) center no-repeat #1984A8;
    border: 1px solid #1984A8;
}

.m{
    box-sizing: border-box;
    width:100%;
    max-width:1256px;
    margin: auto;
    display: flex;
}

/*aside{
    background: #0D6F8F;
    width:300px;
}
aside.white{
    background:#fff;
}*/

/*main{
    width:100%;
    box-sizing: border-box;
    padding: 20px;
}*/

.main h1{
    margin:20px 0;
}

#user{
    cursor: pointer;
    display: flex;
    position: relative;
}

.search-popup{
    position: fixed;
    top: -700px;
    width: 100%;
    z-index: -1;
    max-width: 610px;
    left: calc(50% + 320px);
    transform: translate(-50%,0%);
    background: #fff;
    transition: top 0.3s, z-index 0.3s;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #E8F6FB;
    border-top: 0;
}

.search-popup.open {
    top: 84px;
    z-index: 9;
}

.error{
    background: #FFEEEF;
    border: 1px solid #ECAFB3;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 20px 0;
}

.content-blue-block{
    background: #1984A8;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 20px;
    margin-bottom:10px;
    color:#fff;
}

.content-white-block{
    background: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom:10px;
}

.category-description img{
    float:left;
    border-radius:5px;
    margin-right:20px;
}

.content-white-block p, .file-info-description-div p{
    text-indent: 30px;
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
    color: #094153;
}

.content-white-block table p, .file-info-description-div table p {
    text-indent: 0;
}

.content-white-block li p {
    text-indent: 0;
    line-height: 30px;
}

.link-news{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    transition: background 0.3s, color 0.3s;
}

.link-news:hover{
    background: #1984A8;
    color:#fff;
}

.speedbar{
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #729FAE;
    margin: 10px 0;
}

.speedbar a{
    color: #729FAE;
}
.speedbar a:hover{
    color: #729FAE;
    text-decoration: underline;
}

.w30 {
    width: 30px;
    display: inline-block;
    text-align: center;
}

.table-div {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

#loading-layer{
    background: #fff;
    width: 144px;
    height:144px;
    border-radius: 5px;
}

.full-width-search {
    height: 50px!important;
    width: 100%!important;
    padding-left: 60px!important;
    background: var(--main-search) 22px no-repeat #fff!important;
}

.link-hs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, color 0.3s;
}

.link-hs:hover {
    background: #1984A8;
    color: #fff;
}

.link-hs-content {
    width: calc(100% - 94px);
}

.link-hs-content-abbr {
    font-weight: 500;
}

.link-hs img{
    width: 38px;
    height: 38px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}

.link-hs i {
    width: 38px;
    height: 38px;
    margin-right: 20px;
}

.link-hs-content-name {
    font-size: 11px;
    color: #8BB7C6;
    line-height: 14px;
}

.link-hs-rate {
    width: 36px;
    font-weight: 500;
    margin-left: 10px;
}

.navigation{
    width: 100%;
    overflow-x: auto;
}

.navigation-child{
    display:flex;
}

.navigation span, .navigation a{
    line-height: 40px;
    background: #fff;
    border-radius: 3px;
    padding: 0 20px;
    margin-right: 5px;
    display: inline-block;
    white-space: nowrap;
}

.navigation a:hover{
    background: #1984A8;
    color: #fff;
}

.shortstory {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.shortstory-img{
    width:80px;
    height:80px;
    background: var(--news-blue) center no-repeat;
    background-size: cover!important;
    margin-right:10px;
    border-radius: 3px;
}

.shortstory-img img{
    width:80px;
    height:80px;
    object-fit: cover;
    background: #fff;
}

.shortstory-content{
    width:calc(100% - 100px);
}

.shortstory-name{
    font-weight: 500;
    line-height: 20px;
}

.shortstory-text{
    font-size: 12px;
    line-height: 18px;
    color: #094153;
    margin-top:5px;
    text-align: justify;
}

.shortstory-date{
    font-size: 10px;
    color: #8BB7C6;
    margin-top:5px;
}

.fullstory {
    padding: 20px;
}

.fullstory-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: #729FAE;
    margin-bottom: 10px;
}

.fullstory-meta a{
    color: #729FAE;
    line-height:16px!important;
}

.fullstory-meta-date{
    padding-left:26px;
    background: var(--date) no-repeat left 50%;
}

.fullstory-meta-cat{
    padding-left:26px;
    background: var(--cat) no-repeat left 50%;
}

.fullstory-meta-views{
    padding-left:26px;
    background: var(--views) no-repeat left 50%;
}

.fullstory-meta-comm{
    padding-left:26px;
    background: var(--comm) no-repeat left 50%;
}

.fullstory-content {
    text-align: justify;
    overflow-wrap: break-word;
}

.fullstory-content ul{
    margin-top: 10px;
}

.fullstory-content ul li:before {
    content: ' ';
    border-radius: 50%;
    box-sizing: border-box;
    background: #FFCE1F;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 9px;
}

.fullstory-content li{
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    line-height: 30px;
    display: block;
}

.fullstory-content ol{
    counter-reset: myCounter;
    margin-top: 10px;
}
.fullstory-content ol li {
    counter-increment: myCounter;
}
.fullstory-content ol li:before {
    /*content: counter(myCounter);*/
    content: counters(myCounter, ".");  
    display: block;
    text-align: center;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 4px;
    font-weight: 500;
    font-size: 10px;
    line-height: 22px;
    color: #1984A8;
    border-radius: 50%;
    box-sizing: border-box;
    background: #FFCE1F;
}

.fullstory-content ul li ul li:before, .fullstory-content ol li ul li:before {
    content: ' ';
    border-radius: 50%;
    box-sizing: border-box;
    background: #FFCE1F;
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 11px;
}

.fullstory-content ol li ul {
    counter-reset: none;      /* Сброс счётчика для вложенного ul */
    list-style-type: none;    /* Отключение маркеров */
}

.fullstory-content ol li ul li {
    counter-increment: none;
}

.fullstory-content dl {
    margin-top: 10px;
}

.fullstory-content dd {
    margin-bottom: 10px;
    margin-left: 30px;
}

.fullstory-content dt {
    font-weight: 500;
    margin-left: 30px;
}

.ul-oks ul li:before {
    background:var(--a-li)!important;
    background-size:12px 12px!important;
}

.ul-oks ul li ul li:before {
    background: #FFCE1F!important;
}

.ul-oks ol li:before {
    background: #15D69C!important;
    color: #fff!important;
}

.fullstory-content h2, .fullstory-content h3, .fullstory-content h4, .fullstory-content h5, .fullstory-content h6 {
    margin: 20px 0 10px 30px;
}

.fullstory-content img{
    /*max-width: 100%;*/
    max-width: 666px!important;
    height: auto;
    object-fit: cover;
}

.fullstory-content p img {
    max-width: calc(100% - 30px)!important;
}

.fullstory-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #C5EBF8;
    border-bottom: 1px solid #C5EBF8;
    padding: 20px;
    margin: 10px -20px;
    align-items: center;
}

.fullstory-footer-block {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #C5EBF8;
    padding: 20px 20px 0;
    margin: 10px -20px;
    align-items: center;
}

.fullstory-tags, .fullstory-meta a {
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
}

.fullstory-tags a:hover, .fullstory-meta a:hover {
    text-decoration: underline;
}

.fullstory-content table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #B3E7F8;
    border-collapse: collapse;
}
.fullstory-content table th {
    font-weight: 500;
    padding: 5px;
    background: #E8F6FB;
    border: 1px solid #B3E7F8;
    box-sizing: border-box;
}
.fullstory-content table td {
    border: 1px solid #B3E7F8;
    padding: 5px;
    text-align: left;
}
.fullstory-content table tr {
    transition: background 0.3s;
}
.fullstory-content table tr:hover {
    background: #E8F6FB;
}
.fullstory-content table img {
    max-width: none;
}
.fullstory-content iframe{
    max-width: 580px;
    width: 100%;
    height: 320px;
}

.fileinfo-table-div {
    overflow-x: auto;
}

.quote {
    border-top: 1px solid #ACD8E7;
    border-bottom: 1px solid #ACD8E7;
    padding: 20px 0;
    margin: 20px 0;
    position: relative;
}

.quote:before {
    content: " ";
    position: absolute;
    top: -9px;
    left: 0;
    width: 35px;
    height: 17px;
    background: var(--quote) left center no-repeat #fff;
}

.quote:after {
    content: " ";
    position: absolute;
    bottom: -9px;
    right: 0;
    width: 35px;
    height: 17px;
    background: var(--quote) right center no-repeat #fff;
}

.small-title{
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: #094153;
    margin:20px 0;
}

/*.similar-articles{
    width: 100%;
    overflow-x: auto;
}

.similar-articles-child {
    display: flex;
    white-space: nowrap;
}*/

.similar-articles-item{
    min-width: 214px;
    width: 100%;
    height: 206px;
    background: #FFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding:20px;
    margin-right:20px;
}

/*.similar-articles-item:last-child{
    margin-left:0;
}*/

.similar-articles-back{
    width:100%;
    height:100px;
    background: var(--news-blue) bottom no-repeat;
    background-size: cover!important;
    margin-bottom:20px;
}

.similar-articles-back img{
    width:100%;
    height:100%;
    object-fit: cover;
    background: #fff;
}

.similar-articles-title{
    white-space: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    overflow:hidden;
    height: 54px;
}

.lectures-downloads {
    display: flex;
    flex-wrap: wrap;
}

.lectures-downloads a{
    display: inline-flex;
    align-items: center;
}

.lectures-downloads span {
    display: flex;
    margin-right:10px;
}

.lectures-downloads a{
    color:#FFCE1F;
    margin-right:10px;
}

.lectures-downloads a:hover{
    text-decoration: underline;
}

.overflow-x{
    overflow-x: auto;
}

.user-info-white{
    padding:20px;
}

.user-info{
    display:flex;
}

.user-info img{
    width:100px;
    height:100px;
    object-fit: cover;
    margin: 10px 20px 0 0;
    border-radius: 5px;
}

.user-info-content-head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.user-info-popup{
    display:flex;
    align-items: center;
}

.user-info-popup img{
    width:100px;
    height:100px;
    object-fit: cover;
    margin-right:20px;
    border-radius: 50%;
}

.user-info-content{
    width:calc(100% - 120px);
}

.user-info-content-name{
    display:flex;
    align-items: center;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #094153;
}

.user-info-content-name i{
    margin:0 10px;
}

.user-info-content-online{
    display:flex;
}

.user-info-content-fullname{
    font-size: 14px;
    line-height: 18px;
    color: #0D6F8F;
}

.user-info-content-online{
    font-size: 14px;
    line-height: 27px;
    color: #15D69C;
}

.user-info-content-text{
    font-size: 14px;
    line-height: 27px;
    color: #094153;
}

.user-info-block-panel{
    display:flex;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.user-info-block-panel a{
    width: 200px;
    min-width: 200px;
    padding:10px 10px 10px 50px;
    font-size: 11px;
    line-height: 12px;
    color: #95B8C5;
    min-height:34px;
    box-sizing: border-box;
    transition: background 0.3s, color 0.3s, border-radius 0.3s, border 0.3s;
}

.user-info-block-panel a:hover{
    border-radius:5px;
}

.user-info-block-panel a span{
    display:block;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #094153;
}

.block-rate{
    background: var(--rate) left 10px top 12px no-repeat;
}

.block-files{
    background: var(--files) left 10px top 12px no-repeat;
}

.block-teachers{
    background: var(--teachers) left 10px top 12px no-repeat;
}

.block-vacancy{
    background: var(--vacancy) left 10px top 12px no-repeat;
}

.block-rate:hover{
    background: var(--rate) left 10px top 12px no-repeat #E8F6FB;
}

.block-files:hover{
    background: var(--files) left 10px top 12px no-repeat #E8F6FB;
}

.block-teachers:hover{
    background: var(--teachers) left 10px top 12px no-repeat #E8F6FB;
}

.block-vacancy:hover{
    background: var(--vacancy) left 10px top 12px no-repeat #E8F6FB;
}

.block-user-rate {
    min-width: 260px;
    padding: 10px 20px 10px 50px;
    min-height:34px;
    box-sizing: border-box;
    background: var(--rate) left 10px top 12px no-repeat;
}

.block-external-link{
    width:auto!important;
    min-width:auto!important;
    background-size:27px 27px!important;
    position:relative;
    margin-bottom:0!important;
    margin-right:20px;
}
.block-external-link span, .block-external-link p{
    white-space: nowrap;
}

.block-external-link.link{
    background: var(--link) left 10px top 12px no-repeat;
}
.block-external-link.link:hover{
    background: var(--link) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.add{
    background: var(--link-add) left 10px top 12px no-repeat;
}
.block-external-link.add:hover{
    background: var(--link-add) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.vk{
    background: var(--vk-blue) left 10px top 12px no-repeat;
}
.block-external-link.vk:hover{
    background: var(--vk-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.tg{
    background: var(--tg-blue) left 10px top 12px no-repeat;
}
.block-external-link.tg:hover{
    background: var(--tg-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.yt{
    background: var(--yt-blue) left 10px top 12px no-repeat;
}
.block-external-link.yt:hover{
    background: var(--yt-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.dz{
    background: var(--dz-blue) left 10px top 12px no-repeat;
}
.block-external-link.dz:hover{
    background: var(--dz-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.ig{
    background: var(--insta-blue) left 10px top 12px no-repeat;
}
.block-external-link.ig:hover{
    background: var(--insta-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.rt{
    background: var(--rt-blue) left 10px top 12px no-repeat;
}
.block-external-link.rt:hover{
    background: var(--rt-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.ok{
    background: var(--ok-blue) left 10px top 12px no-repeat;
}
.block-external-link.ok:hover{
    background: var(--ok-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.o{
    background: var(--hs-blue) left 10px top 12px no-repeat;
}
.block-external-link.o:hover{
    background: var(--hs-blue) left 10px top 12px no-repeat #E8F6FB;
}

.block-external-link.org{
    background: #fff;
}
.block-external-link.org:hover{
    background: #E8F6FB;
}

.block-external-link.org img{
    position:absolute;
    left:10px;
    top:12px;
    width:27px;
    height:27px;
    border-radius:50%;
    object-fit:cover;
}
.hs-block-panel.external-links{
    flex-wrap:nowrap;
}

.hs{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hs-left{
    width: calc(100% - 360px)
}

.hs-right{
    width: 340px;
    margin-left: 20px;
}

.hs-body{
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.hs-meta{
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
    margin-top:20px;
}

.hs-vk-widget{
    padding:7px!important;
    box-sizing:border-box;
}

.hs-tg-widget{
    margin:13px;
}

.btn.tg{
    line-height:30px;
    text-align: center;
    box-sizing: border-box;
}
.btn.tg span{
    background: var(--tg-white) left no-repeat;
    padding-left:30px;
}

.hs-left h2 {
    margin: 0 0 10px;
}

.hs-foto {
    width: 340px;
    height: 340px;
    border-radius: 5px;
    box-sizing: border-box;
    background: var(--hs-blue) center center no-repeat #fff;
    background-size: 150px;
    padding: 20px;
}

.hs-foto img {
    width: 300px;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    background: #fff;
}

.hs-block-panel{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
}

.hs-block-panel a, .hs-block-panel div{
    width: 200px;
    min-width: 200px;
    padding:10px 10px 10px 50px;
    font-size: 11px;
    line-height: 12px;
    color: #95B8C5;
    min-height:34px;
    box-sizing: border-box;
    transition: background 0.3s, color 0.3s, border 0.3s, border-radius 0.3s;
    margin-bottom:20px;
}

.hs-block-panel a:hover, .hs-block-panel div:hover{
    border-radius:5px;
}

.hs-block-panel a span, .hs-block-panel div span{
    display:block;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #094153;
}

.hs-interview-btn{
    margin:20px 0;
    text-align: center;
}

.hs-interview-btn span, .hs-interview-btn a{
    margin: 5px auto;
}

.hs-interview-btn span{
    /*font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;*/
    display: block;
}

/*.content-white-block.hs{
    padding: 20px;
}

.hs-head{
    display:flex;
    justify-content: space-between;
}

.hs-logo{
    width:220px;
    height:220px;
    margin-right:40px;
}

.hs-logo img{
    width:220px;
    height:220px;
    object-fit: cover;
    border-radius:5px;
}

.hs-head-content-rate{
    border: 1px solid #4BCCBE;
    box-sizing: border-box;
    border-radius: 5px;
    height:40px;
    display:flex;
    padding:0 7px;
    width: 164px;
    align-items: center;
    justify-content: space-between;
    margin-left: 10px;
}

.hs-head-content-rate span{
    font-weight: 500;
    font-size: 12px;
    color: #094153;
}

.hs-head-content-rate-number{
    background: #4BCCBE;
    border-radius: 2px;
    color:#fff!important;
    line-height: 26px;
    padding:0 5px;
}*/

.block-users{
    background: var(--users) left 10px top 12px no-repeat;
}

.block-users:hover{
    background: var(--users) left 10px top 12px no-repeat #E8F6FB;;
}

.block-reviews{
    background: var(--reviews) left 10px top 12px no-repeat;
}

.block-reviews:hover{
    background: var(--reviews) left 10px top 12px no-repeat #E8F6FB;;
}

.block-teacher-r{background: var(--teacher-r) left 10px top 12px no-repeat;}
.block-teacher-r:hover{background: var(--teacher-r) left 10px top 12px no-repeat #E8F6FB;}

.block-teacher-e{background: var(--teacher-e) left 10px top 12px no-repeat;}
.block-teacher-e:hover{background: var(--teacher-e) left 10px top 12px no-repeat #E8F6FB;}

.block-teacher-v{background: var(--teacher-v) left 10px top 12px no-repeat;}
.block-teacher-v:hover{background: var(--teacher-v) left 10px top 12px no-repeat #E8F6FB;}

.block-teacher-f{background: var(--teacher-f) left 10px top 12px no-repeat;}
.block-teacher-f:hover{background: var(--teacher-f) left 10px top 12px no-repeat #E8F6FB;}

.info_spoiler_button{
    margin:0 -20px;
    padding: 20px 20px 0;
    border-top: 1px solid #D6EFF8;
    cursor: pointer;
    transition: margin 0.3s, color 0.3s, border 0.3s, border-radius 0.3s, max-height 0.3s;
    display:block;
}

.info_spoiler_button.z{
    margin:-20px -20px 0;
    border-top: 0;
}

.info_spoiler_button.z.open{
    margin:0 -20px;
    border-top: 1px solid #D6EFF8;
}

.info_spoiler_button i{
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    margin-left: 10px;
    transition: transform 1s;
}

.info_spoiler_button.open i{
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

#hs_info_div, #hs_fac_div{
    max-height:0;
    overflow: hidden;
    transition: max-height 1s;
}

.hs-url{
    background: var(--hs-url) left center no-repeat;
    padding-left:20px;
    line-height: 20px;
}

.hs-adress{
    background: var(--hs-adress) left center no-repeat;
    padding-left:20px;
    line-height: 20px;
}

.hs-author-link img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.hs-author-link {
    padding: 5px 10px;
    border-radius: 5px;
}

.modal-mask {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 900;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: RGBA(9,65,83,0.7);
    padding: 20px;
    box-sizing: border-box;
}

.modal-window {
    background-color: #fff;
    border-radius: 5px;
    min-width: 300px;
    max-width: 1000px;
    max-height: 1000px;
    width: 100%;
    box-sizing: border-box;
    padding:10px 20px;
}

.modal-header{
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
}

#modal_title {
    max-width: calc(100% - 40px);
    overflow: hidden;
    max-height: 48px;
}

#modal_body{
    height: 100%;
    max-height: calc(100% - 40px);
    overflow-y:auto;
}
#modal_body iframe{
    height:100%;
    height: calc(100% - 10px);
}

.modal-window.height100{
    height:100%;
}

#modal_btns {
    display: flex;
    justify-content: center;
    margin-top:20px;
}

#modal_btns a {
    margin-right: 10px;
}

#modal_btns a:last-child {
    margin-right: 10px;
}

.blue-description{
    color: #8BB7C6;
}

.sem-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sem-list a {
    display: block;
    width: calc(25% - 7.5px);
    min-width:140px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 5px;
}

.sem-list-asp-dop {
    width: calc(50% - 5px) !important;
}

.sem-name {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #1984A8;
}

.sem-files {
    font-size: 11px;
    line-height: 20px;
    color: #8BB7C6;
}

.sem-list a:hover {
    background: #1984A8;
    color:#fff;
}

.sem-list a:hover span{
    color:#fff;
}

.action-bar-parent{
    position: relative;
    float: right;
}

.action-bar{
    display: block;
    position: absolute;
    max-height:0;
    overflow: hidden;
    box-sizing: border-box;
    transition: padding 0.3s, max-height 0.3s;
    top: 20px;
    right: 0;
    z-index: 21;
    width: 250px;
    background: #fff;
    box-shadow: 0px 4px 20px #c0dde7;
    border-radius: 5px;
}

.action-bar a{
    display:block;
    padding:10px 20px;
}

.action-bar a:hover{
    background: #E8F6FB;
}

.action-bar-parent:hover > .action-bar, .action-bar:hover{
    padding:10px 0;
    max-height:700px;
}

.link-subj{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    transition: background 0.3s, color 0.3s, border 0.3s, border-radius 0.3s, max-height 0.3s;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.link-subj:hover{
    background: #1984A8;
    color:#fff;
}

.link-subj-a i{
    margin-right:4px;
}

.i-flink{
    background: var(--flink);
    width: 24px;
    height: 24px;
    transition: background 0.3s, color 0.3s;
}

.link-subj:hover .i-flink{
    background: var(--flink-white);
}

.link-subj:hover a{
    color:#fff;
}

.link-subj-a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-subj-name {
    display: flex;
    align-items: center;
    max-width: calc(100% - 50px);
}

.link-subj-files {
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
    width: 50px;
    overflow: hidden;
}

.link-subj:hover .link-subj-files{
    color: #fff;
}

.link-subj-files.fc{
    padding-left: 20px;
    background: var(--fc) left center no-repeat;
    box-sizing: border-box;
}

.link-subj:hover .link-subj-files.fc{
    background: var(--fc-white) left center no-repeat;
}

.link-files-views {
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
    width: 100px;
    padding-left: 20px;
    background: var(--eye) left center no-repeat;
}

.link-subj:hover .link-files-views{
    color: #fff;
    background: var(--eye-white) left center no-repeat;
}

.small-input{
    height: 38px!important;
    padding: 0 14px!important;
    width:100%!important;
}

.btns-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btns-list a{
    margin:20px 20px 20px 0;
}

.btns-list a:last-child{
    margin-right:0;
}

/*.file-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.one-file{
    background: #FFF;
    border-radius: 5px;
    width: calc(33% - 13.33333333333px);
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
}

.one-file.deleted{
    opacity:0.3;
}

.one-file.deleted:hover{
    opacity:1;
}

.one-file-new, .one-file-discount{
    position:absolute;
    top:0;
    color:#fff;
    border-radius: 3px;
    padding:0 5px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight:500;
}

.one-file-new{
    right:0;
    background: #15D69C;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}

.one-file-discount{
    left:0;
    background: #FF7131;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}

.one-file-title{
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #1984A8;
    padding-left:60px;
    height:66px;
    overflow:hidden;
    display: block;
}

.one-file-title.pdf{background: var(--pdf) top left no-repeat;}
.one-file-title.doc{background: var(--doc) top left no-repeat;}
.one-file-title.xls{background: var(--xls) top left no-repeat;}
.one-file-title.ppt{background: var(--ppt) top left no-repeat;}
.one-file-title.img{background: var(--img) top left no-repeat;}
.one-file-title.djvu{background: var(--djvu) top left no-repeat;}
.one-file-title.txt{background: var(--txt) top left no-repeat;}
.one-file-title.zip{background: var(--zip) top left no-repeat;}

.one-file-icons{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
}

.one-file-icons i{
    margin-right:5px;
    opacity:0.5;
    transition: all 0.3s;
}

.one-file-icons i:hover{
    opacity:1;
}

.one-file-icons a, .one-file-icons span{
    height:24px;
}*/

.one-file-new, .one-file-discount{
    position:absolute;
    top:0;
    color:#fff;
    border-radius: 3px;
    padding:0 5px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight:500;
}

.one-file-discount{
    left:0;
    background: #FF7131;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}

.title-popup{
    display: block;
    position: absolute;
    top: 20px;
    left: -20px;
    width: 250px;
    max-height:0;
    overflow: hidden;
    box-sizing: border-box;
    transition: padding 0.3s, max-height 0.3s;
    background: #fff;
    box-shadow: 0px 4px 20px #c0dde7;
    border-radius: 5px;
    z-index: 20;
}

.title-popup-content{
    padding: 20px;
}

.title-relative{
    position: relative;
}

.title-relative:hover > .title-popup, .title-popup:hover{
    max-height:500px;
}

.one-file-price-number, .one-file-price-discount, .one-file-price-free{
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
}

.fileinfo-meta-price > .one-file-price-number, .fileinfo-meta-price > .one-file-price-discount, .fileinfo-meta-price > .one-file-price-free{
    font-size: 24px!important;
    line-height: 30px!important;
}

.one-file-price-number, .fileinfo-meta-price > .one-file-price-number{
    color: #1984A8;
}

.one-file-price-discount, .fileinfo-meta-price > .one-file-price-discount{
    color: #FF7131;
}

.one-file-price-free, .fileinfo-meta-price > .one-file-price-free{
    color: #15D69C;
}

.one-file-price-text{
    font-size: 12px;
    line-height: 20px;
    color: #094153;
}

.one-file-footer{
    display:flex;
    justify-content: space-between;
}
.one-file-rating{
    display:inline-block;
    width:120px;
    background: #E8F6FB;
    position: relative;
    height:24px;
}

.one-file-rating-orange{
    position:absolute;
    height:100%;
    left:0;
    top:0;
    background: #FF7131;
    max-width: 100%;
}

.one-file-rating-orange.b{
    background: #6EA8BC!important;
}

.one-file-rating-stars{
    background: var(--t-star);
    position:absolute;
    height:100%;
    width:100%;
    left:0;
    top:0;
}

.one-file-rating-text{
    font-size: 12px;
    line-height: 20px;
    color: #95B8C5;
}

.fileinfo{
    display:flex;
    justify-content: space-between;
}

.fileinfo-body{
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding:20px;
    overflow: hidden;
    width:100%;
    position: relative;
}

.fileinfo-left {
    width: calc(100% - 360px);
}

.fileinfo-meta-flex-right-fixed {
    text-align: left;
}

.fileinfo-meta{
    width:340px;
    margin-left:20px;
    position:relative;
}

.fileinfo-meta-one{
    margin-bottom:20px;
}

.fileinfo-meta-one b{
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    color: #094153;
}

.fileinfo-meta-one span{
    font-size: 12px;
    line-height: 20px;
    color: #094153;
}

.fileinfo-meta-disount-time{
    font-size: 12px;
    color: #95B8C5;
}

.fileinfo-price-name{
    /*width:66px;*/
    width:111px;
    display:inline-block;
}

.fileinfo-price-old-price {
    position: relative;
    color: #8BB7C6!important;
    font-size: 18px;
    line-height: 20px;
    margin-right: 7px;
}

.fileinfo-price-old-price:before {
    border-bottom: 2px solid #FF7131;
    position: absolute;
    content: "";
    width: 100%;
    height: 75%;
    transform: rotate(-15deg);
}

.fileinfo-one-tag {
    line-height: 18px;
    font-size: 12px;
    margin-right: 5px;
    padding: 0 4px;
    border-radius: 3px;
    opacity: 1;
    transition: opacity 0.3s, background 0.3s;
    display: inline-flex;
    white-space: nowrap;
    text-indent: 0;
    color: #094153;
}

.fileinfo-one-tag:hover{
    /*opacity:0.7;*/
    color: #094153;
}

.fileinfo-one-tag.b{
    background: #E8F6FB;
}

.fileinfo-one-tag.y{
    background: #fff1c5;
}

.fileinfo-one-tag.g{
    background: #dbf7eb;
}

.fileinfo-one-tag.n{
    background: #f5f5f5;
}

.fileinfo-one-tag.b:hover{
    background: #C5EBF8;
}

.fileinfo-one-tag.y:hover{
    background: #FFCE1F;
}

.fileinfo-one-tag.g:hover{
    background: #15D69C;
}

.fileinfo-one-tag.n:hover{
    background: #ddd;
}

.fileinfo-specifications {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.fileinfo-specifications-row {
    margin-top: 20px;
    width: calc(50% - 10px);
}

.fileinfo-specifications-row-h {
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
    margin-bottom: 3px;
}

.fileinfo-specifications-row-t {
    text-align: left;
}


.fileinfo-footer{
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
    display:flex;
    align-items:center;
    justify-content: space-between;
}

.fileinfo-footer-authors {
    display: flex;
    align-items: center;
}

.fileinfo-footer-author-one {
    display: flex;
    align-items: center;
}

.fileinfo-footer-author {
    display: inline-flex;
    align-items: center;
}

.fileinfo-footer-author img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 5px;
}

.fileinfo-footer-author-one-rate{
    margin-left:5px;
}

.fileinfo-footer-author-comma{
    margin-right: 10px;
}

.fileinfo-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.fileinfo-rate-number {
    background: #53DA89;
    border-radius: 3px;
    line-height: 30px!important;
    font-weight: 500;
    padding: 0 10px;
}



.fileinfo-rate-number.o {
    background: #FF7131;
}

.fileinfo-rate-number.y {
    background: #FFCE1F;
}

.fileinfo-rate-number.b {
    background: #1984A8;
    color:#fff;
}

.fileinfo-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items:center;
}

.fileinfo-info div{
    margin-top:10px;
    display:flex;
    align-items:center;
    width:100%;
    max-width: calc(100% - 10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fileinfo-info a{
    display:flex;
    align-items:center;
}

.fileinfo-buyfile-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    z-index: 9;
    border-top: 1px solid #E8F6FB;
}

.main-search-left, .main-search-right{
    max-width: calc(100% - 10px);
    width:100%;
}

.main-search-left{
    background: rgb(255 255 255 / 95%)!important;
    margin-right:20px;
}

.main-search-left-li{
    width:100%;
    overflow:hidden;
    height:40px;
    margin-top:20px;
}
.main-search-left-li:first-child{
    margin-top:0;
}

/*.main-search-left-li b{
    margin:0 3px;
}*/

.main-search-left-li div{
    display:flex;
    align-items:center;
}

.main-search-left-li i{
    margin-right: 20px;
}

.main-search-left-li.b{
    position:relative;
}

.main-search-left-li.b div{
    position: absolute;
    left:0;
    top:45px;
    margin: 5px 0;
    transition: top 0.3s;
}

.main-search-left-li.b div.active{
    top:-5px;
}

.main-search-left-li.b div.top{
    top:-55px;
}

.main-search-left-li.b div.hidden{
    opacity:0;
    z-index:-5;
}

.main-search-left-li span{
    line-height: 20px;
    max-width: calc(100% - 60px);
}

.main-search-right{
    /*height: 310px;*/
}

.main-search-right-rel{
    overflow:hidden;
    position:relative;
    height: 200px;
}

.main-search-right-abs{
    position:absolute;
    transition: top 0.3s;
    width: 100%;
    height: 100%;
}

.main-search-right-abs a{
    width: 100%;
    display: block;
    border: 1px solid #fff;
    border-radius: 5px;
    background: rgb(255 255 255 / 95%);
    height: 90px;
}

.main-search-right-abs a:hover{
    border: 1px solid #D3E8EF;
    background: #E8F6FB;
}

.main-search-right-btn{
    width: 100%;
    margin-top: 20px;
    line-height: 40px;
    box-sizing: border-box;
    text-align: center;
}

#h_for_top_block {
    text-align: center;
    color: #094153;
    font-weight: 500;
    font-size: 40px;
    line-height: 55px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#h_for_top_block_span {
    position: relative;
    height: 55px;
    overflow: hidden;
    width: 100%;
}

#h_for_top_block_span span{
    position:absolute;
    top:55px;
    left:0;
    transition: top 0.3s;
    width:100%;
    text-align: center;
}

#h_for_top_block_span span.active{
    top:0px;
}

#h_for_top_block_span span.top{
    top:-55px;
}

#h_for_top_block_span span.hidden{
    opacity:0;
    z-index:-5;
}

.main-search-idea{
    background: var(--idea) left 20px center no-repeat #fff;
    padding: 20px 20px 20px 80px;
    margin: 20px 0;
    border-radius: 5px;
}

.main-block-work i{
    width:100px!important;
    height:100px!important;
}

.main-cats-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-cats-one {
    width: calc(25% - 13.33333px);
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.main-cats-one-head {
    display: flex;
    align-items: center;
}

.main-cats-one-right {
    margin-left: 20px;
    width: calc(100% - 60px);
    
}

.main-cats-one-name{
    font-weight: 500;
}

.main-cats-one-price {
    font-size: 14px;
    text-align: right;
    line-height: 16px;
}

.main-cats-one-price span {
    font-size: 20px;
    font-weight: 500;
}

.rate-cols{
    display:flex;
    justify-content: center;
    align-items: center;
}

.rate-cols-one{
    position: relative;
    background: #C5EBF8;
    border-radius: 3px;
    height:30px;
    width:100%;
    margin-right:2px;
    overflow: hidden;
}

.rate-cols-one:last-child{
    margin-right: 0;
}

.rate-cols-one-green, .rate-cols-one-orange, .rate-cols-one-yellow{
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
}

.rate-cols-one-green{
    background: #53DA89;
}

.rate-cols-one-orange{
    background: #FF7131;
}
.rate-cols-one-yellow{
    background: #FFCE1F;
}

.rate-cols-one-number{
    width:100%;
    line-height:30px;
    position: absolute;
    bottom:0;
    left:0;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: #094153;
}

.fileinfo-p img{
    display: block;
    text-align: center;
    width:100%;
    max-height:200px;
    object-fit: cover;
}

.fileinfo-body h2, .fileinfo-body h3, .fileinfo-body h4, .fileinfo-body h5, .fileinfo-body h6 {
    margin: 20px 0 10px 0;
}

.fileinfo-body h2:first-child{
    margin-top:0;
}

.fileinfo-tree{
    max-height: 300px;
    overflow: auto;
}

.fileinfo-tree li:before{
    display:none!important;
}

.file-in-tree-1{background: var(--doc);}
.file-in-tree-2{background: var(--txt);}
.file-in-tree-3{background: var(--pdf);}
.file-in-tree-4{background: var(--djvu);}
.file-in-tree-5{background: var(--xls);}
.file-in-tree-6{background: var(--ppt);}
.file-in-tree-7{background: var(--img);}
.file-in-tree-8{background: var(--files);}
.file-in-tree-9{background: var(--video);}
.file-in-tree-10{background: var(--video);}
.file-in-tree-0{background: var(--file);}

.file-in-tree-1, .file-in-tree-2, .file-in-tree-3, .file-in-tree-4, .file-in-tree-5, .file-in-tree-6, .file-in-tree-7, .file-in-tree-8, .file-in-tree-0, .file-in-tree-9, .file-in-tree-10{
    line-height:25px;
    padding-left:30px;
    background-repeat: no-repeat;
    background-size: 22px 22px;
    background-position: left top 2px;
}

.file-info-description-div{overflow:hidden;position:relative;}
.file-info-description-full{height:80px;background: linear-gradient(to bottom, RGBA(255, 255, 255, 0), #fff 80%);position: absolute;bottom:0;width:100%;text-align:center;}
.file-info-description-full a{position: absolute;bottom:0;left:50%;margin-left:-85px;}
.file-info-description-div-maxh{max-height:800px;}
.subject-list.s,.questions_list.s,.qail.s{max-height:400px;overflow:hidden;position:relative;}
.sp-text.s{max-height:200px;overflow:hidden;position:relative;}

.fileinfo-tree span{
    font-size: 10px;
    color: #7DB6C9;
}

#full-tree div {
    text-align: center;
    margin-top: 10px;
}

.height100-110{
    max-height: calc(100% - 130px)!important;
}

.unziped-iframe {
    width: 100%;
}

.unziped-full-iframe {
    width: 100%!important;
    max-width: 100%!important;
    height: 600px!important;
}

#unzipped_frame{
    text-align: center;
}

.preview-body{
    margin-top: 16px;
}

.presentation-cont{text-align:center;position:relative;}
.presentation-slider-window{
    height:100%;
    width:100%;
    overflow:hidden;
}
.prev-sl-bt, .next-sl-bt{
    z-index:1;
    display:inline-block;
    width:46px;
    height:100%;
    position:absolute;
    opacity:0.6;
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    background: var(--hs-arrow) center no-repeat RGBA(255, 255, 255, 0.6);
    background-size: 64px 64px;
}
.prev-sl-bt{
    left:0px;
}
.next-sl-bt{
    right:0px;
    transform: scale(-1, 1);
}
.prev-sl-bt:hover, .next-sl-bt:hover{
    opacity:1;
}
.presentation-slider-line{width:900000px; position:relative; top:0px; left:0px;}
.presentation-slider-line::after{clear: both; content: ""; display: block; }
.one-presentation-slide{float:left; text-align:center;}
.one-presentation-slide > img{display:inline-block; max-width:100%;}
.presentation-text-content{padding-top:30px;}
.one-presentation-slide-text{display:none;}

.dleplyrplayer, .dleplyrplayer video{
    width:100%;
}

.title-popup-content.t, .title-popup-content.t:hover{
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
}

.one-teacher-rate{
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
    width: 58px;
    display:flex;
    align-items: center;
}

.one-teacher-descr{
    font-size: 10px;
    line-height: 14px;
    color: #7DB6C9;
    display: block;
}

.one-teacher-descr i{
    margin-right:0!important;
}

.link-subj:hover .one-teacher-rate, .link-subj:hover .one-teacher-descr{
    color: #fff;
}

.title-popup.t{
    right: -20px;
    left: auto;
}

.one-teacher-rate span{
    width: 35px;
    text-align: center;
    line-height: 12px;
    margin-right: 5px;
}

.link-teacher{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    transition: color 0.3s, background 0.3s;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.content-white-block.t:hover .link-teacher, .content-white-block.t:hover .link-teacher-a{
    color:#fff;
}

.link-teacher-a i{
    margin-right:4px;
}

.link-teacher:hover a{
    color:#fff;
}

.link-teacher-a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-teacher-name {
    display: flex;
    align-items: center;
}

.content-white-block.t:hover .one-teacher-rate, .content-white-block.t:hover .one-teacher-descr{
    color: #fff;
}

.content-white-block.t:hover .i-rate-t{
    background: var(--rate-t-white);
}

.content-white-block.t:hover .i-people{
    background: var(--people-white);
}

.content-white-block.t:hover .i-info{
    background: var(--info-white);
}

.link-teacher-name img, .link-teacher-name i{
    width:50px;
    height:50px;
    object-fit: cover;
    margin-right:20px;
    border-radius: 50%;
}

.content-white-block.t{
    transition: background 0.3s, color 0.3s;
}

.content-white-block.t:hover, .content-white-block.t:hover .link-subj{
    background: #1984A8;
    color:#fff;
}

.content-white-block.t:hover .i-search-teacher-blue{
    background: var(--teacher-white);
    background-size: cover!important;
}

.teacher{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.teacher-left{
    width: calc(100% - 360px);
}

.teacher-right{
    width: 340px;
    margin-left: 20px;
}

/*.teacher-foto img{
    width:340px;
    height:454px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top center;
}*/

.teacher-body{
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.teacher-meta{
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
    margin-top:20px;
}

.teacher-left h2 {
    margin: 0 0 10px;
}

.teacher-body .hs-head-content-rate{
    margin-left:0;
}

/*.teacher-foto {
    width: 340px;
    height: 454px;
    border-radius: 5px;
    box-sizing: border-box;
    background: url(../i/no_t_foto.png) center center no-repeat #fff;
    background-size: auto 300px;
}*/

.teacher-fotorama {
    /*width: 340px;*/
    border-radius: 5px;
    box-sizing: border-box;
    overflow:hidden;
}

/*.teacher-fotorama-one-foto{
    width:100%;
    height:100%;
}*/

.teacher-fotorama-one-foto img, .teacher-fotorama-one-foto a{
    width:100%;
    height:100%;
    display:block;
}

.teacher-fotorama-add-foto {
    background: url(../i/no_t_foto.png) top 30px center no-repeat #fff;
    background-size: auto 280px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.teacher-fotorama-add-foto .btn {
    margin-top: 360px;
    box-sizing: border-box;
    height: 50px;
}

.fotorama__loaded--img .fotorama__img {
    height: 100%!important;
    width:100%!important;
    object-fit:cover;
    top: 0!important;
    left: 0!important;
}

.fotorama__thumb-border {
    border-color: #0A5067!important;
}

.fotorama__loaded--img .fotorama__img.fotorama__img--full {
    object-fit:contain!important;
}

.teacher-fotorama-one-foto-description-parent {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: calc(100% - 10px);
    display:flex;
    justify-content: center;
}

.teacher-fotorama-one-foto-description {
    box-sizing: border-box;
    border-radius: 5px;
    /* background: rgba(0, 0, 0, 50%); */
    background: RGBA(9,65,83,0.7);
    padding: 0 5px;
    color: #fff;
    font-weight: 400;
}

#teacher_info_div {
    max-height: 150px;
    overflow: hidden;
    transition: background 1s, color 1s, border 1s, max-height 1s;
    position:relative;
}
.teacher_info_div_gradient{height:30px;background: linear-gradient(to bottom, RGBA(255, 255, 255, 0), #fff 80%);position: absolute;bottom:0;width:100%;text-align:center;}

.comment {
    display: flex;
    width: 100%;
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: opacity 0.3s, color 0.3s, border 0.3s, max-height 0.3s;
}

.comment .comment-reply {
    /* margin: 0; */
    padding: 0;
}

.comm_content_text{
    background:#fff;
    transition: background .3s;
}

.comm_content_text.active{
    background:#AAD9E9;
}

.comment-ava {
    width: 50px;
    height: 50px!important;
    object-fit: cover;
    max-width: none;
    border-radius: 50%;
}

.comment-left{
    margin-right:20px;
}

.comment-content {
    width: calc(100% - 70px);
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-text {
    overflow-x: auto;
}

.comment-date {
    text-align: right;
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
}

.comment.spam {
    opacity: 0.3;
}

.comment.spam:hover {
    opacity: 1;
}

.comment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-rating {
    display: flex;
    align-items: center;
}

.comment-rating-num{
    width:30px;
    text-align: center;
    display: block;
    font-size: 11px;
    line-height: 20px;
    color: #1984A8;
}

.one-file-rating.c{
    display: block;
}

.diss-search-select {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.diss-search-btn{
    line-height: 38px;
}

.diss-search-no-result {
    text-align: center;
}

.one-diss-search{
    background: #E8F6FB;
}

.one-diss-search:hover{
    background: #1984A8;
}

.registration{
    display: flex;
    justify-content: center;
}

.registration-div{
    max-width:500px;
}

.registration-field {
    margin-top: 20px;
}

.registration-field input {
    width: 100%;
    height: 38px;
}

.rvk{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.no-reg{
    width:220px;
    max-width:100%;
    box-sizing: border-box;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 5px;
}

.tags span{
    margin: 10px 15px;
    line-height: 24px;
}
.clouds_xsmall{font-size:14px;}
.clouds_small{font-size:16px;}
.clouds_medium{font-size:18px;}
.clouds_large{font-size:20px;}
.clouds_xlarge{font-size:22px;}

.ui-tabs-nav {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.ui-tabs-active {
    border-bottom: 2px solid #0D6F8F;
}

.ui-tabs-nav li {
    margin-right: 20px;
}

.one-task img {
    display: block;
    margin: 10px auto;
    max-width:auto;
    float:none!important;
}

.one-f {
    background: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 20px 20px 10px;
    margin-bottom: 20px;
    position: relative;
    transition: opacity 0.3s;
}

.one-f-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.one-f-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #1984A8;
    padding-left: 60px;
    max-height: 66px;
    min-height: 40px;
    overflow: hidden;
    max-width: calc(100% - 165px);
    /*display: flex;
    align-items: center;*/
    margin-bottom: 5px;
}

.one-f-title-gt{
    font-weight:400;
}

.one-f-title.pdf{background: var(--pdf) top left no-repeat;}
.one-f-title.doc{background: var(--doc) top left no-repeat;}
.one-f-title.xls{background: var(--xls) top left no-repeat;}
.one-f-title.ppt{background: var(--ppt) top left no-repeat;}
.one-f-title.img{background: var(--img) top left no-repeat;}
.one-f-title.djvu{background: var(--djvu) top left no-repeat;}
.one-f-title.txt{background: var(--txt) top left no-repeat;}
.one-f-title.zip{background: var(--zip) top left no-repeat;}

.one-f-title.coursework{background: var(--ft-coursework) top left no-repeat;}
.one-f-title.homework{background: var(--ft-homework) top left no-repeat;}
.one-f-title.task{background: var(--ft-task) top left no-repeat;}
.one-f-title.lab{background: var(--ft-lab) top left no-repeat;}
.one-f-title.abstract{background: var(--ft-abstract) top left no-repeat;}
.one-f-title.report{background: var(--ft-report) top left no-repeat;}
.one-f-title.qualifying-work{background: var(--ft-qualifying-work) top left no-repeat;}
.one-f-title.dissertation{background: var(--ft-dissertation) top left no-repeat;}
.one-f-title.research{background: var(--ft-research) top left no-repeat;}
.one-f-title.practice{background: var(--ft-practice) top left no-repeat;}
/*.one-f-title.cheat-sheet{background: var(--ft-cheat-sheet) top left no-repeat;}*/
.one-f-title.answers{background: var(--ft-answers) top left no-repeat;}
.one-f-title.questions{background: var(--ft-questions) top left no-repeat;}
.one-f-title.lectures{background: var(--ft-lectures) top left no-repeat;}
.one-f-title.seminars{background: var(--ft-seminars) top left no-repeat;}
.one-f-title.workbook{background: var(--ft-workbook) top left no-repeat;}
.one-f-title.presentation{background: var(--ft-presentation) top left no-repeat;}
.one-f-title.translation{background: var(--ft-translation) top left no-repeat;}
.one-f-title.summary{background: var(--ft-summary) top left no-repeat;}
.one-f-title.essay{background: var(--ft-essay) top left no-repeat;}
.one-f-title.article{background: var(--ft-article) top left no-repeat;}
.one-f-title.book{background: var(--ft-book) top left no-repeat;}
.one-f-title.standard{background: var(--ft-standard) top left no-repeat;}
.one-f-title.other{background: var(--ft-other) top left no-repeat;}
.one-f-title.video{background: var(--ft-video) top left no-repeat;}

.one-f-vip::before{
    display: block;
    content: '';
    position: absolute;
    top: -7px;
    left: 35px;
    width: 15px;
    height: 15px;
    background: var(--z-deadline-o) center no-repeat;
}

.one-f-vip{
    position:relative;
}

.one-f-vip-m{
    box-shadow: 0 0 5px 0 rgb(255 206 31 / 30%), 0 0 1px 0 rgb(255 206 31 / 50%), 0 0 10px 0 rgb(255 206 31 / 15%);
    /*box-shadow: 0 0 5px 0 rgb(255 113 49 / 30%), 0 0 1px 0 rgb(255 113 49 / 50%), 0 0 10px 0 rgb(255 113 49 / 15%);*/
}

.one-f-prices {
    white-space: nowrap;
}

.one-f-price-number, .one-f-price-discount, .one-f-price-free{
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
}

/*.one-f-price-free{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}*/

.one-f-price-number{
    color: #1984A8;
}

.one-f-price-discount{
    color: #FF7131;
}

.one-f-price-free{
    color: #15D69C;
}

.one-f-price-text{
    font-size: 12px;
    line-height: 20px;
    color: #094153;
}

.one-f-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.one-f-footer .title-relative {
    max-width: calc(100% - 25px);
}

.one-f-footer-left {
    display: flex;
    align-items: center;
}

.one-f-footer-right {
    display: flex;
    align-items: center;
}

.one-f-action-bar-parent {
    float: none;
    height: 12px;
    display: flex;
    align-items: center;
}

.one-f-action-bar-parent .i-flink, .one-f-action-bar-parent .i-not-checked, .one-f-action-bar-parent .i-refreshed{
    width:12px!important;
    height:12px!important;
}

.one-f-action-bar-parent .i-3t{
    width: 16px!important;
    height: 4px!important;
}

/*.one-f-action-bar-parent .action-bar{
    padding:20px;
}*/

.one-f-footer-left, .one-f-footer-left a, .one-f-footer-oh {
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
}

.one-f-footer-oh{
    max-width:100%;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right:20px;
}

.one-f-footer-oh:last-child{
    margin-right:0;
}

/*.one-f-footer-oh.a{
    display:flex;
    align-items:center;
}*/

.one-f-footer-oh.a a{
    color: #6EA8BC;
    display:flex;
    align-items:center;
}

.one-f-footer-oh.a img{
    width:20px;
    height:20px;
    margin-right:10px;
    border-radius:50%;
}

.one-f-author{
    background: var(--author) center left no-repeat;
    background-size: 12px 12px;
    padding-left: 20px;
}
.one-f-question-q{
    background:none!important;
}

.one-f-question-h{
    font-weight: 500;
}

/*.one-f-rate{
    background: var(--rate-t) center left no-repeat;
    background-size: 12px 12px;
    padding-left: 20px;
}*/

.action-bar-text{
    padding: 10px 20px;
    font: normal 16px/1.5 'Rubik', sans-serif;
    color: #094153;
}

.one-f-rate{
    margin-right:5px;
    display:inline-flex;
}

/*.one-f-rate-text{
    font: normal 16px/1.5 'Rubik', sans-serif;
    color: #094153;
}*/

.one-f-footer-scroll{
    overflow:auto;
    padding-right:20px;
    display: flex;
}
.one-f-footer-scroll-parent{
    position:relative;
    /*max-width: calc(100% - 25px);*/
}

.one-f-footer-scroll-parent:after{
    display:block;
    content: " ";
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, RGBA(255, 255, 255, 0), #fff 100%)
}

.one-f-footer-circles {
    display: inline-flex;
    margin: 0 5px 0 8px;
}

.one-f-footer-circles a {
    margin-left: -8px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    box-sizing: border-box;
    width: 20px;
    height: 18px;
    align-items: center;
    display: inline-flex;
}

.one-f-footer-circles a:nth-child(1) {z-index:3}
.one-f-footer-circles a:nth-child(2) {z-index:2}
.one-f-footer-circles a:nth-child(3) {z-index:1}

.one-f-footer-circles img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #fff;
}

.one-f-footer-popups div, .one-f-footer-popups a{
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 100%; */
    /* margin-bottom: 5px; 
    margin: 0 -20px;*/
    padding: 10px 20px;
    width: calc(100% + 40px);
}

.one-f-footer-popups a:hover{
    background: #E8F6FB;
}

.one-f-footer-popups{
    padding: 10px 0;
}

.one-f-footer-popups img{
    width:30px;
    height:30px;
    border-radius:50%;
    margin-right:5px;
    background: #fff;
}

.one-f-all-tags{
    display:inline-flex;
}

.one-f-price-old-price {
    position: relative;
    color: #8BB7C6!important;
    font-size: 12px;
    line-height: 20px;
}

.one-f-price-old-price:before {
    border-bottom: 2px solid #FF7131;
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    transform: rotate(-12deg);
}

.one-f.deleted{
    opacity:0.3;
}

.one-f.deleted:hover{
    opacity:1;
}

.one-f-new, .one-f-discount{
    position:absolute;
    top:0;
    color:#fff;
    border-radius: 3px;
    padding:0 5px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight:500;
}

.one-f-new{
    right:0;
    background: #15D69C;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}

.one-f-discount{
    left:0;
    background: #FF7131;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}

.one-f-descr {
    max-height: 250px;
    overflow: auto;
}

.one-f-descr h2 {
    margin-left: 0;
}

.unzipped-text, .presentation-text-content{
    overflow-x:auto;
}

.orders {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.orders-list {
    width: calc(100% - 250px);
}

.orders-right {
    width: 230px;
    margin: 20px 0 0 20px;
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.orders .btn{
    box-sizing: border-box;
}

.one-zakaz {
    width: 100%;
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
}

.one-zakaz-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
}

.one-zakaz-flex{
    display:flex;
    justify-content: space-between;
}

.one-zakaz-btns{
    margin-left:20px;
}

.one-zakaz-content{
    margin-bottom:10px;
}

.one-zakaz-footer, .one-zakaz-meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    line-height:12px;
    color: #729FAE;
    margin-top:10px;
}

.one-zakaz-footer-deadline{background: var(--z-deadline) left center no-repeat;}
.one-zakaz-footer-deadline.o{background: var(--z-deadline-o) left center no-repeat;}
.one-zakaz-footer-date{background: var(--z-date) left center no-repeat;}
.one-zakaz-footer-responses{background: var(--z-responses) left center no-repeat;}
.one-zakaz-footer-attaches{background: var(--z-attaches) left center no-repeat;}
.one-zakaz-subject{background: var(--z-subject) left center no-repeat;}
.one-zakaz-cat{background: var(--z-cat) left center no-repeat;}

.one-zakaz-footer div, .one-zakaz-meta div{
    padding-left:20px;
    margin-right:20px;
    margin-top: 5px;
}

.one-zakaz-description img{
    max-width:100%;
}

.comment-in-block{
    padding:0;
}

.comment-in-block .comment-content{
    padding: 5px 10px;
    background: #E8F6FB;
    border-radius: 5px;
    position: relative;
}

.comment-in-block .comment-content::before{
    content: '';
    display: block;
    border: 10px solid transparent;
    border-right: 10px solid #E8F6FB;
    position: absolute;
    top: 20px;
    left: -20px;
}

.one-response-footer{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top:10px;
}

.one-response-footer-date{
    padding-left: 20px;
    background: var(--z-date) left center no-repeat;
    font-size: 11px;
    line-height: 12px;
    color: #729FAE;
}

.recaptcha-h{
    margin: 20px auto;
    max-width: 304px;
    overflow: hidden;
}

.zakaz-topmenu-new{
    position:relative;
}

/*.zakaz-topmenu-new::before {
    content: 'новинка';
    position: absolute;
    color: #FF7131;
    font-size: 11px;
    top: 0;
    right: 20px;
}*/

/*default.css start*/
.fr-text-gray {
  color: #AAA !important;
}
.fr-text-red {
  color: #F44336 !important;
}
.fr-text-blue {
  color: #2196F3 !important;
}
.fr-text-green {
  color: #4CAF50 !important;
}
.fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}
.fr-text-spaced {
  letter-spacing: 1px;
}
.fr-text-uppercase {
  text-transform: uppercase;
}

img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
img.fr-dib.fr-fil {
  margin-left: 0;
}
img.fr-dib.fr-fir {
  margin-right: 0;
}
img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
img.fr-rounded {
  border-radius: 7px;
}
img.fr-bordered {
  border: 1px solid #ddd;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
img.fr-padded {
  padding: 5px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

img.fr-shadows {
  box-shadow: rgba(0, 0, 0, 0.29) 0px 1px 6px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.fr-video {
  text-align: center;
  position: relative;
}
.fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-video.fr-dvb {
  display: block;
  clear: both;
}
.fr-video.fr-dvb.fr-fvl {
  text-align: left;
}
.fr-video.fr-dvb.fr-fvr {
  text-align: right;
}
.fr-video.fr-dvi {
  display: inline-block;
}
.fr-video.fr-dvi.fr-fvl {
  float: left;
}
.fr-video.fr-dvi.fr-fvr {
  float: right;
}
a.fr-strong {
  font-weight: 500;
}

table.fr-solid-borders td,
table.fr-solid-borders th {
  border: 1px solid #dddddd !important;
}

table.fr-dashed-borders td,
table.fr-dashed-borders th {
  border: 1px dashed #dddddd !important;
}

table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}

table td.fr-red,
table th.fr-red {
  border: 1px double #F44336 !important;
}
table td.fr-blue,
table th.fr-blue {
  border: 1px double #2196F3 !important;
}
table td.fr-green,
table th.fr-green {
  border: 1px double #4CAF50 !important;
}
table td.fr-thick,
table th.fr-thick {
  border-width: 2px;
}

/*default.css finish*/

.pollanswer{
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.pollanswer input {
    margin: 0 5px;
}

#pollbox h2{
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: #094153;
    margin: 0 5px;
}

.pollprogress {
    margin-top: 5px;
    background: #E8F6FB;
    width: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
    min-height: 24px;
    display: flex;
}

.pollprogress-child{
    background: #C5EBF8;
    position: absolute;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

.pollprogress-flex{
    display: flex;
    justify-content: space-between;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.pollprogress-text{
    width:calc(100% - 120px);
}

.pollprogress-right {
    width:70px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.pollprogress-proc {
    width:40px;
    text-align: right;
    color:#567D89;
    font-size:12px;
}

.pollprogress-num {
    color:#567D89;
    font-size:12px;
    padding-left:23px;
    position:relative;
}

.pollprogress-num::before {
    position:absolute;
    content:"";
    left:10px;
    top:5px;
    background:#567D89;
    border-radius:50%;
    width:3px;
    height:3px;
}

.pollprogress-check {
    width:20px;
}

.mp-hs-one {
    display: block;
    margin-right: 20px;
    text-align: center;
    width: 132px;
    white-space: normal;
}

.mp-hs-one:last-child {
    margin-right: 0px;
}

.mp-hs-one span {
    display: block;
    margin-top: 10px;
}

.mp-hs-one img, .mp-hs-one i{
    transition: opacity 0.3s;
    opacity: 1;
    width: 125px;
    height: 125px;
    object-fit: cover;
}

.mp-hs-one img:hover, .mp-hs-one i:hover{
    opacity: 0.7;
}

.mp-hs-one-f{
    font-size: 12px;
    color: #95B8C5;
}

.ya-share2 li:before{
    display:none!important;
}


.si-table {
    width: 100%;
    border-radius: 5px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.si-table tr{
    transition: background 0.3s;
}
    
.si-table td{
    padding: 10px;
    background: #fff;
    border: 1px solid #fff;
    border-style: solid none;
    transition: background 0.3s;
}

.si-table th{
    padding: 10px;
    text-align: left;
    font-weight: 500;
    transition: background 0.3s;
}

.si-table td:first-child {
    border-left-style: solid;
    border-top-left-radius: 5px; 
    border-bottom-left-radius: 5px;
}
.si-table td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 5px; 
    border-top-right-radius: 5px; 
}

.td-g{
    background: #F4FFF9!important;
    border-color: #92EAE0!important;
}

.si-table tr:hover .td-g{
    background: #D5FFF2!important;
}

.td-r{
    background: #FFFCFC!important;
    border-color: #ECAFB3!important;
}

.si-table tr:hover .td-r{
    background: #FFEEEF!important;
}
/*
.si-table td input[type="checkbox"]+label{
    padding-top: 8px;
    vertical-align: top;
}

.si-table td a, .si-table td span{
    vertical-align: top;
    padding-top: 5px;
    display: inline-block;
}
*/
#subject-table tr td:first-child {
    text-align: left;
}
.file-manager-do {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-manager-filter-row input {
    height: 38px!important;
}

.file-manager-filter-row{
    margin-bottom: 20px;
}

.file-manager-filter-row.b{
    margin-bottom: 0;
}

.file-manager-filter-row.b .chosen-container{
    margin-bottom: 20px;
}

.file-manager-filter-row.a input{
    width:100%;
}

.file-manager-filter-row.c {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-manager-filter-col {
    width: 49%;
}

.file-manager-filter-from-to input {
    max-width: 130px!important;
    padding: 0 12px!important;
    min-width: 130px!important;
}

.si-table-fm-th{
    min-width: 100px;
    box-sizing: border-box;
    text-align: center!important;
}

.btn-la, .btn-ra{
    position: absolute;
    top: calc(50% - 15px);
    display: block;
    background: var(--hs-arrow) left -2px center no-repeat #fff;
    transition: opacity 0.3s, box-shadow 0.3s;
    opacity: 0.7;
    box-shadow: 0px 2px 10px #c0dde7;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.btn-la{
    left:10px;
}

.btn-ra{
    right:10px;
    transform: scale(-1, 1);
}

.btn-la:hover, .btn-ra:hover{
    opacity: 1;
    box-shadow: 0px 4px 20px #c0dde7;
}
.btn-la.d, .btn-ra.d{
    opacity:0;
}
.cat-t-m{
    background:#fff;
}
.cat-t-m a{
    display:flex;
    opacity: 1;
    transition: opacity 0.3s;
}
.cat-t-m-soc{
    display:flex;
    justify-content: space-between;
}
.cat-t-m-soc a{
    width:100%;
    height:32px;
    background: var(--vk) center no-repeat #341549;
    opacity: 1;
    transition: opacity 0.3s;
}
.cat-t-m-soc a:first-child{
    background: var(--tg-white) center no-repeat #341549;
}
.cat-t-m-soc a:last-child{
    background: var(--wa-white) center no-repeat #341549;
}

.cat-t-m a:hover{
    opacity: 0.8;
}

/*.one-f-footer-var-tags{
    margin-left:20px;
}*/

.one-f-footer-var-tags span{
    line-height: 14px;
    margin-right: 10px;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: 500;
}

.one-file-rating.o {
    height: 18px;
    width: 90px;
}

.one-file-rating.o .one-file-rating-stars{
    background-size:18px;
}

/*.one-f-footer-var {
    background: #15D69C;
    color: #fff;
}

.one-f-footer-tags {
    background: #C5EBF8;
    color: #1984A8;
}*/
.b-author{
    background:#fff;
    transition: opacity 0.3s;
    opacity:1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #000!important;
    text-align: center;
}

.b-author div, .b-author img{
    transition: opacity 0.3s;
}

.b-author:hover div, .b-author:hover img{
    opacity:0.8;
}

.b-author img{
    width:300px;
    height:390px;
}

.b-author-soc{
    display:flex;
    justify-content: space-between;
}
.b-author-soc a{
    width:100%;
    height:32px;
    transition: background 0.3s;
}
.b-author-soc-vk{
    background: var(--vk) center no-repeat #0D6F8F;
}
.b-author-soc-tg{
    background: var(--tg-white) center no-repeat #0D6F8F;
}
.b-author-soc-wa{
    background: var(--wa-white) center no-repeat #0D6F8F;
}
.b-author-soc-vk:hover{
    background: var(--vk-blue) center no-repeat #fff;
}
.b-author-soc-tg:hover{
    background: var(--tg-blue) center no-repeat #fff;
}
.b-author-soc-wa:hover{
    background: var(--wa-blue) center no-repeat #fff;
}

.ok-block {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid #15D69C;
    border-radius: 5px;
    font-size: 20px;
    background: RGBA(21,214,156,0.2);
}

/* Стили для вывода изображений в виде плитки - НАЧАЛО */
.cat-list-images{ /*Обертка картинок*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.cat-list-images .content-white-block{
    width: 19%; height: 160px;
    /*margin: 0 0 8px 8px;/**/
    display: block;
    padding: 0;
}

.cat-list-images .highslide{
    display: block;
    width: 100%; height: 100%;
    
}

.link-subj-img{
    width: 100%; height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    
}

.link-subj-img img{
    display: block;
    
    height: 100%;
    object-fit: cover;
}
/* Стили для вывода изображений в виде плитки - КОНЕЦ */
/* Курсы - Стартовый блок - начало*/
.crs_h_w{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crs_h_img_w {
    width: 50%;
    margin-right: 50px;
    text-align: center;
}

.crs_h_texts_w h2 {
    margin-left: 0;
}

.crs_h_btn{
    text-align: center;
}

.crs_h_texts_w {
    width: 50%;
}

.crs_h_img_w img {
    width: 426px;
}

/* Курсы - Стартовый блок - начало*/
/* Курсы - 3 блока - начало*/
.crs_3b_w h2{
    text-align:center;
    margin: 20px 0;
}

.crs_3b_container{
    display: flex;
    justify-content: space-between;
}

.crs_3b_block{
    text-align: center;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.crs_3b_img_w{
    overflow: hidden;
    width: 150px; height: 150px;
    border-radius: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.crs_3b_img_w img{
    display: block;
    height: 100%;
    object-fit: cover;
}

.crs_3b_block h3 {
    margin: 10px 0;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    display: block;
}

/* Курсы - 3 блока - конец*/
/* Курсы - Тарифы - начало*/
.crs_tarifs_w h2{
    text-align:center;
    margin: 20px 0;
}

.crs_tarifs_block h3 {
    text-align: center;
    margin: 10px 0;
}

.crs_tarifs_container{
    display: flex;
    justify-content: space-around;
}

.crs_tarifs_block{
    text-align: center;
    margin-right: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.crs_tarifs_block ul{
    text-align: left;
}

.crs_tarifs_price span{
    font-size: 12px;
    line-height: 20px;
    color: #094153;
}

.crs_tarifs_price_discount{
    color: #FF7131!important;
    font-weight: 500!important;
    font-size: 20px!important;
    line-height: 20px!important;
}


/* Курсы - Тарифы - конец*/

/* Ссылки на соавторство */
/*.coauthor-link {
    width: 100%;
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: opacity 0.3s, color 0.3s, border 0.3s, max-height 0.3s;
}

.coauthor-link-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/
/* Так было когда кнопки были в трех точках
.coauthor-link-meta .action-bar-parent {
    float: none;
    height: 24px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
    margin-left: 20px;
}
.coauthor-link:hover .action-bar-parent {
    opacity: 1;
}
/**/
/*
.coauthor_links_info_div {
    overflow: hidden;
    transition: all 1s;
}
.coauthor_link_cands_table{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.coauthor_link_cands_table{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.coauthor_link_cands_table .name{
    width: 200px;
    text-align: right;
}
.coauthor_link_cands_table .proc{
    width: 50px;
}
.coauthor_link_cands_table .action_btn{
    cursor: pointer;
    text-decoration: underline;
}
.coauthor_link_cands_table .status{
    width: 150px;
}

.coauthor-link-top{
    display: flex;
    justify-content: space-between;
}

.coauthor-link-own-data{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.coauthor-link-own-data1{
    display: flex;
    font-size: 12px;
}
.coauthor-link-own-data1 *{
    margin: 0 10px 0 0;
}
.coauthor-link-own-data2{
    font-size: 12px;
}
.coauthor-link-mycand-data{
    text-align: right;
    font-size: 12px;
    display: flex;
    flex-direction: column;
}
.coauthor-link-mycand-data .btn {
    line-height: 40px;
    min-width: 90px;
    text-align: center;
}*/

/*.files-sort-filter{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.files-sort-filter select{
    margin-right:20px;
    max-width:180px;
}

.files-sort-filter .chosen-container{
    max-width: 180px;
    margin-top: 20px;
}*/

.files-search{
    display: flex;
    justify-content: space-between;
}

.files-search-left{
    width: calc(100% - 360px);
}

.files-filter{
    width: 340px;
    margin-left: 20px;
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
}

.files-filter ul{
    margin-top:0;
}

.files-filter ul li{
    line-height: 36px;
}

.files-filter ul li:before{
    display:none;
}

.files-filter input {
    height: 38px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.files-filter-range{
    display:flex;
    justify-content: space-between;
}

.files-filter-range input:first-child{
    margin-right:20px;
}

.chosen-container-multi{
    min-height: 38px;
}


.hints-relative{
    position:relative;
}

.hints-result{
    position:absolute;
    top:38px;
    left:0;
    background:#fff;
    z-index: 15;
    display:none;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 4px;
    max-height: 240px;
    box-sizing: border-box;
    border: 1px solid #1984A8;
    border-top: 0;
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
    width:100%;
}

.hints-result.active, .hints-result:hover{
    display:block;
}

.hints-input.active{
    border: 1px solid #1984A8;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #fff!important;
}

.hints-result-select
{
    padding: 0 20px;
}

.hints-result-div a{
    display: flex;
    padding: 0 6px 0 20px;
    min-height: 35px;
    font-size: 13px;
    align-items: center;
}

.hints-result-div-img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    min-width: 30px;
}

.hints-result-div-img img{
    object-fit: cover;
    width: 30px;
    height: 30px;
}

.hints-result-div-text-chosen {
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height:15px;
}

.hints-result-div-text {
    line-height:15px;
}

.hints-result-div-text {
    width: 100%;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
    padding: 5px 0;
}

.hints-with-img .hints-result-div-text {
    width: calc(100% - 40px);
}

.hints-result-div a:hover{
    color:#fff;
    background:#0D6F8F;
}

.hints-one-result{
    border-radius: 4px;
    border: 1px solid #CEE4EC;
    position: absolute;
    z-index: 8;
    background: #fff;
    opacity: 1;
    display: none;
    height: 100%;
    width: 100%;
    padding: 0 18px 0 20px;
    line-height: 38px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    font-size: 13px;
    transition: border-radius 0.3s, border 0.3s;
}

.hints-one-result span{
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1984A8;
    width: 100%;
}

.hints-one-result:hover{
    border: 1px solid #1984A8;
}

.hints-one-result:hover span{
    color: #1984A8;
}

.hints-one-result i {
    opacity: 0.2;
    transition: opacity 0.3s;
    background: var(--hs-close);
    width: 15px;
    height: 15px;
    background-size: cover;
}

.hints-one-result:hover i{
    opacity: 1;
}

.hints-one-result.active{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.files-filter-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lh36{
    line-height: 36px!important;
}

/*Лендинг для авторов*/


.polzunok-container-1 *, .polzunok-container-2 *, .polzunok-container-3 * {
    box-sizing: border-box;
    outline: none;
}
.polzunok-container-1, .polzunok-container-2, .polzunok-container-3 {
    padding: 10px 50px;
}
.polzunok-container-1 .ui-slider, .polzunok-container-2 .ui-slider, .polzunok-container-3 .ui-slider {
    position: relative;
    background: #C5EBF8;
    height: 12px;
    border-radius:10px;
    /*box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), 1px 1px 5px rgba(255, 255, 255, 1);*/
}
.polzunok-container-1 .ui-slider .ui-slider-handle, .polzunok-container-2 .ui-slider .ui-slider-handle, .polzunok-container-3 .ui-slider .ui-slider-handle {
    position: absolute;
    margin-left: -45px;
    text-align: center;
    width: 90px;
    height: 36px;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    border-radius: 18px;
    border: 2px solid #C5EBF8;
    top: -12px;
    background: #FFF;
    z-index: 2;
    color: #094153;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);*/
    transition: border .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.polzunok-container-1 .ui-slider .ui-slider-handle b, .polzunok-container-2 .ui-slider .ui-slider-handle b, .polzunok-container-3 .ui-slider .ui-slider-handle b {
    padding: 0 3px;
    /*font-family: Courier, monospace;*/
    color: #C5EBF8;
    transition: color .3s;
    line-height: 20px;
    vertical-align: top;
    display: inline-flex;
}
.polzunok-container-1 .ui-slider .ui-slider-handle:hover, .polzunok-container-2 .ui-slider .ui-slider-handle:hover, .polzunok-container-3 .ui-slider .ui-slider-handle:hover {
    border: 2px solid #0D6F8F;
}
.polzunok-container-1 .ui-slider .ui-slider-handle:hover b, .polzunok-container-2 .ui-slider .ui-slider-handle:hover b, .polzunok-container-3 .ui-slider .ui-slider-handle:hover b {
    color: #0D6F8F;
}
.polzunok-container-1 .ui-slider .ui-slider-range, .polzunok-container-2 .ui-slider .ui-slider-range, .polzunok-container-3 .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 12px;
    display: block;
    border: 0;
    background: #0D6F8F;
    border-radius:10px;
    /*box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), 1px 1px 5px rgba(255, 255, 255, 1);*/
}
.polzunok-container-1 .ui-slider-horizontal .ui-slider-range-min, .polzunok-container-2 .ui-slider-horizontal .ui-slider-range-min, .polzunok-container-3 .ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.polzunok-container-1 .ui-slider-horizontal .ui-slider-range-max, .polzunok-container-2 .ui-slider-horizontal .ui-slider-range-max, .polzunok-container-3 .ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.a-calc-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-calc-flex-left, .a-calc-flex-right{
    width: calc(50% - 10px);
}

#a-calc-result, #a-calc-result-mb{
    color: #094153;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.a-calc-small-span{
    font-size: 12px;
    color: #95B8C5;
    max-width: 320px;
    display: inline-block;
}

.a-scheme-flex{
    display:flex;
    justify-content: space-between;
    position:relative;
   /* background: var(--a-scheme-bg) repeat-x top 70px;
    background-position: center;
    background-size: calc(100% - 100px) 1px;*/
}

.a-scheme-flex::before {
    z-index: 0;
    content: "";
    display: block;
    background: var(--a-scheme-bg) repeat-x center;
    width: calc(100% - 300px);
    height: 1px;
    position: absolute;
    top: 70px;
    left: 150px;
}

.a-scheme-one{
    width: 31%;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index:1;
}

.a-scheme-one-i{
    width: 101px;
    height: 101px;
    background: #1984A8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 20px auto;
}

.a-scheme-one-text {
    font-size: 14px;
    line-height: 22px;
    color: #094153;
}

.a-reg-field{
    display:flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 50px;
}

.a-reg-field input{
    margin-right:20px;
    height: 38px;
    width:100%;
}

.a-reg-field .btn{
    line-height: 38px;
    width:100%;
    box-sizing: border-box;
    text-align: center;
}

.a-small-div{
    padding: 0 50px;
    font-size: 12px;
    color: #95B8C5;
}

/*.a-small-div a{
    color: #95B8C5;
    text-decoration: underline;
}*/

.i-a-comission {
    background: var(--a-comission);
    min-width: 100px;
    height: 100px;
}

.i-a-scheme-1 {
    background: var(--a-scheme-1);
}

.i-a-scheme-2 {
    background: var(--a-scheme-2);
}

.i-a-scheme-3 {
    background: var(--a-scheme-3);
}
.i-a-scheme-1, .i-a-scheme-2, .i-a-scheme-3 {
    width: 50px;
    height: 50px;
}

.wcm_button{
    display:none;
}

.a-reviews-one {
    min-width: calc(33.33333% - 13.33333px);
    background: #FFF;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
    margin-right: 20px;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

.a-reviews-one:first-child {
    margin-left: 0;
}

.a-reviews-one:last-child {
    margin-right: 0;
}

.a-reviews-one-text {
    white-space: normal;
    width: 100%;
}

.a-reviews-one-footer {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #95B8C5;
    width: 100%;
}

.a-reviews-one-footer-left {
    display: flex;
    align-items: center;
    max-width: calc(100% - 75px);
}

.a-reviews-one-footer-half {
    display: flex;
    align-items: center;
    max-width: calc(50% - 10px);
}

.a-reviews-one-footer-flex{
    display: flex;
    align-items: center;
}

.a-reviews-one-footer-flex img{
    width:20px;
    height:20px;
    object-fit:cover;
    border-radius:50%;
}
.a-reviews-one-footer-flex i{
    width:20px;
    height:20px;
}
.a-reviews-one-text-h {
    height: 240px;
    overflow: hidden;
}

.a-reviews-one-text.t {
    position: relative;
}

.a-reviews-one-footer-half.u img{
    margin-right:10px;
}

.a-reviews-one-text-ab {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(to bottom, RGBA(255, 255, 255, 0), #fff 80%);
}

.a-reviews-one-name{
    max-width: 100%;
    display: block;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.a-reviews-one-footer-user-name{
    max-width: calc(100% - 50px);
}

.a-reviews-one-footer-left img {
    width: 40px;
    height:40px;
    border-radius: 50%;
    margin-right:20px;
    object-fit: cover;
}


.a-reviews-one-footer-right {
    width: 50px;
    white-space: normal;
    background: var(--rate-t) no-repeat;
    padding-left: 15px;
    line-height: 12px;
}

.a-reviews-block{
    position: relative;
}

.a-reviews-block-parent{
    width: 100%;
    position: relative;
    overflow:hidden;
}


.a-reviews-block-child{
    display: flex;
    transition: transform .5s;
}

.a-comission-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.a-comission-block-legend{
    margin-left:20px;
}

.a-comission-block-legend-1, .a-comission-block-legend-2, .a-comission-block-legend-3{
    padding-left:20px;
    position: relative;
}

.a-comission-block-legend-1::before, .a-comission-block-legend-2::before, .a-comission-block-legend-3::before{
    content: ' ';
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 6px;
}

.a-comission-block-legend-1::before{
    background: #E8F6FB;
}

.a-comission-block-legend-2::before{
    background: #1984A8;
}

.a-comission-block-legend-3::before{
    background: #15D69C;
}

.a-comission-block-legend-2, .a-comission-block-legend-3{
    margin-top:10px;
}

.a-comission-ul {
    display: flex;
}

.a-comission-ul-right{
    margin-left:20px;
}

.a-comission-ul li{
    padding-left:30px;
    position: relative;
    margin-top:10px;
}

.a-comission-ul li::before{
    content: ' ';
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0px;
    background: var(--a-li);
}

.a-register{
    display:flex;
    justify-content: center;
    align-items: center;
}

.a-register div{
    margin-left:20px;
}

.a-register-or{
    font-size: 12px;
    color: #95B8C5;
}

.a-register-write{
    display: flex;

}

.a-register-write a{
    margin-left:10px;
    width: 50px;
    height: 50px;
    opacity: 1;
    transition: opacity .3s;
}

.a-register-write a:hover{
    opacity: 0.7;
}

.a-register-write a:first-child{
    margin:0;
}

.a-register-btn{
    line-height:50px!important;
}

.a-register-vk{
    background: var(--a-register-vk);
}

.a-register-ig{
    background: var(--a-register-ig);
}

.a-register-tg{
    background: var(--a-register-tg);
}

.a-register-wa{
    background: var(--a-register-wa);
}

.a-register-em{
    background: var(--a-register-em);
}

.a-coauthor-main{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.a-coauthor-main img{
    object-fit:cover;
}

.a-coauthor-main-r{
    margin-left:50px;
}

.l-authors-link{
    padding: 0 15px;
    line-height: 44px;
    display: inline-block;
}

.l-authors-active{
    background: #B3E7F8;
    border-radius: 5px;
}

.l-author-stat h2, .l-author-faq h2{
    text-align: center;
}

.l-author-stat-blocks {
    display: flex;
    justify-content: space-between;
}

.l-author-stat-block {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    margin-right: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.l-author-stat-block:last-child{
    margin-right:0;
}

.l-author-stat-block-small{
    margin-top:5px;
    font-size: 14px;
    line-height: 24px;
    color: #094153;
    display:block;
}

.l-author-stat-block-medium{
    margin-top:5px;
    font-size: 18px;
    line-height: 24px;
    color: #094153;
    display:block;
}

.l-author-stat-block-big{
    font-weight: 500;
    font-size: 48px;
    line-height: 47px;
    color: #1984A8;
    display:block;
}

.faq-div {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    width: 49%;
    box-sizing: border-box;
}

.faq_answ {
    overflow: hidden;
    max-height:300px;
    transition: max-height 0.5s;
}

.mh0 {
    max-height: 0!important;
}

.l-author-faq-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

.faq-link-d {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-link-d span{
    width: calc(100% - 21px);
}

.faq-div i{
    transition: transform 0.5s;
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.faq-active i{
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.l-author-btn {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.l-author-faq-flex.b{
    align-items: stretch;
}

.ofs-settings{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.ofs-settings-search {
    height: 38px!important;
    width: 100%;
    padding-left: 60px!important;
    background: var(--main-search) 22px no-repeat #fff!important;
    margin-right:20px;
}

.ofs-settings input, .ofs-settings select {
    width: calc(50% - 10px);
}

.review-meta-h{
    font-size: 12px;
    line-height: 20px;
    color: #7DB6C9;
}

.review-meta-t{
    text-align:left;
}

.link-with-img{
    display: inline-flex;
    align-items: center;
}

.link-with-img img{
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    margin-right:10px;
}

.link-with-img.s img{
    width: 18px;
    height: 18px;
    margin-right:5px;
}

.fi-dps-name {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fi-dps-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
}



.checkbox-ios-flex{
    display:flex;
    align-items:center;
}

.checkbox-ios {
	display: inline-block;    
	height: 28px;    
	line-height: 28px;  
	margin-right: 10px;      
	position: relative;
	vertical-align: middle;
	font-size: 14px;
	user-select: none;	
}
.checkbox-ios .checkbox-ios-switch {
	position: relative;	
	display: inline-block;
	box-sizing: border-box;			
	width: 56px;	
	height: 28px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 25%/50%;	
	vertical-align: top;
	background: #C5EBF8;
	transition: .2s;
}
.checkbox-ios .checkbox-ios-switch:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;	
	display: inline-block;
	width: 24px;	
	height: 24px;
	border-radius: 50%;
	background: white;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	transition: .15s;
}
.checkbox-ios input[type=checkbox] {
	display: block;	
	width: 0;
	height: 0;	
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.checkbox-ios input[type=checkbox]:not(:disabled):active + .checkbox-ios-switch:before {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch {
	background: #53DA89;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:before {
	transform:translateX(28px);
}
 
/* Hover */
.checkbox-ios input[type="checkbox"]:not(:disabled) + .checkbox-ios-switch {
	cursor: pointer;
	border-color: rgba(0, 0, 0, .3);
}
 
/* Disabled */
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch {
	filter: grayscale(70%);
	border-color: rgba(0, 0, 0, .1);
}
.checkbox-ios input[type=checkbox]:disabled + .checkbox-ios-switch:before {
	background: #eee;
}
 
/* Focus */
.checkbox-ios.focused .checkbox-ios-switch:before {
	box-shadow: inset 0px 0px 4px #ff5623;
}

.sp-services {
    display: flex;
    align-items: stretch;
    /* overflow: hidden; */
    overflow-x: auto;
}

.sp-service {
    padding: 20px;
    border: 1px solid #D3E8EF;
    box-sizing: border-box;
    border-radius: 3px;
    max-width: 300px;
    min-width: 240px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    /* background: #fff; */
    background: #e7f6fb;
    margin: 0 10px;
    /* overflow-x: auto; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.sp-service:hover {
    background: #fff;
}

.sp-service-name {
    /* font-weight: 500; */
    font-size: 16px;
    line-height: 24px;
    color: #0D6F8F;
    /* white-space: nowrap; */
    overflow: hidden;
    max-height: 72px;
}

.sp-service:last-child {
    margin-right: 0;
}

.sp-cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sp-cat {
    display: flex;
    padding: 10px 20px;
    border: 1px solid #D3E8EF;
    box-sizing: border-box;
    border-radius: 3px;
    /* max-width: 300px; */
    /* min-width: 200px; */
    /* width: 100%; */
    margin-bottom: 20px;
    position: relative;
    /* background: #fff; */
    background: #e7f6fb;
    /* margin-right: 20px; */
    /* overflow-x: auto; */
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 10px);
}

.sp-cat-name {
    margin-right: 20px;
    font-size: 16px;
    /* line-height: 24px; */
    color: #0D6F8F;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    max-height: 72px;
}

.sp-cat:hover {
    background: #fff;
}

.sp-table td{
    transition:background 0.3s;
    
    
}
.sp-table td a, .sp-table td span{
    text-align:center;
    display:block;
    padding: 5px;
    cursor:pointer;
    min-width: 34px;
    box-sizing: border-box;
}

.sp-table td.g {
    background: #fbfffd;
}

.sp-table tr:hover td.g {
    background: #f4fff9;
}

.sp-table td.g:hover {
    background: #e6fff1!important;
}

.sp-table td.r {
    background: #fffbfb;
}

.sp-table tr:hover td.r {
    background: #fff6f6;
}

.sp-table td.r:hover {
    background: #ffe6e6!important;
}

.sp-table td.n {
    background: #fff;
}

.sp-table tr:hover td.n {
    background: #fcfcfc;
}

.sp-table td.n:hover {
    background: #f5f5f5!important;
}

.sp-table tr:hover td {
    background: #E8F6FB;
}

/*.sp-table thead {
    position: sticky;
    top: 80px;
    background: #B3E7F8;
    z-index: 1;
}*/

.sp-table td {
    padding: 0!important;
}

.sp-table th {
    text-align: center;
    vertical-align: middle;
}

.sp-table-rotate{
    text-align: left!important;
    writing-mode: vertical-rl;
}

.sp-table-rotate span {
    height: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin: auto!important;
    transform: rotate(180deg);
    text-align: left!important;
    writing-mode: vertical-rl;
}

.light-text{color: #6EA8BC;}

.small-text{
    font-size: 12px;
    line-height: 14px;
    color: #6EA8BC;
}

.small-text-important{
    font-size: 12px!important;
    line-height: 14px!important;
    color: #6EA8BC!important;
}

.small-text.i{
    display:inline-flex;
    align-items:center;
}

.small-text.i img, .small-text.i i{
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 5px;
    background: #fff;
}

.sp-scroll-parent {
    position: relative;
    margin: 0 -23px;
}
.sp-scroll-parent::-webkit-scrollbar, .sp-scroll-child::-webkit-scrollbar {
    display: none;
}
.sp-scroll-child {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
}
.sp-hs-one, .sp-type {
    width: 80px;
    min-width: 80px;
    height: 123px;
    margin: 5px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.sp-teacher-one-rel {
    margin: 5px;
    position: relative;
}
.sp-teacher-one {
    width:100px;
    min-width: 80px;
    height: 140px;
    overflow: hidden;
    text-align: center;
    display: block;
}
.sp-type-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #e7f6fb;
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
}
.sp-hs-one img, .sp-teacher-one img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    opacity:1;
    transition: opacity 0.3s;
}
.sp-hs-one i, .sp-teacher-one i {
    opacity:1;
    transition: opacity 0.3s;
}

.sp-hs-one.z, .sp-teacher-one.z{
    height:163px;
}

.sp-hs-one.z img, .sp-teacher-one.z img {
    width: 78px;
    height: 118px;
    border-radius: 6px;
    border: 1px solid #0D6F8F;
}
.sp-hs-one.r img, .sp-teacher-one.r img {
    width: 44px;
    height: 58px;
    border-radius: 4px;
    border: 1px solid #0D6F8F;
}
.sp-hs-one:hover img, .sp-hs-one:hover i, .sp-teacher-one:hover img, .sp-teacher-one:hover i{
    opacity:0.8;
}
.sp-scroll-buffer {
    min-width: 35px;
    max-width: 35px;
    min-height: 1px;
}
.sp-scroll-buffer.b, .sp-scroll-buffer.z, .sp-scroll-buffer.o {
    min-width: 0;
    max-width: 0;
}
.su-white-block .sp-scroll-buffer {
    min-width: 45px;
    max-width: 45px;
}
.sp-scroll-buffer-mini {
    min-width: 15px;
    max-width: 15px;
    min-height: 1px;
}
.sp-hs-one span, .sp-type span, .sp-teacher-one span {
    font-size: 12px;
    text-align: center;
    display: block;
}
.sp-type i {
    width: 60px;
    height: 60px;
}
.sp-one-sem {
    text-align: center;
    margin: 0 5px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.3s;
    background:#fff;
}
.sp-one-sem:hover {
    background:#e7f6fb;
}

.sp-one-sem-num {
    font-size: 36px;
}

.sp-one-sem-text {
    font-size: 12px;
}
.sp-hs-header h2 {
    margin: 0;
}
.sp-mini-h2 {
    font-size: 20px;
}
/*.sp-hs-header-ul {
    display: flex;
    flex-wrap: wrap;
}
.sp-hs-header-li {
    display: flex;
    margin-right: 20px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    align-items: center;
    transition: background 0.3s;
    background:#fff;
}
.sp-hs-header-li:hover {
    background: #e7f6fb;
}
.sp-hs-header-img{
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.sp-hs-header {
    display: flex;
}

.sp-mini-h2-hs {
    display: flex;
    align-items: center;
}

.sp-hs-header .hs-block-panel{
    flex-wrap: nowrap;
}

.hs-block-panel a.w160{
    width: 160px;
    min-width: 160px;
}

.hs-block-panel a.w140{
    width: 140px;
    min-width: 140px;
}

.hs-block-panel a.w120{
    width: 120px;
    min-width: 120px;
}

.sp-mini-h2-hs span{
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
}
/*.sp-hs-header-li-t {
    background: var(--teachers) center center/46px 46px no-repeat #fff!important;
    width: 64px;
    height: 64px;
    display: block;
}*/

.sp-hs-header-img img {
    width: 100px;
    height: 100px;
    object-fit:contain;
    max-width: none;
}
.sp-hs-header-img.t img{border-radius:50%}
.sp-subj .link-subj {
    padding: 5px 10px;
    border-radius: 6px;
    text-align: left;
}

.sp-table-group-tr span {
    text-align: left!important;
}

.sp-hs-soc{
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 5px 10px 5px 35px;
    border-radius: 6px;
    box-sizing: border-box;
    line-height: 30px;
}

.sp-hs-soc.tg{
    background: var(--tg-blue) left 10px center no-repeat #fff;
}

.sp-hs-soc.tg:hover{
    background: var(--tg-white) left 10px center no-repeat #1984A8;
    color: #fff;
}

.sp-hs-soc.vk{
    background: var(--vk-blue) left 10px center no-repeat #fff;
}

.sp-hs-soc.vk:hover{
    background: var(--vk) left 10px center no-repeat #1984A8;
    color: #fff;
}

.native-emoji{
    font-family: "Apple Color Emoji","Segoe UI Emoji";
}

.diss-promo {
    padding-right: 200px;
    background: var(--ft-dissertation) no-repeat right bottom #fff;
    background-size: 150px;
}

.diss-promo-form {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.diss-promo-form input {
    min-width: 200px;
    height: 50px;
    margin-right: 20px;
}

.diss-promo p {
    margin-top: 10px;
}



.polzunok-container * {
    box-sizing: border-box;
    outline: none;
}
.polzunok-container {
    padding: 10px 14px;
}
.polzunok-container .ui-slider {
    position: relative;
    background: #C5EBF8;
    height: 4px;
    border-radius: 2px;
    /*box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), 1px 1px 5px rgba(255, 255, 255, 1);*/
}
.polzunok-container .ui-slider .ui-slider-handle{
    position: absolute;
    margin-left: -12px;
    text-align: center;
    /* width: 90px; */
    /* height: 36px; */
    font-size: 18px;
    line-height: 24px;
    padding-top: 4px;
    /* cursor: pointer; */
    /* border-radius: 18px; */
    /* border: 2px solid #C5EBF8; */
    top: -10px;
    /* background: #FFF; */
    z-index: 2;
    color: #094153;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2); */
    /* transition: border .3s; */
    cursor: pointer;
    border-color: rgba(0, 0, 0, .3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    /* transition: .15s; */
}
.polzunok-container .ui-slider .ui-slider-handle b{
    padding: 0 3px;
    /*font-family: Courier, monospace;*/
    color: #C5EBF8;
    transition: color .3s;
    line-height: 20px;
    vertical-align: top;
}
.polzunok-container .ui-slider .ui-slider-handle:hover{
    /* border: 2px solid #0D6F8F; */
}
.polzunok-container .ui-slider .ui-slider-handle:hover b{
    color: #0D6F8F;
}
.polzunok-container .ui-slider .ui-slider-range{
    position: absolute;
    z-index: 1;
    height: 4px;
    display: block;
    border: 0;
    background: #0D6F8F;
    border-radius:10px;
    /*box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), 1px 1px 5px rgba(255, 255, 255, 1);*/
}
.polzunok-container .ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.polzunok-container .ui-slider-horizontal .ui-slider-range-max{
    right: 0;
}

.fileinfo-dop-interval-name{
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.fileinfo-dop-interval-name div{
    display: flex;
    align-items:center;
}

.fileinfo-dop-interval-name input{
    margin-right:10px;
    min-width: 50px;
}
/*.fileinfo-tinkoff{
    display:flex;
    justify-content: space-between;
}
.tinkoff-btn {
    background: url(../i/tinkoff-logo.svg) left no-repeat #FFCE1F!important;
    background-size: 60px!important;
    padding-left: 60px;
}
.tinkoff-btn:hover {
    background: url(../i/tinkoff-logo.svg) left no-repeat #FFE459!important;
    background-size: 60px!important;
}*/
.mp-h2.n{
    padding:0;
}

#vk_community_messages {
    z-index: 5!important;
}

.pm-one-file-upload{display:inline-block;margin-right:4px;width:60px;height:70px;border-radius:4px;border: 1px solid #FAFAFA;position:relative;background-color:#fff;}
.pm-one-file-img{background: var(--img) top 5px center no-repeat!important;width:100%;height:100%;border-radius: 4px;}
.pm-one-file-rar{background: var(--zip) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-doc{background: var(--doc) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-cad{background: var(--dwg) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-mp3{background: var(--video) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-mp4{background: var(--video) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-xls{background: var(--xls) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-txt{background: var(--txt) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-pdf{background: var(--pdf) top 5px center no-repeat!important;width:100%;height:100%;}
.pm-one-file-ppt{background: var(--ppt) top 5px center no-repeat!important;width:100%;height:100%;}

.pm-one-file-name{
	position: absolute;
	bottom: 1px;
	right: 2px;
	width:52px;
	white-space: nowrap; /* Запрещаем перенос строк */
	overflow: hidden; /* Обрезаем все, что не помещается в область */
	text-overflow: ellipsis; /* Добавляем многоточие */
	font-size:10px;    
	z-index: 9;
	background-color: #fff;
	border-radius: 3px;
	padding-left: 2px;
	padding-right: 2px;
	text-align:left;
}

.pm-anim-color{
	-webkit-filter: none!important;
	-moz-filter: none!important;
	-ms-filter: none!important;
	-o-filter: none!important;
	filter: none!important;
	filter: none!important; /* IE 6-9 */
}
.itog_img{
	position: absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background-size:cover!important;
	background-repeat:no-repeat!important;
	z-index:8;
	border-radius:4px;
}
.itog_office{
	position: absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:10;
	border-radius:4px;
}
.itog_img img{width:60px;
	height:70px;border-radius:4px;background: #fff;}
.op0{opacity:0;}

.fast-reg-pp{
    display:flex;
    margin-bottom:20px;
}

.fast-reg-pp a{
    color: #6ea8bc;
    text-decoration: underline;
}

.fast-reg-pp a:hover{
    color: #0d6f8f;
    text-decoration: underline;
}

.fast-reg-pp input{
    opacity: 1;
    position: static;
    margin-right: 7px;
    width: 13px;
    height: 13px;
}

.one-related-teacher {
    display: block;
    margin-right: 20px;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.one-related-teacher-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.one-related-teacher-img {
    position: relative;
    height: 150px;
}

.one-related-teacher-rate {
    background: var(--rate-t) left center no-repeat;
    position: absolute;
    padding-left: 15px;
    font-size: 12px;
    font-weight: 500;
    top: -10px;
    right: -10px;
    line-height: 14px;
    color: #6EA8BC;
}

.one-related-teacher-rate.e{
    background: var(--steacher-e) left center no-repeat;
    background-size: 14px 14px!important;
    padding-left: 18px;
}

.one-related-teacher-rate.r{
    background: var(--steacher-r) left center no-repeat;
    background-size: 14px 14px!important;
    padding-left: 18px;
}

.one-related-teacher-rate.v{
    background: var(--steacher-v) left center no-repeat;
    background-size: 14px 14px!important;
    padding-left: 18px;
}

.one-related-teacher-rate.c{
    background: var(--small-comm) left center no-repeat;
    padding-left: 18px;
}

.one-related-teacher-surname {
    font-weight: 500;
}

.one-related-teacher-img i {
    width: 150px;
    height: 150px;
}

.flex-h2-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-h2-select select {
    width: 220px!important;
}

.main-search-form.t{
    max-width:100%;
    padding:0;
}

.teachers-search-result{
    position:relative;
}

#teacher_search_result{
    position:absolute;
    top:0;
    left:0;
    background:#fff;
    width:100%;
    border-radius:5px;
    z-index: 3;
    padding: 10px;
    box-sizing: border-box;
}

.teachers-stat-block-one {
    display: block;
    margin-right: 20px;
    background: #fff;
    border-radius: 6px;
    padding: 190px 20px 20px 20px;
    box-sizing: border-box;
    text-align: center;
    min-width:190px;
    width:190px;
}

.teachers-stat-block-one b {
    display: block;
    font-size: 32px;
}

.teachers-stat-block-one.t{
    background: var(--teacher-blue) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.e{
    background: var(--steacher-eb) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.v{
    background: var(--steacher-vb) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.r{
    background: var(--steacher-rb) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.f{
    background: var(--rating-big) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.c{
    background: var(--reviews-big) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}

.teachers-stat-block-one.k{
    background: var(--kaf) top 20px center #fff no-repeat;
    background-size:150px 150px!important;
}
.nav-new {
    position: absolute;
    top: 2px;
    right: 15px;
    background: #15D69C;
    color: #fff;
    border-radius: 3px;
    padding: 0 5px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.related-questions a {
    background: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}

.related-questions a:hover {
    background: #1984A8;
    color: #fff;
}

.replyed-comm {
    padding: 5px 10px 5px 35px;
    overflow: hidden;
    /* margin-bottom: 10px; */
    margin: 3px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* border: 1px solid #AAD9E9; */
    background: var(--reply) 10px center no-repeat #E8F6FB;
    cursor: pointer;
    border-radius: 5px;
}

.replyed-comm span {
    color: #0D6F8F;
}

.replyed-comm-i {
    background: var(--reply);
    width: 10px;
    height: 10px;
    display: inline-block;
    background-size: 10px 10px;
    margin-right: 5px;
    cursor: pointer;
}

.user-link {
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}

.user-link img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}

.experts-table .user-link{
    margin-top:5px;
}

.experts-table td{
    vertical-align:middle;
}

.main-search-links {
    padding: 10px;
    box-sizing: border-box;
}

.main-search-links-h{
    font-weight: 500;
    width: 100%;
    line-height: 22px;
    padding: 5px 10px;
}

.main-search-links-a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    box-sizing: border-box;
}

.main-search-links-a:hover {
    background-color: #e8f6fb;
    border-radius: 5px;
}

.main-search-links-a-h{
    font-weight: 500;
    width: 100%;
    line-height: 22px;
}

.main-search-links-a-t{
    color: #567d89;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    width: 100%;
}

.main-search-links-a i {
    min-width: 40px;
    margin-right: 10px;
    width:40px!important;
    height:40px!important;
}

/*.questions-in-collection.n .one-question-in-collection-question ul, .questions-in-collection.n .one-question-in-collection-answer-h{
    display:none;
}*/

.one-question-in-collection-h {
    border: none;
    border-top: 1px solid #D3E8EF;
    padding: 0;
    height: 0;
    position: relative;
    margin: 10px 0;
}

.one-question-in-collection-h div {
    position: absolute;
    display: flex;
    width: 100%;
    top: -9px;
    left: 0;
    justify-content: center;
    align-items:center;
}

.one-question-in-collection-h a {
    background: #fff;
    font-size: 12px;
    padding: 0 7px;
}

/*.one-collection-in-question {
    display: block;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.one-collection-in-question:hover {
    background: #E8F6FB;
}

.one-collection-in-question .one-f-title {
    display: flex;
    text-align: left;
}*/

.search-input{
    padding-left: 60px!important;
    background: var(--main-search) 22px no-repeat #fff!important;
}

.questions-in-collection-filter{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questions-in-collection-filter input, .questions-in-collection-filter select{
    width: calc(50% - 10px);
}


.fileinfo-attaches{
    max-height: 300px;
    overflow: auto;
    width: calc(100% + 20px);
    margin: 0 -10px;
}

.fileinfo-attaches.t {
    max-height: none;
}

.fileinfo-attaches-one-parent{
    width:100%;
    background:#fff;
    transition: background 0.3s;
    border-radius:4px;
    padding: 5px 10px;
    box-sizing: border-box;
}

.fileinfo-attaches-one-parent:hover, .fileinfo-attaches-one-parent.t{
    background:#E8F6FB;
}

.fileinfo-attaches-one.doc{background: var(--doc);}
.fileinfo-attaches-one.txt{background: var(--txt);}
.fileinfo-attaches-one.pdf{background: var(--pdf);}
.fileinfo-attaches-one.djv{background: var(--djvu);}
.fileinfo-attaches-one.xls{background: var(--xls);}
.fileinfo-attaches-one.ppt{background: var(--ppt);}
.fileinfo-attaches-one.img{background: var(--img);}
.fileinfo-attaches-one.rar{background: var(--rar);}
.fileinfo-attaches-one.mp4{background: var(--video);}
.fileinfo-attaches-one.mp3{background: var(--video);}
.fileinfo-attaches-one.cad{background: var(--file);}
.fileinfo-attaches-one.file{background: var(--file);}
.fileinfo-attaches-one.folder{background: var(--folder);}

.fileinfo-attaches-one{
    padding-left:30px;
    background-repeat: no-repeat!important;
    background-size: 24px 24px!important;
    background-position: left center!important;
    width:100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*.fileinfo-attaches-one.b{
    background-size: 40px 40px!important;
    padding-left: 50px;
    height: 44px;
}*/

.fileinfo-attaches-one-right{
    display:flex;
    height:20px;
    align-items:center;
}

.fileinfo-attaches-one-right a{
    margin-left:10px;
    opacity: 0.4;
    transition: opacity 0.3s;
    display: flex;
    height: 20px;
    align-items: center;
}

.fileinfo-attaches-one-right a:hover{
    opacity:1;
}

.fileinfo-attaches-one-name{
    line-height:24px;
    display:flex;
    width:100%;
}

.fileinfo-attaches-one-name-a{
    max-width:calc(100% - 45px);
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
}

.fileinfo-attaches-one.folder .fileinfo-attaches-one-name-a{
    max-width:100%;
}

.fileinfo-attaches-one-name-b{
    width:45px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#img_to_rotate img{
    transition: width 0.3s, height 0.3s, transform 0.3s;
}

.att-next-last-links a {
    max-width: calc(50% - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fileinfo-show-btns{
    display:flex;
    justify-content: center;
    align-items:center;
}
.fileinfo-show-btns a{
    margin-right:5px;
    margin-top:20px;
}
.fileinfo-show-btns a:last-child{
    margin-right:0;
}

.files-main p{
    text-indent:0;
}

.sp-mini-h2, .files-main h2{
    margin-left: 0 !important;
}

.siblock-1{
    background: url(../i/mp-add.png) bottom right no-repeat #fff;
    padding: 40px 20px 35px 0;
    background-size: 617px 280px;
    margin-right:-20px;
}

.siblock-1-h{
    font-size: 30px;
    margin: 20px 0;
    color: #094153;
}

.siblock-1-text{
    font-size: 20px;
    color: #094153;
}

.siblock-1-btns{
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.siblock-1-btns a{
    margin-left:20px;
}

.siblock-1-btns a:first-child{
    margin-left:0;
}

.heads-in-news{
    max-height:400px;
    overflow-y: auto;
}

.heads-in-news a{
    display:block;
    margin-top:10px;
}

.heads-in-news-a-1{
    font-size: 20px;
}

.heads-in-news-a-2{
    font-size: 18px;
}

.heads-in-news-a-3{
    font-size: 16px;
    margin-left:10px;
}

.heads-in-news-a-4{
    font-size: 16px;
    margin-left:20px;
}

.heads-in-news-a-5{
    font-size: 15px;
    margin-left:30px;
}

.heads-in-news-a-6{
    font-size: 14px;
    margin-left:40px;
}

.fileinfo-taskmen-h-in-description-2{margin-left:10px;}
.fileinfo-taskmen-h-in-description-3{margin-left:20px;}
.fileinfo-taskmen-h-in-description-4{margin-left:30px;}
.fileinfo-taskmen-h-in-description-5{margin-left:40px;}
.fileinfo-taskmen-h-in-description-6{margin-left:50px;}

.diss-kd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.diss-kd a {
    width: calc(50% - 10px);
    text-align: center;
}

.text_spoiler{
    overflow:hidden;
    transition: max-height .7s;
}

.main_spoiler .text_spoiler{
    max-height: 0;
}

.main_spoiler.a .text_spoiler{
    max-height: 800px;
}

.title_spoiler {
    font-weight: 500;
}
.animated-placeholder::placeholder {
    transition: opacity 0.3s ease;
}
/*
.kampus-big{
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.kampus-big-right{
    margin-left:20px;
}

.kampus-big img{
    width:128px;
    height:128px;
}

.kampus-big-h1{
    font-size:18px;
    font-weight:500;
}

.kampus-skidka{
    position: absolute;
    background: #FF7131;
    border-radius: 50%;
    width: 160px;
    height: 70px;
    top: -0px;
    right: -20px;
    transform: rotate(16deg);
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.kampus-skidka b{
    font-size:20px;
}
.kampus-skidka div{
    font-size:14px;
}
*/
/*Видео виджет начало*/
.video-widget{position:fixed;left:0;z-index:9;bottom:0}.video-widget__container{z-index:9;overflow:hidden;border-style:solid;background:#eee;-webkit-transition:width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s;transition:width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s;-o-transition:width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s,-o-transform .2s ease-in-out 0s;-moz-transition:transform .2s ease-in-out 0s,width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s,-moz-transform .2s ease-in-out 0s;transition:transform .2s ease-in-out 0s,width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s;transition:transform .2s ease-in-out 0s,width .3s ease-in-out 0s,height .3s ease-in-out 0s,bottom .3s ease-in-out 0s,border-color .2s ease-in-out 0s,opacity 1s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s,-moz-transform .2s ease-in-out 0s,-o-transform .2s ease-in-out 0s;outline:0;cursor:pointer;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-box-shadow:rgba(25, 132, 168, 0.3) 0 10px 20px;box-shadow:rgba(25, 132, 168, 0.3) 0 10px 20px;position:absolute;left:20px;bottom:50px;border-radius:20px;border-width:5px;width:130px;height:180px;border-color:#fff}.video-widget__container:hover{-webkit-transform:scale(1.05) translate(5px,-5px);-moz-transform:scale(1.05) translate(5px,-5px);-ms-transform:scale(1.05) translate(5px,-5px);-o-transform:scale(1.05) translate(5px,-5px);transform:scale(1.05) translate(5px,-5px);border-color:#1984A8}.video-widget__video{-o-object-fit:cover;object-fit:cover;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100%;height:100%;min-width:100%;min-height:100%;z-index:200;-webkit-transition:opacity .4s ease-in-out 0s;-o-transition:opacity .4s ease-in-out 0s;-moz-transition:opacity .4s ease-in-out 0s;transition:opacity .4s ease-in-out 0s;opacity:.9}.video-widget__close{position:absolute;top:6px;right:6px;width:20px;height:20px;z-index:250;opacity:0;-webkit-transition:opacity .2s ease-in-out 0s,-webkit-transform .3s ease-in-out 0s;transition:opacity .2s ease-in-out 0s,-webkit-transform .3s ease-in-out 0s;-o-transition:opacity .2s ease-in-out 0s,-o-transform .3s ease-in-out 0s;-moz-transition:transform .3s ease-in-out 0s,opacity .2s ease-in-out 0s,-moz-transform .3s ease-in-out 0s;transition:transform .3s ease-in-out 0s,opacity .2s ease-in-out 0s;transition:transform .3s ease-in-out 0s,opacity .2s ease-in-out 0s,-webkit-transform .3s ease-in-out 0s,-moz-transform .3s ease-in-out 0s,-o-transform .3s ease-in-out 0s}.video-widget__close:after,.video-widget__close:before{position:absolute;left:9px;top:1px;content:" ";height:18px;width:2px;background:#fff;-webkit-box-shadow:rgba(25, 132, 168, 0.5) 1px 1px 10px;box-shadow:rgba(25, 132, 168, 0.5) 1px 1px 10px}.video-widget__close:before{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.video-widget__close:after{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.video-widget__container:hover .video-widget__close{opacity:.5}.video-widget.video-widget[data-state=opened] .video-widget__container{width:280px;height:500px;border-radius:20px;border-color:#fff}.video-widget.video-widget[data-state=opened] .video-widget__close{opacity:.5}.video-widget.video-widget[data-state=opened] .video-widget__close:before{display:none}.video-widget.video-widget[data-state=opened] .video-widget__close:after{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.video-widget.video-widget[data-state=opened] .video-widget__close:hover{opacity:1}.video-widget__button{position:absolute;bottom:20px;right:20px;left:20px;height:50px;border-radius:10px;z-index:300;-webkit-box-shadow:rgba(0,0,0,.25) 0 4px 15px;box-shadow:rgba(0,0,0,.25) 0 4px 15px;text-align:center;-webkit-transition:opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s;transition:opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s;-o-transition:opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s,-o-transform .2s ease-in-out 0s;-moz-transition:transform .2s ease-in-out 0s,opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s,-moz-transform .2s ease-in-out 0s;transition:transform .2s ease-in-out 0s,opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s;transition:transform .2s ease-in-out 0s,opacity .3s ease-in-out 0s,background-color .2s ease-in-out 0s,-webkit-transform .2s ease-in-out 0s,-moz-transform .2s ease-in-out 0s,-o-transform .2s ease-in-out 0s;visibility:hidden;background-color:#FFCE1F;font-size:14px;color: #094153;font-weight:500;text-align:center;vertical-align:middle;line-height:50px;text-transform:uppercase;opacity:0}.video-widget__button:hover{background-color:#FFE459;text-decoration:none}.video-widget.video-widget[data-state=opened] .video-widget__button{opacity:1;visibility:visible}@media only screen and (max-width:1023px){.video-widget__close{opacity:.5}}@media only screen and (max-width:479px){.video-widget__container{left:15px;bottom:15px;width:90px;height:125px}}.video-widget__button  {color: #094153 !important; text-decoration: none;}
/*Видео виджет конец*/

/*Классы иконок для тега <i>*/

.i-logo{
    background: var(--logo);
    width: 183px;
    height: 52px;
}
.i-more{
    background: var(--more);
    width: 24px;
    height: 24px;
}
.i-search{
    background: var(--search);
    width: 24px;
    height: 24px;
}
.i-pdf{
    background: var(--pdf);
    width: 40px;
    height: 40px;
}
.i-pdf-white{
    background: var(--pdf-white);
    width: 20px;
    height: 20px;
}
.i-doc{
    background: var(--doc);
    width: 40px;
    height: 40px;
}
.i-doc-white{
    background: var(--doc-white);
    width: 20px;
    height: 20px;
}
.i-txt{
    background: var(--txt);
    width: 40px;
    height: 40px;
}
.i-xls{
    background: var(--xls);
    width: 40px;
    height: 40px;
}
.i-ppt, .i-presentation{
    background: var(--ppt);
    width: 40px;
    height: 40px;
}
.i-zip{
    background: var(--zip);
    width: 40px;
    height: 40px;
}
.i-z-cart{
    background: var(--z-cart);
    width: 40px;
    height: 40px;
}
.i-img, .i-image{
    background: var(--img);
    width: 40px;
    height: 40px;
}
/*.i-video{
    background: var(--video);
    width: 40px;
    height: 40px;
}*/
.i-djvu{
    background: var(--djvu);
    width: 40px;
    height: 40px;
}
.i-hs-blue{
    background: var(--hs-blue);
    width: 40px;
    height: 40px;
}
.i-mp-hs{
    background: var(--hs-blue);
    width: 125px;
    height: 125px;
}
.i-top-hs{
    background: var(--hs-blue);
    width: 300px;
    height: 300px;
}
.i-search-lect-blue{
    background: var(--lect-blue);
    width: 40px;
    height: 40px;
}
.i-search-teacher-blue{
    background: var(--teacher-blue);
    width: 40px;
    height: 40px;
}
.i-search-news-blue{
    background: var(--news-blue);
    width: 40px;
    height: 40px;
}
.i-user{
    background: var(--user);
    width: 24px;
    height: 24px;
}
.i-topmenu-close{
    background: var(--close);
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.i-visa{
    background: var(--visa);
    width: 58px;
    height: 18px;
}
.i-mastercard{
    background: var(--mastercard);
    width: 28px;
    height: 18px;
}
.i-mircard{
    background: var(--mircard);
    width: 63px;
    height: 18px;
}
.i-webmoney{
    background: var(--dp-wm);
    width: 18px;
    height: 18px;
}
/*.i-applepay{
    background: var(--applepay);
    width: 18px;
    height: 18px;
}
.i-googlepay{
    background: var(--googlepay);
    width: 18px;
    height: 18px;
}*/
.i-p-user{
    background: var(--p-user);
    width: 20px;
    height: 20px;
}
.i-p-vip{
    background: var(--p-vip);
    width: 20px;
    height: 20px;
}
.i-p-admin{
    background: var(--p-admin);
    width: 20px;
    height: 20px;
}
.i-spoiler-arrow{
    background: var(--spoiler-arrow);
    width: 11px;
    height: 11px;
}
.i-not-checked{
    background: var(--not-checked);
    width: 24px;
    height: 24px;
}
.i-refreshed{
    background: var(--refreshed);
    width: 24px;
    height: 24px;
}
.i-rate-t{
    background: var(--rate-t);
    width: 12px!important;
    height: 12px!important;
}
.i-people{
    background: var(--people);
    width: 12px!important;
    height: 12px!important;
    margin-right: 0px!important;
}
.i-info{
    background: var(--info);
    width: 12px!important;
    height: 12px!important;
    cursor: pointer;
}
.i-lsd{
    background: var(--lsd);
    width: 80px;
    height: 80px;
}
.i-lsg{
    background: var(--lsg);
    width: 80px;
    height: 80px;
}
.i-f-ok{
    background: var(--a-li);
    width: 12px;
    height: 12px;
}
.i-f-error{
    background: var(--not-checked);
    width: 12px;
    height: 12px;
}
.i-f-vip{
    background: var(--z-deadline-o);
    width: 12px;
    height: 12px;
}
.i-filter{
    background: var(--filter);
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.i-main-nowait{
    background: var(--main-nowait);
    width: 40px;
    height: 40px;
}
.i-main-free{
    background: var(--main-free);
    width: 40px;
    height: 40px;
}
.i-main-guarantee{
    background: var(--main-safe);
    width: 40px;
    height: 40px;
}
.i-main-use{
    background: var(--main-use);
    width: 100px;
    height: 100px;
}
.i-main-pay{
    background: var(--main-pay);
    width: 100px;
    height: 100px;
}
.i-ft{
    width: 40px;
    height: 40px;
}
.i-ft.coursework{background: var(--ft-coursework);}
.i-ft.answers{background: var(--ft-answers);}
.i-ft.homework{background: var(--ft-homework);}
.i-ft.task{background: var(--ft-task);}
.i-ft.lab{background: var(--ft-lab);}
.i-ft.abstract{background: var(--ft-abstract);}
.i-ft.report{background: var(--ft-report);}
.i-ft.qualifying-work{background: var(--ft-qualifying-work);}
.i-ft.dissertation{background: var(--ft-dissertation);}
.i-ft.research{background: var(--ft-research);}
.i-ft.practice{background: var(--ft-practice);}
/*.i-ft.cheat-sheet{background: var(--ft-cheat-sheet);}*/
.i-ft.questions{background: var(--ft-questions);}
.i-ft.lectures{background: var(--ft-lectures);}
.i-ft.seminars{background: var(--ft-seminars);}
.i-ft.workbook{background: var(--ft-workbook);}
.i-ft.presentation{background: var(--ft-presentation);}
.i-ft.translation{background: var(--ft-translation);}
.i-ft.summary{background: var(--ft-summary);}
.i-ft.essay{background: var(--ft-essay);}
.i-ft.article{background: var(--ft-article);}
.i-ft.book{background: var(--ft-book);}
.i-ft.standard{background: var(--ft-standard);}
.i-ft.other{background: var(--ft-other);}
.i-ft.video{background: var(--ft-video);}
.i-ft.service{background: var(--ft-service);}
.i-ft.qa{background: var(--q-question);}

.i-file-author{
    background: var(--user) center no-repeat!important;
    width: 24px;
    height: 24px;
    background-size: 20px 20px!important;
}

.i-ok-vote{
    background: var(--ok-vote);
    width: 16px;
    height: 12px;
}

.i-vk-auth {
    /*background: var(--vk) center center no-repeat;
    background-size: contain;
    width: 17px;
    height: 38px;
    vertical-align: middle;*/
    display: block;
    width: 48px;
    height: 38px;
    margin: 0 -22px 0 -22px;
    border-radius: 5px;
    background: var(--vk-auth) center center no-repeat #0077FF!important;
    background-size: contain;
    transition: background .3s;
}

.i-vk-auth:hover {
    background: var(--vk-auth) center center no-repeat #2189FF!important;
}

.i-a-stat-1, .i-a-stat-2, .i-a-stat-3{
    width: 100px;
    height: 100px;
}

.i-a-stat-1{
    background: var(--a-stat-1);
}
.i-a-stat-2{
    background: var(--a-stat-2);
}
.i-a-stat-3{
    background: var(--a-stat-3);
}
.i-fileinfo-teacher-blue{
    background: var(--teacher-blue);
    width: 80px;
    height: 80px;
}
.i-r-up, .i-r-down{
    background: var(--like);
    width: 14px;
    height: 14px;
    opacity:0.5;
    transition: all 0.3s;
    cursor: pointer;
}
.i-r-down{
    transform: scale(1, -1);
}
.i-r-up:hover, .i-r-down:hover, .i-r-up.active, .i-r-down.active{
    opacity:1;
}
/*.i-attach-view{
    background: var(--attach-view);
    width: 20px;
    height: 20px;
}*/
.i-attach-download{
    background: var(--attach-download);
    width: 20px;
    height: 20px;
}
.i-attach-link{
    background: var(--attach-link);
    width: 20px;
    height: 20px;
}
.svg {
    background-size: cover!important;
    display:inline-block;
    background-repeat: no-repeat;
}



@media     only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi)  {
   .main-search {
        background: linear-gradient(180deg, rgba(232, 246, 251, 0.02) 0%, #E8F6FB 65%), url(../i/mainbg@2x.png) top center #E8F6FB;
        background-size: 1467px 652px;
        max-height: 652px;
    }
    .main-add{
        background: url(../i/mp-add@2x.png) bottom right no-repeat #E8F6FB;
        background-size: 925px 420px;
    }
    .siblock-1{
        background: url(../i/mp-add@2x.png) bottom right no-repeat #fff;
        background-size: 617px 280px;
    }
}


@media (min-width:1001px){
    .files-filter-sort .i-filter{
        display:none;
    }
    #files_filter_main_div{
        max-height:none!important;
    }

    .fileinfo-meta-flex-right-fixed.active {
        top: 84px;
        padding-top: 20px;
        position: fixed;
        width: 340px;
        overflow-y: auto;
        max-height: calc(100% - 104px);
    }

    .fileinfo-meta-flex-right-fixed.bottom {
        position: absolute;
        bottom:0;
        left:0;
        width: 100%;
    }

    .fileinfo-share-mob{
        display:none;
    }
}

@media (min-width:801px){
    /*#nav{display:none;}*/

    .login{display:none;}

    /*#user{display:none;}*/

    .disnone801{display:none;}
    .fileinfo-buyfile-fixed{display:none;}
    .main-search-flex{
        margin-top:20px;
    }

    .one-f-footer-scroll::-webkit-scrollbar {
        display: none;
    }
}



/*-----------------------------*/
@media (max-width:1240px){
    .login.open{
        right: 0;
        left:auto;
        transform: none;
    }
    .search-popup{
        right: 0;
        transform: none;
        left: auto;
    }
    .main-cats-one {
        width: calc(33.3333% - 13.3333px);
    }
}

@media (max-width:1100px){
    .one-file {
        width: calc(50% - 10px);
    }
}

@media (max-width:1000px){
    .disnone1000{display:none;}
    .fileinfo {
        flex-direction: column-reverse;
    }
    .fileinfo-meta {
        width: 100%;
        margin-left: 0;
        margin-bottom:20px;
    }
    .fileinfo-left{
        width:100%;
    }
    .cat-list-images .content-white-block{/* Стили для вывода изображений в виде плитки */
        width: 24%;
    }

    .files-filter {
        width: 100%;
        margin: 0 0 20px 0;
    }

    #files_filter_main_div{
        max-height:0;
        transition: max-height 0.5s;
        overflow:hidden;
    }

    #files_filter_main_div.active{
        max-height:1200px;
        overflow:visible;
    }

    .fileinfo-share-pc{
        display:none;
    }
    .files-search {
        flex-direction: column-reverse;
    }

    .files-search-left {
        width: 100%;
    }

    .a-reviews-one {
        min-width: calc(50% - 30px);
    }

    .main-cats-one {
        width: calc(50% - 10px);
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width:1000px),
only screen and (min--moz-device-pixel-ratio: 1.5) and (max-width:1000px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width:1000px),
only screen and (min-resolution: 1.5dppx) and (max-width:1000px),
only screen and (min-resolution: 144dpi) and (max-width:1000px) {
    .main-add{
        background: url(../i/mp-add@2x.png) bottom right -480px no-repeat #E8F6FB;
        background-size: 925px 420px;
    }
}
@media (max-width:890px){
    nav a{padding:0 10px;}

    .cat-list-images .content-white-block{/* Стили для вывода изображений в виде плитки */
        width: 32.5%;
    }
    .similar-file-fileinfo a{
        width: calc(50% - 10px);
    }


}
@media (max-width:800px){
    h1, h2{font-size: 18px;line-height: 22px;}
    h3, h4{font-size: 17px;line-height: 20px;}
    h5, h6{font-size: 16px;line-height: 18px;}
        input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="date"] {
        height: 38px;
        padding: 0 14px;
    }
    .disnone800{display:none;}
    .i-logo{
        width: 150px;
        height: 42px;
    }
    .head{height: 64px;}
    nav ul ul {position:static;}
    .antiheader{margin-top:63px;}
    .main-search h1 {
        font-size: 18px;
        line-height: 27px;
        margin: 20px 0;
    }
    .main-search-small-text{
        font-size: 12px;
        line-height: 20px;
    }

    .main-search-form input{
        height: 40px;
        padding-left: 44px;
        background: var(--main-search) 15px no-repeat #fff;
    }

    .main-search-form button {
        font-size: 12px;
        line-height: 38px;
    }
    ::-webkit-input-placeholder {font-size:10px;}
    ::-moz-placeholder          {font-size:10px;}
    :-moz-placeholder           {font-size:10px;}
    :-ms-input-placeholder      {font-size:10px;}
    #auto_search_result2{
        width: calc(100% - 40px);
        top:40px;
    }
    .main-stat-parent{
        width: 100%;
        position: relative;
        overflow-x: auto;
    }
    .main-one-stat-text{
        width: 150px;
    }
    .main-buttons div{
        font-size: 10px;
        margin: 0 30px;
        line-height: 14px;
    }
    .main-buttons div:first-child{
        margin-right:0;
    }
    .btn, .btn.main {
        line-height: 36px;
    }
    .btn.z {
        line-height: 34px;
        vertical-align: top;
    }
    .btn.main {
        margin-top: 10px;
    }
    .mp-news{
        display:block;
    }
    .mp-news-top{
        margin:0;
        width:100%;
    }
    .mp-news-other-parent{
        margin:0;
        width:100%;
        position:relative;
        overflow-x: auto;
    }
    .mp-news-other-child{
        display: flex;
        white-space: nowrap;
    }
    .mp-news-other-one {
        width: 165px;
        display: block;
    }
    .mp-news-other-one:last-child {
        margin-right:0px;
    }
    .mp-news-other-one img{
        margin-right:0px;
    }
    .mp-news-other-one {
        margin-bottom: 0px;
        margin-right:30px;
        white-space: normal;
    }
    .mp-news-other-one-descr{
        display:none;
    }
    .mp-news-top-one{
        display: block;
        margin-bottom: 20px;
    }
    .mp-news-other-one-title{
        line-height: 20px;
    }
    .mp-h2{
        font-size:18px;
        line-height: 24px;
    }
    .mp-news-top-one-title{
        font-size:16px;
        line-height: 20px;
    }
    .mp-news-top-one img{
        height:180px;
    }
    .similar-file{
        width:48%;
    }
    .main-add-text{
        font-size: 14px;
    }
    .main-add{
        background: url(../i/mp-add.png) bottom right -480px no-repeat #E8F6FB;
    }
    .footer-left{
        max-width: 100%;
    }
    .footer{
        display:block;
    }
    .footer-menu{
        margin-bottom:20px;
    }
    aside{
        width: 0!important;
        overflow:hidden;
    }
    .search-popup.open {
        top: 64px;
        z-index: 15;
    }
    .login{
        right:-500px;
        position: fixed;
    }
    .login.open{
        right: 0;
        top:64px;
    }
    main{max-width:100%;}

    .si-table{
        font-size:12px;
    }

    #dle-promt-text{
        height:36px;
    }

    .fullstory-content h2, .fullstory-content h3, .fullstory-content h4, .fullstory-content h5, .fullstory-content h6 {
        margin: 10px 0;
    }

    .fullstory-content h2{
        font-size: 18px;
        line-height: 24px;
    }
    .fullstory-content h3{
        font-size: 17px;
        line-height: 22px;
    }
    .fullstory-content h4, .fullstory-content h5, .fullstory-content h6{
        font-size: 16px;
    }

    .link-subj-a span{
        font-size:12px;
        line-height: 14px;
    }

    .link-subj-files{
        font-size: 10px;
    }

    .link-teacher-a span{
        font-size:12px;
        line-height: 14px;
        max-width: calc(100% - 36px);
    }

    .link-subj i{
        width:14px;
        height:14px;
    }

    .teacher {
        flex-direction: column-reverse;
    }

    .teacher-right {
        width: 100%;
        margin:0;
    }

    /*.teacher-foto, .teacher-foto img{
        width: 100%;
    }*/

    .teacher-left{
        width: 100%;
        margin-top: 20px;
    }

    .hs {
        flex-direction: column-reverse;
    }

    .hs-right {
        width: 100%;
        margin:0;
    }

    .hs-foto, .hs-foto img{
        width: 100%;
    }

    .hs-left{
        width: 100%;
        margin-top: 20px;
    }

    .comment-text{
        padding: 20px 10px;
    }

    .comment-text{
        font-size:14px;
    }

    .comment-ava {
        width: 25px;
        height: 25px!important;
    }

    .comment-left{
        margin-right:10px;
    }

    .small-text.s {
        font-size: 8px;
    }

    .comment-content {
        width: calc(100% - 35px);
    }

    .diss-search-select {
        flex-direction: column;
    }

    .diss-search-btn{
        width: 100%;
        box-sizing: border-box;
        margin: 20px 0;
    }

    .l-author-main{
        height:300px;
    }

    textarea{
        padding: 5px 10px;
    }

    .one-f-main {
        align-items: stretch;
        flex-direction: column;
    }

    /*.one-f-price-number, .one-f-price-discount, .one-f-price-free, .one-f-price-text{
        text-align: right;
        min-width: 60px;
    }*/

    .one-f-prices{
        text-align: right;
    }

    .ac800{
        text-align: center;
    }

    .one-f-title {
        padding-left: 40px;
        max-width: 100%;
        background-size: 28px!important;
        font-size: 15px;
        line-height: 18px;
        max-height: 54px;
    }

    .orders {
        flex-direction: column-reverse;
    }

    .orders-left {
        width: 100%;
        margin-top: 20px;
    }

    .orders-right {
        width: 100%;
        margin: 0;
    }

    .orders-list {
        width: 100%;
    }

    .one-zakaz-flex {
        display: block;
    }

    .one-zakaz-btns {
        margin-left: 0;
        text-align: right;
    }

    .comment-in-block .comment-content::before {
        top: 8px;
    }

    .one-response-footer {
        flex-direction: column-reverse;
    }

    .one-response-footer-date {
        margin-bottom: 10px;
    }

    .crs_h_w {
        flex-direction: column;
    }

    .crs_h_img_w {
        width: 100%;
        margin-right: 0;
    }

    .crs_h_img_w img{
        max-width: 100%;
    }

    .crs_h_texts_w {
        width: 100%;
    }

    .crs_3b_container {
        overflow: hidden;
        overflow-x: auto;    
        margin: 0 -20px;
        padding: 0 20px;
    }

    .crs_tarifs_container {
        flex-direction: column;
    }

    .crs_tarifs_block {
        margin: 0 0 20px 0;
    }
/*
    .coauthor-link-top {
        display: block;
    }
    .coauthor-link-own-data1 {
        display: flex;
        font-size: inherit;
        justify-content: space-between;
    }
    .coauthor-link-mycand-data {
        text-align: left;
        font-size: inherit;
        padding: 20px 0 20px 0;
    }
    .coauthor-link-mycand-data .btn {
        display: block;
        text-align: center;
        margin: 10px auto 0 auto;
        max-width: 400px;
    }
*/
    .main-search-flex{
        flex-direction: column;
    }

    .main-search-left, .main-search-right{
        width:100%;

    }
    .main-search-right-rel{
        height:90px;
        margin-top:20px;
    }
    #h_for_top_block {
        font-size: 20px;
        line-height: 27px;
    }
    .main-search-left {
        margin:0;
        max-width:100%;
    }
    .main-search-right{
        max-width:100%;
    }

    .a-calc-flex{
        flex-direction: column;
    }
    .a-calc-flex-left, .a-calc-flex-right{
        width: 100%;
    }
    .a-calc-flex-right{
        margin-top:30px;
    }
    .polzunok-container-1, .polzunok-container-2 {
        padding: 10px 20px;
    }
    .a-scheme-flex::before {
        display:none;
    }
    .a-scheme-flex {
        flex-direction: column;
    }
    .a-scheme-one{
        width: 100%;
        margin-bottom: 20px;
    }

    .a-small-div{
        padding: 0;
    }
    .a-reg-field{
        padding: 0;
        flex-direction: column;
    }
    .a-reg-field input{
        margin:0 0 10px;
        max-width:320px;
    }

    .a-reg-field .btn{
        max-width:320px;
    }
    .a-comission-ul {
        flex-direction: column;
    }
    .a-comission-ul-right{
        margin:20px 0 0;
    }
    .a-register {
        flex-direction: column;
    }
    .a-register div{
        margin:10px 0 0;
    }
    .l-author-first-text, .l-author-stat-blocks, .l-author-faq-flex {
        flex-direction: column;
    }

    .faq-div{
        width:100%;
    }

    .l-authors-links{
        display:block;
    }

    .faq_answ {
        max-height: 500px;
    }

    .main-cats-flex{
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .main-cats-one {
        width: 300px;
        min-width: 300px;
        margin-left: 20px;
    }
    .main-cats-one:last-child{
        margin-right: 20px;
    }

    .wmob{
        padding:0;
    }

    .wmob .small-title{
        margin-left:3px!important;
    }

    .mp-hs-one:first-child{
        margin-left:20px;
    }

    .mp-hs-one:last-child{
        margin-right:20px;
    }

    .fileinfo-footer-authors {
        flex-direction: column;
        align-items: baseline;
    }

    .fileinfo-footer-author-comma{
        display:none;
    }

    .fileinfo-footer-author-one{
        margin-top:10px;
    }

    .fileinfo-footer-author-one:first-child{
        margin-top:0;
    }

    .fileinfo-specifications-row {
        width: 100%;
    }
    .sp-hs-header {
        margin-left: 0;
    }
    .sp-hs-header-li{
        padding:0;
    }
    .sp-hs-header-li:first-child{
        margin-bottom:10px;
    }
    .sp-scroll-buffer, .sp-scroll-buffer-mini {
        min-width: 5px;
    }
    .su-blue-block .sp-scroll-buffer-mini, .su-white-block .sp-scroll-buffer-mini {
        min-width: 0;
    }
    .sp-scroll-buffer.m {
        min-width: 55px;
        max-width: 55px;
    }
    .su-white-block .sp-scroll-buffer {
        min-width: 15px;
        max-width: 15px;
    }
    .diss-promo {
        padding-right: 0;
        background: var(--ft-dissertation) no-repeat right -15px bottom #fff;
        background-size: 120px;
    }

    .diss-promo-form{
        box-sizing:border-box;
        flex-direction: column;
        padding-right: 120px;
    }

    .diss-promo-form input{
        margin-right:0;
        margin-bottom:20px;
        width:100%;
    }
    .diss-promo-form a{
        width:100%;
        box-sizing: border-box;
        text-align: center;
    }
    .sp-hs-soc{
        font-size: 12px;
        line-height: 14px;
    }
    .tinkoff-btn {
        background-size: 40px!important;
        padding-left: 40px;
    }
    .tinkoff-btn:hover {
        background-size: 40px!important;
    }
    .sp-scroll-buffer.b {
        min-width: 3px;
        max-width: 3px;
    }
    .sp-scroll-buffer.z {
        min-width: 15px;
        max-width: 15px;
    }
    .sp-scroll-buffer.o {
        min-width: 3px;
        max-width: 3px;
    }

    .flex-h2-select {
        flex-direction: column;
    }
    
    .flex-h2-select select {
        width: calc(100% - 40px)!important;
        margin-top:10px;
    }
    .one-f-vip::before {
        left: 20px;
    }
    .fileinfo-show-btns{
        flex-direction: column;
    }
    .fileinfo-show-btns a{
        margin-right:0;
    }

    .siblock-1{
        background: url(../i/mp-add.png) bottom right no-repeat #fff;
        padding: 0 20px 0 0;
        background-size: 308px 140px;
    }
    .siblock-1-btns {
        flex-direction: column;
        align-items: baseline;
    }
    
    .siblock-1-btns a {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .fullstory-content img{
        /*max-width: 100%;*/
        max-width: 100%!important;
    }
}

@media (max-width:600px){
    .one-file {
        width: 100%;
    }
    .user-info {
        display: block;
    }
    .sem-list a {
        width: calc(33.3333% - 6.6px);
    }
    
    .files-sort-filter{
        flex-wrap:wrap;
    }
    
    .files-sort-filter select {
        margin-right: 0;
        max-width: 100%;
    }

    .files-sort-filter .chosen-container{
        max-width: 100%;
    }

    .cat-list-images .content-white-block{/* Стили для вывода изображений в виде плитки */
        width: 49%;
    }

    .fileinfo-p {
        font-size: 12px;
    }
    .a-reviews-one {
        min-width: calc(100% - 40px);
    }


    /*.ofs-settings{
        flex-direction: column;
    }

    .ofs-settings-search {
        margin:0 0 20px 0;
    }*/

    .a-coauthor-main {
        flex-direction: column;
    }

    .a-coauthor-main-r {
        margin:10px 0 0 0;
    }
    .sp-cat {
        width: 100%;
    }

    .questions-in-collection-filter{
        flex-direction: column;
    }

    .questions-in-collection-filter input, .questions-in-collection-filter select{
        width: 100%;
        margin-bottom:20px;
    }
    .fileinfo-attaches-one-right a{
        opacity: 1!important;
    }
    .modal-mask {
        padding: 0!important;
    }

    /*.kampus-big{
        flex-direction: column;
    }

    .kampus-big-right{
        margin-left:0;
    }

    .kampus-big-h1{
        font-size:16px;
        margin-top:20px;
    }

    .kampus-big-h2{
        font-size:14px;
    }*/

    .user-info-popup {
        flex-direction: column;
    }

    .user-info-content {
        width:100%
    }

    .user-info-content-name {
        justify-content: center;
    }

    .user-info-content-online {
        justify-content: center;
    }
}

@media (max-width:480px){
    .i-logo{
        width: 56px;
    }
    .i-logo.b{
        width: 150px;
    }
    .similar-file{
        width:100%;
    }
    .similar-file-fileinfo a{
        width: 100%;
    }
    .fullstory-footer{
        flex-wrap: wrap;
    }
    .fullstory-author{
        margin-top:20px;
    }
    .sem-list a {
        width: calc(50% - 5px);
    }
    .main-search-idea {
        background: var(--idea) left center no-repeat #fff;
        padding: 20px 20px 20px 60px;
    }
    .block-user-rate {
        width: 100%;
    }
}

@media (max-width:320px){
    .sem-list a {
        width: 100%;
    }
}

:root {
    /*1*/--logo:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='183' height='52' fill='none'%3E%3Cg fill-rule='evenodd'%3E%3Cpath d='M57.444 24.642v12.014a5.64 5.64 0 000 1.361v1.122a3.75 3.75 0 01-2.079 2.951l-.115.051-21.306 9.458-18.884-8.383.01-.008s-1.981-.761-2.187-3.33V25.724l21.062 9.349 23.5-10.432z' fill='%23FAB826'/%3E%3Cg fill='%230a5067'%3E%3Cpath d='M33.944 51.598L15.06 43.215l.01-.008s-1.981-.761-2.187-3.33V25.723l21.062 9.349v16.524zm30.511-30.047l.073 20.678h-2.185V22.401l2.112-.851z'/%3E%3Cpath d='M59.988 44.733l2.77-10.607 1.356-.378 2.797 10.765-6.923.22z'/%3E%3C/g%3E%3Cpath d='M20.301 34.212l2.647 1.11v2.623l-2.647-1.11v-2.623zm0 3.665l2.647 1.11v2.623l-2.647-1.11v-2.623zm3.578-2.164l2.647 1.11v2.623l-2.647-1.11v-2.623zm0 3.664l2.647 1.11v2.623L23.879 42v-2.623z' fill='white'/%3E%3Cpath d='M34.136 0l32.967 14.634c.594.314 1.54 1.033.952 2.241-.172.354-.681.583-1.328.871l-.001.001-32.59 14.467L.728 17.384c-.258-.147-.45-.302-.543-.494-.588-1.208.358-1.927.952-2.241L34.136 0z' fill='%230a5067'/%3E%3Cpath d='M30.446 30.909c2.118-1.26 3.218-3.201 3.218-5.423 0-3.948-3.393-5.466-6.404-6.464-2.437-.824-4.636-1.345-4.636-2.733 0-1.085.86-1.692 2.676-1.692 1.673 0 3.298.694 5.018 1.822l3.154-3.818c-2.055-1.388-4.731-2.733-8.364-2.733-5.496 0-9.08 2.733-9.08 6.724 0 3.557 3.393 5.336 6.261 6.334 2.437.868 4.827 1.518 4.827 2.95 0 1.128-.908 1.822-3.011 1.822-.352 0-.702-.024-1.052-.072l7.392 3.282zm7.502-29.641l6.627 2.942c-.177 1.778-1.792 3.013-4.046 3.013-2.342 0-4.062-1.388-4.062-3.34 0-1.116.562-2.033 1.481-2.614zm6.118 26.952l-7.025 3.119V10.39h7.025v17.83z' fill='white'/%3E%3C/g%3E%3Cpath d='M78.504 25.566c0-1.103.421-2.035 1.259-2.791 1.061-1.024 2.426-1.534 4.092-1.534 1.496 0 2.755.317 3.777.954.814.523 1.22 1.086 1.22 1.683 0 .431-.169.822-.513 1.178a1.68 1.68 0 01-1.259.536c-.271-.022-.833-.198-1.69-.527-.702-.264-1.283-.396-1.743-.396-.649.04-.988.251-1.012.633 0 .237.126.448.387.629a4.06 4.06 0 00.954.475l.891.317c1.559.536 2.644 1.09 3.254 1.662.702.703 1.051 1.477 1.051 2.325 0 .624-.141 1.222-.417 1.798a4.13 4.13 0 01-1.186 1.472c-.983.774-2.29 1.16-3.922 1.16-.692 0-1.477-.097-2.344-.294s-1.622-.506-2.266-.932-.963-.967-.963-1.618c0-.404.179-.787.533-1.152s.76-.545 1.21-.545a2.63 2.63 0 01.572.066c.203.044.383.092.542.149l.552.224.571.251c.688.281 1.254.418 1.685.418.305 0 .591-.075.867-.229s.412-.356.412-.615c0-.317-.136-.545-.402-.686s-.692-.303-1.259-.497l-1.157-.391c-1.181-.418-2.092-.901-2.731-1.455s-.964-1.305-.964-2.268zm18.159-.527v7.859c0 .624-.189 1.139-.567 1.547s-.896.615-1.554.615-1.181-.211-1.569-.628-.581-.928-.581-1.534v-7.859c-1.07 0-1.787-.193-2.15-.58a1.6 1.6 0 01-.494-1.182c0-.29.087-.58.266-.875s.412-.51.698-.633c.344-.158.905-.237 1.68-.237V19.11c0-.615.194-1.13.576-1.543s.906-.624 1.574-.624c.654 0 1.167.207 1.549.62s.572.927.572 1.547v2.422h1.22c.61 0 1.118.154 1.53.462s.615.739.615 1.284-.208.967-.62 1.288-.92.475-1.525.475h-1.22zm17.655-1.556v6.171c0 1.358-.349 2.426-1.041 3.191-.634.738-1.453 1.305-2.455 1.701a8.43 8.43 0 01-3.133.593c-1.07 0-2.111-.198-3.118-.598s-1.826-.963-2.46-1.697c-.693-.818-1.041-1.881-1.041-3.191v-6.171c0-.607.189-1.116.566-1.525s.896-.611 1.555-.611 1.186.202 1.573.611.577.919.577 1.525v5.692c0 .73.222 1.284.668 1.662.46.426 1.017.637 1.68.637a2.52 2.52 0 001.69-.637c.445-.378.668-.932.668-1.662v-5.692c0-.607.189-1.116.572-1.525s.905-.611 1.578-.611c.659 0 1.177.202 1.554.607s.567.919.567 1.53zm11.612-1.002v-4.804c0-.607.189-1.112.572-1.521s.905-.611 1.578-.611c.659 0 1.177.202 1.555.607s.566.914.566 1.525v15.169c0 .624-.179 1.147-.542 1.574s-.877.642-1.545.642c-.557 0-.997-.127-1.322-.378s-.591-.637-.799-1.152c-.465.571-.997.98-1.607 1.231s-1.327.378-2.146.378c-.944 0-1.835-.22-2.672-.659s-1.545-1.029-2.121-1.767c-1.066-1.402-1.598-3.028-1.598-4.879 0-.923.242-1.864.726-2.813s1.114-1.736 1.893-2.352c1.196-.954 2.572-1.429 4.121-1.429 1.114 0 2.227.413 3.341 1.239zm-5.81 5.538c0 .866.266 1.64.803 2.312s1.255 1.011 2.16 1.011c.605 0 1.123-.163 1.554-.492a3.09 3.09 0 00.988-1.27c.223-.523.334-1.05.334-1.587 0-.527-.111-1.05-.334-1.565s-.552-.936-.988-1.266-.949-.492-1.554-.492c-.62 0-1.157.163-1.608.483s-.789.739-1.016 1.253a3.93 3.93 0 00-.339 1.613z' fill='%230a5067'/%3E%3Cpath d='M132.999 17.813c0-.615.242-1.147.726-1.596s1.065-.672 1.743-.672a2.53 2.53 0 011.235.308 2.44 2.44 0 01.901.831c.223.352.334.725.334 1.13 0 .611-.242 1.138-.726 1.591s-1.066.677-1.744.677-1.259-.224-1.743-.677-.726-.98-.726-1.591zm.29 15.085v-9.415c0-.607.189-1.116.567-1.525s.896-.611 1.554-.611c.664 0 1.187.202 1.574.611s.576.919.576 1.525v9.415c0 .615-.189 1.134-.571 1.543s-.906.62-1.579.62c-.649 0-1.162-.211-1.544-.628s-.577-.932-.577-1.534zm11.952-1.53h4.619c.615 0 1.128.154 1.54.461s.615.739.615 1.284-.208.967-.625 1.288-.925.475-1.53.475h-8.653c-.814 0-1.38-.123-1.69-.365-.344-.259-.518-.576-.518-.954 0-.347.165-.734.489-1.16l5.961-7.384h-4.271c-.61 0-1.123-.154-1.535-.466s-.615-.743-.615-1.297c0-.536.208-.963.62-1.275s.925-.47 1.53-.47h8.653c.445 0 .847.123 1.206.369s.537.563.537.949c0 .457-.194.927-.581 1.424l-5.752 7.121zm12.081-8.998c1.133-.752 2.247-1.13 3.342-1.13.934 0 1.815.18 2.634.545s1.54.866 2.15 1.503 1.089 1.354 1.423 2.158.504 1.626.504 2.47c0 2.356-.746 4.211-2.237 5.56-1.191 1.108-2.634 1.662-4.334 1.662-1.511 0-2.692-.51-3.545-1.534-.44.971-1.099 1.455-1.97 1.455-.664 0-1.201-.193-1.618-.585a1.94 1.94 0 01-.619-1.477V17.676c0-.382.082-.738.247-1.068s.411-.593.736-.782.702-.281 1.138-.281c.663 0 1.186.202 1.573.611s.576.914.576 1.521v4.694zm-.029 5.833a3.63 3.63 0 00.799 2.303c.533.681 1.254 1.02 2.16 1.02.605 0 1.128-.163 1.559-.492a3.09 3.09 0 00.988-1.27 3.9 3.9 0 00.334-1.56c0-.848-.257-1.622-.765-2.312s-1.215-1.037-2.116-1.037c-.625 0-1.157.163-1.608.488-.445.33-.784.747-1.012 1.262a4 4 0 00-.339 1.6zm21.108 5.327c-.513.567-1.041.976-1.583 1.231s-1.206.378-1.99.378c-1.545 0-2.94-.492-4.184-1.473-1.68-1.363-2.523-3.191-2.523-5.486 0-2.123.746-3.846 2.232-5.169 1.303-1.182 2.765-1.771 4.392-1.771.78 0 1.443.119 1.991.36s1.113.629 1.694 1.169c.436-.949 1.124-1.424 2.068-1.424.61 0 1.128.189 1.549.571s.63.853.63 1.407v9.437c0 .637-.199 1.178-.601 1.626-.397.448-.934.672-1.607.672-.978 0-1.666-.51-2.068-1.53zm-6.009-5.411c0 .91.237 1.706.707 2.387s1.172 1.02 2.106 1.02c.63 0 1.177-.154 1.652-.457a2.98 2.98 0 001.07-1.2 3.504 3.504 0 00.363-1.565c0-.998-.252-1.824-.76-2.475s-1.279-.976-2.325-.976c-.876 0-1.568.334-2.067 1.007s-.746 1.424-.746 2.259z' fill='%23fab826'/%3E%3Cpath fill-rule='evenodd' d='M63.433 32.556a2.84 2.84 0 012.839 2.839 2.84 2.84 0 01-2.839 2.839 2.84 2.84 0 01-2.839-2.839 2.84 2.84 0 012.839-2.839z' fill='%230a5067'/%3E%3C/svg%3E");
    /*1*/--more:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' fill='none'%3E%3Cg fill='%231984a8'%3E%3Cuse xlink:href='%23A'/%3E%3Cpath d='M1.266 13.266a1.266 1.266 0 100-2.532 1.266 1.266 0 000 2.532z'/%3E%3Cuse xlink:href='%23A' x='9.531'/%3E%3C/g%3E%3Cdefs%3E%3Cpath id='A' d='M10.797 13.266a1.266 1.266 0 100-2.532 1.266 1.266 0 000 2.532z'/%3E%3C/defs%3E%3C/svg%3E");
    /*1*/--search:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%230A5067'%3E%3Cpath d='M10.57 0C4.74 0 0 4.741 0 10.57c0 5.827 4.741 10.568 10.57 10.568 5.827 0 10.568-4.74 10.568-10.569C21.138 4.741 16.398 0 10.57 0zm0 19.187c-4.753 0-8.619-3.866-8.619-8.618 0-4.752 3.866-8.618 8.618-8.618 4.752 0 8.618 3.866 8.618 8.618 0 4.752-3.866 8.618-8.618 8.618z'/%3E%3Cpath d='M23.714 22.335l-5.593-5.594a.975.975 0 10-1.38 1.38l5.593 5.593a.973.973 0 001.38 0 .975.975 0 000-1.38z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--main-search:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%238BB7C6'%3E%3Cpath d='M7.486 0C3.36 0 0 3.359 0 7.486c0 4.129 3.359 7.487 7.486 7.487 4.129 0 7.487-3.358 7.487-7.487C14.973 3.36 11.615 0 7.486 0zm0 13.59a6.111 6.111 0 01-6.104-6.104 6.111 6.111 0 016.104-6.104 6.111 6.111 0 016.105 6.104 6.111 6.111 0 01-6.105 6.105z'/%3E%3Cpath d='M16.798 15.82l-3.962-3.962a.69.69 0 10-.977.977l3.962 3.962a.689.689 0 00.977 0 .69.69 0 000-.977z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--pdf:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='%230A5067'/%3E%3Cpath d='M24.249 24.464c-.772-.607-1.505-1.232-1.993-1.72-.635-.635-1.2-1.25-1.692-1.836.767-2.369 1.103-3.59 1.103-4.241 0-2.767-1-3.334-2.5-3.334-1.14 0-2.5.593-2.5 3.413 0 1.244.68 2.754 2.031 4.508-.33 1.008-.719 2.171-1.155 3.482-.21.63-.438 1.212-.678 1.75-.197.088-.387.177-.571.268-.662.332-1.292.63-1.875.906C11.758 28.92 10 29.753 10 31.4c0 1.195 1.298 1.934 2.5 1.934 1.55 0 3.89-2.07 5.598-5.556 1.774-.7 3.98-1.218 5.72-1.543 1.395 1.073 2.936 2.1 3.682 2.1 2.066 0 2.5-1.195 2.5-2.197 0-1.97-2.251-1.97-3.333-1.97-.337 0-1.238.099-2.418.297zM12.5 31.667c-.476 0-.798-.225-.833-.268 0-.591 1.761-1.426 3.466-2.233l.33-.156c-1.252 1.815-2.49 2.657-2.963 2.657zm5.833-14.92c0-1.747.542-1.747.834-1.747.589 0 .833 0 .833 1.667 0 .351-.234 1.23-.663 2.602-.655-1.007-1.004-1.87-1.004-2.523zm.64 8.956a804.74 804.74 0 00.986-2.95c.346.38.719.77 1.119 1.17.156.156.543.507 1.06.948a35.98 35.98 0 00-3.166.832zm9.36.434c0 .374 0 .53-.773.535-.227-.05-.752-.358-1.4-.8.236-.026.409-.039.507-.039 1.231 0 1.58.12 1.666.304z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--pdf-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='white'/%3E%3Cpath d='M24.249 24.464c-.772-.607-1.505-1.232-1.993-1.72-.635-.635-1.2-1.25-1.692-1.836.767-2.369 1.103-3.59 1.103-4.241 0-2.767-1-3.334-2.5-3.334-1.14 0-2.5.593-2.5 3.413 0 1.244.68 2.754 2.031 4.508-.33 1.008-.719 2.171-1.155 3.482-.21.63-.438 1.212-.678 1.75-.197.088-.387.177-.571.268-.662.332-1.292.63-1.875.906C11.758 28.92 10 29.753 10 31.4c0 1.195 1.298 1.934 2.5 1.934 1.55 0 3.89-2.07 5.598-5.556 1.774-.7 3.98-1.218 5.72-1.543 1.395 1.073 2.936 2.1 3.682 2.1 2.066 0 2.5-1.195 2.5-2.197 0-1.97-2.251-1.97-3.333-1.97-.337 0-1.238.099-2.418.297zM12.5 31.667c-.476 0-.798-.225-.833-.268 0-.591 1.761-1.426 3.466-2.233l.33-.156c-1.252 1.815-2.49 2.657-2.963 2.657zm5.833-14.92c0-1.747.542-1.747.834-1.747.589 0 .833 0 .833 1.667 0 .351-.234 1.23-.663 2.602-.655-1.007-1.004-1.87-1.004-2.523zm.64 8.956a804.74 804.74 0 00.986-2.95c.346.38.719.77 1.119 1.17.156.156.543.507 1.06.948a35.98 35.98 0 00-3.166.832zm9.36.434c0 .374 0 .53-.773.535-.227-.05-.752-.358-1.4-.8.236-.026.409-.039.507-.039 1.231 0 1.58.12 1.666.304z' fill='white'/%3E%3C/svg%3E");
    /*1*/--file:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--file-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='white'/%3E%3C/svg%3E");
    /*1*/--djvu:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='%230A5067'/%3E%3Cpath d='M14.5 4.75v9.58c0 2.09-1.53 3.95-3.61 4.15H6V2C7.17.83 10.24.847 11.5 1v12.5c0 .55-.45 1-1 1s-1-.45-1-1V4.75c0-.41-.34-.75-.75-.75S8 4.34 8 4.75v8.61c0 1.31.94 2.5 2.24 2.63A2.5 2.5 0 0013 13.5V.5C10.5.5 7.5.5 6 2l-.5 17.98c3 .02 1.5 0 4.46 0 3.36 0 6.04-2.26 6.04-5.48V4.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75zm-.777 28.696H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446zm0-10H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446zm6-5h7.71a.722.722 0 100-1.446h-7.71a.722.722 0 000 1.446zm-6 10H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--djvu-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.756 8.578L26.422.244A.833.833 0 0025.834 0h-17.5A3.337 3.337 0 005 3.333v33.334A3.337 3.337 0 008.333 40h23.334A3.337 3.337 0 0035 36.667v-27.5a.833.833 0 00-.244-.59zm-8.09-5.733l5.489 5.488h-3.822a1.669 1.669 0 01-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 01-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0028.333 10h5v26.667z' fill='white'/%3E%3Cpath d='M14.5 4.75v9.58c0 2.09-1.53 3.95-3.61 4.15H6V2C7.17.83 10.24.847 11.5 1v12.5c0 .55-.45 1-1 1s-1-.45-1-1V4.75c0-.41-.34-.75-.75-.75S8 4.34 8 4.75v8.61c0 1.31.94 2.5 2.24 2.63A2.5 2.5 0 0013 13.5V.5C10.5.5 7.5.5 6 2l-.5 17.98c3 .02 1.5 0 4.46 0 3.36 0 6.04-2.26 6.04-5.48V4.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75zm-.777 28.696H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446zm0-10H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446zm6-5h7.71a.722.722 0 100-1.446h-7.71a.722.722 0 000 1.446zm-6 10H27.7a.723.723 0 100-1.446H13.723a.723.723 0 100 1.446z' fill='white'/%3E%3C/svg%3E");
    /*1*/--xls:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.808.169a.689.689 0 00-.55-.162L.948 2.766a.69.69 0 00-.593.682v33.104a.69.69 0 00.593.682l19.31 2.759a.69.69 0 00.787-.683V.69a.69.69 0 00-.238-.521zm-1.142 38.346L1.735 35.954V4.046l17.93-2.561v37.03z' fill='%230A5067'/%3E%3Cpath d='M38.975 5.54h-18.62a.667.667 0 00-.668.667v28.276c0 .368.3.666.667.666h18.621a.667.667 0 00.667-.666V6.207a.667.667 0 00-.667-.667zm-.666 28.276H21.02V6.873h17.29v26.943z' fill='%230A5067'/%3E%3Cpath d='M35.527 9.678H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='%230A5067'/%3E%3Cpath d='M35.527 13.816H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021V15.15h13.84v2.805z' fill='%230A5067'/%3E%3Cpath d='M35.527 17.954H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666V18.62a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='%230A5067'/%3E%3Cpath d='M35.527 22.092H20.354a.667.667 0 00-.666.667v4.137c0 .369.298.667.666.667h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='%230A5067'/%3E%3Cpath d='M35.527 26.23H20.354a.667.667 0 00-.666.666v4.139c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.139a.667.667 0 00-.667-.666zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='%230A5067'/%3E%3Cpath d='M30.702 9.678a.667.667 0 00-.667.667v20.69a.667.667 0 001.334 0v-20.69a.667.667 0 00-.667-.667z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--xls-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.808.169a.689.689 0 00-.55-.162L.948 2.766a.69.69 0 00-.593.682v33.104a.69.69 0 00.593.682l19.31 2.759a.69.69 0 00.787-.683V.69a.69.69 0 00-.238-.521zm-1.142 38.346L1.735 35.954V4.046l17.93-2.561v37.03z' fill='white'/%3E%3Cpath d='M38.975 5.54h-18.62a.667.667 0 00-.668.667v28.276c0 .368.3.666.667.666h18.621a.667.667 0 00.667-.666V6.207a.667.667 0 00-.667-.667zm-.666 28.276H21.02V6.873h17.29v26.943z' fill='white'/%3E%3Cpath d='M35.527 9.678H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='white'/%3E%3Cpath d='M35.527 13.816H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021V15.15h13.84v2.805z' fill='white'/%3E%3Cpath d='M35.527 17.954H20.354a.667.667 0 00-.666.667v4.138c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666V18.62a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='white'/%3E%3Cpath d='M35.527 22.092H20.354a.667.667 0 00-.666.667v4.137c0 .369.298.667.666.667h15.173a.667.667 0 00.667-.666v-4.138a.667.667 0 00-.667-.667zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='white'/%3E%3Cpath d='M35.527 26.23H20.354a.667.667 0 00-.666.666v4.139c0 .368.298.666.666.666h15.173a.667.667 0 00.667-.666v-4.139a.667.667 0 00-.667-.666zm-.667 4.138H21.021v-2.805h13.84v2.805z' fill='white'/%3E%3Cpath d='M30.702 9.678a.667.667 0 00-.667.667v20.69a.667.667 0 001.334 0v-20.69a.667.667 0 00-.667-.667z' fill='white'/%3E%3C/svg%3E");
    /*1*/--doc:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.94 5.301h-3.374V1.928C31.566.868 30.7 0 29.64 0H5.06C4 0 3.133.867 3.133 1.928V32.77c0 1.06.867 1.928 1.928 1.928h3.373v3.373c0 1.06.867 1.928 1.928 1.928h16.385c1.06 0 2.56-.595 3.33-1.32l5.386-5.07c.773-.726 1.404-2.188 1.404-3.248V7.229c0-1.06-.867-1.928-1.927-1.928zM8.434 7.23v26.024H5.06a.488.488 0 01-.481-.482V1.928c0-.261.22-.482.481-.482h24.58c.26 0 .481.22.481.482V5.3h-19.76c-1.06 0-1.927.868-1.927 1.928zm26.038 25.328l-5.385 5.069c-.11.104-.254.205-.413.302v-4.434c0-.331.134-.63.354-.85.222-.22.52-.355.851-.355h4.822a2.03 2.03 0 01-.229.268zm.949-2.196c0 .143-.026.31-.066.482H29.88a2.656 2.656 0 00-2.65 2.65v5.003a2.517 2.517 0 01-.482.058H10.362a.488.488 0 01-.482-.482V7.23c0-.261.22-.482.482-.482H34.94c.261 0 .482.22.482.482l-.002 23.13z' fill='%230A5067'/%3E%3Cpath d='M29.64 12.048H15.664a.723.723 0 100 1.446H29.64a.723.723 0 100-1.446zm0 9.639H15.664a.723.723 0 100 1.445H29.64a.723.723 0 100-1.445zm-6.265 4.819h-7.71a.723.723 0 100 1.446h7.71a.722.722 0 000-1.446zm6.265-9.639H15.664a.723.723 0 100 1.446H29.64a.723.723 0 100-1.446z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--doc-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34.94 5.301h-3.374V1.928C31.566.868 30.7 0 29.64 0H5.06C4 0 3.133.867 3.133 1.928V32.77c0 1.06.867 1.928 1.928 1.928h3.373v3.373c0 1.06.867 1.928 1.928 1.928h16.385c1.06 0 2.56-.595 3.33-1.32l5.386-5.07c.773-.726 1.404-2.188 1.404-3.248V7.229c0-1.06-.867-1.928-1.927-1.928zM8.434 7.23v26.024H5.06a.488.488 0 01-.481-.482V1.928c0-.261.22-.482.481-.482h24.58c.26 0 .481.22.481.482V5.3h-19.76c-1.06 0-1.927.868-1.927 1.928zm26.038 25.328l-5.385 5.069c-.11.104-.254.205-.413.302v-4.434c0-.331.134-.63.354-.85.222-.22.52-.355.851-.355h4.822a2.03 2.03 0 01-.229.268zm.949-2.196c0 .143-.026.31-.066.482H29.88a2.656 2.656 0 00-2.65 2.65v5.003a2.517 2.517 0 01-.482.058H10.362a.488.488 0 01-.482-.482V7.23c0-.261.22-.482.482-.482H34.94c.261 0 .482.22.482.482l-.002 23.13z' fill='white'/%3E%3Cpath d='M29.64 12.048H15.664a.723.723 0 100 1.446H29.64a.723.723 0 100-1.446zm0 9.639H15.664a.723.723 0 100 1.445H29.64a.723.723 0 100-1.445zm-6.265 4.819h-7.71a.723.723 0 100 1.446h7.71a.722.722 0 000-1.446zm6.265-9.639H15.664a.723.723 0 100 1.446H29.64a.723.723 0 100-1.446z' fill='white'/%3E%3C/svg%3E");
    /*1*/--ppt:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.184 1.224H.816A.816.816 0 000 2.041v3.265c0 .451.365.816.816.816h.817v23.674c0 .45.365.816.816.816h16.735v6.53H17.55v1.633h4.898v-1.632h-1.633v-6.53H37.55c.45 0 .816-.366.816-.817V6.122h.817c.45 0 .816-.365.816-.816V2.041a.816.816 0 00-.816-.817zm-2.45 27.756H3.266V6.122h33.47V28.98zm1.633-24.49H1.633V2.857h36.734V4.49z' fill='%230A5067'/%3E%3Cpath d='M10.613 9.388H5.715v1.632h4.898V9.388zm8.979 3.265H5.715v1.633h13.877v-1.633zm14.694 4.082H5.715v1.632h28.571v-1.632zm0 3.265H5.715v1.633h28.571V20zm-7.346 3.265H5.714v1.633h21.224v-1.633zm7.345 0H31.02v1.633h3.265v-1.633zm.41-15.102h-2.449v1.633h2.45V8.163zm-3.675 0h-2.45v1.633h2.45V8.163zm3.675 2.449h-2.449v1.633h2.45v-1.633z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ppt-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.184 1.224H.816A.816.816 0 000 2.041v3.265c0 .451.365.816.816.816h.817v23.674c0 .45.365.816.816.816h16.735v6.53H17.55v1.633h4.898v-1.632h-1.633v-6.53H37.55c.45 0 .816-.366.816-.817V6.122h.817c.45 0 .816-.365.816-.816V2.041a.816.816 0 00-.816-.817zm-2.45 27.756H3.266V6.122h33.47V28.98zm1.633-24.49H1.633V2.857h36.734V4.49z' fill='white'/%3E%3Cpath d='M10.613 9.388H5.715v1.632h4.898V9.388zm8.979 3.265H5.715v1.633h13.877v-1.633zm14.694 4.082H5.715v1.632h28.571v-1.632zm0 3.265H5.715v1.633h28.571V20zm-7.346 3.265H5.714v1.633h21.224v-1.633zm7.345 0H31.02v1.633h3.265v-1.633zm.41-15.102h-2.449v1.633h2.45V8.163zm-3.675 0h-2.45v1.633h2.45V8.163zm3.675 2.449h-2.449v1.633h2.45v-1.633z' fill='white'/%3E%3C/svg%3E");
    /*1*/--zip:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M37.898 6.258h-15.09c-.302 0-.594-.11-.823-.306l-2.769-2.388a2.946 2.946 0 00-1.921-.714H7.377a2.104 2.104 0 00-2.102 2.1v2.81H2.102A2.104 2.104 0 000 9.861V35.05c0 1.159.943 2.102 2.102 2.102h30.521a2.104 2.104 0 002.102-2.102v-2.81h3.173A2.104 2.104 0 0040 30.138V8.36a2.104 2.104 0 00-2.102-2.102zm-4.855 28.79a.42.42 0 01-.42.421H2.102a.42.42 0 01-.42-.42V17.768h31.361v17.28zm0-18.962H1.682V9.862a.42.42 0 01.42-.42h9.918c.303 0 .595.109.824.306l2.768 2.388c.534.46 1.217.714 1.922.714h15.09a.42.42 0 01.42.42v2.816zm5.276 14.052a.42.42 0 01-.42.42h-3.174V13.27a2.104 2.104 0 00-2.102-2.102h-15.09c-.303 0-.595-.108-.824-.306l-2.768-2.387a2.943 2.943 0 00-1.922-.714H6.956V4.95a.42.42 0 01.42-.42h9.919c.302 0 .594.109.823.306l2.769 2.388c.534.46 1.217.714 1.921.714h15.09a.42.42 0 01.42.42v21.78z' fill='%230A5067'/%3E%3Cpath d='M29.7 20.634h-5.035a.84.84 0 000 1.681H29.7a.84.84 0 000-1.681zm0 4.036h-5.035a.84.84 0 000 1.68H29.7a.84.84 0 000-1.68z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--zip-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M37.898 6.258h-15.09c-.302 0-.594-.11-.823-.306l-2.769-2.388a2.946 2.946 0 00-1.921-.714H7.377a2.104 2.104 0 00-2.102 2.1v2.81H2.102A2.104 2.104 0 000 9.861V35.05c0 1.159.943 2.102 2.102 2.102h30.521a2.104 2.104 0 002.102-2.102v-2.81h3.173A2.104 2.104 0 0040 30.138V8.36a2.104 2.104 0 00-2.102-2.102zm-4.855 28.79a.42.42 0 01-.42.421H2.102a.42.42 0 01-.42-.42V17.768h31.361v17.28zm0-18.962H1.682V9.862a.42.42 0 01.42-.42h9.918c.303 0 .595.109.824.306l2.768 2.388c.534.46 1.217.714 1.922.714h15.09a.42.42 0 01.42.42v2.816zm5.276 14.052a.42.42 0 01-.42.42h-3.174V13.27a2.104 2.104 0 00-2.102-2.102h-15.09c-.303 0-.595-.108-.824-.306l-2.768-2.387a2.943 2.943 0 00-1.922-.714H6.956V4.95a.42.42 0 01.42-.42h9.919c.302 0 .594.109.823.306l2.769 2.388c.534.46 1.217.714 1.921.714h15.09a.42.42 0 01.42.42v21.78z' fill='white'/%3E%3Cpath d='M29.7 20.634h-5.035a.84.84 0 000 1.681H29.7a.84.84 0 000-1.681zm0 4.036h-5.035a.84.84 0 000 1.68H29.7a.84.84 0 000-1.68z' fill='white'/%3E%3C/svg%3E");
    /*1*/--dwg:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%230A5067'%3E%3Cpath d='M1.667 8.333H0v23.334h1.667V8.333z'/%3E%3Cpath d='M5.833 25.833a5.833 5.833 0 100 11.667v-1.667A4.167 4.167 0 1110 31.667h1.667a5.833 5.833 0 00-5.834-5.834zM39.168 6.667h-5v1.666h4.167v23.334a4.172 4.172 0 01-4.167 4.166V37.5a5.84 5.84 0 005.833-5.833V7.5a.833.833 0 00-.833-.833z'/%3E%3Cpath d='M14.165 35.833H5.832V37.5h8.333v-1.667zM5.833 2.5A5.833 5.833 0 000 8.333h1.667a4.167 4.167 0 018.333 0v15.834h1.667V8.333A5.833 5.833 0 005.833 2.5zm15 12.5H17.5v1.667h3.333V15zm0 8.333H17.5V25h3.333v-1.667zm0 8.334H17.5v1.666h3.333v-1.666zm0-25H17.5v1.666h3.333V6.667z'/%3E%3Cpath d='M23.33.833h-5c-.92 0-1.666.747-1.666 1.667v35c0 .92.746 1.667 1.667 1.667h5c.92 0 1.666-.747 1.666-1.667v-35c0-.92-.746-1.667-1.666-1.667zm0 36.667h-5v-35h5v35z'/%3E%3Cpath d='M21.667 19.167H17.5v1.666h4.167v-1.666zm0 8.333H17.5v1.667h4.167V27.5zm0-16.667H17.5V12.5h4.167v-1.667zm9.166 20.834H27.5v1.666h3.333v-1.666z'/%3E%3Cpath d='M31.524 3.704l-1.667-2.5a.865.865 0 00-1.386 0l-1.667 2.5a.838.838 0 00-.14.463v34.166c0 .46.373.834.833.834h3.334c.46 0 .833-.373.833-.834V4.167a.84.84 0 00-.14-.463zM29.997 37.5h-1.666V4.417l.833-1.25.833 1.25V37.5zM14.165 6.667h-3.333v1.666h3.333V6.667z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--img:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.43 8.242h-2.374V5.824c0-.896-.716-1.613-1.612-1.613H1.612C.717 4.211 0 4.928 0 5.824v24.321c0 .896.717 1.613 1.612 1.613h2.374v2.418c0 .896.717 1.613 1.613 1.613h32.787c.895 0 1.612-.717 1.612-1.613V9.9a1.58 1.58 0 00-1.568-1.658zM1.657 5.78l32.787.045V22.44l-7.346-5.106a.814.814 0 00-.895 0l-6.495 4.434-7.346-7.211c-.313-.269-.761-.314-1.075-.045L1.612 22.53l.045-16.752zm-.09 24.366v-5.554l10.168-8.42 7.301 7.166a.813.813 0 001.03.09l6.584-4.48 7.794 5.42v5.778s0 .045-.045.045l-32.831-.045zm36.863 4.12L5.6 34.222v-2.419h28.845c.896 0 1.612-.716 1.612-1.612V9.855l2.42.045-.046 24.366z' fill='%230A5067'/%3E%3Cpath d='M24.769 8.287a3.546 3.546 0 00-3.538 3.539 3.546 3.546 0 003.538 3.538 3.546 3.546 0 003.538-3.538c0-1.926-1.612-3.539-3.538-3.539zm0 5.51a1.988 1.988 0 01-1.97-1.971c0-1.075.895-1.971 1.97-1.971s1.97.896 1.97 1.97a1.988 1.988 0 01-1.97 1.972z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--img-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.43 8.242h-2.374V5.824c0-.896-.716-1.613-1.612-1.613H1.612C.717 4.211 0 4.928 0 5.824v24.321c0 .896.717 1.613 1.612 1.613h2.374v2.418c0 .896.717 1.613 1.613 1.613h32.787c.895 0 1.612-.717 1.612-1.613V9.9a1.58 1.58 0 00-1.568-1.658zM1.657 5.78l32.787.045V22.44l-7.346-5.106a.814.814 0 00-.895 0l-6.495 4.434-7.346-7.211c-.313-.269-.761-.314-1.075-.045L1.612 22.53l.045-16.752zm-.09 24.366v-5.554l10.168-8.42 7.301 7.166a.813.813 0 001.03.09l6.584-4.48 7.794 5.42v5.778s0 .045-.045.045l-32.831-.045zm36.863 4.12L5.6 34.222v-2.419h28.845c.896 0 1.612-.716 1.612-1.612V9.855l2.42.045-.046 24.366z' fill='white'/%3E%3Cpath d='M24.769 8.287a3.546 3.546 0 00-3.538 3.539 3.546 3.546 0 003.538 3.538 3.546 3.546 0 003.538-3.538c0-1.926-1.612-3.539-3.538-3.539zm0 5.51a1.988 1.988 0 01-1.97-1.971c0-1.075.895-1.971 1.97-1.971s1.97.896 1.97 1.97a1.988 1.988 0 01-1.97 1.972z' fill='white'/%3E%3C/svg%3E");
    --video:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33.333 3.333H0v33.334h40V3.333h-6.667zm-28 32h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.334h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm28 26.666H6.667V4.667h26.666v30.666zm5.334 0h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.334h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4z' fill='%230A5067'/%3E%3Cpath d='M25.249 19.667a.666.666 0 00-.248-.248l-9.333-5.333a.667.667 0 00-1 .58v10.667a.667.667 0 001 .577l9.333-5.333c.32-.183.43-.59.248-.91zM16 24.184v-8.368L23.324 20l-7.323 4.184z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--txt:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33.335 1.667h-2.5V.833a.834.834 0 00-1.667 0v.834h-5V.833a.834.834 0 00-1.667 0v.834h-5V.833a.834.834 0 00-1.666 0v.834h-5V.833a.834.834 0 00-1.667 0v.834h-2.5a2.503 2.503 0 00-2.5 2.5V37.5c0 1.378 1.122 2.5 2.5 2.5h26.667c1.378 0 2.5-1.122 2.5-2.5V4.167c0-1.379-1.122-2.5-2.5-2.5zm-3.334 5a.834.834 0 110 1.667.834.834 0 010-1.667zm-6.666 0a.834.834 0 11-.001 1.667.834.834 0 010-1.667zm-6.667 0a.834.834 0 110 1.667.834.834 0 010-1.667zm-6.667 0a.834.834 0 110 1.667.834.834 0 010-1.667zM34.168 37.5c0 .46-.373.833-.833.833H6.668a.834.834 0 01-.833-.833V4.167c0-.46.373-.834.833-.834h2.5v1.82A2.496 2.496 0 007.501 7.5c0 1.378 1.122 2.5 2.5 2.5 1.379 0 2.5-1.122 2.5-2.5a2.495 2.495 0 00-1.666-2.347v-1.82h5v1.82A2.495 2.495 0 0014.168 7.5c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5a2.496 2.496 0 00-1.667-2.347v-1.82h5v1.82A2.495 2.495 0 0020.835 7.5c0 1.378 1.121 2.5 2.5 2.5 1.378 0 2.5-1.122 2.5-2.5a2.496 2.496 0 00-1.667-2.347v-1.82h5v1.82A2.496 2.496 0 0027.501 7.5c0 1.378 1.122 2.5 2.5 2.5 1.379 0 2.5-1.122 2.5-2.5a2.495 2.495 0 00-1.666-2.347v-1.82h2.5c.46 0 .833.374.833.834V37.5z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--txt-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33.335 1.667h-2.5V.833a.834.834 0 00-1.667 0v.834h-5V.833a.834.834 0 00-1.667 0v.834h-5V.833a.834.834 0 00-1.666 0v.834h-5V.833a.834.834 0 00-1.667 0v.834h-2.5a2.503 2.503 0 00-2.5 2.5V37.5c0 1.378 1.122 2.5 2.5 2.5h26.667c1.378 0 2.5-1.122 2.5-2.5V4.167c0-1.379-1.122-2.5-2.5-2.5zm-3.334 5a.834.834 0 110 1.667.834.834 0 010-1.667zm-6.666 0a.834.834 0 11-.001 1.667.834.834 0 010-1.667zm-6.667 0a.834.834 0 110 1.667.834.834 0 010-1.667zm-6.667 0a.834.834 0 110 1.667.834.834 0 010-1.667zM34.168 37.5c0 .46-.373.833-.833.833H6.668a.834.834 0 01-.833-.833V4.167c0-.46.373-.834.833-.834h2.5v1.82A2.496 2.496 0 007.501 7.5c0 1.378 1.122 2.5 2.5 2.5 1.379 0 2.5-1.122 2.5-2.5a2.495 2.495 0 00-1.666-2.347v-1.82h5v1.82A2.495 2.495 0 0014.168 7.5c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5a2.496 2.496 0 00-1.667-2.347v-1.82h5v1.82A2.495 2.495 0 0020.835 7.5c0 1.378 1.121 2.5 2.5 2.5 1.378 0 2.5-1.122 2.5-2.5a2.496 2.496 0 00-1.667-2.347v-1.82h5v1.82A2.496 2.496 0 0027.501 7.5c0 1.378 1.122 2.5 2.5 2.5 1.379 0 2.5-1.122 2.5-2.5a2.495 2.495 0 00-1.666-2.347v-1.82h2.5c.46 0 .833.374.833.834V37.5z' fill='white'/%3E%3C/svg%3E");
    /*1*/--hs-blue:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.989 21.74v27.487H4.008V21.74h-2v28.49a1 1 0 001 1h57.98a1 1 0 001-1.002V21.74h-2z' fill='%230A5067'/%3E%3Cpath d='M49.346 22.363L32.648 8.114a1 1 0 00-1.299 0l-16.697 14.25a.999.999 0 00.649 1.76h33.395a1 1 0 00.65-1.761zm-31.333-.239L31.997 10.19l13.985 11.934h-27.97z' fill='%230A5067'/%3E%3Cpath d='M61.913 21.352l-4.163-9.888a1 1 0 00-.922-.612h-21.34a1.002 1.002 0 00-.649 1.76L46.427 22.5c.181.154.411.24.649.24h13.915a1.001 1.001 0 00.922-1.388zm-14.468-.613l-9.244-7.888h17.963l3.321 7.888h-12.04zM29.448 11.505a1 1 0 00-.938-.654H7.17a1 1 0 00-.922.612l-4.162 9.888a1 1 0 00.922 1.388h13.915c.238 0 .468-.085.65-.239l11.585-9.889a.999.999 0 00.29-1.106zM16.554 20.74H4.514l3.32-7.888h17.964l-9.244 7.888zM63 49.228H1a1 1 0 00-1 1v4.897a1 1 0 001 1h62a1 1 0 001-1v-4.897a1 1 0 00-1-1zm-1 4.897H2v-2.897h60v2.897z' fill='%230A5067'/%3E%3Cpath d='M23.396 22.124h-6.24a1 1 0 00-1 1v3.323a1 1 0 001 1h6.24a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-.999 3.323h-4.24v-1.323h4.24v1.323z' fill='%230A5067'/%3E%3Cpath d='M22.22 25.447h-3.876a1 1 0 00-1 1v20.457a1 1 0 001 1h3.876a1 1 0 001-.999V26.447a1 1 0 00-1-1zm-1 20.457h-1.876V27.447h1.876v18.457z' fill='%230A5067'/%3E%3Cpath d='M23.396 45.905h-6.24a1 1 0 00-1 1v3.323a1 1 0 001 1h6.24a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-.999 3.323h-4.24v-1.323h4.24v1.323zM46.84 22.124h-6.238a1 1 0 00-1 1v3.323a1 1 0 001 1h6.239a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-1 3.323h-4.238v-1.323h4.239v1.323z' fill='%230A5067'/%3E%3Cpath d='M45.657 25.447h-3.876a1 1 0 00-1 1v20.457a1 1 0 001 1h3.876c.553 0 1-.447 1-.999V26.447a1 1 0 00-1-1zm-1 20.457h-1.876V27.447h1.876v18.457z' fill='%230A5067'/%3E%3Cpath d='M46.84 45.905h-6.238a1 1 0 00-1 1v3.323a1 1 0 001 1h6.239a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-1 3.323h-4.238v-1.323h4.239v1.323zM37.412 31.255H26.59a1 1 0 00-1 1v17.973a1 1 0 001 1h10.822a1 1 0 001-1V32.254a1 1 0 00-1-1zm-1 17.973H27.59V33.255h8.822v15.973zM11.726 27.498H7.344a1 1 0 00-1 1v5.025a1 1 0 001 1h4.382a1 1 0 001-1v-5.025a1 1 0 00-1-1zm-1 5.025H8.344v-3.025h2.382v3.025zM11.726 38.76H7.344a1 1 0 00-1 1v5.025a1 1 0 001 1h4.382a1 1 0 001-1V39.76a1 1 0 00-1-1zm-1 5.025H8.344V40.76h2.382v3.025zM56.651 27.498H52.27a1 1 0 00-1 1v5.025a1 1 0 001 1h4.383a1 1 0 001-1v-5.025a1 1 0 00-1-1zm-1 5.025H53.27v-3.025h2.383v3.025zM56.651 38.76H52.27a1 1 0 00-1 1v5.025a1 1 0 001 1h4.383a1 1 0 001-1V39.76a1 1 0 00-1-1zm-1 5.025H53.27V40.76h2.383v3.025z' fill='%230A5067'/%3E%3C/svg%3E");
    /*--event-blue:url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M49.332 53.3333C49.1694 53.3333 49.0094 53.304 48.852 53.2453L14.1854 39.912C13.6707 39.7147 13.332 39.2187 13.332 38.6667V22.6667C13.332 22.1147 13.6707 21.6187 14.1854 21.4213L48.852 8.08799C49.2654 7.92799 49.7214 7.98666 50.0867 8.23466C50.4494 8.48266 50.6654 8.89333 50.6654 9.33333V52C50.6654 52.44 50.4494 52.8507 50.0867 53.0987C49.86 53.2533 49.5987 53.3333 49.332 53.3333V53.3333ZM15.9987 37.7493L47.9987 50.0587V11.2747L15.9987 23.584V37.7493Z' fill='%230A5067'/%3E%3Cpath d='M14.6667 40H5.33333C2.392 40 0 37.608 0 34.6667V26.6667C0 23.7254 2.392 21.3334 5.33333 21.3334H14.6667C15.4027 21.3334 16 21.9307 16 22.6667V38.6667C16 39.4027 15.4027 40 14.6667 40ZM5.33333 24C3.86133 24 2.66667 25.1947 2.66667 26.6667V34.6667C2.66667 36.1387 3.86133 37.3334 5.33333 37.3334H13.3333V24H5.33333Z' fill='%230A5067'/%3E%3Cpath d='M20.0002 58.6667H12.0002C11.3362 58.6667 10.7735 58.1787 10.6802 57.52L8.01353 38.8534C7.90953 38.1254 8.4162 37.4507 9.14687 37.3467C9.86153 37.256 10.5495 37.7494 10.6535 38.48L13.1575 56H18.5069L16.7255 40.1227C16.6455 39.392 17.1709 38.7334 17.9015 38.648C18.6082 38.5707 19.2909 39.0934 19.3762 39.824L21.3229 57.184C21.3655 57.5627 21.2455 57.9387 20.9922 58.2214C20.7415 58.504 20.3815 58.6667 20.0002 58.6667V58.6667Z' fill='%230A5067'/%3E%3Cpath d='M54.6651 24C54.2358 24 53.8145 23.792 53.5558 23.4053C53.1478 22.7947 53.3131 21.9653 53.9265 21.5573L61.9265 16.224C62.5345 15.8187 63.3638 15.9787 63.7745 16.5947C64.1825 17.2053 64.0171 18.0347 63.4038 18.4427L55.4038 23.776C55.1771 23.928 54.9211 24 54.6651 24Z' fill='%230A5067'/%3E%3Cpath d='M62.6683 48.0001C62.4123 48.0001 62.1563 47.9281 61.9297 47.7761L53.9297 42.4427C53.319 42.0347 53.151 41.2054 53.559 40.5947C53.9697 39.9814 54.8017 39.8187 55.407 40.2241L63.407 45.5574C64.0177 45.9654 64.1857 46.7947 63.7777 47.4054C63.519 47.7921 63.0977 48.0001 62.6683 48.0001V48.0001Z' fill='%230A5067'/%3E%3Cpath d='M62.6654 33.3333H54.6654C53.9294 33.3333 53.332 32.736 53.332 32C53.332 31.264 53.9294 30.6666 54.6654 30.6666H62.6654C63.4014 30.6666 63.9987 31.264 63.9987 32C63.9987 32.736 63.4014 33.3333 62.6654 33.3333Z' fill='%230A5067'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='64' height='64' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
    --event-white:url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M49.333 53.3333C49.1703 53.3333 49.0103 53.304 48.853 53.2453L14.1863 39.912C13.6717 39.7146 13.333 39.2186 13.333 38.6666V22.6666C13.333 22.1146 13.6717 21.6186 14.1863 21.4213L48.853 8.08795C49.2663 7.92795 49.7223 7.98662 50.0877 8.23462C50.4503 8.48262 50.6663 8.89329 50.6663 9.33329V52C50.6663 52.44 50.4503 52.8506 50.0877 53.0986C49.861 53.2533 49.5997 53.3333 49.333 53.3333ZM15.9997 37.7493L47.9997 50.0586V11.2746L15.9997 23.584V37.7493Z' fill='white'/%3E%3Cpath d='M14.6667 40H5.33333C2.392 40 0 37.608 0 34.6667V26.6667C0 23.7254 2.392 21.3334 5.33333 21.3334H14.6667C15.4027 21.3334 16 21.9307 16 22.6667V38.6667C16 39.4027 15.4027 40 14.6667 40ZM5.33333 24C3.86133 24 2.66667 25.1947 2.66667 26.6667V34.6667C2.66667 36.1387 3.86133 37.3334 5.33333 37.3334H13.3333V24H5.33333Z' fill='white'/%3E%3Cpath d='M20.0002 58.6667H12.0002C11.3362 58.6667 10.7735 58.1787 10.6802 57.52L8.01353 38.8533C7.90953 38.1253 8.4162 37.4507 9.14687 37.3467C9.86153 37.256 10.5495 37.7493 10.6535 38.48L13.1575 56H18.5069L16.7255 40.1227C16.6455 39.392 17.1709 38.7333 17.9015 38.648C18.6082 38.5707 19.2909 39.0933 19.3762 39.824L21.3229 57.184C21.3655 57.5627 21.2455 57.9387 20.9922 58.2213C20.7415 58.504 20.3815 58.6667 20.0002 58.6667Z' fill='white'/%3E%3Cpath d='M54.6671 24C54.2377 24 53.8164 23.792 53.5577 23.4053C53.1497 22.7947 53.3151 21.9653 53.9284 21.5573L61.9284 16.224C62.5364 15.8187 63.3658 15.9787 63.7764 16.5947C64.1844 17.2053 64.0191 18.0347 63.4058 18.4427L55.4057 23.776C55.1791 23.928 54.9231 24 54.6671 24Z' fill='white'/%3E%3Cpath d='M62.6664 48.0001C62.4104 48.0001 62.1544 47.9281 61.9277 47.7761L53.9277 42.4427C53.3171 42.0347 53.1491 41.2054 53.5571 40.5947C53.9677 39.9814 54.7997 39.8187 55.4051 40.2241L63.4051 45.5574C64.0157 45.9654 64.1837 46.7947 63.7757 47.4054C63.5171 47.7921 63.0957 48.0001 62.6664 48.0001Z' fill='white'/%3E%3Cpath d='M62.6664 33.3333H54.6663C53.9303 33.3333 53.333 32.736 53.333 32C53.333 31.264 53.9303 30.6666 54.6663 30.6666H62.6664C63.4024 30.6666 63.9997 31.264 63.9997 32C63.9997 32.736 63.4024 33.3333 62.6664 33.3333Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='64' height='64' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");*/
    /*1*/--teacher-blue:url("data:image/svg+xml,%0A%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%230A5067'%3E%3Cpath d='M59.369 21.681a19.455 19.455 0 0 0-2.09-2.242h1.032c.855 0 1.618-.443 2.044-1.185a2.318 2.318 0 0 0-.01-2.35C56.885 10 50.993 7.349 48.07 6.349l.554-.465a2.35 2.35 0 0 0 .789-2.299 2.34 2.34 0 0 0-1.656-1.766c-7.4-2.086-13.15 1.083-15.755 2.987C29.398 2.9 23.648-.268 16.248 1.818a2.34 2.34 0 0 0-1.656 1.766 2.35 2.35 0 0 0 .79 2.3l.558.467a26.28 26.28 0 0 0-3.807 1.667.937.937 0 1 0 .885 1.653c2.758-1.477 5.041-1.998 5.063-2.003a.937.937 0 0 0 .4-1.634l-1.895-1.588a.47.47 0 0 1-.16-.468.46.46 0 0 1 .33-.355c6.798-1.917 12.056 1.128 14.309 2.82V9.71a.937.937 0 1 0 1.875 0V6.443c2.253-1.692 7.512-4.736 14.308-2.82a.46.46 0 0 1 .331.354.47.47 0 0 1-.16.47l-1.895 1.587a.937.937 0 0 0 .399 1.634c.085.019 8.593 1.995 12.805 9.184a.453.453 0 0 1 .001.47.472.472 0 0 1-.417.242H54.51a.938.938 0 0 0-.458 1.756c.077.043 7.695 4.433 8.075 15.633a.472.472 0 0 1-.242.436.465.465 0 0 1-.49-.01l-4.492-2.832a.937.937 0 0 0-1.208 1.407c.045.052 4.48 5.27 3.89 12.927a.478.478 0 0 1-.276.403.458.458 0 0 1-.473-.04l-1.899-1.313a.937.937 0 0 0-1.467.683l-.578 6.141a.478.478 0 0 1-.39.425c-.651.117-1.7.271-2.999.342a.937.937 0 0 0 .102 1.872 26.753 26.753 0 0 0 3.23-.369 2.36 2.36 0 0 0 1.923-2.094l.429-4.548.582.403c.7.485 1.577.556 2.346.19a2.337 2.337 0 0 0 1.339-1.951c.346-4.494-.853-8.193-2.079-10.704l1.021.644A2.353 2.353 0 0 0 64 34.89c-.217-6.381-2.638-10.705-4.631-13.209z'/%3E%3Cpath d='M45.359 20.765a.937.937 0 0 0-.269 1.299 15.425 15.425 0 0 1 2.566 8.506l-3.327.776a5.849 5.849 0 0 0-5.35-3.501 5.848 5.848 0 0 0-5.842 5.84c0 1.553.61 2.965 1.602 4.012l.09.84a2.81 2.81 0 0 1-.714 2.204 2.81 2.81 0 0 1-2.115.942 2.81 2.81 0 0 1-2.115-.942 2.81 2.81 0 0 1-.713-2.203l.09-.84a5.819 5.819 0 0 0 1.601-4.012c0-3.221-2.62-5.841-5.841-5.841a5.849 5.849 0 0 0-5.35 3.5l-3.324-.775a15.684 15.684 0 0 1 4.04-10.419A15.68 15.68 0 0 1 32 14.995a15.61 15.61 0 0 1 10.47 4.016.938.938 0 0 0 1.255-1.392A17.484 17.484 0 0 0 32 13.12a17.558 17.558 0 0 0-13.002 5.774 17.558 17.558 0 0 0-4.437 13.517l.979 9.682a16.421 16.421 0 0 0 4.21 9.456c.332.366.68.712 1.038 1.044-4.91 1.462-9.46.916-11.287.587a.478.478 0 0 1-.39-.425l-.578-6.141a.938.938 0 0 0-1.467-.683l-1.9 1.314a.459.459 0 0 1-.472.039.478.478 0 0 1-.275-.403c-.59-7.623 3.845-12.876 3.889-12.927a.938.938 0 0 0-1.209-1.407L2.607 35.38a.464.464 0 0 1-.49.01.472.472 0 0 1-.242-.436c.16-4.677 1.562-8.726 4.17-12.034 1.951-2.477 3.888-3.59 3.905-3.599a.937.937 0 0 0-.458-1.756H5.69a.472.472 0 0 1-.417-.242.453.453 0 0 1 0-.47c1.085-1.85 2.546-3.515 4.344-4.952a.937.937 0 1 0-1.171-1.465c-1.978 1.58-3.59 3.421-4.79 5.47a2.318 2.318 0 0 0-.01 2.35 2.33 2.33 0 0 0 2.044 1.184h1.033a19.418 19.418 0 0 0-2.09 2.242C2.64 24.185.218 28.51 0 34.89a2.353 2.353 0 0 0 3.606 2.075l1.02-.644c-1.226 2.511-2.425 6.21-2.078 10.704a2.337 2.337 0 0 0 1.339 1.952 2.323 2.323 0 0 0 2.346-.19l.582-.404.428 4.548a2.359 2.359 0 0 0 1.924 2.094c.971.175 2.657.407 4.753.407 2.291 0 5.073-.28 7.947-1.213v7.71a.937.937 0 1 0 1.875 0v-7.157a16.45 16.45 0 0 0 4.74 1.823 4.652 4.652 0 0 0 7.035 0 16.451 16.451 0 0 0 4.739-1.823v7.157a.937.937 0 1 0 1.875 0v-7.71c1.612.523 3.314.884 5.076 1.069a.938.938 0 0 0 .196-1.865 23.127 23.127 0 0 1-4.192-.83c.359-.332.706-.679 1.039-1.045a16.42 16.42 0 0 0 4.21-9.456l.978-9.681c.41-4.052-.552-7.987-2.782-11.378a.938.938 0 0 0-1.298-.268zm-6.38 8.955a3.97 3.97 0 0 1 3.965 3.966 3.97 3.97 0 0 1-3.966 3.966 3.97 3.97 0 0 1-3.966-3.966 3.97 3.97 0 0 1 3.966-3.966zM32 43.558c1.337 0 2.616-.57 3.51-1.564a4.727 4.727 0 0 0 1.203-2.924c.387.163.797.285 1.221.362a7.863 7.863 0 0 1 1.946 5.18v1.09H24.12v-1.09c0-1.912.691-3.745 1.946-5.18a5.792 5.792 0 0 0 1.221-.362 4.727 4.727 0 0 0 1.204 2.924A4.726 4.726 0 0 0 32 43.558zM25.022 29.72a3.97 3.97 0 0 1 3.966 3.966 3.97 3.97 0 0 1-3.966 3.966 3.97 3.97 0 0 1-3.966-3.966 3.97 3.97 0 0 1 3.966-3.966zm-3.884 20.569a14.56 14.56 0 0 1-3.733-8.385l-.949-9.383 2.75.642a5.85 5.85 0 0 0 4.558 6.227 9.73 9.73 0 0 0-1.519 5.223v1.32c0 .907.738 1.645 1.645 1.645h3.447v5.963c0 .281.027.557.075.824a14.582 14.582 0 0 1-6.274-4.077zM32 56.328a2.79 2.79 0 0 1-2.787-2.788v-5.963h1.85v2.021a.937.937 0 1 0 1.875 0v-2.021h1.85v5.963A2.79 2.79 0 0 1 32 56.328zm10.863-6.041a14.582 14.582 0 0 1-6.275 4.077c.048-.268.074-.543.074-.824v-5.963h3.448c.907 0 1.645-.738 1.645-1.645v-1.32a9.734 9.734 0 0 0-1.519-5.224 5.85 5.85 0 0 0 4.559-6.227l2.748-.64-.948 9.383a14.558 14.558 0 0 1-3.732 8.383z'/%3E%3Cpath d='M39.166 20.934a.938.938 0 0 0-.069-1.324 5.763 5.763 0 0 0-5.066-1.36 9.711 9.711 0 0 1-4.065 0 5.763 5.763 0 0 0-5.066 1.36.938.938 0 0 0 1.255 1.393 3.89 3.89 0 0 1 3.421-.918c1.607.342 3.238.342 4.845 0a3.891 3.891 0 0 1 3.421.918.934.934 0 0 0 1.325-.069zM34.616 21.739c-.34 0-.68.036-1.01.106a7.675 7.675 0 0 1-3.213 0 4.84 4.84 0 0 0-4.255 1.142.937.937 0 1 0 1.255 1.392 2.968 2.968 0 0 1 2.61-.7 9.54 9.54 0 0 0 3.993 0 2.968 2.968 0 0 1 2.61.7.935.935 0 0 0 1.323-.069.937.937 0 0 0-.069-1.323 4.838 4.838 0 0 0-3.244-1.248z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--teacher-white:url("data:image/svg+xml,%0A%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%23fff'%3E%3Cpath d='M59.369 21.681a19.455 19.455 0 0 0-2.09-2.242h1.032c.855 0 1.618-.443 2.044-1.185a2.318 2.318 0 0 0-.01-2.35C56.885 10 50.993 7.349 48.07 6.349l.554-.465a2.35 2.35 0 0 0 .789-2.299 2.34 2.34 0 0 0-1.656-1.766c-7.4-2.086-13.15 1.083-15.755 2.987C29.398 2.9 23.648-.268 16.248 1.818a2.34 2.34 0 0 0-1.656 1.766 2.35 2.35 0 0 0 .79 2.3l.558.467a26.28 26.28 0 0 0-3.807 1.667.937.937 0 1 0 .885 1.653c2.758-1.477 5.041-1.998 5.063-2.003a.937.937 0 0 0 .4-1.634l-1.895-1.588a.47.47 0 0 1-.16-.468.46.46 0 0 1 .33-.355c6.798-1.917 12.056 1.128 14.309 2.82V9.71a.937.937 0 1 0 1.875 0V6.443c2.253-1.692 7.512-4.736 14.308-2.82a.46.46 0 0 1 .331.354.47.47 0 0 1-.16.47l-1.895 1.587a.937.937 0 0 0 .399 1.634c.085.019 8.593 1.995 12.805 9.184a.453.453 0 0 1 .001.47.472.472 0 0 1-.417.242H54.51a.938.938 0 0 0-.458 1.756c.077.043 7.695 4.433 8.075 15.633a.472.472 0 0 1-.242.436.465.465 0 0 1-.49-.01l-4.492-2.832a.937.937 0 0 0-1.208 1.407c.045.052 4.48 5.27 3.89 12.927a.478.478 0 0 1-.276.403.458.458 0 0 1-.473-.04l-1.899-1.313a.937.937 0 0 0-1.467.683l-.578 6.141a.478.478 0 0 1-.39.425c-.651.117-1.7.271-2.999.342a.937.937 0 0 0 .102 1.872 26.753 26.753 0 0 0 3.23-.369 2.36 2.36 0 0 0 1.923-2.094l.429-4.548.582.403c.7.485 1.577.556 2.346.19a2.337 2.337 0 0 0 1.339-1.951c.346-4.494-.853-8.193-2.079-10.704l1.021.644A2.353 2.353 0 0 0 64 34.89c-.217-6.381-2.638-10.705-4.631-13.209z'/%3E%3Cpath d='M45.359 20.765a.937.937 0 0 0-.269 1.299 15.425 15.425 0 0 1 2.566 8.506l-3.327.776a5.849 5.849 0 0 0-5.35-3.501 5.848 5.848 0 0 0-5.842 5.84c0 1.553.61 2.965 1.602 4.012l.09.84a2.81 2.81 0 0 1-.714 2.204 2.81 2.81 0 0 1-2.115.942 2.81 2.81 0 0 1-2.115-.942 2.81 2.81 0 0 1-.713-2.203l.09-.84a5.819 5.819 0 0 0 1.601-4.012c0-3.221-2.62-5.841-5.841-5.841a5.849 5.849 0 0 0-5.35 3.5l-3.324-.775a15.684 15.684 0 0 1 4.04-10.419A15.68 15.68 0 0 1 32 14.995a15.61 15.61 0 0 1 10.47 4.016.938.938 0 0 0 1.255-1.392A17.484 17.484 0 0 0 32 13.12a17.558 17.558 0 0 0-13.002 5.774 17.558 17.558 0 0 0-4.437 13.517l.979 9.682a16.421 16.421 0 0 0 4.21 9.456c.332.366.68.712 1.038 1.044-4.91 1.462-9.46.916-11.287.587a.478.478 0 0 1-.39-.425l-.578-6.141a.938.938 0 0 0-1.467-.683l-1.9 1.314a.459.459 0 0 1-.472.039.478.478 0 0 1-.275-.403c-.59-7.623 3.845-12.876 3.889-12.927a.938.938 0 0 0-1.209-1.407L2.607 35.38a.464.464 0 0 1-.49.01.472.472 0 0 1-.242-.436c.16-4.677 1.562-8.726 4.17-12.034 1.951-2.477 3.888-3.59 3.905-3.599a.937.937 0 0 0-.458-1.756H5.69a.472.472 0 0 1-.417-.242.453.453 0 0 1 0-.47c1.085-1.85 2.546-3.515 4.344-4.952a.937.937 0 1 0-1.171-1.465c-1.978 1.58-3.59 3.421-4.79 5.47a2.318 2.318 0 0 0-.01 2.35 2.33 2.33 0 0 0 2.044 1.184h1.033a19.418 19.418 0 0 0-2.09 2.242C2.64 24.185.218 28.51 0 34.89a2.353 2.353 0 0 0 3.606 2.075l1.02-.644c-1.226 2.511-2.425 6.21-2.078 10.704a2.337 2.337 0 0 0 1.339 1.952 2.323 2.323 0 0 0 2.346-.19l.582-.404.428 4.548a2.359 2.359 0 0 0 1.924 2.094c.971.175 2.657.407 4.753.407 2.291 0 5.073-.28 7.947-1.213v7.71a.937.937 0 1 0 1.875 0v-7.157a16.45 16.45 0 0 0 4.74 1.823 4.652 4.652 0 0 0 7.035 0 16.451 16.451 0 0 0 4.739-1.823v7.157a.937.937 0 1 0 1.875 0v-7.71c1.612.523 3.314.884 5.076 1.069a.938.938 0 0 0 .196-1.865 23.127 23.127 0 0 1-4.192-.83c.359-.332.706-.679 1.039-1.045a16.42 16.42 0 0 0 4.21-9.456l.978-9.681c.41-4.052-.552-7.987-2.782-11.378a.938.938 0 0 0-1.298-.268zm-6.38 8.955a3.97 3.97 0 0 1 3.965 3.966 3.97 3.97 0 0 1-3.966 3.966 3.97 3.97 0 0 1-3.966-3.966 3.97 3.97 0 0 1 3.966-3.966zM32 43.558c1.337 0 2.616-.57 3.51-1.564a4.727 4.727 0 0 0 1.203-2.924c.387.163.797.285 1.221.362a7.863 7.863 0 0 1 1.946 5.18v1.09H24.12v-1.09c0-1.912.691-3.745 1.946-5.18a5.792 5.792 0 0 0 1.221-.362 4.727 4.727 0 0 0 1.204 2.924A4.726 4.726 0 0 0 32 43.558zM25.022 29.72a3.97 3.97 0 0 1 3.966 3.966 3.97 3.97 0 0 1-3.966 3.966 3.97 3.97 0 0 1-3.966-3.966 3.97 3.97 0 0 1 3.966-3.966zm-3.884 20.569a14.56 14.56 0 0 1-3.733-8.385l-.949-9.383 2.75.642a5.85 5.85 0 0 0 4.558 6.227 9.73 9.73 0 0 0-1.519 5.223v1.32c0 .907.738 1.645 1.645 1.645h3.447v5.963c0 .281.027.557.075.824a14.582 14.582 0 0 1-6.274-4.077zM32 56.328a2.79 2.79 0 0 1-2.787-2.788v-5.963h1.85v2.021a.937.937 0 1 0 1.875 0v-2.021h1.85v5.963A2.79 2.79 0 0 1 32 56.328zm10.863-6.041a14.582 14.582 0 0 1-6.275 4.077c.048-.268.074-.543.074-.824v-5.963h3.448c.907 0 1.645-.738 1.645-1.645v-1.32a9.734 9.734 0 0 0-1.519-5.224 5.85 5.85 0 0 0 4.559-6.227l2.748-.64-.948 9.383a14.558 14.558 0 0 1-3.732 8.383z'/%3E%3Cpath d='M39.166 20.934a.938.938 0 0 0-.069-1.324 5.763 5.763 0 0 0-5.066-1.36 9.711 9.711 0 0 1-4.065 0 5.763 5.763 0 0 0-5.066 1.36.938.938 0 0 0 1.255 1.393 3.89 3.89 0 0 1 3.421-.918c1.607.342 3.238.342 4.845 0a3.891 3.891 0 0 1 3.421.918.934.934 0 0 0 1.325-.069zM34.616 21.739c-.34 0-.68.036-1.01.106a7.675 7.675 0 0 1-3.213 0 4.84 4.84 0 0 0-4.255 1.142.937.937 0 1 0 1.255 1.392 2.968 2.968 0 0 1 2.61-.7 9.54 9.54 0 0 0 3.993 0 2.968 2.968 0 0 1 2.61.7.935.935 0 0 0 1.323-.069.937.937 0 0 0-.069-1.323 4.838 4.838 0 0 0-3.244-1.248z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--news-blue:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%230A5067'%3E%3Cpath d='M60 24H4c-2.205 0-4-1.795-4-4V4c0-2.205 1.795-4 4-4h56c2.205 0 4 1.795 4 4v16c0 2.205-1.795 4-4 4zM4 2.667c-.733 0-1.333.597-1.333 1.333v16c0 .736.6 1.333 1.333 1.333h56c.733 0 1.333-.597 1.333-1.333V4c0-.736-.6-1.333-1.333-1.333H4zM25.333 48H4c-2.205 0-4-1.795-4-4V33.333c0-2.205 1.795-4 4-4h21.333c2.206 0 4 1.795 4 4V44c0 2.205-1.794 4-4 4zM4 32c-.733 0-1.333.597-1.333 1.333V44c0 .736.6 1.333 1.333 1.333h21.333c.734 0 1.334-.597 1.334-1.333V33.333c0-.736-.6-1.333-1.334-1.333H4zm58.667 0H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H1.333a1.334 1.334 0 010-2.667h61.334a1.334 1.334 0 010 2.667zm0 8H1.333a1.334 1.334 0 010-2.667h61.334a1.334 1.334 0 010 2.667z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--news-white:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='white'%3E%3Cpath d='M60 24H4c-2.205 0-4-1.795-4-4V4c0-2.205 1.795-4 4-4h56c2.205 0 4 1.795 4 4v16c0 2.205-1.795 4-4 4zM4 2.667c-.733 0-1.333.597-1.333 1.333v16c0 .736.6 1.333 1.333 1.333h56c.733 0 1.333-.597 1.333-1.333V4c0-.736-.6-1.333-1.333-1.333H4zM25.333 48H4c-2.205 0-4-1.795-4-4V33.333c0-2.205 1.795-4 4-4h21.333c2.206 0 4 1.795 4 4V44c0 2.205-1.794 4-4 4zM4 32c-.733 0-1.333.597-1.333 1.333V44c0 .736.6 1.333 1.333 1.333h21.333c.734 0 1.334-.597 1.334-1.333V33.333c0-.736-.6-1.333-1.334-1.333H4zm58.667 0H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H36a1.334 1.334 0 010-2.667h26.667a1.334 1.334 0 010 2.667zm0 8H1.333a1.334 1.334 0 010-2.667h61.334a1.334 1.334 0 010 2.667zm0 8H1.333a1.334 1.334 0 010-2.667h61.334a1.334 1.334 0 010 2.667z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--close:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M4.708 4L7.853.856a.5.5 0 10-.707-.707L4 3.293.854.148a.5.5 0 10-.707.707l3.146 3.146L.147 7.147a.5.5 0 10.707.707L4 4.708l3.146 3.146a.499.499 0 00.707 0 .5.5 0 000-.707L4.708 4z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--user:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 22.1C6.43 22.1 1.9 17.57 1.9 12 1.9 6.43 6.43 1.9 12 1.9c5.57 0 10.1 4.531 10.1 10.1 0 5.57-4.53 10.1-10.1 10.1z' fill='%230A5067'/%3E%3Cpath d='M12 14.13c-3.375 0-6.532 1.692-8.89 4.764l1.507 1.157c1.99-2.594 4.612-4.022 7.383-4.022 2.77 0 5.393 1.428 7.384 4.021l1.507-1.156c-2.359-3.072-5.516-4.765-8.89-4.765z' fill='%230A5067'/%3E%3Cpath d='M11.998 4.306c-2.724 0-4.94 2.23-4.94 4.971s2.216 4.971 4.94 4.971 4.94-2.23 4.94-4.97c0-2.742-2.216-4.972-4.94-4.972zm0 8.042c-1.676 0-3.04-1.377-3.04-3.071 0-1.694 1.364-3.071 3.04-3.071s3.04 1.378 3.04 3.071c0 1.693-1.364 3.071-3.04 3.071z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--vk:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.63 9.807c.565.55 1.16 1.068 1.666 1.675.223.269.435.547.596.86.23.444.022.933-.376.96l-2.477-.002c-.639.053-1.148-.204-1.577-.64-.342-.35-.66-.722-.99-1.083a2.344 2.344 0 00-.445-.396c-.338-.22-.632-.152-.825.2-.197.359-.242.756-.26 1.156-.027.583-.204.736-.79.763-1.251.059-2.44-.13-3.543-.762-.973-.557-1.728-1.343-2.385-2.233C1.945 8.573.966 6.67.086 4.712c-.198-.441-.053-.678.433-.686a67.208 67.208 0 012.425-.002c.328.005.546.194.672.504A15.03 15.03 0 005.26 7.573c.179.252.36.505.62.682.288.197.506.132.641-.188.086-.203.124-.421.143-.639.064-.747.073-1.493-.04-2.238-.069-.465-.33-.766-.794-.854-.237-.045-.202-.133-.087-.268.199-.233.386-.378.76-.378H9.3c.44.087.539.285.599.728l.002 3.109c-.004.172.086.681.395.795.248.08.41-.117.56-.274.67-.712 1.148-1.552 1.575-2.423.19-.382.353-.78.51-1.177.118-.295.301-.44.633-.433l2.694.002c.08 0 .161.001.238.015.454.077.579.272.438.716-.22.695-.65 1.275-1.07 1.857-.45.621-.93 1.222-1.376 1.847-.409.571-.377.859.132 1.355z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--vk-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.63 9.807c.565.55 1.16 1.068 1.666 1.675.223.269.435.547.596.86.23.444.022.933-.376.96l-2.477-.002c-.639.053-1.148-.204-1.577-.64-.342-.35-.66-.722-.99-1.083a2.344 2.344 0 00-.445-.396c-.338-.22-.632-.152-.825.2-.197.359-.242.756-.26 1.156-.027.583-.204.736-.79.763-1.251.059-2.44-.13-3.543-.762-.973-.557-1.728-1.343-2.385-2.233C1.945 8.573.966 6.67.086 4.712c-.198-.441-.053-.678.433-.686a67.208 67.208 0 012.425-.002c.328.005.546.194.672.504A15.03 15.03 0 005.26 7.573c.179.252.36.505.62.682.288.197.506.132.641-.188.086-.203.124-.421.143-.639.064-.747.073-1.493-.04-2.238-.069-.465-.33-.766-.794-.854-.237-.045-.202-.133-.087-.268.199-.233.386-.378.76-.378H9.3c.44.087.539.285.599.728l.002 3.109c-.004.172.086.681.395.795.248.08.41-.117.56-.274.67-.712 1.148-1.552 1.575-2.423.19-.382.353-.78.51-1.177.118-.295.301-.44.633-.433l2.694.002c.08 0 .161.001.238.015.454.077.579.272.438.716-.22.695-.65 1.275-1.07 1.857-.45.621-.93 1.222-1.376 1.847-.409.571-.377.859.132 1.355z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--insta-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.688 0H5.311A5.313 5.313 0 000 5.313v6.375A5.313 5.313 0 005.313 17h6.375A5.313 5.313 0 0017 11.687V5.314A5.313 5.313 0 0011.687 0zm3.718 11.688a3.723 3.723 0 01-3.719 3.718H5.314a3.723 3.723 0 01-3.72-3.719V5.314a3.723 3.723 0 013.72-3.72h6.375a3.723 3.723 0 013.718 3.72v6.375z' fill='%230A5067'/%3E%3Cpath d='M8.5 4.25a4.25 4.25 0 100 8.5 4.25 4.25 0 000-8.5zm0 6.906A2.66 2.66 0 015.844 8.5 2.66 2.66 0 018.5 5.844 2.66 2.66 0 0111.156 8.5 2.66 2.66 0 018.5 11.156zM13.068 4.498a.566.566 0 100-1.133.566.566 0 000 1.133z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--rt-blue:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M21.272 0H5.728A5.728 5.728 0 0 0 0 5.728v15.544A5.728 5.728 0 0 0 5.728 27h15.544A5.728 5.728 0 0 0 27 21.272V5.728A5.728 5.728 0 0 0 21.272 0z' fill='%230A5067'/%3E%3Cpath d='M22.124 7.507a1.706 1.706 0 1 0 0-3.412 1.706 1.706 0 0 0 0 3.412z' fill='%23FAB826'/%3E%3Cpath d='M17.055 7.318H5.066v13.328h3.337V16.31h6.394l2.918 4.336h3.736l-3.217-4.356c1-.16 1.718-.54 2.158-1.14.44-.599.66-1.558.66-2.837v-.999c0-.759-.08-1.358-.22-1.818-.14-.46-.38-.86-.72-1.219-.36-.34-.759-.58-1.239-.74-.48-.139-1.079-.219-1.818-.219zm-.54 6.054H8.404v-3.117h8.113c.46 0 .779.08.939.22.16.14.26.4.26.78v1.118c0 .4-.1.66-.26.8s-.48.2-.94.2z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ok-blue:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M16.265 19.621a13.041 13.041 0 0 0 4.102-1.708l-.052.032a2.044 2.044 0 0 0-2.186-3.453l.009-.005a8.76 8.76 0 0 1-4.692 1.345 8.813 8.813 0 0 1-4.727-1.367l.036.022a2.042 2.042 0 0 0-2.808.628l-.004.007v.006a2.038 2.038 0 0 0 .63 2.808l.008.004a12.772 12.772 0 0 0 3.962 1.657l.088.017-3.903 3.898a2.02 2.02 0 0 0-.605 1.445c0 .55.22 1.049.574 1.413l.033.034c.367.368.874.595 1.435.595.56 0 1.067-.227 1.434-.595l3.849-3.83 3.825 3.832a2.04 2.04 0 1 0 2.887-2.886l-3.895-3.899zm-2.819-5.683a6.968 6.968 0 1 0-6.974-6.969v.007a6.975 6.975 0 0 0 6.974 6.962zm0-9.853a2.885 2.885 0 1 1-2.885 2.89v-.002a2.888 2.888 0 0 1 2.886-2.888z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1--insta-white:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.688 0H5.311A5.313 5.313 0 000 5.313v6.375A5.313 5.313 0 005.313 17h6.375A5.313 5.313 0 0017 11.687V5.314A5.313 5.313 0 0011.687 0zm3.718 11.688a3.723 3.723 0 01-3.719 3.718H5.314a3.723 3.723 0 01-3.72-3.719V5.314a3.723 3.723 0 013.72-3.72h6.375a3.723 3.723 0 013.718 3.72v6.375z' fill='white'/%3E%3Cpath d='M8.5 4.25a4.25 4.25 0 100 8.5 4.25 4.25 0 000-8.5zm0 6.906A2.66 2.66 0 015.844 8.5 2.66 2.66 0 018.5 5.844 2.66 2.66 0 0111.156 8.5 2.66 2.66 0 018.5 11.156zM13.068 4.498a.566.566 0 100-1.133.566.566 0 000 1.133z' fill='white'/%3E%3C/svg%3E");*/
    /*1*/--diss-blue:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' fill='%230A5067'%3E%3Cpath d='M50.839 0H19.801c-3.848 0-6.952 3.104-7.014 6.952-3.725.187-6.642 3.29-6.642 7.015v43.019A7.05 7.05 0 0013.159 64h31.038c3.849 0 6.952-3.104 7.014-6.953 3.725-.186 6.643-3.29 6.643-7.014V7.077C57.916 3.166 54.75 0 50.839 0zm-1.924 56.986a4.716 4.716 0 01-4.718 4.717H13.159a4.65 4.65 0 01-4.656-4.656v-43.08a4.65 4.65 0 014.656-4.656h25.079v10.802a1.18 1.18 0 001.18 1.179h9.497v35.694zm-8.319-38.053v-7.76l6.89 7.76h-6.89zm10.678 35.818V20.113c0-.125-.063-.31-.063-.435 0-.062-.062-.124-.062-.124-.062-.062-.062-.124-.124-.186L40.286 7.325c-.062-.062-.186-.124-.31-.186-.062 0-.062-.062-.124-.062a1.17 1.17 0 00-.497-.125h-24.21c.063-2.545 2.111-4.593 4.656-4.593H50.84a4.65 4.65 0 014.656 4.656v43.08h.062a4.72 4.72 0 01-4.284 4.656zM14.587 21.292h10.366a1.18 1.18 0 100-2.359H14.587a1.18 1.18 0 00-1.18 1.18 1.14 1.14 0 001.18 1.179zm10.304 28.493H14.587a1.18 1.18 0 100 2.359h10.366a1.18 1.18 0 001.18-1.18c-.062-.62-.559-1.18-1.242-1.18zM13.407 27.934a1.18 1.18 0 001.18 1.18h27.685a1.18 1.18 0 001.18-1.18c0-.62-.559-1.18-1.18-1.18H14.587a1.18 1.18 0 00-1.18 1.18zm28.865 4.594H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 001.18-1.18c0-.62-.559-1.18-1.18-1.18zm0 5.835H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 100-2.36zm0 5.773H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 100-2.36z'/%3E%3C/svg%3E");
    /*1*/--diss-white:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' fill='white'%3E%3Cpath d='M50.839 0H19.801c-3.848 0-6.952 3.104-7.014 6.952-3.725.187-6.642 3.29-6.642 7.015v43.019A7.05 7.05 0 0013.159 64h31.038c3.849 0 6.952-3.104 7.014-6.953 3.725-.186 6.643-3.29 6.643-7.014V7.077C57.916 3.166 54.75 0 50.839 0zm-1.924 56.986a4.716 4.716 0 01-4.718 4.717H13.159a4.65 4.65 0 01-4.656-4.656v-43.08a4.65 4.65 0 014.656-4.656h25.079v10.802a1.18 1.18 0 001.18 1.179h9.497v35.694zm-8.319-38.053v-7.76l6.89 7.76h-6.89zm10.678 35.818V20.113c0-.125-.063-.31-.063-.435 0-.062-.062-.124-.062-.124-.062-.062-.062-.124-.124-.186L40.286 7.325c-.062-.062-.186-.124-.31-.186-.062 0-.062-.062-.124-.062a1.17 1.17 0 00-.497-.125h-24.21c.063-2.545 2.111-4.593 4.656-4.593H50.84a4.65 4.65 0 014.656 4.656v43.08h.062a4.72 4.72 0 01-4.284 4.656zM14.587 21.292h10.366a1.18 1.18 0 100-2.359H14.587a1.18 1.18 0 00-1.18 1.18 1.14 1.14 0 001.18 1.179zm10.304 28.493H14.587a1.18 1.18 0 100 2.359h10.366a1.18 1.18 0 001.18-1.18c-.062-.62-.559-1.18-1.242-1.18zM13.407 27.934a1.18 1.18 0 001.18 1.18h27.685a1.18 1.18 0 001.18-1.18c0-.62-.559-1.18-1.18-1.18H14.587a1.18 1.18 0 00-1.18 1.18zm28.865 4.594H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 001.18-1.18c0-.62-.559-1.18-1.18-1.18zm0 5.835H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 100-2.36zm0 5.773H14.587a1.18 1.18 0 100 2.359h27.685a1.18 1.18 0 100-2.36z'/%3E%3C/svg%3E");
    /*1*/--lect-blue:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%230A5067'%3E%3Cpath d='M3.759 51.648a1.25 1.25 0 001.434 1.087c.076-.012 7.55-1.163 11.46-.034 5.638 1.629 9.417 5.671 10.37 6.778A5.006 5.006 0 0032 64a5.006 5.006 0 004.977-4.522c.95-1.108 4.707-5.14 10.37-6.776 3.903-1.127 11.385.022 11.46.034a1.25 1.25 0 001.434-1.087l1.21-10.164a1.25 1.25 0 00-2.482-.296l-1.06 8.903c-2.455-.298-7.843-.777-11.256.208-4.34 1.254-7.641 3.717-9.653 5.57v-31.8c.681-1.194 4.079-6.569 10-6.569 4.605 0 10.135 1.54 14.398 3.284l-1.1 9.232a1.25 1.25 0 002.483.296l1.21-10.164a1.25 1.25 0 00-.724-1.286c-.086-.039-1.937-.875-4.687-1.764l.912-8.21A1.25 1.25 0 0058.25 7.5c-.99 0-1.982.058-2.965.173l.462-6.332A1.25 1.25 0 0054.5 0c-9.252 0-17.174 6.692-18.7 15.84-1.313 7.947-1.3 7.698-1.3 7.91 0 1.378-1.122 2.5-2.5 2.5a2.503 2.503 0 01-2.5-2.5c0-.263-.086-.53-1.3-7.91C26.676 6.712 18.773 0 9.5 0a1.25 1.25 0 00-1.247 1.34l.462 6.333A25.559 25.559 0 005.75 7.5a1.25 1.25 0 00-1.242 1.388l.912 8.21C2.67 17.986.82 18.822.733 18.861a1.25 1.25 0 00-.724 1.286l3.75 31.5zm53.09-41.605l-.704 6.33C52.791 15.46 49.72 15 47 15c-1.374 0-2.63.222-3.771.593a22.994 22.994 0 0113.62-5.55zM38.267 16.25A16.401 16.401 0 0153.15 2.554l-.404 5.547a25.5 25.5 0 00-14.67 9.293l.19-1.143zM32 28.75c.91 0 1.764-.246 2.5-.673V59c0 1.378-1.122 2.5-2.5 2.5a2.503 2.503 0 01-2.5-2.5V28.077c.736.427 1.59.673 2.5.673zm-6.267-12.5l.19 1.144A25.505 25.505 0 0011.254 8.1l-.405-5.547A16.4 16.4 0 0125.733 16.25zm-4.962-.657A12.128 12.128 0 0017 15c-2.72 0-5.79.461-9.145 1.372l-.704-6.33a22.995 22.995 0 0113.62 5.551zM17 17.5c5.92 0 9.318 5.374 10 6.569v31.8c-2.012-1.853-5.314-4.316-9.653-5.57-3.131-.904-8.03-.599-11.256-.208L2.602 20.783C6.87 19.038 12.4 17.5 17 17.5z'/%3E%3Cpath d='M60.875 37a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--lect-white:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='white'%3E%3Cpath d='M3.759 51.648a1.25 1.25 0 001.434 1.087c.076-.012 7.55-1.163 11.46-.034 5.638 1.629 9.417 5.671 10.37 6.778A5.006 5.006 0 0032 64a5.006 5.006 0 004.977-4.522c.95-1.108 4.707-5.14 10.37-6.776 3.903-1.127 11.385.022 11.46.034a1.25 1.25 0 001.434-1.087l1.21-10.164a1.25 1.25 0 00-2.482-.296l-1.06 8.903c-2.455-.298-7.843-.777-11.256.208-4.34 1.254-7.641 3.717-9.653 5.57v-31.8c.681-1.194 4.079-6.569 10-6.569 4.605 0 10.135 1.54 14.398 3.284l-1.1 9.232a1.25 1.25 0 002.483.296l1.21-10.164a1.25 1.25 0 00-.724-1.286c-.086-.039-1.937-.875-4.687-1.764l.912-8.21A1.25 1.25 0 0058.25 7.5c-.99 0-1.982.058-2.965.173l.462-6.332A1.25 1.25 0 0054.5 0c-9.252 0-17.174 6.692-18.7 15.84-1.313 7.947-1.3 7.698-1.3 7.91 0 1.378-1.122 2.5-2.5 2.5a2.503 2.503 0 01-2.5-2.5c0-.263-.086-.53-1.3-7.91C26.676 6.712 18.773 0 9.5 0a1.25 1.25 0 00-1.247 1.34l.462 6.333A25.559 25.559 0 005.75 7.5a1.25 1.25 0 00-1.242 1.388l.912 8.21C2.67 17.986.82 18.822.733 18.861a1.25 1.25 0 00-.724 1.286l3.75 31.5zm53.09-41.605l-.704 6.33C52.791 15.46 49.72 15 47 15c-1.374 0-2.63.222-3.771.593a22.994 22.994 0 0113.62-5.55zM38.267 16.25A16.401 16.401 0 0153.15 2.554l-.404 5.547a25.5 25.5 0 00-14.67 9.293l.19-1.143zM32 28.75c.91 0 1.764-.246 2.5-.673V59c0 1.378-1.122 2.5-2.5 2.5a2.503 2.503 0 01-2.5-2.5V28.077c.736.427 1.59.673 2.5.673zm-6.267-12.5l.19 1.144A25.505 25.505 0 0011.254 8.1l-.405-5.547A16.4 16.4 0 0125.733 16.25zm-4.962-.657A12.128 12.128 0 0017 15c-2.72 0-5.79.461-9.145 1.372l-.704-6.33a22.995 22.995 0 0113.62 5.551zM17 17.5c5.92 0 9.318 5.374 10 6.569v31.8c-2.012-1.853-5.314-4.316-9.653-5.57-3.131-.904-8.03-.599-11.256-.208L2.602 20.783C6.87 19.038 12.4 17.5 17 17.5z'/%3E%3Cpath d='M60.875 37a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--other-blue:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.316 44.729a1 1 0 001.412-.045l15-16a1 1 0 10-1.458-1.368l-15 16a1 1 0 00.045 1.413zM19.27 44.684a1 1 0 101.458-1.368l-15-16a1 1 0 10-1.458 1.368l15 16zM55.294 39.293l-5 5a1 1 0 101.414 1.414l5-5a1 1 0 00-1.414-1.414zM7.293 39.293a1 1 0 000 1.414l5 5a1 1 0 001.414-1.414l-5-5a1 1 0 00-1.414 0zM10.606 16.919L19 20.516V34a1 1 0 00.684.948A38.992 38.992 0 0032 36.935a38.988 38.988 0 0012.316-1.987A1 1 0 0045 34V23.857a1 1 0 10-2 0v9.414a37.185 37.185 0 01-22 0v-11.9l10.606 4.545a1 1 0 00.788 0L52 17.516v5.668a3 3 0 102 0V16a1 1 0 00-.606-.919l-21-9a1.007 1.007 0 00-.788 0L23.1 9.727a1.001 1.001 0 00.4 1.931 1 1 0 00.388-.094L32 8.088 50.46 16 32 23.912 13.539 16l6.855-2.938a1 1 0 10-.788-1.838l-9 3.857a.999.999 0 000 1.838zM53 27a1 1 0 110-2 1 1 0 010 2zM31 40v2a1 1 0 002 0v-2a1 1 0 00-2 0zM38.294 39.293l-2 2a1 1 0 101.414 1.414l2-2a1 1 0 00-1.414-1.414zM24.293 39.293a1 1 0 000 1.414l2 2a1 1 0 001.414-1.414l-2-2a1 1 0 00-1.414 0zM61.2 56.021L33 50.186a3 3 0 013.776-2.864l18.741 5.046a1 1 0 00.519-1.931L37.3 45.391a4.961 4.961 0 00-5.3 1.836 4.966 4.966 0 00-5.3-1.836L7.96 50.437A4 4 0 005 54.3v1.266l-2.2.456A1 1 0 002 57v4a1 1 0 001.1 1l13.07-1.356a1.001 1.001 0 00-.206-1.991L4 59.892v-2.078l27-5.586V56a1 1 0 002 0v-3.772l27 5.586v2.078l-23.9-2.473a1.032 1.032 0 00-.773.253 1 1 0 00-.33.742V59a1 1 0 01-1 1H30a1 1 0 01-1-1v-.586a.998.998 0 00-1.103-.995l-7.953.822a1 1 0 10.206 1.99l6.9-.712A3 3 0 0030 62h4a3 3 0 002.955-2.481L60.9 62c.035 0 .069.005.1.005a1 1 0 001-1V57a1 1 0 00-.8-.979zM7 54.3a2 2 0 011.48-1.931l18.74-5.046A3.001 3.001 0 0131 50.186L7 55.151V54.3z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--other-white:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.316 44.729a1 1 0 001.412-.045l15-16a1 1 0 10-1.458-1.368l-15 16a1 1 0 00.045 1.413zM19.27 44.684a1 1 0 101.458-1.368l-15-16a1 1 0 10-1.458 1.368l15 16zM55.294 39.293l-5 5a1 1 0 101.414 1.414l5-5a1 1 0 00-1.414-1.414zM7.293 39.293a1 1 0 000 1.414l5 5a1 1 0 001.414-1.414l-5-5a1 1 0 00-1.414 0zM10.606 16.919L19 20.516V34a1 1 0 00.684.948A38.992 38.992 0 0032 36.935a38.988 38.988 0 0012.316-1.987A1 1 0 0045 34V23.857a1 1 0 10-2 0v9.414a37.185 37.185 0 01-22 0v-11.9l10.606 4.545a1 1 0 00.788 0L52 17.516v5.668a3 3 0 102 0V16a1 1 0 00-.606-.919l-21-9a1.007 1.007 0 00-.788 0L23.1 9.727a1.001 1.001 0 00.4 1.931 1 1 0 00.388-.094L32 8.088 50.46 16 32 23.912 13.539 16l6.855-2.938a1 1 0 10-.788-1.838l-9 3.857a.999.999 0 000 1.838zM53 27a1 1 0 110-2 1 1 0 010 2zM31 40v2a1 1 0 002 0v-2a1 1 0 00-2 0zM38.294 39.293l-2 2a1 1 0 101.414 1.414l2-2a1 1 0 00-1.414-1.414zM24.293 39.293a1 1 0 000 1.414l2 2a1 1 0 001.414-1.414l-2-2a1 1 0 00-1.414 0zM61.2 56.021L33 50.186a3 3 0 013.776-2.864l18.741 5.046a1 1 0 00.519-1.931L37.3 45.391a4.961 4.961 0 00-5.3 1.836 4.966 4.966 0 00-5.3-1.836L7.96 50.437A4 4 0 005 54.3v1.266l-2.2.456A1 1 0 002 57v4a1 1 0 001.1 1l13.07-1.356a1.001 1.001 0 00-.206-1.991L4 59.892v-2.078l27-5.586V56a1 1 0 002 0v-3.772l27 5.586v2.078l-23.9-2.473a1.032 1.032 0 00-.773.253 1 1 0 00-.33.742V59a1 1 0 01-1 1H30a1 1 0 01-1-1v-.586a.998.998 0 00-1.103-.995l-7.953.822a1 1 0 10.206 1.99l6.9-.712A3 3 0 0030 62h4a3 3 0 002.955-2.481L60.9 62c.035 0 .069.005.1.005a1 1 0 001-1V57a1 1 0 00-.8-.979zM7 54.3a2 2 0 011.48-1.931l18.74-5.046A3.001 3.001 0 0131 50.186L7 55.151V54.3z' fill='white'/%3E%3C/svg%3E");
    /*1*/--rub:url("data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.009 8.033h-5.021a.938.938 0 00-.938.938v7.096h-1.07a.937.937 0 100 1.875h1.07v2.141h-1.07a.938.938 0 000 1.875h1.07v2.075a.938.938 0 001.875 0v-2.075h4.084a.938.938 0 000-1.875h-4.084v-2.141h4.084a4.96 4.96 0 004.954-4.954c0-2.8-2.28-4.955-4.954-4.955zm0 8.034h-4.084V9.908h4.084a3.076 3.076 0 013.079 3.08 3.083 3.083 0 01-3.08 3.079z' fill='%23094153'/%3E%3Cpath d='M16 0C7.178 0 0 7.178 0 16s7.178 16 16 16 16-7.178 16-16S24.822 0 16 0zm0 30.125C8.211 30.125 1.875 23.789 1.875 16S8.211 1.875 16 1.875 30.125 8.211 30.125 16 23.789 30.125 16 30.125z' fill='%23094153'/%3E%3C/svg%3E");
    /*1*/--add-user:url("data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M27.314 4.686A15.895 15.895 0 0016 0 15.895 15.895 0 004.686 4.686 15.895 15.895 0 000 16c0 4.274 1.664 8.292 4.686 11.314A15.895 15.895 0 0016 32c4.274 0 8.292-1.664 11.314-4.686A15.895 15.895 0 0032 16c0-4.274-1.664-8.292-4.686-11.314zM8.02 27.65A8.078 8.078 0 0116 20.954c3.97 0 7.31 2.842 7.979 6.695A14.045 14.045 0 0116 30.125c-2.959 0-5.707-.915-7.979-2.476zm2.892-13.657A5.093 5.093 0 0116 8.904a5.093 5.093 0 015.087 5.088A5.093 5.093 0 0116 19.079a5.093 5.093 0 01-5.087-5.087zm14.69 12.357a9.968 9.968 0 00-2.912-4.693 9.966 9.966 0 00-2.897-1.83 6.962 6.962 0 003.169-5.834A6.97 6.97 0 0016 7.029a6.97 6.97 0 00-6.962 6.963 6.962 6.962 0 003.168 5.835 9.969 9.969 0 00-2.897 1.829 9.968 9.968 0 00-2.912 4.692A14.09 14.09 0 011.875 16C1.875 8.211 8.211 1.875 16 1.875S30.125 8.211 30.125 16a14.09 14.09 0 01-4.522 10.349z' fill='%23094153'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--visa:url("data:image/svg+xml,%3Csvg width='115' height='36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.007 0l-5.771 35.928h9.225L56.229 0h-9.222zm27.827 14.635c-3.224-1.592-5.2-2.667-5.2-4.296.039-1.481 1.67-2.998 5.315-2.998 2.997-.076 5.2.629 6.871 1.33l.837.374 1.254-7.517C82.09.823 79.2.047 75.631.047c-9.11 0-15.525 4.738-15.564 11.515-.076 5 4.592 7.775 8.086 9.44 3.568 1.707 4.783 2.815 4.783 4.332-.04 2.33-2.886 3.404-5.541 3.404-3.68 0-5.657-.553-8.657-1.851l-1.215-.554-1.29 7.812c2.167.963 6.152 1.812 10.289 1.855 9.681 0 15.981-4.666 16.06-11.888.032-3.962-2.43-6.997-7.748-9.477zM107.562.111h-7.138c-2.199 0-3.87.633-4.822 2.89L81.898 35.929h9.682l2.666-7.129h10.832l1.384 7.158h8.539L107.562.11zm-10.63 21.494c.186.018 3.716-11.637 3.716-11.637l2.81 11.637h-6.526zM33.526 0l-9.038 24.41-.985-4.814c-1.671-5.554-6.91-11.59-12.758-14.588l8.277 30.884h9.76L43.288.004h-9.761V0z' fill='%232394BC'/%3E%3Cpath d='M20.463 4.634c-.704-2.74-2.95-4.587-6.002-4.627H.147L0 .672c11.166 2.754 20.538 11.227 23.579 19.197L20.463 4.634z' fill='%23EFC75E'/%3E%3C/svg%3E");
    /*1*/--mastercard:url("data:image/svg+xml,%3Csvg width='56' height='36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.01.217C8.08.217 0 8.243 0 18.108 0 27.974 8.08 36 18.01 36c9.93 0 18.01-8.026 18.01-17.892C36.02 8.243 27.94.217 18.01.217z' fill='%23FFBC4F'/%3E%3Cpath d='M37.99.217c-9.93 0-18.01 8.026-18.01 17.891C19.98 27.974 28.06 36 37.99 36 47.921 36 56 27.974 56 18.108 56 8.243 47.921.217 37.99.217z' fill='%23FF7D4F'/%3E%3Cpath d='M26.994 23.98c0-.9-.734-1.63-1.64-1.63h-4.862a17.661 17.661 0 001.15 3.26h3.712c.906 0 1.64-.73 1.64-1.63zm.002-10.609c0-.9-.734-1.63-1.64-1.63H21.16a17.648 17.648 0 00-.907 3.26h5.102c.906 0 1.64-.73 1.64-1.63zm4.513 5.304c0-.9-.735-1.63-1.641-1.63h-9.855a17.914 17.914 0 00.103 3.26h9.752c.906 0 1.64-.73 1.64-1.63z' fill='%23FFBC4F'/%3E%3C/svg%3E");
    /*1*/--mircard:url("data:image/svg+xml,%3Csvg width='126' height='36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M111.856 0H87.941c1.286 7.971 9 15.429 17.486 15.429h19.029c.257-.772.257-1.8.257-2.572 0-7.2-5.657-12.857-12.857-12.857z' fill='url(%23paint0_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M90 16.714V36h11.571V25.714h10.286c5.657 0 10.543-3.857 12.086-9H90zM48.855 0v36h10.286s2.572 0 3.857-2.571l9-18h1.286V36h11.572V0H74.57s-2.572.257-3.857 2.571l-9 18h-1.286V0H48.855zM0 36V0h11.571s3.343 0 5.143 5.143c4.629 13.628 5.143 15.428 5.143 15.428S22.886 17.23 27 5.143C28.8 0 32.143 0 32.143 0h11.571v36H32.143V16.714h-1.286L24.43 36h-5.143l-6.429-19.286h-1.286V36H0z' fill='%234DB45F'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='87.875' y1='7.714' x2='124.713' y2='7.714' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300B4E6'/%3E%3Cstop offset='1' stop-color='%23088CCB'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    /*1--applepay:url("data:image/svg+xml,%3Csvg width='36' height='36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.978 8.986c1.442-.042 2.637.45 3.84.9.534.204 1.068.408 1.624.555.436.12.857.064 1.272-.091.717-.26 1.428-.52 2.145-.788 1.251-.464 2.538-.78 3.874-.696 2.496.155 4.613 1.125 6.223 3.087.28.338.26.373-.092.619-2.608 1.835-3.747 4.36-3.396 7.516.31 2.806 1.793 4.817 4.296 6.09.324.161.387.309.267.64a21.231 21.231 0 01-3.564 6.25c-.464.562-.936 1.11-1.484 1.582-1.23 1.048-2.623 1.28-4.177.872-.794-.211-1.532-.57-2.313-.83-1.505-.492-2.988-.4-4.479.078-.78.253-1.518.597-2.313.815-1.547.429-2.855.05-4.008-1.034-1.955-1.828-3.403-4.014-4.486-6.44a21.853 21.853 0 01-1.673-5.54c-.387-2.384-.415-4.754.316-7.081.59-1.906 1.61-3.537 3.192-4.767C9.52 9.577 11.2 8.958 12.978 8.986zM18.633 7.72c.07-2.229 1.041-4.015 2.693-5.463 1.196-1.048 2.595-1.652 4.142-1.94.239-.043.337-.008.344.26.021 2.643-.956 4.823-2.974 6.539-1.09.928-2.334 1.385-3.762 1.399-.351.007-.499-.092-.45-.45.021-.106.007-.225.007-.345z' fill='%23A7A7A7'/%3E%3C/svg%3E");*/
    /*1--googlepay:url("data:image/svg+xml,%3Csvg width='36' height='36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.757 18c0-1.17.194-2.29.54-3.341l-6.066-4.633A17.99 17.99 0 00.383 18c0 2.866.665 5.57 1.846 7.968l6.063-4.641A10.648 10.648 0 017.757 18z' fill='%23FBBC05'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.412 7.364c2.54 0 4.834.9 6.636 2.372L30.292 4.5C27.097 1.718 23 0 18.412 0A17.972 17.972 0 002.234 10.026l6.067 4.633a10.623 10.623 0 0110.11-7.295z' fill='%23EA4335'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.412 28.636A10.623 10.623 0 018.3 21.342l-6.067 4.631A17.971 17.971 0 0018.412 36c4.396 0 8.594-1.561 11.744-4.486l-5.758-4.452c-1.625 1.024-3.671 1.574-5.986 1.574z' fill='%2334A853'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M35.616 18c0-1.064-.164-2.21-.41-3.273H18.41v6.955h9.668c-.483 2.371-1.799 4.194-3.682 5.38l5.759 4.452c3.309-3.072 5.461-7.647 5.461-13.514z' fill='%234285F4'/%3E%3C/svg%3E");*/
    /*1*/--date:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.938 1.25H12.5V.5a.5.5 0 10-1 0v.75h-7V.5a.5.5 0 10-1 0v.75H2.062A2.065 2.065 0 000 3.313v10.624C0 15.075.925 16 2.063 16h11.874A2.065 2.065 0 0016 13.937V3.313a2.065 2.065 0 00-2.063-2.063zm-11.876 1H3.5v.5a.5.5 0 001 0v-.5h7v.5a.5.5 0 101 0v-.5h1.438c.585 0 1.062.477 1.062 1.063V4.5H1V3.312c0-.585.477-1.062 1.063-1.062zM13.938 15H2.062A1.064 1.064 0 011 13.937V5.5h14v8.438c0 .585-.477 1.062-1.063 1.062z' fill='%23729FAE'/%3E%3C/svg%3E");
    /*1*/--cat:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.25 13.188H2.375v.937H4.25v-.938zm4.688 0H7.062v.937h1.875v-.938z' fill='%238BB7C6'/%3E%3Cpath d='M14.094 0H11.28a1.4 1.4 0 00-.937.36A1.4 1.4 0 009.406 0H6.594a1.4 1.4 0 00-.938.36A1.4 1.4 0 004.72 0H1.906C1.131 0 .5.63.5 1.406v13.188C.5 15.369 1.13 16 1.906 16H4.72a1.4 1.4 0 00.937-.36 1.4 1.4 0 00.938.36h2.812a1.4 1.4 0 00.938-.36 1.4 1.4 0 00.937.36h2.813c.775 0 1.406-.63 1.406-1.406V1.406A1.409 1.409 0 0014.094 0zM5.188 14.594a.47.47 0 01-.47.469H1.907a.47.47 0 01-.468-.47V1.407a.47.47 0 01.468-.468H4.72a.47.47 0 01.468.468v13.188zm4.687 0a.47.47 0 01-.469.469H6.594a.47.47 0 01-.469-.47V1.407a.47.47 0 01.469-.468h2.812a.47.47 0 01.469.468v13.188zm4.688 0a.47.47 0 01-.47.469h-2.812a.47.47 0 01-.469-.47V1.407a.47.47 0 01.47-.468h2.812a.47.47 0 01.469.468v13.188z' fill='%238BB7C6'/%3E%3Cpath d='M13.625 13.188H11.75v.937h1.875v-.938zm0-1.875H11.75v.937h1.875v-.938zM4.25 4.688H2.375v.937H4.25v-.938zm4.688 0H7.062v.937h1.875v-.938zM4.25 11.313H2.375v.937H4.25v-.938zm4.688 0H7.062v.937h1.875v-.938zm4.687-6.625H11.75v.937h1.875v-.938zM3.313 1.875a.939.939 0 000 1.875.939.939 0 000-1.875zm4.687 0A.939.939 0 008 3.75a.939.939 0 000-1.875zm4.688 0a.939.939 0 000 1.875.939.939 0 000-1.875z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--views:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%238BB7C6'%3E%3Cpath d='M15.903 7.584a9.16 9.16 0 00-1.702-2.344 8.581 8.581 0 00-2.473-1.736c-1.135-.524-2.39-.79-3.728-.79-1.33 0-2.579.263-3.709.78a8.574 8.574 0 00-2.469 1.722A9.213 9.213 0 00.097 7.583a.944.944 0 000 .833 9.158 9.158 0 001.702 2.344 8.582 8.582 0 002.473 1.736c1.135.524 2.39.79 3.728.79 1.33 0 2.579-.263 3.709-.78a8.575 8.575 0 002.469-1.722 9.214 9.214 0 001.725-2.367.944.944 0 000-.833zm-3.354 3.112c.48-.807.737-1.732.737-2.696 0-.964-.257-1.889-.737-2.696A8.061 8.061 0 0114.845 8a8.103 8.103 0 01-2.296 2.696zm-9.95-.737a8.06 8.06 0 01-1.444-1.958 8.106 8.106 0 012.296-2.697A5.254 5.254 0 002.714 8c0 .964.257 1.889.737 2.696A7.747 7.747 0 012.6 9.96zM3.848 8a4.153 4.153 0 118.306 0 4.153 4.153 0 01-8.306 0z'/%3E%3Cpath d='M7.999 4.98a3.02 3.02 0 100 6.04 3.02 3.02 0 000-6.04zm0 4.908A1.89 1.89 0 016.11 8 1.89 1.89 0 018 6.112 1.89 1.89 0 019.887 8a1.89 1.89 0 01-1.888 1.888z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--fc:url("data:image/svg+xml,%3Csvg width='13' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.126.542H2.167c-.596 0-1.083.487-1.083 1.083v7.042c0 .298.244.541.542.541a.543.543 0 00.541-.541v-6.5c0-.298.244-.542.542-.542h5.417a.543.543 0 00.541-.542.543.543 0 00-.541-.541zm.32 2.486l2.616 2.616c.2.2.314.477.314.764v4.967c0 .596-.488 1.083-1.084 1.083H4.33a1.082 1.082 0 01-1.078-1.083l.005-7.583c0-.596.482-1.084 1.078-1.084h3.342c.287 0 .563.114.77.32zM8.125 6.5h2.437L7.584 3.52v2.438c0 .298.244.542.542.542z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--fc-white:url("data:image/svg+xml,%3Csvg width='13' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.126.542H2.167c-.596 0-1.083.487-1.083 1.083v7.042c0 .298.244.541.542.541a.543.543 0 00.541-.541v-6.5c0-.298.244-.542.542-.542h5.417a.543.543 0 00.541-.542.543.543 0 00-.541-.541zm.32 2.486l2.616 2.616c.2.2.314.477.314.764v4.967c0 .596-.488 1.083-1.084 1.083H4.33a1.082 1.082 0 01-1.078-1.083l.005-7.583c0-.596.482-1.084 1.078-1.084h3.342c.287 0 .563.114.77.32zM8.125 6.5h2.437L7.584 3.52v2.438c0 .298.244.542.542.542z' fill='white'/%3E%3C/svg%3E");
    /*1*/--eye:url("data:image/svg+xml,%3Csvg width='13' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M12.864 5.821c-1.057-2.55-3.556-4.196-6.366-4.196-2.81 0-5.309 1.647-6.366 4.196a1.784 1.784 0 000 1.357c1.057 2.55 3.556 4.197 6.366 4.197 2.81 0 5.31-1.647 6.366-4.197a1.786 1.786 0 000-1.357zM6.498 8.667A2.169 2.169 0 014.331 6.5a2.17 2.17 0 012.167-2.167A2.17 2.17 0 018.665 6.5a2.169 2.169 0 01-2.167 2.167z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--eye-white:url("data:image/svg+xml,%3Csvg width='13' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M12.864 5.821c-1.057-2.55-3.556-4.196-6.366-4.196-2.81 0-5.309 1.647-6.366 4.196a1.784 1.784 0 000 1.357c1.057 2.55 3.556 4.197 6.366 4.197 2.81 0 5.31-1.647 6.366-4.197a1.786 1.786 0 000-1.357zM6.498 8.667A2.169 2.169 0 014.331 6.5a2.17 2.17 0 012.167-2.167A2.17 2.17 0 018.665 6.5a2.169 2.169 0 01-2.167 2.167z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--comm:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0C3.579 0 0 3.578 0 8c0 1.403.366 2.774 1.06 3.982L.03 15.183a.625.625 0 00.787.787l3.2-1.03A7.982 7.982 0 008 16c4.421 0 8-3.578 8-8 0-4.421-3.578-8-8-8zm0 14.75a6.73 6.73 0 01-3.573-1.023.625.625 0 00-.523-.065l-2.31.744.744-2.31a.625.625 0 00-.065-.523A6.732 6.732 0 011.25 8 6.758 6.758 0 018 1.25 6.758 6.758 0 0114.75 8 6.758 6.758 0 018 14.75zM8.781 8A.781.781 0 117.22 8a.781.781 0 011.56 0zm3.125 0a.781.781 0 11-1.562 0 .781.781 0 011.562 0zm-6.25 0a.781.781 0 11-1.562 0 .781.781 0 011.562 0z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--quote:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.563 9.563V2.125H17v7.544c0 5.1-4.781 5.737-4.781 5.737l-.638-1.487s2.125-.319 2.55-2.019c.425-1.275-.425-2.338-.425-2.338H9.563zM0 9.563V2.125h7.438v7.544c0 5.1-4.782 5.737-4.782 5.737L2.02 13.92s2.125-.319 2.55-2.019c.425-1.275-.425-2.338-.425-2.338H0z' fill='%231984A8'/%3E%3C/svg%3E");
    /*2*/--p-vip:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23FFCE1F;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M17,14a1,1,0,0,1-1-1,4,4,0,0,0-8,0,1,1,0,0,1-2,0,6,6,0,0,1,12,0A1,1,0,0,1,17,14Z'/%3E%3Cpath class='cls-1' d='M7,18.9l-.2,0A6,6,0,0,1,8,7H9A1,1,0,0,1,9,9H8a4,4,0,0,0-.8,7.92,1,1,0,0,1-.2,2Z'/%3E%3Cpath class='cls-1' d='M17,18.9a1,1,0,0,1-.2-2A4,4,0,0,0,16,9H15a1,1,0,0,1,0-2h1a6,6,0,0,1,1.2,11.88Z'/%3E%3Cpath class='cls-1' d='M18,22H6a1,1,0,0,1-1-1V18a1,1,0,0,1,2,0v2H17V18a1,1,0,0,1,2,0v3A1,1,0,0,1,18,22Z'/%3E%3Cpath class='cls-1' d='M12,19a1,1,0,0,1-1-1,1,1,0,0,1,.08-.38,1.15,1.15,0,0,1,.21-.33l.15-.12a.76.76,0,0,1,.18-.09L11.8,17a1,1,0,0,1,.91.27,1.15,1.15,0,0,1,.21.33A1,1,0,0,1,13,18a1,1,0,0,1-1,1Z'/%3E%3Cpath class='cls-1' d='M20,22H4a1,1,0,0,1,0-2H20a1,1,0,0,1,0,2Z'/%3E%3Cpath class='cls-1' d='M12,9a3,3,0,1,1,3-3A3,3,0,0,1,12,9Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,12,5Z'/%3E%3C/svg%3E");
    /*1*/--p-user:url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.165 10.983v2.342c0 .608.333 1.175.867 1.467l4.166 2.275c.5.275 1.1.275 1.6 0l4.167-2.275c.533-.292.867-.859.867-1.467v-2.342l-5.034 2.75c-.5.275-1.1.275-1.6 0l-5.033-2.75zm5.033-8.05L2.173 6.767a.84.84 0 000 1.466l7.025 3.834c.5.275 1.1.275 1.6 0l6.7-3.659v4.925c0 .459.375.834.834.834a.836.836 0 00.833-.834V7.992a.838.838 0 00-.433-.734l-7.934-4.325a1.7 1.7 0 00-1.6 0z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--p-admin:url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M20 10l-2.264-2.514.354-3.365-3.31-.7L13.09.485 10 1.868 6.91.486 5.22 3.42l-3.31.701.354 3.365L0 10l2.264 2.514-.354 3.365 3.31.7 1.69 2.935L10 18.132l3.09 1.382 1.69-2.934 3.31-.701-.354-3.365L20 10zm-5.808-2.19l-5.02 5.624-3.487-3.488.83-.83 2.61 2.61 4.192-4.697.875.781z' fill='%2315D69C'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--rate:url("data:image/svg+xml,%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M26.965 10.333c-.076-.224-.296-.634-1.006-.744l-7.93-1.155-3.461-6.999c-.335-.669-.745-.782-1.08-.782-.668 0-1.04.669-1.116.782L8.91 8.434 1.091 9.55c-.52.076-.93.372-1.04.782-.15.449.037.893.482 1.341l5.585 5.4-1.303 7.708c-.038.186-.149.783.224 1.193.296.372.82.448 1.379.186 0 0 .038 0 .038-.038l7.036-3.723 7.037 3.723c.262.148.52.224.744.224.297 0 .52-.11.707-.296.148-.148.296-.448.224-1.007l-1.344-7.97 5.695-5.548c.483-.486.483-.893.41-1.193zm-7.336 6.034a.687.687 0 00-.186.596l1.34 7.743-6.963-3.647a.65.65 0 00-.635 0l-6.964 3.647 1.341-7.743a.687.687 0 00-.186-.596L1.72 10.892 9.5 9.775a.766.766 0 00.521-.372l3.462-7.037 3.461 7.037c.11.186.297.334.52.372l7.782 1.117-5.616 5.475z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--teachers:url("data:image/svg+xml,%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M26.993 20.224V6.968a3.787 3.787 0 00-1.499-3.04L21.674.99a.741.741 0 00-1.038.118.741.741 0 00.118 1.039c.008.007.015.007.015.015l3.82 2.93c.579.445.92 1.135.92 1.869v9.569a5.768 5.768 0 00-8.137-.438 5.52 5.52 0 00-1.15 1.431l-.868-.326a4.975 4.975 0 00-3.723.09l-.809.348a5.758 5.758 0 00-9.346-1.105V6.968c0-.734.334-1.424.92-1.869l3.82-2.937a.736.736 0 00.134-1.039A.736.736 0 005.31.99L1.49 3.927A3.79 3.79 0 000 6.968v13.166c0 .03 0 .052.006.082 0 .06-.007.119-.007.178a5.771 5.771 0 005.764 5.771 5.771 5.771 0 005.607-7.143l.853-.364a3.513 3.513 0 012.619-.059l.823.312a5.765 5.765 0 004.08 7.061 5.765 5.765 0 007.061-4.08 5.63 5.63 0 00.193-1.49c0-.06 0-.12-.007-.178zm-21.23 4.45a4.29 4.29 0 01-4.287-4.287 4.29 4.29 0 014.288-4.288 4.29 4.29 0 014.287 4.288c-.008 2.366-1.929 4.287-4.287 4.287zm15.459 0a4.29 4.29 0 01-4.288-4.287 4.29 4.29 0 014.288-4.288 4.29 4.29 0 014.287 4.288 4.29 4.29 0 01-4.287 4.287z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--vacancy:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M10.97 21.938a10.964 10.964 0 1 1 10.621-8.225.844.844 0 0 1-1.633-.422 9.28 9.28 0 1 0-8.988 6.96 9.17 9.17 0 0 0 5.295-1.662 8.99 8.99 0 0 0 2.32-2.318.845.845 0 0 1 1.392.954 10.7 10.7 0 0 1-2.747 2.748 10.852 10.852 0 0 1-6.26 1.965z' fill='%231984A8'/%3E%3Cpath d='M24.37 27a2.651 2.651 0 0 1-1.863-.771l-6.352-6.353a.844.844 0 0 1 1.193-1.193l6.353 6.353a.946.946 0 1 0 1.338-1.338l-6.353-6.353a.844.844 0 0 1 1.193-1.193l6.353 6.352A2.633 2.633 0 0 1 24.37 27z' fill='%231984A8'/%3E%3Cpath d='M16.031 12.656H5.906A1.687 1.687 0 0 1 4.22 10.97V8.438a.844.844 0 0 1 .843-.844h11.813a.844.844 0 0 1 .844.843v2.532a1.687 1.687 0 0 1-1.688 1.687zM5.906 9.281v1.688h10.125V9.28H5.906z' fill='%23FAB826'/%3E%3Cpath d='M14.344 17.719h-6.75a2.532 2.532 0 0 1-2.532-2.532v-3.374a.844.844 0 0 1 .844-.844h10.125a.844.844 0 0 1 .844.844v3.374a2.531 2.531 0 0 1-2.531 2.532zM6.75 12.656v2.531a.844.844 0 0 0 .844.844h6.75a.844.844 0 0 0 .844-.843v-2.532H6.75zM14.344 9.281h-6.75a.844.844 0 0 1-.844-.844V6.75a2.531 2.531 0 0 1 2.531-2.531h3.375a2.531 2.531 0 0 1 2.531 2.531v1.688a.844.844 0 0 1-.843.843zM8.438 7.594H13.5V6.75a.844.844 0 0 0-.844-.844H9.281a.844.844 0 0 0-.844.844v.844z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--files:url("data:image/svg+xml,%3Csvg width='27' height='25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.814 2.164L10.759.582H0v23.836h27V2.164H11.814zm13.604 20.672H1.582V2.164h8.33l3.165 4.746h12.341v15.926zm0-17.508H13.923L12.87 3.746h12.549v1.582z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--users:url("data:image/svg+xml,%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.209 25.418h-3.48v-7.752c0-.872-.71-1.582-1.582-1.582H19.97c-.31-1.352-.926-2.513-1.806-3.385a5.652 5.652 0 00-1.912-1.25c1.53-1.321 2.53-3.604 2.53-5.666 0-1.871-.521-3.34-1.548-4.365C16.305.49 15.014 0 13.5 0c-1.514 0-2.805.49-3.734 1.418-1.027 1.025-1.547 2.494-1.547 4.365 0 2.062.998 4.345 2.529 5.665a5.652 5.652 0 00-1.912 1.25c-.88.873-1.496 2.034-1.806 3.386H5.854c-.873 0-1.583.71-1.583 1.582v7.752H.791a.791.791 0 100 1.582h25.418a.791.791 0 000-1.582zM13.5 1.582c1.162 0 2.985.386 3.536 2.682a4.61 4.61 0 01-1.627-.508c-.353-.175-.753-.373-1.242-.261-.396.09-.68.314-.954.53-.5.395-1.23.97-3.384 1.086.268-3.051 2.379-3.529 3.671-3.529zm-3.62 5.11c2.687-.141 3.69-.933 4.313-1.424a3.6 3.6 0 01.278-.207c.063.027.157.073.237.113.464.23 1.194.59 2.49.696-.021 1.165-.454 2.457-1.17 3.475-.73 1.038-1.652 1.634-2.528 1.634-.876 0-1.798-.595-2.528-1.634A6.649 6.649 0 019.88 6.692zm3.198 5.912h.844c2.195 0 3.796 1.283 4.418 3.48H8.66c.622-2.197 2.223-3.48 4.418-3.48zM5.854 25.418v-7.752h15.293v7.752H5.854z' fill='%231984A8'/%3E%3Cpath d='M13.5 21.885a.79.79 0 100-1.582.79.79 0 000 1.582z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--reviews:url("data:image/svg+xml,%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.998 1.267a3.127 3.127 0 00-.206 0H8.167c-1.856 0-3.442 1.35-3.442 3.206v7.594H1.856C.742 12.067 0 13.079 0 14.193v6.277c0 1.114.742 2.058 1.856 2.058h1.519l.607 2.7c.059.24.238.431.473.506h.202a.675.675 0 00.473-.202l2.767-3.004h4.185a2.126 2.126 0 002.092-2.058v-3.341h.506l4.624 5.028a.57.57 0 00.472.236h.203a.675.675 0 00.472-.472l1.08-4.792h2.261c1.856 0 3.206-1.586 3.206-3.443V4.474a3.105 3.105 0 00-3-3.206zM12.824 20.47a.776.776 0 01-.742.709H7.593a.675.675 0 00-.472.202l-2.126 2.295-.439-1.991a.675.675 0 00-.675-.506H1.856c-.371 0-.506-.338-.506-.71v-6.276c0-.372.135-.777.506-.777h2.869v.27a3.51 3.51 0 003.442 3.443h4.657v3.34zM25.648 4.473v9.213c0 1.114-.742 2.093-1.856 2.093h-2.8a.607.607 0 00-.642.506l-.911 4.016-3.982-4.32a.675.675 0 00-.473-.202H8.167a2.16 2.16 0 01-2.092-2.092V4.473c0-1.113.978-1.856 2.092-1.856h15.625a1.755 1.755 0 011.856 1.856z' fill='%231984A8'/%3E%3Cpath d='M9.078 7.68h8.1a.675.675 0 100-1.35h-8.1a.675.675 0 100 1.35zm13.499 2.7H9.078a.675.675 0 000 1.35h13.5a.675.675 0 100-1.35z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--spoiler-arrow:url("data:image/svg+xml,%3Csvg width='11' height='11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M5.849 2.419l5.016 5.504c.18.181.18.474 0 .655a.459.459 0 01-.65 0L5.5 3.405.786 8.577a.459.459 0 01-.651 0 .464.464 0 010-.654L5.15 2.418a.453.453 0 01.349-.13.457.457 0 01.349.13z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--hs-url:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.622 10.962a7.238 7.238 0 10-3.66 3.66.25.25 0 00.073-.405l-.77-.77a.25.25 0 00-.263-.056 5.722 5.722 0 01-1.978.359c-3.14.012-5.728-2.526-5.773-5.666a5.756 5.756 0 015.833-5.833c3.101.044 5.678 2.671 5.666 5.772a5.72 5.72 0 01-.36 1.979.25.25 0 00.058.264l.77.77a.25.25 0 00.404-.074z' fill='%230A5067'/%3E%3Cpath d='M13.28 13.28a.75.75 0 01-1.06 0L7.25 8.31V10a.75.75 0 11-1.5 0V6.5a.75.75 0 01.75-.75H10a.75.75 0 110 1.5H8.31l4.97 4.97a.749.749 0 010 1.06z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-adress:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.293 2.79C12.12 1.006 10.186 0 8.009 0 5.851 0 3.916 1.005 2.707 2.79c-1.21 1.75-1.489 3.982-.744 5.936.204.52.52 1.06.93 1.544L7.6 15.814c.111.112.223.186.39.186.168 0 .28-.074.391-.186l4.726-5.544c.409-.484.744-1.005.93-1.544.744-1.954.465-4.186-.744-5.935zM8.009 9.378c-1.6 0-2.92-1.321-2.92-2.921 0-1.6 1.32-2.921 2.92-2.921 1.6 0 2.92 1.32 2.92 2.92 0 1.6-1.301 2.922-2.92 2.922z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--flink:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 16c-.79 0-1.5.31-2.03.81L8.91 12.7c.05-.23.09-.46.09-.7 0-.24-.04-.47-.09-.7l7.05-4.11c.53.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.48.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.05 4.12c-.05.22-.09.45-.09.69 0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--flink-white:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 16c-.79 0-1.5.31-2.03.81L8.91 12.7c.05-.23.09-.46.09-.7 0-.24-.04-.47-.09-.7l7.05-4.11c.53.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.48.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.05 4.12c-.05.22-.09.45-.09.69 0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3z' fill='white'/%3E%3C/svg%3E");
    /*1*/--not-checked:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.531 5l7.53 13.01H4.001L11.531 5zm-9.26 12.01c-.77 1.33.19 3 1.73 3h15.06c1.54 0 2.5-1.67 1.73-3L13.261 4c-.77-1.33-2.69-1.33-3.46 0l-7.53 13.01z' fill='%23FF7131'/%3E%3Cpath d='M10.531 10.01V13c0 .55.45 1 1 1s1-.45 1-1v-2.99c0-.55-.45-1-1-1s-1 .45-1 1zm1 7a1 1 0 100-2 1 1 0 000 2z' fill='%23FF7131'/%3E%3C/svg%3E");
    /*1*/--refreshed:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.35 13.99C5.01 10.29 7.71 6 12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79a.5.5 0 00-.85.36V4C6.24 4 2.61 9.78 4.52 14.79c.24.63 1.08.78 1.56.3l.08-.08c.26-.26.32-.66.19-1.02zm11.29-3.97C19.01 13.86 16.17 18 12 18v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79a.5.5 0 00.85-.35V20c5.76 0 9.39-5.78 7.48-10.79-.24-.63-1.08-.78-1.56-.3l-.07.07c-.27.27-.33.67-.21 1.04z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-close:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.873 7.138a1.245 1.245 0 00-1.762 0l-6.113 6.1-6.112-6.113a1.245 1.245 0 00-1.763 0 1.245 1.245 0 000 1.762L13.236 15l-6.113 6.113a1.245 1.245 0 000 1.762 1.245 1.245 0 001.763 0l6.112-6.113 6.113 6.113a1.245 1.245 0 001.762 0 1.245 1.245 0 000-1.762L16.761 15l6.112-6.113a1.253 1.253 0 000-1.75z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-move:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.528 12.313h2.431a.401.401 0 00.405-.405V9.882h1.45a.401.401 0 00.285-.69l-3.072-3.07a.401.401 0 00-.575 0l-3.071 3.07a.405.405 0 00.291.69h1.45v2.026c0 .226.18.405.406.405zm-1.62.81H9.881v-1.45a.401.401 0 00-.69-.284l-3.07 3.071a.401.401 0 000 .575l3.07 3.072a.405.405 0 00.69-.292v-1.45h2.025a.401.401 0 00.406-.406v-2.43a.401.401 0 00-.406-.406zm11.466 1.337l-3.071-3.071a.406.406 0 00-.697.284v1.45H17.58a.401.401 0 00-.405.405v2.431a.4.4 0 00.405.405h2.026v1.451a.4.4 0 00.688.284l3.072-3.072a.399.399 0 00.008-.567zm-7.415 2.715h-2.43a.401.401 0 00-.406.405v2.026h-1.45a.401.401 0 00-.284.689l3.071 3.07a.401.401 0 00.575 0l3.072-3.07a.405.405 0 00-.284-.69h-1.459V17.58a.401.401 0 00-.405-.405z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-full:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.422 7.756l1.29 1.288-1.939 1.92a.896.896 0 000 1.263.896.896 0 001.263 0l1.92-1.938 1.288 1.289c.276.275.756.08.756-.32V7.444A.44.44 0 0022.556 7h-3.814c-.4 0-.595.48-.32.756zM7.756 11.578l1.288-1.29 1.92 1.939a.896.896 0 001.263 0 .896.896 0 000-1.263l-1.938-1.92 1.289-1.288a.444.444 0 00-.32-.756H7.444A.44.44 0 007 7.444v3.814c0 .4.48.595.756.32zm3.822 10.666l-1.29-1.288 1.939-1.92a.896.896 0 000-1.263.896.896 0 00-1.263 0l-1.92 1.938-1.288-1.289a.444.444 0 00-.756.32v3.814a.44.44 0 00.444.444h3.814c.4 0 .595-.48.32-.756zm10.666-3.822l-1.288 1.29-1.92-1.939a.896.896 0 00-1.263 0 .896.896 0 000 1.263l1.938 1.92-1.289 1.288a.444.444 0 00.32.756h3.814a.44.44 0 00.444-.444v-3.814c0-.4-.48-.595-.756-.32z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-arrow:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.112 19.325l-4.85-4.85 4.85-4.85a1.245 1.245 0 000-1.763 1.245 1.245 0 00-1.763 0L11.612 13.6a1.245 1.245 0 000 1.763l5.737 5.737a1.245 1.245 0 001.763 0c.475-.488.487-1.288 0-1.775z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-play:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.525v12.95a1.247 1.247 0 001.925 1.05L22.1 16.05c.775-.488.775-1.613 0-2.113L11.925 7.476A1.247 1.247 0 0010 8.525z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--hs-pause:url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 23.75c1.375 0 2.5-1.125 2.5-2.5V8.75c0-1.375-1.125-2.5-2.5-2.5a2.507 2.507 0 00-2.5 2.5v12.5c0 1.375 1.125 2.5 2.5 2.5zm7.5-15v12.5c0 1.375 1.125 2.5 2.5 2.5s2.5-1.125 2.5-2.5V8.75c0-1.375-1.125-2.5-2.5-2.5a2.507 2.507 0 00-2.5 2.5z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--info:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C2.688 0 0 2.688 0 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 9c-.33 0-.6-.27-.6-.6V6c0-.33.27-.6.6-.6.33 0 .6.27.6.6v2.4c0 .33-.27.6-.6.6zm0-4.8c-.33 0-.6-.27-.6-.6 0-.33.27-.6.6-.6.33 0 .6.27.6.6 0 .33-.27.6-.6.6z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--info-white:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C2.688 0 0 2.688 0 6s2.688 6 6 6 6-2.688 6-6-2.688-6-6-6zm0 9c-.33 0-.6-.27-.6-.6V6c0-.33.27-.6.6-.6.33 0 .6.27.6.6v2.4c0 .33-.27.6-.6.6zm0-4.8c-.33 0-.6-.27-.6-.6 0-.33.27-.6.6-.6.33 0 .6.27.6.6 0 .33-.27.6-.6.6z' fill='white'/%3E%3C/svg%3E");
    /*1*/--people:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.241 2.684a2.18 2.18 0 0 1 1.015 1.62 1.76 1.76 0 1 0-1.015-1.62zM6.09 6.287a1.76 1.76 0 1 0 0-3.52 1.76 1.76 0 0 0 0 3.52zm.746.12H5.342a2.256 2.256 0 0 0-2.254 2.254v1.826l.005.029.126.04c1.185.37 2.216.493 3.064.493 1.656 0 2.616-.472 2.675-.502l.117-.06h.013V8.662a2.255 2.255 0 0 0-2.253-2.254zM9.747 4.59H8.265a2.169 2.169 0 0 1-.67 1.511 2.678 2.678 0 0 1 1.913 2.563v.562c1.463-.053 2.306-.468 2.362-.496l.117-.06H12V6.845A2.256 2.256 0 0 0 9.747 4.59zM3 4.47c.345 0 .665-.1.936-.271a2.178 2.178 0 0 1 .82-1.39c0-.032.004-.065.004-.098A1.76 1.76 0 1 0 3 4.471zm1.58 1.631A2.17 2.17 0 0 1 3.913 4.6c-.055-.004-.11-.009-.165-.009H2.253A2.256 2.256 0 0 0 0 6.844V8.67l.005.028.125.04c.952.297 1.8.434 2.538.477v-.551c0-1.21.808-2.234 1.913-2.563z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--people-white:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.241 2.684a2.18 2.18 0 0 1 1.015 1.62 1.76 1.76 0 1 0-1.015-1.62zM6.09 6.287a1.76 1.76 0 1 0 0-3.52 1.76 1.76 0 0 0 0 3.52zm.746.12H5.342a2.256 2.256 0 0 0-2.254 2.254v1.826l.005.029.126.04c1.185.37 2.216.493 3.064.493 1.656 0 2.616-.472 2.675-.502l.117-.06h.013V8.662a2.255 2.255 0 0 0-2.253-2.254zM9.747 4.59H8.265a2.169 2.169 0 0 1-.67 1.511 2.678 2.678 0 0 1 1.913 2.563v.562c1.463-.053 2.306-.468 2.362-.496l.117-.06H12V6.845A2.256 2.256 0 0 0 9.747 4.59zM3 4.47c.345 0 .665-.1.936-.271a2.178 2.178 0 0 1 .82-1.39c0-.032.004-.065.004-.098A1.76 1.76 0 1 0 3 4.471zm1.58 1.631A2.17 2.17 0 0 1 3.913 4.6c-.055-.004-.11-.009-.165-.009H2.253A2.256 2.256 0 0 0 0 6.844V8.67l.005.028.125.04c.952.297 1.8.434 2.538.477v-.551c0-1.21.808-2.234 1.913-2.563z' fill='white'/%3E%3C/svg%3E");
    /*1*/--rate-t:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M11.972 4.62c-.184-.576-1.197-.707-2.269-.85-.588-.076-1.255-.163-1.457-.313C8.043 3.31 7.76 2.7 7.51 2.16 7.055 1.18 6.624.256 6.02.254L6.01.253c-.598.01-1.033.923-1.496 1.892-.255.536-.545 1.144-.748 1.291-.204.146-.872.228-1.461.3-1.072.13-2.086.252-2.275.824-.19.573.55 1.276 1.335 2.02.43.409.918.872.995 1.11.077.239-.053.9-.167 1.482-.208 1.059-.404 2.062.082 2.42a.705.705 0 00.434.122c.496-.008 1.21-.394 1.899-.768.516-.282 1.102-.6 1.363-.604.252 0 .84.328 1.358.617.705.391 1.435.796 1.932.788a.676.676 0 00.395-.12c.489-.352.302-1.354.106-2.418-.108-.582-.23-1.245-.153-1.484.08-.237.572-.694 1.007-1.1.792-.737 1.539-1.43 1.356-2.005z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--rate-t-white:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M11.972 4.62c-.184-.576-1.197-.707-2.269-.85-.588-.076-1.255-.163-1.457-.313C8.043 3.31 7.76 2.7 7.51 2.16 7.055 1.18 6.624.256 6.02.254L6.01.253c-.598.01-1.033.923-1.496 1.892-.255.536-.545 1.144-.748 1.291-.204.146-.872.228-1.461.3-1.072.13-2.086.252-2.275.824-.19.573.55 1.276 1.335 2.02.43.409.918.872.995 1.11.077.239-.053.9-.167 1.482-.208 1.059-.404 2.062.082 2.42a.705.705 0 00.434.122c.496-.008 1.21-.394 1.899-.768.516-.282 1.102-.6 1.363-.604.252 0 .84.328 1.358.617.705.391 1.435.796 1.932.788a.676.676 0 00.395-.12c.489-.352.302-1.354.106-2.418-.108-.582-.23-1.245-.153-1.484.08-.237.572-.694 1.007-1.1.792-.737 1.539-1.43 1.356-2.005z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--lsd:url("data:image/svg+xml,%3Csvg width='80' height='80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M53.777 0c-14.46 0-26.223 11.764-26.223 26.223 0 6.81 2.61 13.02 6.88 17.686l-4.84 4.84-.058-.056a3.653 3.653 0 0 0-2.6-1.078c-.982 0-1.906.383-2.6 1.078L1.44 71.587a4.935 4.935 0 0 0 0 6.972A4.915 4.915 0 0 0 4.927 80c1.263 0 2.525-.48 3.486-1.441l22.894-22.895a3.652 3.652 0 0 0 1.077-2.6c0-.982-.382-1.906-1.077-2.6l-.057-.057 4.84-4.84c4.667 4.27 10.878 6.88 17.687 6.88C68.237 52.446 80 40.681 80 26.222 80 11.763 68.236 0 53.777 0zM6.756 76.901a2.589 2.589 0 0 1-3.657 0 2.589 2.589 0 0 1 0-3.657l19.23-19.23 3.657 3.656-19.23 19.231zM29.65 54.007l-2.006 2.006-3.657-3.657 2.006-2.006c.252-.252.587-.39.943-.39s.69.138.943.39l1.77 1.771c.253.252.391.587.391.943s-.138.69-.39.943zm24.127-3.905c-13.167 0-23.88-10.712-23.88-23.879 0-13.167 10.713-23.88 23.88-23.88s23.88 10.713 23.88 23.88-10.713 23.88-23.88 23.88z' fill='%230A5067'/%3E%3Cpath d='M68.777 11.223c-7.543-7.542-19.579-8.292-27.996-1.745a1.172 1.172 0 1 0 1.439 1.85c7.487-5.824 18.191-5.156 24.9 1.553 6.708 6.708 7.376 17.413 1.552 24.9a1.172 1.172 0 0 0 1.85 1.439c6.548-8.418 5.798-20.454-1.745-27.997zM65.334 41.118a18.783 18.783 0 0 1-11.56 3.96c-4.855 0-9.69-1.862-13.34-5.513-6.71-6.708-7.377-17.413-1.553-24.9a1.172 1.172 0 0 0-1.85-1.439c-6.548 8.418-5.798 20.454 1.745 27.997 4.105 4.105 9.54 6.198 15 6.198 4.57 0 9.16-1.469 12.997-4.453a1.172 1.172 0 1 0-1.44-1.85z' fill='%230A5067'/%3E%3Cpath d='M66.519 18.27a13.823 13.823 0 0 0-9.867-7.257 1.094 1.094 0 0 0-.375 2.155 11.636 11.636 0 0 1 8.301 6.105 1.094 1.094 0 1 0 1.943-1.004h-.002zM51.849 11.015a13.828 13.828 0 0 0-3.2.977 1.094 1.094 0 1 0 .89 2c.859-.382 1.761-.657 2.687-.821a1.092 1.092 0 0 0 .438-1.973 1.094 1.094 0 0 0-.818-.181l.003-.002z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--lsg:url("data:image/svg+xml,%3Csvg width='80' height='80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M53.777 0c-14.46 0-26.223 11.764-26.223 26.223 0 6.81 2.61 13.02 6.88 17.686l-4.84 4.84-.058-.056a3.653 3.653 0 0 0-2.6-1.078c-.982 0-1.906.383-2.6 1.078L1.44 71.587a4.935 4.935 0 0 0 0 6.972A4.915 4.915 0 0 0 4.927 80c1.263 0 2.525-.48 3.486-1.441l22.894-22.895a3.652 3.652 0 0 0 1.077-2.6c0-.982-.382-1.906-1.077-2.6l-.057-.057 4.84-4.84c4.667 4.27 10.878 6.88 17.687 6.88C68.237 52.446 80 40.681 80 26.222 80 11.763 68.236 0 53.777 0zM6.756 76.901a2.589 2.589 0 0 1-3.657 0 2.589 2.589 0 0 1 0-3.657l19.23-19.23 3.657 3.656-19.23 19.231zM29.65 54.007l-2.006 2.006-3.657-3.657 2.006-2.006c.252-.252.587-.39.943-.39s.69.138.943.39l1.77 1.771c.253.252.391.587.391.943s-.138.69-.39.943zm24.127-3.905c-13.167 0-23.88-10.712-23.88-23.879 0-13.167 10.713-23.88 23.88-23.88s23.88 10.713 23.88 23.88-10.713 23.88-23.88 23.88z' fill='%230A5067'/%3E%3Cpath d='M68.777 11.223c-7.543-7.542-19.579-8.292-27.996-1.745a1.172 1.172 0 1 0 1.439 1.85c7.487-5.824 18.191-5.156 24.9 1.553 6.708 6.708 7.376 17.413 1.552 24.9a1.172 1.172 0 0 0 1.85 1.439c6.548-8.418 5.798-20.454-1.745-27.997zM65.334 41.118a18.783 18.783 0 0 1-11.56 3.96c-4.855 0-9.69-1.862-13.34-5.513-6.71-6.708-7.377-17.413-1.553-24.9a1.172 1.172 0 0 0-1.85-1.439c-6.548 8.418-5.798 20.454 1.745 27.997 4.105 4.105 9.54 6.198 15 6.198 4.57 0 9.16-1.469 12.997-4.453a1.172 1.172 0 1 0-1.44-1.85z' fill='%230A5067'/%3E%3Cpath d='M44.18 25.8a1.168 1.168 0 0 0 1.656 0l1.677-1.677 1.676 1.676a1.168 1.168 0 0 0 1.658 0c.457-.458.457-1.2 0-1.657l-1.677-1.677 1.677-1.676a1.172 1.172 0 0 0-1.658-1.657l-1.676 1.676-1.677-1.676a1.172 1.172 0 1 0-1.657 1.657l1.677 1.676-1.677 1.677a1.172 1.172 0 0 0 0 1.657zM56.707 25.8a1.168 1.168 0 0 0 1.657 0l1.676-1.677 1.677 1.676a1.168 1.168 0 0 0 1.657 0c.458-.458.458-1.2 0-1.657l-1.676-1.677 1.676-1.676a1.172 1.172 0 1 0-1.657-1.657l-1.677 1.676-1.676-1.676a1.172 1.172 0 1 0-1.657 1.657l1.676 1.676-1.676 1.677a1.171 1.171 0 0 0 0 1.657zM46.686 34.163a1.172 1.172 0 0 0 1.659 1.656c1.371-1.373 3.351-2.161 5.433-2.161s4.063.788 5.434 2.161a1.171 1.171 0 1 0 1.658-1.656c-1.807-1.81-4.392-2.849-7.092-2.849-2.7 0-5.284 1.038-7.092 2.849z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--coins:url("data:image/svg+xml,%3Csvg width='45' height='45' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='%230A5067'%3E%3Cpath d='M12.242 32.676a.953.953 0 01-.349-.068A15.862 15.862 0 011.875 17.813c0-8.789 7.15-15.938 15.938-15.938S33.75 9.025 33.75 17.813c0 5.266-2.606 10.2-6.97 13.2a.937.937 0 11-1.061-1.545 14.153 14.153 0 006.156-11.655c0-7.755-6.308-14.063-14.063-14.063-7.755 0-14.062 6.307-14.062 14.063 0 5.782 3.47 10.905 8.84 13.055a.935.935 0 01.522 1.217.935.935 0 01-.87.59z'/%3E%3Cpath d='M18.75 24.375h-4.688a.938.938 0 010-1.875h4.688a1.877 1.877 0 001.875-1.875c0-1.033-.84-1.875-1.875-1.875h-1.875a3.754 3.754 0 01-3.75-3.75 3.754 3.754 0 013.75-3.75h4.688a.938.938 0 010 1.875h-4.688A1.877 1.877 0 0015 15c0 1.033.84 1.875 1.875 1.875h1.875a3.754 3.754 0 013.75 3.75 3.754 3.754 0 01-3.75 3.75z'/%3E%3Cpath d='M17.813 13.125a.938.938 0 01-.938-.938v-3.75a.938.938 0 011.875 0v3.75c0 .518-.42.938-.938.938zm0 15a.938.938 0 01-.938-.938v-3.75a.938.938 0 011.875 0v3.75c0 .518-.42.938-.938.938zM.937 45a.94.94 0 01-.79-.433.939.939 0 01.286-1.294l20.625-13.125a.936.936 0 011.166.128l6.837 6.836 14.336-14.336a.938.938 0 011.325 1.325l-15 15a.938.938 0 01-1.325 0l-6.97-6.97L1.442 44.855A.933.933 0 01.937 45z'/%3E%3Cpath d='M44.063 31.875a.938.938 0 01-.938-.938v-6.562h-6.563a.938.938 0 010-1.875h7.5c.518 0 .938.42.938.938v7.5c0 .517-.42.937-.938.937z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--author:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.514 7.734A5.028 5.028 0 008.46 6.408a3.669 3.669 0 001.217-2.73A3.682 3.682 0 006 0a3.682 3.682 0 00-3.677 3.677A3.67 3.67 0 003.54 6.408a5.027 5.027 0 00-2.054 1.326A5.342 5.342 0 000 11.42V12h12v-.58a5.342 5.342 0 00-1.486-3.686zm-7.03-4.057A2.519 2.519 0 016 1.161a2.519 2.519 0 012.516 2.516A2.519 2.519 0 016 6.194a2.519 2.519 0 01-2.516-2.517zM1.202 10.84c.288-2.03 2.049-3.484 3.637-3.484H7.16c1.588 0 3.349 1.455 3.637 3.484H1.202z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--z-attaches:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M11.023 6.247a.664.664 0 00-.939 0l-3.69 3.69a2.49 2.49 0 01-1.774.735c-.67 0-1.3-.26-1.773-.734a2.49 2.49 0 01-.734-1.773c0-.67.26-1.3.734-1.773l4.74-4.74a1.115 1.115 0 011.9.788c0 .297-.116.577-.326.787L5.14 7.248a.664.664 0 00.939.94l4.02-4.022a2.425 2.425 0 00.716-1.726c0-.652-.254-1.265-.715-1.726a2.444 2.444 0 00-3.452 0l-4.74 4.74a3.81 3.81 0 00-1.123 2.71 3.81 3.81 0 001.123 2.713A3.81 3.81 0 004.62 12a3.81 3.81 0 002.712-1.123l3.691-3.691c.26-.26.26-.68 0-.94z' fill='%237DB6C9'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--z-date:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M11.143.857H9.429V0H8.57v.857H3.43V0h-.86v.857H.857A.858.858 0 000 1.714v9.429c0 .472.385.857.857.857h7.286a.428.428 0 00.303-.126l3.428-3.428c.08-.08.126-.19.126-.303V1.714a.858.858 0 00-.857-.857zm-2.572 9.68V8.57h1.966L8.57 10.537zm2.572-2.823H8.57a.858.858 0 00-.857.857v2.572H.857V4.286h10.286v3.428zm0-4.285H.857V1.714h1.714v.857h.858v-.857H8.57v.857h.858v-.857h1.714V3.43z' fill='%237DB6C9'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--z-deadline:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.673 11.49c.435-.87.953-2.35.229-2.989-.667.1-1.207.101-1.646.003-1.105-.249-1.455-1.124-1.15-2.246-1.487 1.36-1.55 3.363-.999 5.292a.352.352 0 01-.533.39c-.092-.062-2.265-1.537-2.265-3.808 0-3.72 4.218-3.88 4.218-7.78 0-.298.349-.46.577-.27 1.686 1.415 4.753 4.813 4.58 7.94-.085 1.55-.927 2.867-2.502 3.918-.298.198-.67-.129-.51-.45z' fill='%237DB6C9'/%3E%3C/svg%3E");
    /*1*/--z-deadline-o:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.673 11.49c.435-.87.953-2.35.229-2.989-.667.1-1.207.101-1.646.003-1.105-.249-1.455-1.124-1.15-2.246-1.487 1.36-1.55 3.363-.999 5.292a.352.352 0 01-.533.39c-.092-.062-2.265-1.537-2.265-3.808 0-3.72 4.218-3.88 4.218-7.78 0-.298.349-.46.577-.27 1.686 1.415 4.753 4.813 4.58 7.94-.085 1.55-.927 2.867-2.502 3.918-.298.198-.67-.129-.51-.45z' fill='%23FF7131'/%3E%3C/svg%3E");
    /*1*/--z-responses:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 6.5a2 2 0 100-4 2 2 0 000 4zm0 1c-1.335 0-4 .67-4 2v.5c0 .275.225.5.5.5h7c.275 0 .5-.225.5-.5v-.5c0-1.33-2.665-2-4-2zm3.235-3.615c.16.395.16.835 0 1.23a.62.62 0 00.125.68l.015.015c.29.29.785.23.975-.135.38-.725.38-1.575-.01-2.33a.617.617 0 00-.985-.145l-.005.005a.635.635 0 00-.115.68zm1.855-2.44c-.2.2-.23.51-.065.74.985 1.37.98 3.205-.015 4.625a.57.57 0 00.07.73l.015.015c.245.245.66.225.87-.05 1.375-1.77 1.38-4.185 0-6.01a.589.589 0 00-.875-.05z' fill='%237DB6C9'/%3E%3C/svg%3E");
    /*1*/--z-subject:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 2.25c-.975 0-2.025.2-2.75.75-.725-.55-1.775-.75-2.75-.75-.725 0-1.495.11-2.14.395-.365.165-.61.52-.61.925v5.64c0 .65.61 1.13 1.24.97.49-.125 1.01-.18 1.51-.18.78 0 1.61.13 2.28.46.3.15.64.15.935 0 .67-.335 1.5-.46 2.28-.46.5 0 1.02.055 1.51.18a.993.993 0 001.24-.97V3.57c0-.405-.245-.76-.61-.925-.64-.285-1.41-.395-2.135-.395zm1.75 6.365c0 .315-.29.545-.6.49-.375-.07-.765-.1-1.15-.1-.85 0-2.075.325-2.75.75V4c.675-.425 1.9-.75 2.75-.75.46 0 .915.045 1.35.14.23.05.4.255.4.49v4.735z' fill='%237DB6C9'/%3E%3C/svg%3E");
    /*1*/--z-cat:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 1.5H7.41C7.2.92 6.65.5 6 .5c-.65 0-1.2.42-1.41 1H2.5c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-7c0-.55-.45-1-1-1zM6 1.5c.275 0 .5.225.5.5s-.225.5-.5.5a.501.501 0 01-.5-.5c0-.275.225-.5.5-.5zm.5 7H4a.501.501 0 01-.5-.5c0-.275.225-.5.5-.5h2.5c.275 0 .5.225.5.5s-.225.5-.5.5zm1.5-2H4a.501.501 0 01-.5-.5c0-.275.225-.5.5-.5h4c.275 0 .5.225.5.5s-.225.5-.5.5zm0-2H4a.501.501 0 01-.5-.5c0-.275.225-.5.5-.5h4c.275 0 .5.225.5.5s-.225.5-.5.5z' fill='%237DB6C9'/%3E%3C/svg%3E");
    /*1*/--z-cart:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 26.25H35a.625.625 0 00.612-.497l3.125-15a.625.625 0 00-.612-.753H8.215L6.859 4.232a.625.625 0 00-.608-.482H1.875a.625.625 0 000 1.25h3.88l4.734 20.119A2.504 2.504 0 008.75 27.5v1.25a2.503 2.503 0 002.5 2.5h.002a3.126 3.126 0 104.996 0h12.504a3.126 3.126 0 104.996 0h2.502a.624.624 0 100-1.25h-25A1.252 1.252 0 0110 28.75V27.5a1.252 1.252 0 011.25-1.25zm.495-1.25l-.588-2.5h3.447l.313 2.5h-3.172zm13.54-6.25l-.103 2.5h-4.114l-.104-2.5h4.322zm-4.373-1.25l-.104-2.5h4.634l-.104 2.5h-4.426zm-1.095 3.75h-4.11l-.312-2.5h4.318l.104 2.5zm.052 1.25l.104 2.5h-3.796l-.313-2.5h4.005zm1.251 0h4.01l-.104 2.5h-3.802l-.104-2.5zm5.26 0h4.006l-.313 2.5h-3.797l.105-2.5zm.053-1.25l.104-2.5h4.318l-.313 2.5h-4.11zm5.681-2.5h3.68l-.52 2.5h-3.472l.312-2.5zm.157-1.25l.312-2.5h3.992l-.52 2.5H32.27zm-1.26 0h-4.422l.104-2.5h4.63l-.312 2.5zm-4.266-3.75l.104-2.5h4.943l-.313 2.5h-4.734zm-1.25 0h-4.74l-.103-2.5h4.946l-.104 2.5zm-5.99 0H14.77l-.312-2.5H19.4l.105 2.5zm.052 1.25l.104 2.5h-4.422l-.313-2.5h4.63zm-5.578 2.5H9.98L9.392 15h4.275l.312 2.5zm.157 1.25l.312 2.5h-3.586l-.588-2.5h3.862zM34.492 25h-3.159l.313-2.5h3.367l-.52 2.5zm2.344-11.25h-4.097l.313-2.5h4.304l-.52 2.5zm-23.638-2.5l.313 2.5H9.098l-.588-2.5h4.688zm2.427 21.875a1.875 1.875 0 11-3.75 0 1.875 1.875 0 013.75 0zm17.5 0a1.875 1.875 0 11-3.75 0 1.875 1.875 0 013.75 0z' fill='%230A5067'/%3E%3Cpath d='M13.75 33.75a.625.625 0 100-1.25.625.625 0 000 1.25zM31.25 33.75a.625.625 0 100-1.25.625.625 0 000 1.25z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--z-cart-white:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 26.25H35a.625.625 0 00.612-.497l3.125-15a.625.625 0 00-.612-.753H8.215L6.859 4.232a.625.625 0 00-.608-.482H1.875a.625.625 0 000 1.25h3.88l4.734 20.119A2.504 2.504 0 008.75 27.5v1.25a2.503 2.503 0 002.5 2.5h.002a3.126 3.126 0 104.996 0h12.504a3.126 3.126 0 104.996 0h2.502a.624.624 0 100-1.25h-25A1.252 1.252 0 0110 28.75V27.5a1.252 1.252 0 011.25-1.25zm.495-1.25l-.588-2.5h3.447l.313 2.5h-3.172zm13.54-6.25l-.103 2.5h-4.114l-.104-2.5h4.322zm-4.373-1.25l-.104-2.5h4.634l-.104 2.5h-4.426zm-1.095 3.75h-4.11l-.312-2.5h4.318l.104 2.5zm.052 1.25l.104 2.5h-3.796l-.313-2.5h4.005zm1.251 0h4.01l-.104 2.5h-3.802l-.104-2.5zm5.26 0h4.006l-.313 2.5h-3.797l.105-2.5zm.053-1.25l.104-2.5h4.318l-.313 2.5h-4.11zm5.681-2.5h3.68l-.52 2.5h-3.472l.312-2.5zm.157-1.25l.312-2.5h3.992l-.52 2.5H32.27zm-1.26 0h-4.422l.104-2.5h4.63l-.312 2.5zm-4.266-3.75l.104-2.5h4.943l-.313 2.5h-4.734zm-1.25 0h-4.74l-.103-2.5h4.946l-.104 2.5zm-5.99 0H14.77l-.312-2.5H19.4l.105 2.5zm.052 1.25l.104 2.5h-4.422l-.313-2.5h4.63zm-5.578 2.5H9.98L9.392 15h4.275l.312 2.5zm.157 1.25l.312 2.5h-3.586l-.588-2.5h3.862zM34.492 25h-3.159l.313-2.5h3.367l-.52 2.5zm2.344-11.25h-4.097l.313-2.5h4.304l-.52 2.5zm-23.638-2.5l.313 2.5H9.098l-.588-2.5h4.688zm2.427 21.875a1.875 1.875 0 11-3.75 0 1.875 1.875 0 013.75 0zm17.5 0a1.875 1.875 0 11-3.75 0 1.875 1.875 0 013.75 0z' fill='white'/%3E%3Cpath d='M13.75 33.75a.625.625 0 100-1.25.625.625 0 000 1.25zM31.25 33.75a.625.625 0 100-1.25.625.625 0 000 1.25z' fill='white'/%3E%3C/svg%3E");
    /*1*/--ok-vote:url("data:image/svg+xml,%3Csvg width='16' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 .7L5.52 9.18 1.98 5.64A.996.996 0 10.57 7.05l4.24 4.24c.39.39 1.02.39 1.41 0l9.18-9.18a.999.999 0 00-.01-1.42c-.37-.38-1-.38-1.39.01z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*--mp-hs:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.989 21.74v27.487H4.008V21.74h-2v28.49a1 1 0 001 1h57.98a1 1 0 001-1.002V21.74h-2z' fill='%230A5067'/%3E%3Cpath d='M49.346 22.363L32.648 8.114a1 1 0 00-1.299 0l-16.697 14.25a.999.999 0 00.649 1.76h33.395a1 1 0 00.65-1.761zm-31.333-.239L31.997 10.19l13.985 11.934h-27.97z' fill='%230A5067'/%3E%3Cpath d='M61.913 21.352l-4.163-9.888a1 1 0 00-.922-.612h-21.34a1.002 1.002 0 00-.649 1.76L46.427 22.5c.181.154.411.24.649.24h13.915a1.001 1.001 0 00.922-1.388zm-14.468-.613l-9.244-7.888h17.963l3.321 7.888h-12.04zM29.448 11.505a1 1 0 00-.938-.654H7.17a1 1 0 00-.922.612l-4.162 9.888a1 1 0 00.922 1.388h13.915c.238 0 .468-.085.65-.239l11.585-9.889a.999.999 0 00.29-1.106zM16.554 20.74H4.514l3.32-7.888h17.964l-9.244 7.888zM63 49.228H1a1 1 0 00-1 1v4.897a1 1 0 001 1h62a1 1 0 001-1v-4.897a1 1 0 00-1-1zm-1 4.897H2v-2.897h60v2.897z' fill='%230A5067'/%3E%3Cpath d='M23.396 22.124h-6.24a1 1 0 00-1 1v3.323a1 1 0 001 1h6.24a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-.999 3.323h-4.24v-1.323h4.24v1.323z' fill='%230A5067'/%3E%3Cpath d='M22.22 25.447h-3.876a1 1 0 00-1 1v20.457a1 1 0 001 1h3.876a1 1 0 001-.999V26.447a1 1 0 00-1-1zm-1 20.457h-1.876V27.447h1.876v18.457z' fill='%230A5067'/%3E%3Cpath d='M23.396 45.905h-6.24a1 1 0 00-1 1v3.323a1 1 0 001 1h6.24a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-.999 3.323h-4.24v-1.323h4.24v1.323zM46.84 22.124h-6.238a1 1 0 00-1 1v3.323a1 1 0 001 1h6.239a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-1 3.323h-4.238v-1.323h4.239v1.323z' fill='%230A5067'/%3E%3Cpath d='M45.657 25.447h-3.876a1 1 0 00-1 1v20.457a1 1 0 001 1h3.876c.553 0 1-.447 1-.999V26.447a1 1 0 00-1-1zm-1 20.457h-1.876V27.447h1.876v18.457z' fill='%230A5067'/%3E%3Cpath d='M46.84 45.905h-6.238a1 1 0 00-1 1v3.323a1 1 0 001 1h6.239a1 1 0 001-1v-3.323a1 1 0 00-1-1zm-1 3.323h-4.238v-1.323h4.239v1.323zM37.412 31.255H26.59a1 1 0 00-1 1v17.973a1 1 0 001 1h10.822a1 1 0 001-1V32.254a1 1 0 00-1-1zm-1 17.973H27.59V33.255h8.822v15.973zM11.726 27.498H7.344a1 1 0 00-1 1v5.025a1 1 0 001 1h4.382a1 1 0 001-1v-5.025a1 1 0 00-1-1zm-1 5.025H8.344v-3.025h2.382v3.025zM11.726 38.76H7.344a1 1 0 00-1 1v5.025a1 1 0 001 1h4.382a1 1 0 001-1V39.76a1 1 0 00-1-1zm-1 5.025H8.344V40.76h2.382v3.025zM56.651 27.498H52.27a1 1 0 00-1 1v5.025a1 1 0 001 1h4.383a1 1 0 001-1v-5.025a1 1 0 00-1-1zm-1 5.025H53.27v-3.025h2.383v3.025zM56.651 38.76H52.27a1 1 0 00-1 1v5.025a1 1 0 001 1h4.383a1 1 0 001-1V39.76a1 1 0 00-1-1zm-1 5.025H53.27V40.76h2.383v3.025z' fill='%230A5067'/%3E%3C/svg%3E");*/
    /*1*/--dz-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M16.626 8.124h.004a.37.37 0 0 0 .37-.405A8.523 8.523 0 0 0 9.284 0a.371.371 0 0 0-.405.374c.064 5.447.783 7.672 7.747 7.749zm0 .752c-6.964.076-7.682 2.302-7.747 7.748a.371.371 0 0 0 .405.375A8.522 8.522 0 0 0 17 9.28a.37.37 0 0 0-.374-.405zM7.693.003A8.526 8.526 0 0 0 .002 7.72a.37.37 0 0 0 .37.405h.004C7.317 8.044 8.034 5.82 8.099.377a.372.372 0 0 0-.406-.374zM.376 8.876c-.116-.013-.206.042-.277.119A.372.372 0 0 0 0 9.28a8.526 8.526 0 0 0 7.726 7.718.372.372 0 0 0 .372-.375C8.033 11.18 7.317 8.956.376 8.876z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--dz-white:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M16.626 8.124h.004a.37.37 0 0 0 .37-.405A8.523 8.523 0 0 0 9.284 0a.371.371 0 0 0-.405.374c.064 5.447.783 7.672 7.747 7.749zm0 .752c-6.964.076-7.682 2.302-7.747 7.748a.371.371 0 0 0 .405.375A8.522 8.522 0 0 0 17 9.28a.37.37 0 0 0-.374-.405zM7.693.003A8.526 8.526 0 0 0 .002 7.72a.37.37 0 0 0 .37.405h.004C7.317 8.044 8.034 5.82 8.099.377a.372.372 0 0 0-.406-.374zM.376 8.876c-.116-.013-.206.042-.277.119A.372.372 0 0 0 0 9.28a8.526 8.526 0 0 0 7.726 7.718.372.372 0 0 0 .372-.375C8.033 11.18 7.317 8.956.376 8.876z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--yt-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M8.554 2.124h.095c.873.003 5.298.035 6.492.356a2.136 2.136 0 0 1 1.503 1.509c.107.403.183.938.234 1.49l.01.11.024.276.008.11c.07.972.078 1.881.079 2.08v.08c-.001.206-.01 1.177-.087 2.188l-.009.112-.01.11c-.052.608-.131 1.212-.249 1.656a2.133 2.133 0 0 1-1.503 1.508c-1.233.332-5.917.355-6.567.356h-.15c-.329 0-1.687-.006-3.11-.055l-.181-.006-.093-.005-.181-.007-.182-.007c-1.18-.052-2.302-.136-2.82-.277a2.133 2.133 0 0 1-1.503-1.507c-.118-.443-.197-1.048-.25-1.656l-.008-.111-.009-.11A33.36 33.36 0 0 1 0 8.16v-.13C.002 7.8.01 7.01.068 6.14l.007-.11.004-.055.008-.11.024-.276.01-.11c.051-.552.127-1.088.234-1.49a2.132 2.132 0 0 1 1.503-1.51c.518-.137 1.64-.222 2.82-.275l.18-.008.184-.006.09-.003.183-.008c1.01-.032 2.022-.05 3.034-.054h.205v-.001zM6.8 5.534v5.12l4.417-2.559L6.8 5.535z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--yt-white:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M8.554 2.124h.095c.873.003 5.298.035 6.492.356a2.136 2.136 0 0 1 1.503 1.509c.107.403.183.938.234 1.49l.01.11.024.276.008.11c.07.972.078 1.881.079 2.08v.08c-.001.206-.01 1.177-.087 2.188l-.009.112-.01.11c-.052.608-.131 1.212-.249 1.656a2.133 2.133 0 0 1-1.503 1.508c-1.233.332-5.917.355-6.567.356h-.15c-.329 0-1.687-.006-3.11-.055l-.181-.006-.093-.005-.181-.007-.182-.007c-1.18-.052-2.302-.136-2.82-.277a2.133 2.133 0 0 1-1.503-1.507c-.118-.443-.197-1.048-.25-1.656l-.008-.111-.009-.11A33.36 33.36 0 0 1 0 8.16v-.13C.002 7.8.01 7.01.068 6.14l.007-.11.004-.055.008-.11.024-.276.01-.11c.051-.552.127-1.088.234-1.49a2.132 2.132 0 0 1 1.503-1.51c.518-.137 1.64-.222 2.82-.275l.18-.008.184-.006.09-.003.183-.008c1.01-.032 2.022-.05 3.034-.054h.205v-.001zM6.8 5.534v5.12l4.417-2.559L6.8 5.535z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--tg-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m.3 8.197 3.917 1.462 1.517 4.876a.461.461 0 0 0 .732.22l2.183-1.78a.651.651 0 0 1 .794-.022l3.939 2.86a.462.462 0 0 0 .723-.28L16.99 1.656a.462.462 0 0 0-.618-.525L.296 7.333a.462.462 0 0 0 .004.864zm5.19.683 7.655-4.715c.137-.084.279.102.16.211L6.989 10.25a1.31 1.31 0 0 0-.406.784l-.215 1.595c-.029.213-.328.234-.387.028l-.828-2.909a.77.77 0 0 1 .337-.867z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--tg-white:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m.3 8.197 3.917 1.462 1.517 4.876a.461.461 0 0 0 .732.22l2.183-1.78a.651.651 0 0 1 .794-.022l3.939 2.86a.462.462 0 0 0 .723-.28L16.99 1.656a.462.462 0 0 0-.618-.525L.296 7.333a.462.462 0 0 0 .004.864zm5.19.683 7.655-4.715c.137-.084.279.102.16.211L6.989 10.25a1.31 1.31 0 0 0-.406.784l-.215 1.595c-.029.213-.328.234-.387.028l-.828-2.909a.77.77 0 0 1 .337-.867z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
    /*1--wa-blue:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.502 0h-.004C3.81 0 0 3.812 0 8.5c0 1.86.6 3.583 1.618 4.982L.558 16.64l3.268-1.045A8.426 8.426 0 0 0 8.502 17C13.19 17 17 13.187 17 8.5 17 3.813 13.189 0 8.502 0zm4.946 12.003c-.205.58-1.019 1.06-1.668 1.2-.444.094-1.024.17-2.977-.64C6.305 11.528 4.696 8.99 4.57 8.825c-.12-.165-1.01-1.344-1.01-2.564s.62-1.813.87-2.068c.205-.21.544-.305.869-.305.105 0 .2.005.285.01.25.01.375.025.54.419.204.494.704 1.714.763 1.84.06.125.121.295.036.46-.08.17-.15.245-.275.39-.125.144-.244.254-.37.41-.114.134-.244.279-.1.528.145.245.644 1.06 1.38 1.714.948.845 1.718 1.115 1.993 1.23.205.085.45.064.6-.095.19-.205.424-.545.663-.88.17-.24.385-.27.61-.185.23.08 1.444.68 1.694.805s.414.184.475.29c.06.105.06.599-.146 1.18z' fill='%230A5067'/%3E%3C/svg%3E");*/
    /*1--wa-white:url("data:image/svg+xml,%3Csvg width='17' height='17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.502 0h-.004C3.81 0 0 3.812 0 8.5c0 1.86.6 3.583 1.618 4.982L.558 16.64l3.268-1.045A8.426 8.426 0 0 0 8.502 17C13.19 17 17 13.187 17 8.5 17 3.813 13.189 0 8.502 0zm4.946 12.003c-.205.58-1.019 1.06-1.668 1.2-.444.094-1.024.17-2.977-.64C6.305 11.528 4.696 8.99 4.57 8.825c-.12-.165-1.01-1.344-1.01-2.564s.62-1.813.87-2.068c.205-.21.544-.305.869-.305.105 0 .2.005.285.01.25.01.375.025.54.419.204.494.704 1.714.763 1.84.06.125.121.295.036.46-.08.17-.15.245-.275.39-.125.144-.244.254-.37.41-.114.134-.244.279-.1.528.145.245.644 1.06 1.38 1.714.948.845 1.718 1.115 1.993 1.23.205.085.45.064.6-.095.19-.205.424-.545.663-.88.17-.24.385-.27.61-.185.23.08 1.444.68 1.694.805s.414.184.475.29c.06.105.06.599-.146 1.18z' fill='white'/%3E%3C/svg%3E");*/
    /*1*/--t-star:url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' d='M-1-1h14v14H-1z'/%3E%3Cpath fill='white' d='M12.044-6.187c-10.281 0-18.606 8.176-18.606 18.25s8.325 18.25 18.606 18.25c10.3 0 18.643-8.177 18.643-18.25s-8.344-18.25-18.643-18.25zm5.178 27.484l-5.16-3.85-5.159 3.85c-.726.53-1.713-.146-1.452-1.004l1.993-6.278-5.104-3.577c-.745-.51-.372-1.66.54-1.66h6.258l2.05-6.607c.26-.858 1.508-.858 1.787 0l2.049 6.607h6.258c.912 0 1.285 1.131.54 1.66l-5.103 3.577 1.993 6.278c.242.84-.764 1.533-1.49 1.004z' stroke='null'/%3E%3C/svg%3E");
    /*1*/--a-li:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.367 2.873L8.163 16.531 2.65 10.829a1.514 1.514 0 00-2.196 0 1.643 1.643 0 000 2.271l6.602 6.829a1.515 1.515 0 002.196 0L23.547 5.144a1.648 1.648 0 00-.016-2.287c-.576-.612-1.557-.612-2.164.016z' fill='%2315D69C'/%3E%3C/svg%3E");
    /*1*/--ft-abstract:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5 4.75v9.58c0 2.09-1.53 3.95-3.61 4.15H6V2C7.17.83 10.24.847 11.5 1v12.5c0 .55-.45 1-1 1s-1-.45-1-1V4.75c0-.41-.34-.75-.75-.75S8 4.34 8 4.75v8.61c0 1.31.94 2.5 2.24 2.63A2.5 2.5 0 0 0 13 13.5V.5C10.5.5 7.5.5 6 2l-.5 17.98c3 .02 1.5 0 4.46 0 3.36 0 6.04-2.26 6.04-5.48V4.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75z' fill='%23FAB826'/%3E%3Cpath d='M34.756 8.578 26.422.244A.833.833 0 0 0 25.834 0h-17.5A3.337 3.337 0 0 0 5 3.333v33.334A3.337 3.337 0 0 0 8.333 40h23.334A3.337 3.337 0 0 0 35 36.667v-27.5a.833.833 0 0 0-.244-.59zm-8.09-5.733 5.489 5.488h-3.822a1.669 1.669 0 0 1-1.666-1.666V2.845zm6.667 33.822c0 .918-.747 1.666-1.666 1.666H8.333a1.669 1.669 0 0 1-1.666-1.666V3.333c0-.918.748-1.666 1.666-1.666H25v5A3.337 3.337 0 0 0 28.333 10h5v26.667z' fill='%230A5067'/%3E%3Cpath d='M13.723 33.446H27.7a.723.723 0 1 0 0-1.446H13.723a.723.723 0 0 0 0 1.446zm0-10H27.7a.723.723 0 1 0 0-1.446H13.723a.723.723 0 0 0 0 1.446zm6-5h7.71a.722.722 0 1 0 0-1.446h-7.71a.722.722 0 0 0 0 1.446zm-6 10H27.7a.723.723 0 1 0 0-1.446H13.723a.723.723 0 0 0 0 1.446z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ft-answers:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.453 15.22a.586.586 0 1 0 0 1.171h1.33a.586.586 0 1 0 0-1.172h-1.33zm3.473.585c0 .324.262.586.586.586h11.72a.586.586 0 1 0 0-1.172h-11.72a.586.586 0 0 0-.586.586zm-4.059 2.968c0 .323.263.586.586.586h7.888a.586.586 0 0 0 0-1.172h-7.888a.586.586 0 0 0-.586.586zm16.363 4.353H15.452a.586.586 0 0 0 0 1.172H31.23a.586.586 0 1 0 0-1.172zm-15.777 4.139h7.888a.586.586 0 0 0 0-1.172h-7.888a.586.586 0 1 0 0 1.172zm15.777 3.768H15.452a.586.586 0 0 0 0 1.172H31.23a.586.586 0 0 0 0-1.172zM16.783 34h-1.33a.586.586 0 0 0 0 1.172h1.33a.586.586 0 1 0 0-1.172zm6.56 0h-3.831a.586.586 0 1 0 0 1.172h3.831a.586.586 0 1 0 0-1.172z' fill='%230A5067'/%3E%3Cpath d='M8.847 9.634c.196 0 .348-.063.393-.233l.34-1.19h2.048l.34 1.19c.045.17.197.233.394.233.313 0 .733-.206.733-.483 0-.027-.009-.054-.018-.09l-1.726-5.626c-.08-.268-.412-.393-.752-.393-.33 0-.661.125-.742.393L8.131 9.061a.522.522 0 0 0-.018.09c0 .286.42.483.734.483zm1.753-5.08.778 2.745H9.82l.779-2.746zm5.035 4.364v-.957h.948c.188 0 .376-.188.376-.474 0-.268-.188-.483-.376-.483h-.948v-.948c0-.188-.188-.367-.474-.367-.268 0-.483.18-.483.367v.948h-.957c-.215 0-.358.215-.358.483 0 .286.143.474.358.474h.957v.957c0 .215.215.358.483.358.286 0 .474-.143.474-.358z' fill='%23FAB826'/%3E%3Cpath d='M35.66 7.839a.586.586 0 0 0-.08-.146l-.01-.01a.565.565 0 0 0-.053-.06L27.64.161a.565.565 0 0 0-.06-.05l-.014-.01a.558.558 0 0 0-.064-.038L27.494.06a.617.617 0 0 0-.063-.027l-.016-.005a.588.588 0 0 0-.072-.018l-.01-.002a.617.617 0 0 0-.067-.007h-.016L27.238 0H6.335c-1.08 0-1.96.88-1.96 1.961V38.04c0 1.081.88 1.96 1.961 1.96H33.74c1.08 0 1.96-.879 1.96-1.96V8.049a.583.583 0 0 0-.039-.21zm-7.837-5.89L33.25 7.09l.392.371h-5.556a.263.263 0 0 1-.263-.263v-5.25zm6.705 36.09a.79.79 0 0 1-.79.789H6.337a.79.79 0 0 1-.79-.79V1.962a.79.79 0 0 1 .79-.79h20.316v6.027c0 .791.643 1.435 1.434 1.435h6.442V38.04z' fill='%230A5067'/%3E%3Cpath d='M11.939 15.172a.586.586 0 0 0-.829 0L9.631 16.65l-.63-.63a.586.586 0 0 0-.83.828l1.046 1.045a.584.584 0 0 0 .828 0L11.94 16a.586.586 0 0 0 0-.828zm0 8a.586.586 0 0 0-.829 0L9.631 24.65l-.63-.63a.586.586 0 0 0-.83.828l1.046 1.045a.584.584 0 0 0 .828 0L11.94 24a.586.586 0 0 0 0-.828zm0 8a.586.586 0 0 0-.829 0L9.631 32.65l-.63-.63a.586.586 0 0 0-.83.828l1.046 1.045a.584.584 0 0 0 .828 0L11.94 32a.586.586 0 0 0 0-.828z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ft-article:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M32.499 40h-25a4.172 4.172 0 0 1-4.167-4.167V4.167A4.172 4.172 0 0 1 7.499 0h25a4.172 4.172 0 0 1 4.166 4.167v31.666A4.172 4.172 0 0 1 32.5 40zm-25-38.333a2.503 2.503 0 0 0-2.5 2.5v31.666c0 1.379 1.121 2.5 2.5 2.5h25c1.378 0 2.5-1.121 2.5-2.5V4.167c0-1.379-1.122-2.5-2.5-2.5h-25z' fill='%230A5067'/%3E%3Cpath d='M30.832 8h-6.667a.834.834 0 0 1 0-1.667h6.667a.834.834 0 0 1 0 1.667zm0 5h-6.667a.834.834 0 0 1 0-1.667h6.667a.834.834 0 0 1 0 1.667zm0 5h-6.667a.834.834 0 0 1 0-1.667h6.667a.834.834 0 0 1 0 1.667zm0 5H9.165a.834.834 0 0 1 0-1.667h21.667a.834.834 0 0 1 0 1.667zm0 5H9.165a.834.834 0 0 1 0-1.667h21.667a.834.834 0 0 1 0 1.667zm0 5H9.165a.834.834 0 0 1 0-1.667h21.667a.834.834 0 0 1 0 1.667z' fill='%230A5067'/%3E%3Cpath d='M15.014 5.067a6.917 6.917 0 1 0 6.917 6.917 6.925 6.925 0 0 0-6.917-6.917zm5.97 6.574H16.02l3.538-3.538a5.95 5.95 0 0 1 1.425 3.538zm-5.97-5.637c1.424 0 2.801.509 3.881 1.436l-3.878 3.878-3.052-4.474a5.942 5.942 0 0 1 3.05-.84zm0 11.959A5.977 5.977 0 0 1 11.2 7.384l3.403 4.99a.47.47 0 0 0 .387.204h5.975a5.987 5.987 0 0 1-5.95 5.385z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-book:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 22.104a.586.586 0 0 0-.586.585v7.032a.586.586 0 1 0 1.172 0v-7.032a.586.586 0 0 0-.586-.585z' fill='%23FAB826'/%3E%3Cpath d='M39.297 23.275a.586.586 0 0 0 .586-.586V4.957c0-1.017-1.145-1.694-2.038-1.192l-.398.224-1.88-1.91a.586.586 0 0 0-.548-.16c-.077.017-1.337.311-3.163 1.007V.586a.586.586 0 0 0-.799-.546c-5.477 2.14-8.347 5.51-9.79 7.962-.585.996-.99 1.92-1.267 2.692a15.956 15.956 0 0 0-1.267-2.692C17.29 5.551 14.42 2.18 8.943.04a.587.587 0 0 0-.8.546v2.34c-1.821-.695-3.08-.989-3.162-1.007a.586.586 0 0 0-.548.16l-1.88 1.91-.398-.224C1.269 3.267.117 3.933.117 4.957v24.625c0 .493.267.95.697 1.192l15.104 8.496c.33.147.742.223 1.09.11.244.373.665.62 1.143.62h3.698c.478 0 .899-.247 1.143-.62.371.118.734.081 1.09-.11l15.104-8.496a1.37 1.37 0 0 0 .697-1.192v-3.143c0-.757-1.172-.757-1.172 0v3.143c0 .07-.038.136-.1.17l-15.104 8.496c-.162.055-.259-.002-.291-.17v-24.3c-.021-.118-.026-.425.1-.495L38.42 4.787c.162-.055.259.002.29.17v17.732c0 .324.263.586.587.586zM30.685 1.461V3.4c-.554.236-1.14.503-1.747.806-2.14 1.065-4.816 2.72-7.05 5.095.12-.23.248-.464.39-.703 1.277-2.17 3.76-5.116 8.407-7.136zm-8.64 16.278h-4.09v-1.432h4.09v1.432zm-4.09 1.172h4.09V33.5h-4.09V18.91zm0 15.76h4.09v1.432h-4.09V34.67zm4.09-19.536h-4.09v-1.358c0-.108.088-.195.196-.195h3.698c.108 0 .195.087.195.195v1.358zM5.031 3.14c.852.228 3.336.96 6.112 2.423.646.341 1.215-.684.546-1.036a31.984 31.984 0 0 0-2.375-1.128V1.461c4.62 2.008 7.098 4.93 8.377 7.085.15.252.286.498.411.74a21.828 21.828 0 0 0-3.158-2.753c-.614-.443-1.3.508-.685.95 2.023 1.458 3.641 3.112 4.824 4.927-.68-.056-1.262.168-1.825-.149L3.61 4.584 5.032 3.14zm11.655 35.107-.194.001-15.104-8.496a.196.196 0 0 1-.1-.17V4.957c0-.156.172-.237.291-.17l15.104 8.495c.126.071.121.378.1.495v24.301a.19.19 0 0 1-.097.169zm5.357.386a.196.196 0 0 1-.195.195H18.15a.196.196 0 0 1-.195-.195v-1.358h4.088v1.358zm.697-26.372c-.574.323-1.131.101-1.824.149 2.294-3.515 5.845-5.809 8.517-7.143a30.666 30.666 0 0 1 5.534-2.126l1.42 1.443-13.647 7.677z' fill='%230A5067'/%3E%3Cpath d='m36.143 10.232-10.938 6.25a.586.586 0 0 0-.295.509v3.777c0 .442.493.728.877.509l10.938-6.25a.586.586 0 0 0 .295-.509v-3.777c0-.41-.472-.74-.877-.51zm-.295 3.946-9.766 5.58v-2.427l9.766-5.58v2.427z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1--ft-cheat-sheet:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M15.34 28.43a.781.781 0 1 0 0-1.563.781.781 0 0 0 0 1.562z' fill='%230A5067'/%3E%3Cpath d='M39.486 19.114a2.352 2.352 0 0 0-1.284-.815c.105-.27.158-.554.157-.844 0-.622-.241-1.208-.678-1.65a2.333 2.333 0 0 0-1.642-.693l-12.18-.559a27.75 27.75 0 0 0 2.6-1.509c1.007-.669 1.761-1.31 2.305-1.96.31-.368.48-.839.48-1.323a2.058 2.058 0 0 0-.621-1.477 2.058 2.058 0 0 0-1.441-.589h-.002c-.24 0-.478.043-.707.126l-15.855 6.194a.777.777 0 0 0-.462-.152H.781a.781.781 0 0 0-.781.78v16.88c0 .432.35.782.781.782h6.25c.432 0 .782-.35.782-.782v-3.449h2.343a.78.78 0 0 0 .61-.295l.983.142a.782.782 0 0 0 .223-1.547l-1.034-.148V15.568l16.076-6.28c.056-.02.17-.03.17-.03.127 0 .508.107.498.503a.509.509 0 0 1-.115.319c-.448.534-1.094 1.078-1.974 1.664-1.273.847-3.024 1.766-5.206 2.732a.778.778 0 0 0-.452.858c.067.358.368.62.732.636l15.349.704c.43.001.78.35.78.78a.708.708 0 0 1-.215.524.779.779 0 0 1-.544.216l-10.626-.27a.78.78 0 0 0-.802.76v.02a.78.78 0 0 0 .761.781l12.286.313c.43 0 .78.35.782.78a.783.783 0 0 1-.782.78H25.391a.786.786 0 0 0-.781.781c0 .206.083.408.228.553a.787.787 0 0 0 .553.229h10.625a.781.781 0 0 1 0 1.56h-12.11a.787.787 0 0 0-.552.23.786.786 0 0 0-.229.552c0 .206.084.407.229.552a.787.787 0 0 0 .552.23h8.125c.43 0 .78.35.782.78a.784.784 0 0 1-.782.78H20.524l-1.593-.23a.782.782 0 0 0-.222 1.547l1.649.237a.86.86 0 0 0 .11.008h11.563a2.33 2.33 0 0 0 1.657-.686 2.337 2.337 0 0 0 .553-2.437h1.775a2.33 2.33 0 0 0 1.657-.686c.443-.443.686-1.03.686-1.657 0-.291-.053-.576-.157-.844A2.351 2.351 0 0 0 40 20.578c0-.54-.178-1.045-.514-1.464zM6.25 30.742H1.562V15.425H6.25v15.318zm1.563-15.317h1.562v11.087H7.812V15.425z' fill='%230A5067'/%3E%3Cpath d='M3.906 29.18a.781.781 0 1 0 0-1.563.781.781 0 0 0 0 1.563z' fill='%230A5067'/%3E%3Cpath d='M16.378 17h-5.44v8h5.44c.895 0 1.622-.697 1.622-1.553v-4.894c0-.856-.727-1.553-1.622-1.553zm-.201 6.255h-5.24v-4.51h5.24v4.51z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");*/
    /*1*/--ft-coursework:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M1.667 8.333H0v23.334h1.667V8.333z' fill='%230A5067'/%3E%3Cpath d='M5.833 25.833a5.833 5.833 0 1 0 0 11.667v-1.667A4.167 4.167 0 1 1 10 31.667h1.667a5.833 5.833 0 0 0-5.834-5.834zM39.168 6.667h-5v1.666h4.167v23.334a4.172 4.172 0 0 1-4.167 4.166V37.5a5.84 5.84 0 0 0 5.833-5.833V7.5a.833.833 0 0 0-.833-.833z' fill='%230A5067'/%3E%3Cpath d='M14.165 35.833H5.832V37.5h8.333v-1.667zM5.833 2.5A5.833 5.833 0 0 0 0 8.333h1.667a4.167 4.167 0 0 1 8.333 0v15.834h1.667V8.333A5.833 5.833 0 0 0 5.833 2.5z' fill='%230A5067'/%3E%3Cpath d='M20.833 15H17.5v1.667h3.333V15zm0 8.333H17.5V25h3.333v-1.667zm0-16.666H17.5v1.666h3.333V6.667zm0 25H17.5v1.666h3.333v-1.666zm.834-12.5H17.5v1.666h4.167v-1.666zm0 8.333H17.5v1.667h4.167V27.5zm0-16.667H17.5V12.5h4.167v-1.667z' fill='%23FAB826'/%3E%3Cpath d='M30.833 31.667H27.5v1.666h3.333v-1.666z' fill='%230A5067'/%3E%3Cpath d='m31.524 3.704-1.667-2.5a.866.866 0 0 0-1.386 0l-1.667 2.5a.838.838 0 0 0-.14.463v34.166c0 .46.373.834.833.834h3.334c.46 0 .833-.373.833-.834V4.167a.84.84 0 0 0-.14-.463zM29.997 37.5h-1.666V4.417l.833-1.25.833 1.25V37.5z' fill='%230A5067'/%3E%3Cpath d='M23.33.833h-5c-.92 0-1.666.747-1.666 1.667v35c0 .92.746 1.667 1.667 1.667h5c.92 0 1.666-.747 1.666-1.667v-35c0-.92-.746-1.667-1.666-1.667zm0 36.667h-5v-35h5v35z' fill='%23FAB826'/%3E%3Cpath d='M14.165 6.667h-3.333v1.666h3.333V6.667z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-dissertation:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33.589 38.438h-1.214c-1.505-1.786-1.505-4.465 0-6.25h1.214a.781.781 0 0 0 0-1.563h-4.34c-1.504-1.785-1.504-4.465 0-6.25h1.215a.781.781 0 0 0 0-1.563h-6.578c.346-.3.674-.64.977-1.018 1.29-1.614 2.002-3.75 2.002-6.013 0-2.264-.711-4.399-2.002-6.012-1.332-1.665-3.118-2.582-5.03-2.582-.814 0-1.618.172-2.376.503a5.423 5.423 0 0 0-.364-1.45c.102-.005.206-.011.314-.022 1.18-.11 2.146-.511 2.796-1.161.65-.65 1.051-1.616 1.162-2.796a7.184 7.184 0 0 0-.021-1.548.781.781 0 0 0-.661-.66A7.187 7.187 0 0 0 19.134.03c-1.18.11-2.146.512-2.795 1.162-.62.62-1.014 1.53-1.145 2.639a5.437 5.437 0 0 0-3.173-1.02.781.781 0 1 0 0 1.563 3.912 3.912 0 0 1 3.855 3.28 5.917 5.917 0 0 0-2.293-.468c-1.911 0-3.698.917-5.03 2.582-1.29 1.613-2.001 3.748-2.001 6.012 0 2.264.71 4.399 2.002 6.013.303.379.63.719.977 1.018H2.34a.781.781 0 0 0-.562.239c-2.37 2.453-2.37 6.445 0 8.898a.78.78 0 0 0 .562.238h1.587c-1.328 2.403-1.003 5.525.976 7.575.147.152.35.238.562.238H33.59a.781.781 0 0 0 0-1.563zM17.444 2.297c.597-.598 1.652-.737 2.39-.737h.001c0 .737-.14 1.793-.737 2.391-.597.597-1.652.737-2.389.737-.002-.682.105-1.762.735-2.391zM8.114 15.78c0-3.877 2.454-7.031 5.47-7.031.933 0 1.855.31 2.667.897a.781.781 0 0 0 .915 0c.812-.587 1.734-.897 2.668-.897 3.015 0 5.468 3.154 5.468 7.031s-2.453 7.031-5.468 7.031c-.934 0-1.856-.31-2.668-.897a.78.78 0 0 0-.915 0c-.812.587-1.734.897-2.668.897-3.015 0-5.468-3.154-5.468-7.03zm-5.429 8.594h24.678a6.51 6.51 0 0 0 0 6.25H13.276V28.28h9.375a.781.781 0 0 0 0-1.562H5.464a.781.781 0 1 0 0 1.562h1.562v2.344h-4.34c-1.505-1.785-1.505-4.465 0-6.25zM8.59 28.28h3.125v3.583l-1.01-1.01a.781.781 0 0 0-1.105 0l-1.01 1.01V28.28zm-2.777 3.907h1.214v1.562a.782.782 0 0 0 1.334.553l1.791-1.792 1.792 1.791a.781.781 0 0 0 1.333-.552v-1.563h17.212a6.51 6.51 0 0 0 0 6.25H5.811c-1.505-1.785-1.503-4.465.001-6.25z' fill='%230A5067'/%3E%3Cpath d='M25.777 34.531H14.84a.781.781 0 0 0 0 1.563h10.937a.781.781 0 0 0 0-1.563z' fill='%230A5067'/%3E%3Cpath d='M19.615 11.992c1.22.353 2.165 1.448 2.464 2.858a.781.781 0 1 0 1.528-.325c-.419-1.974-1.782-3.52-3.558-4.034a.781.781 0 0 0-.434 1.5z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--ft-essay:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.774 0H12.375C9.97 0 8.03 1.94 7.991 4.345 5.663 4.462 3.84 6.402 3.84 8.73v26.887C3.84 38.02 5.819 40 8.224 40h19.399c2.405 0 4.345-1.94 4.384-4.345 2.328-.117 4.151-2.057 4.151-4.384V4.423C36.197 1.979 34.218 0 31.774 0zM30.57 35.616a2.947 2.947 0 0 1-2.948 2.949h-19.4a2.906 2.906 0 0 1-2.909-2.91V8.729c0-1.63 1.32-2.91 2.91-2.91h15.674v6.751c0 .388.31.737.737.737h5.936v22.309zm-5.199-23.783v-4.85l4.307 4.85h-4.307zm6.673 22.386V12.57c0-.077-.038-.194-.038-.271 0-.04-.04-.078-.04-.078-.038-.039-.038-.077-.077-.116l-6.712-7.527a.79.79 0 0 0-.194-.116c-.038 0-.038-.04-.077-.04a.731.731 0 0 0-.31-.077H9.464c.04-1.59 1.32-2.87 2.91-2.87h19.399c1.63 0 2.91 1.318 2.91 2.91v26.924h.038c0 1.513-1.202 2.794-2.677 2.91z' fill='%230A5067'/%3E%3Cpath d='M9.116 13.307h6.48a.737.737 0 1 0 0-1.474h-6.48a.737.737 0 0 0-.737.737c0 .427.31.737.737.737z' fill='%23FAB826'/%3E%3Cpath d='M15.556 31.115h-6.44a.737.737 0 1 0 0 1.475h6.48c.387 0 .736-.31.736-.738-.038-.387-.349-.737-.776-.737zM8.379 17.459c0 .388.31.737.737.737H26.42c.388 0 .737-.31.737-.737a.763.763 0 0 0-.737-.737H9.116a.737.737 0 0 0-.737.737zM26.42 20.33H9.116a.737.737 0 1 0 0 1.474H26.42c.388 0 .737-.31.737-.737a.763.763 0 0 0-.737-.737zm0 3.647H9.116a.737.737 0 1 0 0 1.474H26.42a.737.737 0 1 0 0-1.474zm0 3.608H9.116a.737.737 0 1 0 0 1.474H26.42a.737.737 0 1 0 0-1.474z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ft-homework:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M28.153 3.157H15.615c-.24 0-.458.14-.553.356l-2.775 6.34-2.029-4.454a.601.601 0 0 0-.548-.348H8.577c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h.742l2.43 5.334a.602.602 0 0 0 .55.348h.004a.601.601 0 0 0 .548-.356l3.16-7.22h12.142c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586z' fill='%230A5067'/%3E%3Cpath d='M20.705 11.655a.609.609 0 0 0 .836.144.577.577 0 0 0 .148-.816l-1.457-2.032 1.457-2.031a.577.577 0 0 0-.147-.816.61.61 0 0 0-.837.144L19.5 7.93l-1.207-1.682a.61.61 0 0 0-.837-.144.577.577 0 0 0-.147.816l1.457 2.031-1.457 2.032a.577.577 0 0 0 .148.816.608.608 0 0 0 .836-.144L19.5 9.973l1.206 1.682z' fill='%23FAB826'/%3E%3Cpath d='M8.577 14.746h4.854c.331 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586H8.577c-.332 0-.6.262-.6.586 0 .324.268.586.6.586zm0 2.684h4.854c.331 0 .6-.263.6-.587a.593.593 0 0 0-.6-.586H8.577c-.332 0-.6.263-.6.586 0 .324.268.586.6.586zm19.576-3.856H23.3c-.332 0-.6.262-.6.586 0 .324.268.586.6.586h4.853c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586zm0 2.683H23.3c-.332 0-.6.263-.6.586 0 .324.268.586.6.586h4.853c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586zM14.34 20.986a.61.61 0 0 0-.836.144l-.721 1.005-.722-1.005a.61.61 0 0 0-.836-.144.577.577 0 0 0-.148.816l.973 1.355-.973 1.355a.577.577 0 0 0 .148.816.607.607 0 0 0 .836-.144l.722-1.006.721 1.006a.608.608 0 0 0 .836.144.577.577 0 0 0 .148-.816l-.972-1.355.972-1.355a.577.577 0 0 0-.147-.816zm4.65 4.342a.608.608 0 0 0 .837-.144l2.427-3.382a.577.577 0 0 0-.148-.816.61.61 0 0 0-.836.144l-.722 1.005-.72-1.005a.61.61 0 0 0-.837-.144.577.577 0 0 0-.148.816l.972 1.355-.972 1.355a.577.577 0 0 0 .148.816zm-2.324-.401c.331 0 .6-.263.6-.586v-.598h.613c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586h-.613v-.598a.593.593 0 0 0-.6-.586.593.593 0 0 0-.601.586v.598h-.613c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h.613v.598c0 .323.269.585.6.585zm11.486-3.461h-1.618c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h1.618c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586zm0 2.21h-1.618c-.332 0-.6.262-.6.586 0 .323.268.585.6.585h1.618c.332 0 .6-.262.6-.585a.593.593 0 0 0-.6-.586zM9.29 26.25a.607.607 0 0 0 .85 0 .576.576 0 0 0 0-.829 3.143 3.143 0 0 1-.962-2.264c0-.855.341-1.66.961-2.265a.576.576 0 0 0 0-.828.611.611 0 0 0-.85 0 4.292 4.292 0 0 0-1.312 3.093c0 1.168.466 2.267 1.313 3.093zm13.66 0a.607.607 0 0 0 .424.171.607.607 0 0 0 .425-.171 4.293 4.293 0 0 0 1.313-3.093 4.292 4.292 0 0 0-1.313-3.093.611.611 0 0 0-.85 0 .576.576 0 0 0 0 .829 3.143 3.143 0 0 1 0 4.528.576.576 0 0 0 0 .829z' fill='%230A5067'/%3E%3Cpath d='M35.548 27.94V14.805a.593.593 0 0 0-.6-.586c-.332 0-.6.262-.6.586v13.132H32.96V3.382h1.387v8.69c0 .323.27.585.6.585a.593.593 0 0 0 .601-.586V2.796a.593.593 0 0 0-.6-.586H32.96V.586a.593.593 0 0 0-.6-.586H5.18a.593.593 0 0 0-.601.586v20.037c0 .323.269.585.6.585a.593.593 0 0 0 .601-.585V1.172h25.98v26.765h-3.901c-.332 0-.6.263-.6.586 0 .324.268.586.6.586h3.9v3.563H5.379l-1.633-1.195h.544c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586h-.544l1.634-1.196h19.663c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586H5.78v-4.571a.593.593 0 0 0-.6-.586.593.593 0 0 0-.601.586v4.864l-2.995 2.192a.584.584 0 0 0 0 .938l2.995 2.191v3.654c0 .323.269.586.6.586h1.989v1.623c0 .324.269.586.6.586h27.18c.331 0 .6-.262.6-.586v-5.572c1.17-.06 2.104-1.006 2.104-2.162v-1.578c0-1.156-.934-2.103-2.104-2.162zM5.78 33.844h25.98v2.775H5.78v-2.775zm2.589 4.984v-1.037h23.99a.594.594 0 0 0 .601-.586v-3.36h1.387v4.983H8.37zM36.45 31.68c0 .547-.456.992-1.017.992H32.96V29.11h2.473c.561 0 1.017.445 1.017.993v1.578z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-lab:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.773 9.375a.782.782 0 1 0 .001 1.563.782.782 0 0 0 0-1.563zM24.648 12.5a.782.782 0 1 0 .001 1.563.782.782 0 0 0 0-1.563zm-3.125-4.687a.782.782 0 1 0 .001 1.563.782.782 0 0 0 0-1.563zm-3.125 27.5a.782.782 0 1 0 .001 1.563.782.782 0 0 0 0-1.563z' fill='%23FAB826'/%3E%3Cpath d='M33.23 11.334a6.98 6.98 0 0 0-2.049-4.587 7.035 7.035 0 0 0-4.28-2.025c.06-.266.09-.54.09-.816A3.91 3.91 0 0 0 23.084 0a3.913 3.913 0 0 0-3.842 3.198 5.048 5.048 0 0 0-.845-.073 5.475 5.475 0 0 0-5.469 5.494l.025.756h-2.369a2.343 2.343 0 0 0-.781 4.553v7.453l-7.51 15.284a1.046 1.046 0 0 0-.01.021C1.577 38.24 2.713 40 4.417 40H23c1.706 0 2.839-1.763 2.134-3.314a2117458.87 2117458.87 0 0 0-7.52-15.305V13.93c.108-.039.213-.085.314-.138a7.048 7.048 0 0 0 5.975 4.92C24.276 22.24 27.27 25 30.897 25a7.04 7.04 0 0 0 7.03-7.031 7.028 7.028 0 0 0-4.698-6.635zM18.113 25.938l5.603 11.404A.78.78 0 0 1 23 38.438H4.417a.78.78 0 0 1-.716-1.096l5.603-11.404h8.81zM16.834 12.5h-1.562a.781.781 0 0 0 0 1.563h.78v7.5c0 .119.028.237.081.344l1.213 2.468h-7.274l1.213-2.468a.78.78 0 0 0 .08-.345v-7.5h.782a.781.781 0 0 0 0-1.562h-1.563a.782.782 0 0 1 0-1.563h6.25a.782.782 0 0 1 0 1.563zm14.063 10.938a5.475 5.475 0 0 1-5.47-5.47.781.781 0 0 0-.78-.78 5.475 5.475 0 0 1-5.47-5.47 2.346 2.346 0 0 0-2.343-2.343h-2.318l-.026-.793a3.91 3.91 0 0 1 3.907-3.895c.43 0 .863.082 1.325.25a.782.782 0 0 0 1.045-.809c-.142-1.474 1.017-2.566 2.317-2.566a2.346 2.346 0 0 1 2.344 2.344c0 .414-.115.816-.333 1.164a.781.781 0 0 0 .716 1.194 5.47 5.47 0 0 1 4.265 9.322.781.781 0 0 0 1.105 1.105 6.997 6.997 0 0 0 1.946-3.718 5.467 5.467 0 0 1 3.238 4.996 5.475 5.475 0 0 1-5.468 5.468z' fill='%230A5067'/%3E%3Cpath d='M13.71 27.5a2.346 2.346 0 0 0-2.343 2.344 2.346 2.346 0 0 0 2.344 2.343 2.346 2.346 0 0 0 2.344-2.343A2.346 2.346 0 0 0 13.71 27.5zm0 3.125a.782.782 0 0 1 0-1.563.782.782 0 0 1 0 1.563zM34.805 0a3.129 3.129 0 0 0-3.125 3.125 3.129 3.129 0 0 0 3.125 3.125 3.129 3.129 0 0 0 3.125-3.125A3.129 3.129 0 0 0 34.805 0zm0 4.688c-.862 0-1.563-.701-1.563-1.563s.701-1.563 1.563-1.563a1.564 1.564 0 0 1 0 3.126zM15.273 35.313h-4.687a.781.781 0 0 0 0 1.562h4.687a.781.781 0 0 0 0-1.563z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--ft-lectures:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.997 30h-1.566c-.1 0-.196-.04-.267-.111l-.667-.667a1.712 1.712 0 0 0-2.74.44l-.038.074a.38.38 0 0 1-.608.1l-.614-.614a1.712 1.712 0 0 0-2.74.44l-.038.074a.38.38 0 0 1-.608.1 1.704 1.704 0 0 0-1.213-.503H6.33a.667.667 0 0 0 0 1.334h3.566c.1 0 .196.04.267.11a1.712 1.712 0 0 0 2.74-.44l.039-.073a.38.38 0 0 1 .607-.1l.614.614a1.712 1.712 0 0 0 2.74-.44l.038-.074a.38.38 0 0 1 .608-.1l.667.667a1.7 1.7 0 0 0 1.213.502h1.567a.667.667 0 0 0 0-1.333z' fill='%23FAB826'/%3E%3Cpath d='m36.665 15.34-.44-.223.223-.439.785-1.553A2.402 2.402 0 0 0 33 10.856v-4.19A2.667 2.667 0 0 0 30.331 4h-.667V2a2 2 0 0 0-4 0v2H23V2a2 2 0 0 0-4 0v2h-2.667V2a2 2 0 0 0-4 0v2H9.665V2a2 2 0 0 0-4 0v2H5a2.667 2.667 0 0 0-2.667 2.667v30.666A2.667 2.667 0 0 0 4.999 40h25.333a2.667 2.667 0 0 0 2.667-2.667V21.495l2.622-5.188.44.223c.243.123.34.42.218.663l-1.832 3.622a.667.667 0 0 0 1.19.601l1.832-3.622c.454-.9.095-1.997-.804-2.454zm-8.4 12.565-1.927 1.428.01-2.4 6.692-13.23.957.484.958.484-6.69 13.234zm5.86-16.349a1.073 1.073 0 1 1 1.916.968l-.485.957-.957-.48-.957-.485.483-.96zM27 2a.667.667 0 1 1 1.333 0v5.333a.667.667 0 0 1-1.333 0V2zm-6.667 0a.667.667 0 1 1 1.333 0v5.333a.667.667 0 1 1-1.333 0V2zm-6.667 0A.667.667 0 0 1 15 2v5.333a.667.667 0 1 1-1.334 0V2zM7 2a.667.667 0 0 1 1.333 0v5.333a.667.667 0 0 1-1.333 0V2zm24.666 35.333c0 .737-.597 1.334-1.333 1.334H4.999a1.333 1.333 0 0 1-1.334-1.334V6.667c0-.737.597-1.334 1.334-1.334h.666v2a2 2 0 0 0 4 0v-2h2.667v2a2 2 0 0 0 4 0v-2h2.666v2a2 2 0 0 0 4 0v-2h2.667v2a2 2 0 0 0 4 0v-2h.667c.736 0 1.333.597 1.333 1.334v6.8l-6.577 13.01a.661.661 0 0 0-.072.297L25.002 30h-1.337a.667.667 0 1 0 0 1.333h1.948c.01 0 .018-.005.028-.006.01 0 .016.006.024.006a.666.666 0 0 0 .4-.133l3.122-2.32a.673.673 0 0 0 .2-.234l2.278-4.513v13.2z' fill='%230A5067'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.33 12.667h22.667a.667.667 0 0 0 0-1.334H6.331a.667.667 0 1 0 0 1.334zm0 4.666h21.474a.667.667 0 0 0 0-1.333H6.331a.667.667 0 0 0 0 1.333zm0 4.667h19.114a.667.667 0 1 0 0-1.333H6.331a.667.667 0 0 0 0 1.333zm0 4.667h16.754a.667.667 0 0 0 0-1.334H6.331a.667.667 0 1 0 0 1.334z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ft-other:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M35.755 8.88c-.043 0-.043-.044-.087-.088-.043-.043-.043-.087-.087-.13l-7.486-8.4c-.044-.044-.13-.088-.174-.131-.044 0-.044-.044-.087-.044A.82.82 0 0 0 27.485 0H9.118C6.419 0 4.199 2.22 4.199 4.918v30.164C4.2 37.78 6.42 40 9.118 40H30.88c2.699 0 4.919-2.22 4.919-4.918V9.184c0-.087-.044-.218-.044-.305zm-7.443-5.92 4.832 5.44h-4.832V2.96zm5.833 32.078c0 1.828-1.437 3.308-3.265 3.308H9.118a3.26 3.26 0 0 1-3.265-3.264V4.875A3.26 3.26 0 0 1 9.118 1.61h17.54v7.574c0 .435.349.827.827.827h6.66v25.027z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-practice:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M39.425 33.656 19.535 13.77a22.297 22.297 0 0 0-3.704-2.99l1.563-1.563a.623.623 0 0 0 0-.885l-.74-.744.977-.978c1.64-1.64 4.869-1.028 4.89-1.022a.625.625 0 0 0 .566-.171l.938-.938a.626.626 0 0 0-.097-.962c-.247-.166-6.15-4.032-9.784-.394l-.978.978-.507-.506a.644.644 0 0 0-.884 0l-6.619 6.622a.625.625 0 0 0 0 .884 1.384 1.384 0 1 1-1.96 1.956.625.625 0 0 0-.88 0L.184 15.188a.625.625 0 0 0-.184.437c0 .165.067.324.184.44l4.735 4.741a.625.625 0 0 0 .884 0l2.131-2.131a.625.625 0 0 0 .041-.831.576.576 0 0 0-.04-.05 1.384 1.384 0 1 1 1.956-1.96l.046.038c.11.093.25.145.394.147a.626.626 0 0 0 .444-.185l1.563-1.562a22.428 22.428 0 0 0 2.99 3.703l19.888 19.89a1.972 1.972 0 0 0 2.778 0l1.422-1.421a1.97 1.97 0 0 0 .009-2.788zM15.05 3.996c2.29-2.29 6.028-.655 7.54.163l-.15.147c-.993-.134-3.906-.353-5.671 1.41l-.978.98-1.729-1.721.988-.978zM5.362 19.482 1.51 15.625l1.25-1.25 3.847 3.86-1.244 1.246zm1.691-4.531a2.609 2.609 0 0 0-.697 1.25l-1.562-1.563a2.604 2.604 0 0 0 1.25-.696c.342-.345.584-.778.697-1.25l1.562 1.562a2.619 2.619 0 0 0-1.253.697h.003zm4.969-2.137-1.69 1.69-3.85-3.847 5.746-5.744.503.504.819.834 2.528 2.5-1.687 1.69-2.37 2.373zm26.519 22.73-1.422 1.423a.715.715 0 0 1-1.01 0L16.222 17.08a21.21 21.21 0 0 1-2.969-3.725l1.672-1.672c1.35.845 2.601 1.84 3.728 2.966l19.888 19.89a.716.716 0 0 1 0 1.01v-.006z' fill='%230A5067'/%3E%3Cpath d='m19.706 25.069-9.343 9.344-.27-.27L7.62 31.67l9.46-9.46a.625.625 0 0 0-.882-.884l-9.903 9.903-1.875 1.86a3.125 3.125 0 0 0 0 4.418l.09.09a3.125 3.125 0 0 0 4.42 0l1.859-1.874 9.8-9.769a.625.625 0 1 0-.882-.884zM8.063 36.713a1.874 1.874 0 0 1-2.654 0l-.09-.091a1.875 1.875 0 0 1 0-2.653l1.415-1.416.27.269 2.474 2.49-1.415 1.4zM33.098 4.434a.402.402 0 0 0-.056.047L22.916 14.606a.625.625 0 0 0 .882.885l9.687-9.688.269.269 2.475 2.475-9.584 9.578a.626.626 0 0 0 .884.884L37.551 8.988a.405.405 0 0 0 .047-.057.7.7 0 0 0 .094-.156l2.268-5.894a.625.625 0 0 0-.81-.81l-5.893 2.27a.458.458 0 0 0-.122.065.121.121 0 0 0-.037.028zm5.19-.684-1.412 3.678L34.61 5.16l3.678-1.409z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-presentation:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.184 1.225H.816A.816.816 0 0 0 0 2.04v3.265c0 .451.365.817.816.817h.817v23.673c0 .45.365.816.816.816h16.735v6.531H17.55v1.633h4.898v-1.633h-1.633v-6.53H37.55c.45 0 .816-.366.816-.817V6.123h.817c.45 0 .816-.366.816-.817V2.041a.816.816 0 0 0-.816-.816zm-2.45 27.755H3.266V6.123h33.47V28.98zm1.633-24.49H1.633V2.857h36.734V4.49z' fill='%230A5067'/%3E%3Cpath d='M10.613 9.388H5.715v1.632h4.898V9.388zm8.979 3.265H5.715v1.633h13.877v-1.633zm14.694 4.082H5.715v1.633h28.571v-1.633zm0 3.265H5.715v1.633h28.571V20zm-7.346 3.265H5.714v1.633h21.224v-1.633zm7.345 0H31.02v1.633h3.265v-1.633z' fill='%230A5067'/%3E%3Cpath d='M34.695 8.163h-2.449v1.633h2.45V8.163zm-3.675 0h-2.45v1.633h2.45V8.163zm3.675 2.449h-2.449v1.633h2.45v-1.633z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--ft-qualifying-work:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M22.5 29.375h1.25v1.25H22.5v-1.25z' fill='%230A5067'/%3E%3Cpath d='M23.75 32.5H10a4.375 4.375 0 1 1 0-8.75h26.25a.624.624 0 0 1 .625.625v1.875a.625.625 0 0 1-.625.625H10.625a1.25 1.25 0 0 0 0 2.5H21.25v1.25H10.625a2.5 2.5 0 0 1 0-5h25V25H10a3.125 3.125 0 1 0 0 6.25h13.75v1.25zm12.5 0h-5v-1.25h4.375v-.625H31.25v-1.25h5a.624.624 0 0 1 .625.625v1.875a.624.624 0 0 1-.625.625z' fill='%230A5067'/%3E%3Cpath d='M34.375 26.25h1.25V30h-1.25v-3.75zM33.75 25H7.5a4.375 4.375 0 1 1 0-8.75v1.25a3.125 3.125 0 1 0 0 6.25h25.625v-.625h-25a2.5 2.5 0 0 1 0-5h5.625v1.25H8.125a1.25 1.25 0 0 0 0 2.5H33.75a.624.624 0 0 1 .625.625v1.875a.624.624 0 0 1-.625.625zm0-5.625h-7.5v-1.25h6.875V17.5H32.5v-1.25h1.25a.624.624 0 0 1 .625.625v1.875a.624.624 0 0 1-.625.625z' fill='%230A5067'/%3E%3Cpath d='M31.875 18.75h1.25v3.75h-1.25v-3.75zM33.75 40H7.5a4.375 4.375 0 1 1 0-8.75h16.25v1.25H7.5a3.125 3.125 0 1 0 0 6.25h25.625v-.625h-25a2.5 2.5 0 0 1 0-5h25V32.5H31.25v-1.25h2.5a.624.624 0 0 1 .625.625v1.875a.624.624 0 0 1-.625.625H8.125a1.25 1.25 0 0 0 0 2.5H33.75a.624.624 0 0 1 .625.625v1.875a.624.624 0 0 1-.625.625z' fill='%230A5067'/%3E%3Cpath d='M31.875 33.75h1.25v3.75h-1.25v-3.75zM20 13.75a.63.63 0 0 1-.204-.034L1.67 7.466a.625.625 0 0 1 0-1.182L19.796.034a.625.625 0 0 1 .407 0l18.125 6.25a.625.625 0 0 1 0 1.182l-18.125 6.25a.631.631 0 0 1-.204.034zM3.79 6.875 20 12.464l16.208-5.589L20 1.286 3.791 6.875z' fill='%230A5067'/%3E%3Cpath d='M20 20c-9.434 0-11.682-3.268-11.773-3.407a.63.63 0 0 1-.102-.343V9.375h1.25v6.652c.505.535 3.023 2.723 10.625 2.723 7.584 0 10.108-2.174 10.625-2.725v-6.65h1.25v6.875a.63.63 0 0 1-.102.343C31.682 16.732 29.433 20 20 20zM36.875 6.875h1.25v5h-1.25v-5z' fill='%230A5067'/%3E%3Cpath d='M38.283 18.75h-1.568a1.72 1.72 0 0 1-1.375-.666 1.625 1.625 0 0 1-.272-1.474l1.842-4.956a.625.625 0 0 1 1.172 0l1.842 4.956.019.063a1.626 1.626 0 0 1-.29 1.41 1.72 1.72 0 0 1-1.37.667zm-2.026-1.738a.38.38 0 0 0 .075.308.478.478 0 0 0 .383.18h1.568a.477.477 0 0 0 .383-.18.379.379 0 0 0 .076-.308l-1.243-3.343-1.242 3.343zM30 32.5a.625.625 0 0 1-.375-.125L27.5 30.781l-2.125 1.594a.625.625 0 0 1-1-.5v-3.75A.624.624 0 0 1 25 27.5h5a.624.624 0 0 1 .625.625v3.75A.624.624 0 0 1 30 32.5zm-2.5-3.125c.135 0 .267.044.375.125l1.5 1.125V28.75h-3.75v1.875l1.5-1.125a.625.625 0 0 1 .375-.125z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-questions:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M15.453 15.22a.586.586 0 1 0 0 1.171h1.33a.586.586 0 1 0 0-1.172h-1.33zm3.473.585c0 .324.262.586.586.586h11.72a.586.586 0 1 0 0-1.172h-11.72a.586.586 0 0 0-.586.586zm-4.059 2.968c0 .323.263.586.586.586h7.888a.586.586 0 0 0 0-1.172h-7.888a.586.586 0 0 0-.586.586zm16.363 4.353H15.452a.586.586 0 0 0 0 1.172H31.23a.586.586 0 1 0 0-1.172zm-15.777 4.139h7.888a.586.586 0 0 0 0-1.172h-7.888a.586.586 0 1 0 0 1.172zm15.777 3.768H15.452a.586.586 0 0 0 0 1.172H31.23a.586.586 0 0 0 0-1.172zM16.783 34h-1.33a.586.586 0 0 0 0 1.172h1.33a.586.586 0 1 0 0-1.172zm6.56 0h-3.831a.586.586 0 1 0 0 1.172h3.831a.586.586 0 1 0 0-1.172z' fill='%230A5067'/%3E%3Cpath d='M35.66 7.839a.586.586 0 0 0-.08-.146l-.01-.01a.565.565 0 0 0-.053-.06L27.64.161a.565.565 0 0 0-.06-.05l-.014-.01a.558.558 0 0 0-.064-.038L27.494.06a.617.617 0 0 0-.063-.027l-.016-.005a.588.588 0 0 0-.072-.018l-.01-.002a.617.617 0 0 0-.067-.007h-.016L27.238 0H6.335c-1.08 0-1.96.88-1.96 1.961V38.04c0 1.081.88 1.96 1.961 1.96H33.74c1.08 0 1.96-.879 1.96-1.96V8.049a.583.583 0 0 0-.039-.21zm-7.837-5.89L33.25 7.09l.392.371h-5.556a.263.263 0 0 1-.263-.263v-5.25zm6.705 36.09a.79.79 0 0 1-.79.789H6.337a.79.79 0 0 1-.79-.79V1.962a.79.79 0 0 1 .79-.79h20.316v6.027c0 .791.643 1.435 1.434 1.435h6.442V38.04z' fill='%230A5067'/%3E%3Cpath d='M12.172 14.603H8.488c-.575 0-1.043.468-1.043 1.043v3.286c0 .575.468 1.043 1.043 1.043h3.684c.575 0 1.042-.468 1.042-1.043v-3.286c0-.575-.467-1.043-1.042-1.043zm-.13 4.2H8.617v-3.028h3.425v3.028zm.13 3.707H8.488c-.575 0-1.043.467-1.043 1.042v3.287c0 .575.468 1.043 1.043 1.043h3.684c.575 0 1.042-.468 1.042-1.043v-3.287c0-.575-.467-1.043-1.042-1.043zm-.13 4.2H8.617v-3.03h3.425v3.029zm.13 3.706H8.488c-.575 0-1.043.468-1.043 1.043v3.287c0 .574.468 1.042 1.043 1.042h3.684c.575 0 1.042-.467 1.042-1.042v-3.287c0-.575-.467-1.043-1.042-1.043zm-.13 4.2H8.617v-3.028h3.425v3.028z' fill='%230A5067'/%3E%3Cpath d='M10.954 8.827H9.71a4.15 4.15 0 0 1 .068-.757c.046-.215.122-.408.23-.58.11-.173.257-.344.44-.513a6.03 6.03 0 0 0 .4-.391c.114-.124.203-.25.268-.38a1 1 0 0 0 .098-.445c0-.19-.03-.345-.088-.469a.595.595 0 0 0-.254-.288.818.818 0 0 0-.42-.098c-.14 0-.27.031-.39.093a.726.726 0 0 0-.298.273.966.966 0 0 0-.117.489H8.229c.01-.446.113-.814.308-1.104.199-.293.464-.51.796-.65a2.796 2.796 0 0 1 1.118-.214c.456 0 .846.075 1.172.225.326.146.575.363.747.649.173.283.259.628.259 1.035 0 .283-.055.536-.166.757-.11.218-.256.422-.435.61-.179.19-.376.384-.59.586-.186.166-.313.34-.381.523-.066.182-.1.398-.103.65zm-1.392 1.509a.69.69 0 0 1 .215-.518c.144-.14.336-.21.577-.21.237 0 .428.07.57.21.147.137.22.31.22.518a.682.682 0 0 1-.22.513c-.142.14-.333.21-.57.21-.241 0-.433-.07-.577-.21a.69.69 0 0 1-.214-.513z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-report:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.231 16.923H10.77v1.539h18.462v-1.539zm0 4.616H10.77v1.538h18.462v-1.538zm0 4.615H10.77v1.538h18.462v-1.538zM20 30.77h-9.23v1.538H20v-1.539z' fill='%230A5067'/%3E%3Cpath d='M20.025 5.77a1.154 1.154 0 1 0 0-2.308 1.154 1.154 0 0 0 0 2.307z' fill='%23FAB826'/%3E%3Cpath d='M35.386 9.23a3.076 3.076 0 0 0-3.076-3.076h-4.272a4.603 4.603 0 0 0-2.143-1.36 2.117 2.117 0 0 1-1.457-1.457 4.618 4.618 0 0 0-8.872 0 2.12 2.12 0 0 1-1.46 1.458 4.603 4.603 0 0 0-2.14 1.359H7.693A3.077 3.077 0 0 0 4.617 9.23v27.692c0 1.7 1.378 3.077 3.077 3.077H32.31c1.7 0 3.077-1.378 3.077-3.077V9.231zM12.31 9.207a3.094 3.094 0 0 1 2.222-2.932 3.65 3.65 0 0 0 2.512-2.512 3.09 3.09 0 0 1 2.958-2.224 3.09 3.09 0 0 1 2.957 2.225 3.647 3.647 0 0 0 2.511 2.51 3.09 3.09 0 0 1 2.224 2.958v1.538H12.31V9.206zm20 29.256H7.694a1.54 1.54 0 0 1-1.538-1.539V9.231c0-.849.69-1.539 1.538-1.539h3.34a4.61 4.61 0 0 0-.263 1.502v3.114h18.462V9.23c0-.54-.096-1.057-.266-1.539h3.343c.848 0 1.538.69 1.538 1.539v27.692a1.54 1.54 0 0 1-1.538 1.538z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--ft-research:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M9.965 33.845c-.402.41-.62.95-.613 1.523.006.574.236 1.11.649 1.512a2.16 2.16 0 0 0 3.042-.037c.403-.41.62-.953.613-1.527a2.123 2.123 0 0 0-.65-1.507 2.156 2.156 0 0 0-3.04.036zm2.186 2.123a.91.91 0 0 1-1.28.016.883.883 0 0 1-.27-.63.884.884 0 0 1 .258-.635.905.905 0 0 1 1.547.613.888.888 0 0 1-.255.636z' fill='%23FAB826'/%3E%3Cpath d='M34.502 30.883H30.57a14.163 14.163 0 0 0 1.75-2.135 5.933 5.933 0 0 0 2.856-1.61 5.895 5.895 0 0 0 1.698-4.225 5.89 5.89 0 0 0-1.8-4.18 5.958 5.958 0 0 0-.976-.768A14.994 14.994 0 0 0 20.934 6.693l.144-.439a1.72 1.72 0 0 0-.105-1.325 1.725 1.725 0 0 0-1.013-.866l-.084-.027.285-.868c.18-.545.135-1.13-.126-1.646A2.162 2.162 0 0 0 18.77.437L17.748.108a2.174 2.174 0 0 0-2.738 1.383l-.287.872-.087-.028a1.729 1.729 0 0 0-1.33.103c-.414.21-.722.568-.865 1.007l-2.5 7.623-.41-.133a1.178 1.178 0 0 0-1.481.752L7.29 14c-.097.298-.071.617.072.897s.386.487.684.583l2.026.658-.285.867c-.18.546-.135 1.13.127 1.646.263.52.711.904 1.263 1.084l1.024.333a2.175 2.175 0 0 0 2.737-1.386l.286-.872 2.027.658a1.17 1.17 0 0 0 .899-.067c.282-.143.49-.386.588-.683l.759-2.311a1.166 1.166 0 0 0-.072-.896 1.167 1.167 0 0 0-.683-.585l-.165-.053.581-1.771c4.654.139 7.246 3.147 8.184 6.124-.246.183-.485.38-.707.606a5.89 5.89 0 0 0-1.698 4.223 5.88 5.88 0 0 0 1.33 3.66c-1.123 1.828-2.804 3.263-4.9 4.166h-6.59v-3.419h2.902a2.278 2.278 0 0 0 2.28-2.27 2.28 2.28 0 0 0-2.28-2.274H6.207a2.28 2.28 0 0 0-2.28 2.274 2.278 2.278 0 0 0 2.28 2.27h2.902v3.42H4.752c-.897 0-1.627.727-1.627 1.622v5.875c0 .893.73 1.62 1.627 1.62h29.75c.896 0 1.625-.727 1.625-1.62v-5.875c0-.895-.73-1.622-1.625-1.622zM15.912 2.748l.286-.866a.926.926 0 0 1 1.162-.586l.002.001 1.022.33a.905.905 0 0 1 .535.46c.11.217.13.463.054.691l-.285.872-.939-.305-1.836-.597zM13.75 18.294a.922.922 0 0 1-1.163.586l-1.023-.333a.913.913 0 0 1-.535-.46.898.898 0 0 1-.054-.691l.286-.871 1.651.536 1.123.365-.285.869zm3.823-1.035-4.426-1.436-2.092-.68c-.003-.002-.005-.001-.007-.002l-2.545-.826.711-2.168.927.3.005.004 4.928 1.599 3.21 1.043-.711 2.166zm-.184-3.771-1.369-.445-4.891-1.589 2.5-7.62a.48.48 0 0 1 .243-.281.484.484 0 0 1 .376-.03h.002l3.05.991 1.593.518.007.001.675.22c.124.04.225.126.285.243a.48.48 0 0 1 .03.37l-2.501 7.622zm2.175-2.62.97-2.955a13.746 13.746 0 0 1 12.073 9.381 6.027 6.027 0 0 0-4.16.283c-1.114-3.233-3.943-6.418-8.883-6.709zm6.623 12.173a4.65 4.65 0 0 1 1.34-3.332 4.743 4.743 0 0 1 6.677-.08 4.65 4.65 0 0 1 1.42 3.3 4.65 4.65 0 0 1-1.34 3.333 4.746 4.746 0 0 1-6.676.077 4.65 4.65 0 0 1-1.42-3.298zm.99 4.581a5.958 5.958 0 0 0 3.48 1.29 13.612 13.612 0 0 1-1.928 1.97h-4.776a11.538 11.538 0 0 0 3.224-3.26zm-20.97-1.408c-.568 0-1.03-.458-1.03-1.02 0-.566.462-1.024 1.03-1.024h11.472c.568 0 1.03.458 1.03 1.023 0 .563-.462 1.02-1.03 1.02H6.207zm7.32 1.25v3.419H10.36v-3.42h3.168zm21.35 10.916c0 .204-.168.37-.375.37H4.752a.379.379 0 0 1-.377-.37v-5.875a.38.38 0 0 1 .377-.372h29.75c.203 0 .375.17.375.372v5.875z' fill='%230A5067'/%3E%3Cpath d='M30.905 25.445a2.465 2.465 0 0 0 2.47-2.49 2.438 2.438 0 0 0-.745-1.731 2.478 2.478 0 0 0-3.492.04 2.438 2.438 0 0 0-.704 1.75 2.44 2.44 0 0 0 .746 1.734 2.47 2.47 0 0 0 1.725.697zm-.876-3.305a1.223 1.223 0 0 1 1.73-.02 1.201 1.201 0 0 1 .02 1.71c-.47.48-1.245.49-1.729.02a1.196 1.196 0 0 1-.366-.85 1.196 1.196 0 0 1 .345-.86z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-seminars:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M28.153 3.157H15.615c-.24 0-.458.14-.553.356l-2.775 6.34-2.029-4.454a.601.601 0 0 0-.548-.348H8.577c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h.742l2.43 5.334a.602.602 0 0 0 .55.348h.004a.601.601 0 0 0 .548-.356l3.16-7.22h12.142c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586z' fill='%230A5067'/%3E%3Cpath d='M20.705 11.655a.609.609 0 0 0 .836.144.577.577 0 0 0 .148-.816l-1.457-2.032 1.457-2.031a.577.577 0 0 0-.147-.816.61.61 0 0 0-.837.144L19.5 7.93l-1.207-1.682a.61.61 0 0 0-.837-.144.577.577 0 0 0-.147.816l1.457 2.031-1.457 2.032a.577.577 0 0 0 .148.816.608.608 0 0 0 .836-.144L19.5 9.973l1.206 1.682z' fill='%23FAB826'/%3E%3Cpath d='M8.577 14.746h4.854c.331 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586H8.577c-.332 0-.6.262-.6.586 0 .324.268.586.6.586zm0 2.684h4.854c.331 0 .6-.263.6-.587a.593.593 0 0 0-.6-.586H8.577c-.332 0-.6.263-.6.586 0 .324.268.586.6.586zm19.576-3.856H23.3c-.332 0-.6.262-.6.586 0 .324.268.586.6.586h4.853c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586zm0 2.683H23.3c-.332 0-.6.263-.6.586 0 .324.268.586.6.586h4.853c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586zM14.34 20.986a.61.61 0 0 0-.836.144l-.721 1.005-.722-1.005a.61.61 0 0 0-.836-.144.577.577 0 0 0-.148.816l.973 1.355-.973 1.355a.577.577 0 0 0 .148.816.607.607 0 0 0 .836-.144l.722-1.006.721 1.006a.608.608 0 0 0 .836.144.577.577 0 0 0 .148-.816l-.972-1.355.972-1.355a.577.577 0 0 0-.147-.816zm4.65 4.342a.608.608 0 0 0 .837-.144l2.427-3.382a.577.577 0 0 0-.148-.816.61.61 0 0 0-.836.144l-.722 1.005-.72-1.005a.61.61 0 0 0-.837-.144.577.577 0 0 0-.148.816l.972 1.355-.972 1.355a.577.577 0 0 0 .148.816zm-2.324-.401c.331 0 .6-.263.6-.586v-.598h.613c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586h-.613v-.598a.593.593 0 0 0-.6-.586.593.593 0 0 0-.601.586v.598h-.613c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h.613v.598c0 .323.269.585.6.585zm11.486-3.461h-1.618c-.332 0-.6.262-.6.586 0 .323.268.586.6.586h1.618c.332 0 .6-.263.6-.586a.593.593 0 0 0-.6-.586zm0 2.21h-1.618c-.332 0-.6.262-.6.586 0 .323.268.585.6.585h1.618c.332 0 .6-.262.6-.585a.593.593 0 0 0-.6-.586zM9.29 26.25a.607.607 0 0 0 .85 0 .576.576 0 0 0 0-.829 3.143 3.143 0 0 1-.962-2.264c0-.855.341-1.66.961-2.265a.576.576 0 0 0 0-.828.611.611 0 0 0-.85 0 4.292 4.292 0 0 0-1.312 3.093c0 1.168.466 2.267 1.313 3.093zm13.66 0a.607.607 0 0 0 .424.171.607.607 0 0 0 .425-.171 4.293 4.293 0 0 0 1.313-3.093 4.292 4.292 0 0 0-1.313-3.093.611.611 0 0 0-.85 0 .576.576 0 0 0 0 .829 3.143 3.143 0 0 1 0 4.528.576.576 0 0 0 0 .829z' fill='%230A5067'/%3E%3Cpath d='M35.548 27.94V14.805a.593.593 0 0 0-.6-.586c-.332 0-.6.262-.6.586v13.132H32.96V3.382h1.387v8.69c0 .323.27.585.6.585a.593.593 0 0 0 .601-.586V2.796a.593.593 0 0 0-.6-.586H32.96V.586a.593.593 0 0 0-.6-.586H5.18a.593.593 0 0 0-.601.586v20.037c0 .323.269.585.6.585a.593.593 0 0 0 .601-.585V1.172h25.98v26.765h-3.901c-.332 0-.6.263-.6.586 0 .324.268.586.6.586h3.9v3.563H5.379l-1.633-1.195h.544c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586h-.544l1.634-1.196h19.663c.332 0 .6-.262.6-.586a.593.593 0 0 0-.6-.586H5.78v-4.571a.593.593 0 0 0-.6-.586.593.593 0 0 0-.601.586v4.864l-2.995 2.192a.584.584 0 0 0 0 .938l2.995 2.191v3.654c0 .323.269.586.6.586h1.989v1.623c0 .324.269.586.6.586h27.18c.331 0 .6-.262.6-.586v-5.572c1.17-.06 2.104-1.006 2.104-2.162v-1.578c0-1.156-.934-2.103-2.104-2.162zM5.78 33.844h25.98v2.775H5.78v-2.775zm2.589 4.984v-1.037h23.99a.594.594 0 0 0 .601-.586v-3.36h1.387v4.983H8.37zM36.45 31.68c0 .547-.456.992-1.017.992H32.96V29.11h2.473c.561 0 1.017.445 1.017.993v1.578z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-standard:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M9.986 29.167h4.579a.587.587 0 1 0 0-1.174h-3.992V6.818h7.259v7.018c.011.363.357.697.786.552l3.191-1.149 3.192 1.149c.326.129.795-.13.786-.552V6.818h2.902a.587.587 0 1 0 0-1.174H9.986a.587.587 0 0 0-.588.587v22.35c0 .323.263.586.588.586zM24.613 13l-2.605-.937a.586.586 0 0 0-.398 0L19.006 13V6.818h5.607V13z' fill='%230A5067'/%3E%3Cpath d='M16.915 29.167h16.72a.587.587 0 0 0 .588-.587V6.23a.587.587 0 0 0-.587-.586h-2.597a.587.587 0 1 0 0 1.174h2.01v21.175H16.914a.587.587 0 1 0 0 1.174zM14.282 22.419h5.266a.587.587 0 1 0 0-1.175h-5.266a.587.587 0 1 0 0 1.175z' fill='%230A5067'/%3E%3Cpath d='M14.282 25.354h10.494a.587.587 0 1 0 0-1.174H14.282a.587.587 0 1 0 0 1.174zM9.986 3.709a.587.587 0 0 0 .587-.587v-.68h22.474v.68a.587.587 0 0 0 1.174 0V.587a.587.587 0 1 0-1.174 0v.68H10.573v-.68a.587.587 0 0 0-1.175 0v2.535c0 .324.263.587.588.587zM4.36 28.684a.587.587 0 1 0 0 1.174h2.526a.587.587 0 1 0 0-1.174h-.675V6.127h.675a.587.587 0 1 0 0-1.174H4.361a.587.587 0 1 0 0 1.174h.675v22.557h-.675z' fill='%230A5067'/%3E%3Cpath d='M39.413 31.745H29.058a.587.587 0 1 0 0 1.174h9.768v5.907h-4.048v-2.647a.587.587 0 1 0-1.174 0v2.647h-1.98V37.31a.587.587 0 1 0-1.174 0v1.516h-1.98v-2.647a.587.587 0 1 0-1.173 0v2.647h-1.98V37.31a.587.587 0 1 0-1.174 0v1.516h-1.98v-2.647a.587.587 0 1 0-1.174 0v2.647h-1.98V37.31a.587.587 0 1 0-1.173 0v1.516h-1.98v-2.647a.587.587 0 0 0-1.174 0v2.647h-1.98V37.31a.587.587 0 1 0-1.174 0v1.516H9.55v-2.647a.587.587 0 1 0-1.174 0v2.647H6.396V37.31a.587.587 0 1 0-1.174 0v1.516H1.174v-5.907H26.71a.587.587 0 1 0 0-1.174H.587a.587.587 0 0 0-.587.587v7.08c0 .325.263.588.587.588h38.826a.587.587 0 0 0 .587-.587v-7.08a.587.587 0 0 0-.587-.588z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-summary:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M35.755 8.88c-.043 0-.043-.044-.087-.088-.043-.043-.043-.087-.087-.13l-7.486-8.4c-.044-.044-.13-.088-.174-.131-.044 0-.044-.044-.087-.044A.82.82 0 0 0 27.485 0H9.118C6.419 0 4.199 2.22 4.199 4.918v30.164C4.2 37.78 6.42 40 9.118 40H30.88c2.699 0 4.919-2.22 4.919-4.918V9.184c0-.087-.044-.218-.044-.305zm-7.443-5.92 4.832 5.44h-4.832V2.96zm5.833 32.078c0 1.828-1.437 3.308-3.265 3.308H9.118a3.26 3.26 0 0 1-3.265-3.264V4.875A3.26 3.26 0 0 1 9.118 1.61h17.54v7.574c0 .435.349.827.827.827h6.66v25.027z' fill='%230A5067'/%3E%3Cpath d='M10.077 10.01h7.269a.826.826 0 0 0 .827-.826.8.8 0 0 0-.827-.827h-7.269a.826.826 0 1 0 0 1.654z' fill='%23FAB826'/%3E%3Cpath d='M17.346 29.99h-7.269a.826.826 0 1 0 0 1.653h7.269a.826.826 0 0 0 .827-.827.856.856 0 0 0-.827-.827zM9.25 14.668c0 .435.348.827.827.827h19.412a.826.826 0 1 0 0-1.654H10.077a.826.826 0 0 0-.827.827zm20.24 3.265H10.076a.826.826 0 1 0 0 1.654h19.412a.826.826 0 0 0 .827-.828.8.8 0 0 0-.827-.826zm0 4.047H10.076a.826.826 0 1 0 0 1.654h19.412a.826.826 0 0 0 .827-.826.8.8 0 0 0-.827-.828zm0 4.048H10.076a.826.826 0 1 0 0 1.654h19.412a.826.826 0 1 0 0-1.654z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-task:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m37.625 34.676-8.75-17.578a.586.586 0 0 0-1.048.523l7.706 15.482c-2.05-.902-5.043-1.412-7.17-1.68a.586.586 0 1 0-.145 1.164c6.157.773 8.452 2.177 8.452 2.88 0 .434-.97 1.39-4.6 2.22-3.217.736-7.504 1.14-12.071 1.14s-8.854-.404-12.072-1.14c-3.63-.83-4.599-1.786-4.599-2.22 0-.433.969-1.389 4.6-2.22 3.079-.703 7.138-1.105 11.485-1.138v.901a.586.586 0 1 0 1.172 0v-.9c.503.003 1.007.012 1.503.026a.586.586 0 0 0 .032-1.172c-.7-.02-1.414-.03-2.121-.03-4.652 0-9.032.416-12.333 1.171-1.294.296-2.36.63-3.2.998l3.338-6.708a.586.586 0 1 0-1.05-.522s-4.445 8.92-4.472 8.985l-.005.01v.001c-.08.194-.12.393-.12.599 0 1.394 1.853 2.525 5.509 3.361 3.301.755 7.68 1.171 12.333 1.171 4.652 0 9.032-.416 12.333-1.17 3.656-.837 5.51-1.968 5.51-3.363 0-.28-.077-.544-.217-.79zm-29.37-10.5a.583.583 0 0 0 .786-.264l10.373-20.84v.882a.586.586 0 1 0 1.172 0v-.882L26.6 15.156a.586.586 0 0 0 1.05-.522L20.524.318c-.21-.424-.838-.424-1.05 0L7.992 23.39a.586.586 0 0 0 .264.786c.084.042-.29-.145 0 0z' fill='%230A5067'/%3E%3Cpath d='M20.586 11.753a.586.586 0 1 0-1.172 0v.918a.586.586 0 1 0 1.172 0v-.918zm0 8.717a.586.586 0 0 0-1.172 0v.918a.586.586 0 1 0 1.172 0v-.918zm0-5.811a.586.586 0 1 0-1.172 0v.917a.586.586 0 1 0 1.172 0v-.917zm0 11.623a.586.586 0 1 0-1.172 0v.917a.586.586 0 1 0 1.172 0v-.918zM20 28.601a.586.586 0 0 0-.586.586v.918a.586.586 0 1 0 1.172 0v-.918a.586.586 0 0 0-.586-.586zm.586-5.225a.586.586 0 1 0-1.172 0v.917a.586.586 0 1 0 1.172 0v-.917zm0-5.812a.586.586 0 1 0-1.172 0v.918a.586.586 0 1 0 1.172 0v-.918zm0-11.622a.586.586 0 0 0-1.172 0v.917a.586.586 0 1 0 1.172 0v-.917zm0 2.905a.586.586 0 0 0-1.172 0v.918a.586.586 0 1 0 1.172 0v-.918zM20 34.413a.586.586 0 0 0-.586.586v.468c0 .324.262.586.586.586h.469a.586.586 0 0 0 .107-1.162.586.586 0 0 0-.576-.478zm6.211.468h-.906a.586.586 0 0 0 0 1.172h.906a.586.586 0 1 0 0-1.172zm-2.871 0h-.906a.586.586 0 0 0 0 1.172h.906a.586.586 0 1 0 0-1.172zm8.614 1.172a.586.586 0 1 0 0-1.172h-.907a.586.586 0 1 0 0 1.172h.907zm2.871 0a.586.586 0 0 0 0-1.172h-.907a.586.586 0 0 0 0 1.172h.907zm-5.743 0a.586.586 0 1 0 0-1.172h-.906a.586.586 0 1 0 0 1.172h.907z' fill='%230A5067'/%3E%3Cpath d='M17.946 22.514a.586.586 0 0 0 .586-.586v-1.579c0-.758-.617-1.375-1.375-1.375h-.993v-1.782a.586.586 0 1 0-1.172 0v4.736a.586.586 0 1 0 1.172 0v-1.782h.993c.112 0 .203.091.203.203v1.579c0 .323.263.586.586.586zm9.348 7.902c0-.933-.759-1.691-1.691-1.691h-.688a.586.586 0 0 0-1.161.112v3.947a.586.586 0 1 0 1.172 0v-2.887h.677a.52.52 0 0 1 .519.519.586.586 0 1 0 1.172 0z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-translation:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.202 21.879a.586.586 0 0 0-.586-.586H2.465c-.713 0-1.293-.58-1.293-1.293V2.465c0-.713.58-1.293 1.293-1.293H20c.713 0 1.293.58 1.293 1.293v13.151a.586.586 0 0 0 1.172 0V2.465A2.467 2.467 0 0 0 20 0H2.465A2.467 2.467 0 0 0 0 2.465V20a2.467 2.467 0 0 0 2.465 2.465h13.151a.586.586 0 0 0 .586-.586z' fill='%230A5067'/%3E%3Cpath d='M37.535 17.535h-5.01a.586.586 0 1 0 0 1.172h5.01c.713 0 1.293.58 1.293 1.293v17.535c0 .713-.58 1.293-1.293 1.293H20c-.713 0-1.293-.58-1.293-1.293V20c0-.713.58-1.293 1.293-1.293h10.02a.586.586 0 0 0 0-1.172H20A2.467 2.467 0 0 0 17.535 20v17.535A2.467 2.467 0 0 0 20 40h17.535A2.467 2.467 0 0 0 40 37.535V20a2.467 2.467 0 0 0-2.465-2.465z' fill='%230A5067'/%3E%3Cpath d='M16.87 6.263h-5.05v-.667a.586.586 0 1 0-1.172 0v.667h-5.05a.586.586 0 0 0 0 1.172h8.628c-.337 1.083-1.183 3.27-2.995 5.451a16.494 16.494 0 0 1-2.353-3.775.586.586 0 0 0-1.069.48 17.656 17.656 0 0 0 2.633 4.178 15.852 15.852 0 0 1-3.267 2.597.586.586 0 1 0 .603 1.005 17.047 17.047 0 0 0 3.453-2.735 17.075 17.075 0 0 0 3.459 2.735.584.584 0 0 0 .804-.2.586.586 0 0 0-.201-.805 15.9 15.9 0 0 1-3.272-2.599 17.615 17.615 0 0 0 2.077-3.04 16.261 16.261 0 0 0 1.351-3.293h1.421a.586.586 0 1 0 0-1.171z' fill='%23FAB826'/%3E%3Cpath d='M29.564 23.067a.839.839 0 0 0-.778-.522.838.838 0 0 0-.779.523l-.005.013-4.233 11.114a.586.586 0 1 0 1.095.417l.91-2.39h5.993l.901 2.389a.586.586 0 1 0 1.097-.414L29.57 23.083a.524.524 0 0 0-.006-.016zm-3.343 7.983 2.564-6.73 2.54 6.73H26.22zM15.97 32.056l-2.506-1.878a.586.586 0 0 0-.703.937l1.1.824h-2a3.802 3.802 0 0 1-3.799-3.798v-3.757a.586.586 0 1 0-1.171 0v3.757c0 2.74 2.23 4.97 4.97 4.97h2l-1.1.824a.586.586 0 0 0 .704.938l2.505-1.879a.586.586 0 0 0 0-.938zm8.061-24.113 2.505 1.88a.583.583 0 0 0 .82-.118.586.586 0 0 0-.117-.82l-1.098-.824h2a3.802 3.802 0 0 1 3.797 3.798v3.757a.586.586 0 1 0 1.172 0v-3.757c0-2.74-2.23-4.97-4.97-4.97h-2l1.1-.824a.586.586 0 0 0-.704-.938l-2.505 1.879a.586.586 0 0 0 0 .937z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1--ft-typical-calculation:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M8.06 7.804a.586.586 0 0 0-.829 0L5.752 9.282l-.63-.63a.586.586 0 0 0-.83.828l1.046 1.045a.584.584 0 0 0 .828 0L8.06 8.632a.586.586 0 0 0 0-.828z' fill='%23FAB826'/%3E%3Cpath d='M7.667 13.886H4.691c-.637 0-1.156.518-1.156 1.155v2.977c0 .637.519 1.156 1.156 1.156h2.976c.638 0 1.156-.519 1.156-1.156V15.04c0-.637-.518-1.155-1.156-1.155zm-.016 4.116H4.707v-2.945h2.944v2.945zm.016 4.108H4.691c-.637 0-1.156.518-1.156 1.156v2.976c0 .637.519 1.156 1.156 1.156h2.976c.638 0 1.156-.519 1.156-1.156v-2.976c0-.638-.518-1.156-1.156-1.156zm-.016 4.116H4.707v-2.944h2.944v2.944zm.016 4.283H4.691c-.637 0-1.156.518-1.156 1.155v2.977c0 .637.519 1.156 1.156 1.156h2.976c.638 0 1.156-.519 1.156-1.156v-2.976c0-.638-.518-1.156-1.156-1.156zm-.016 4.116H4.707V31.68h2.944v2.945z' fill='%230A5067'/%3E%3Cpath d='M39.038 15.673a.586.586 0 0 0-.586.586v21.778a.792.792 0 0 1-.79.791h-20.98a.792.792 0 0 1-.791-.791V8.73c0-.436.355-.79.79-.79h20.98c.436 0 .791.354.791.79v5.127a.586.586 0 1 0 1.172 0V8.73c0-1.082-.88-1.963-1.963-1.963h-3.14V3.46A3.464 3.464 0 0 0 31.061 0H4.324a3.955 3.955 0 0 0-3.95 3.95v32.548a3.464 3.464 0 0 0 3.46 3.46h9.38a.586.586 0 1 0 0-1.171h-9.38a2.291 2.291 0 0 1-2.288-2.289V3.95a2.781 2.781 0 0 1 2.778-2.778h24.143A3.445 3.445 0 0 0 27.6 3.46v1.618a.586.586 0 1 0 1.172 0V3.46a2.291 2.291 0 0 1 2.289-2.288 2.291 2.291 0 0 1 2.288 2.288v3.307H16.682c-1.082 0-1.963.88-1.963 1.963v.406h-3.044a.586.586 0 1 0 0 1.172h3.044v5.636h-3.044a.586.586 0 0 0 0 1.172h3.044v7.052h-3.044a.586.586 0 1 0 0 1.172h3.044v7.227h-3.044a.586.586 0 0 0 0 1.172h3.044v4.298c0 1.082.88 1.963 1.963 1.963h20.98c1.082 0 1.962-.88 1.962-1.963V16.259a.586.586 0 0 0-.586-.586z' fill='%230A5067'/%3E%3Cpath d='M35.862 8.866H18.278c-.77 0-1.395.626-1.395 1.395v4.378c0 .77.626 1.395 1.395 1.395h17.584c.77 0 1.395-.625 1.395-1.395v-4.378c0-.77-.625-1.395-1.395-1.395zm0 5.996H18.278a.223.223 0 0 1-.223-.223v-4.378c0-.123.1-.223.223-.223h17.584c.123 0 .223.1.223.223v4.378c0 .123-.1.223-.223.223z' fill='%230A5067'/%3E%3Cpath d='M19.997 17.204H18.07c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186V18.39c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014H18.07a.014.014 0 0 1-.014-.014V18.39c0-.008.006-.014.014-.014h1.928c.008 0 .014.006.014.014v1.883z' fill='%23FAB826'/%3E%3Cpath d='M25.357 17.204h-1.929c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.929c.654 0 1.186-.532 1.186-1.186V18.39c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014h-1.929a.014.014 0 0 1-.014-.014V18.39c0-.008.006-.014.014-.014h1.929c.007 0 .014.006.014.014v1.883zm5.345-3.069h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186V18.39c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014h-1.928a.014.014 0 0 1-.015-.014V18.39c0-.008.007-.014.015-.014h1.928c.008 0 .014.006.014.014v1.883zm5.341-3.069h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186V18.39c0-.654-.532-1.186-1.186-1.186zm.015 3.069a.014.014 0 0 1-.015.014h-1.928a.014.014 0 0 1-.014-.014V18.39c0-.008.006-.014.014-.014h1.928c.008 0 .015.006.015.014v1.883zm-16.089 2.353H18.07c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.013H18.07a.014.014 0 0 1-.014-.014v-1.883c0-.008.006-.014.014-.014h1.928c.008 0 .014.006.014.014v1.883zm5.346-3.07h-1.929c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.929c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.013h-1.929a.014.014 0 0 1-.014-.014v-1.883c0-.008.006-.014.014-.014h1.929c.007 0 .014.006.014.014v1.883zm5.345-3.07h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.013h-1.928a.014.014 0 0 1-.015-.014v-1.883c0-.008.007-.014.015-.014h1.928c.008 0 .014.006.014.014v1.883zm5.341-3.07h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.015 3.07a.014.014 0 0 1-.015.013h-1.928a.014.014 0 0 1-.014-.014v-1.883c0-.008.006-.014.014-.014h1.928c.008 0 .015.006.015.014v1.883zm-16.089 2.353H18.07c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014H18.07a.014.014 0 0 1-.014-.014v-1.883c0-.008.006-.015.014-.015h1.928c.008 0 .014.007.014.015v1.883zm5.346-3.069h-1.929c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.929c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014h-1.929a.014.014 0 0 1-.014-.014v-1.883c0-.008.006-.015.014-.015h1.929c.007 0 .014.007.014.015v1.883zm5.345-3.069h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-1.883c0-.654-.532-1.186-1.186-1.186zm.014 3.069a.014.014 0 0 1-.014.014h-1.928a.014.014 0 0 1-.015-.014v-1.883c0-.008.007-.015.015-.015h1.928c.008 0 .014.007.014.015v1.883zm5.341-3.069h-1.928c-.654 0-1.186.532-1.186 1.186v6.978c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186v-6.979c0-.654-.532-1.186-1.186-1.186zm.015 8.164a.014.014 0 0 1-.015.014h-1.928a.014.014 0 0 1-.014-.014v-6.979c0-.007.006-.014.014-.014h1.928c.008 0 .015.007.015.015v6.978zm-16.089-3.069H18.07c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186V34.33c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.014h-1.928a.014.014 0 0 1-.014-.015V34.33c0-.008.006-.014.014-.014h1.928c.008 0 .014.006.014.014v1.883zm5.346-3.07h-1.929c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.929c.654 0 1.186-.532 1.186-1.186V34.33c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.014h-1.929a.014.014 0 0 1-.014-.015V34.33c0-.008.006-.014.014-.014h1.928c.008 0 .014.006.014.014v1.883zm5.345-3.07h-1.928c-.654 0-1.186.532-1.186 1.186v1.883c0 .654.532 1.186 1.186 1.186h1.928c.654 0 1.186-.532 1.186-1.186V34.33c0-.654-.532-1.186-1.186-1.186zm.014 3.07a.014.014 0 0 1-.014.014h-1.928a.014.014 0 0 1-.015-.015V34.33c0-.008.007-.014.015-.014h1.928c.008 0 .014.006.014.014v1.883z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");*/
    /*1*/--ft-video:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33.333 3.333H0v33.334h40V3.333h-6.667zm-28 32h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.334h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm28 26.666H6.667V4.667h26.666v30.666zm5.334 0h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.334h-4v-4h4v4zm0-5.333h-4v-4h4v4zm0-5.333h-4v-4h4v4z' fill='%230A5067'/%3E%3Cpath d='M25.253 19.667a.667.667 0 0 0-.248-.248l-9.333-5.333a.667.667 0 0 0-1 .58v10.667a.666.666 0 0 0 1 .577l9.333-5.333c.32-.183.43-.59.248-.91zm-9.248 4.517v-8.368L23.328 20l-7.323 4.184z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--ft-workbook:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.332 16.666a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0-2.666a.667.667 0 1 1 0 1.333.667.667 0 0 1 0-1.333zm0 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0-2.667a.667.667 0 1 1 0 1.333.667.667 0 0 1 0-1.333z' fill='%23FAB826'/%3E%3Cpath d='M14.789 13.16a1.329 1.329 0 0 0 1.055.318l10-1.353A1.338 1.338 0 0 0 27 10.804V7.162a1.333 1.333 0 0 0-1.512-1.321l-10 1.353a1.337 1.337 0 0 0-1.155 1.32v3.642c0 .385.167.751.457 1.004zm.876-4.644 10-1.355v3.643l-10 1.352v-3.64z' fill='%230A5067'/%3E%3Cpath d='M34.332 3.333H33v-.667c0-.736-.597-1.333-1.333-1.333h-1.334a1.33 1.33 0 0 0-1.509-1.32L5.489 3.165a1.34 1.34 0 0 0-1.157 1.32V38a2 2 0 0 0 2 2h4.687a.625.625 0 0 0 .092-.007L34.332 40c.737 0 1.334-.597 1.334-1.333v-34c0-.737-.597-1.334-1.334-1.334zm-2.666-.667V36H15.919l13.258-1.833a1.34 1.34 0 0 0 1.155-1.32V2.667h1.334zm-2.667-1.333v31.511h-.006l-16.66 2.307V3.586l16.666-2.253zm-18 2.433v31.567l-4.969.687c-.012 0-.021.01-.033.012a1.97 1.97 0 0 0-.334.089l.002-31.634L11 3.767zm23.333 34.9L11.02 38.66c-.03 0-.06.002-.09.007H6.331a.667.667 0 1 1 0-1.334h25.334c.736 0 1.333-.597 1.333-1.333V4.666h1.333v34z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--filter:url("data:image/svg+xml,%3Csvg width='38' height='38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M1.188 6.699h18.08a5.54 5.54 0 0 0 5.401 4.342A5.54 5.54 0 0 0 30.07 6.7h6.742a1.188 1.188 0 0 0 0-2.375H30.07c-.546-2.48-2.764-4.342-5.4-4.342-2.64 0-4.856 1.863-5.402 4.342H1.188a1.188 1.188 0 0 0 0 2.375zm20.326-1.184v-.013a3.16 3.16 0 0 1 3.155-3.145 3.161 3.161 0 0 1 3.155 3.142v.017a3.159 3.159 0 0 1-3.155 3.15 3.158 3.158 0 0 1-3.155-3.147v-.005zM36.813 31.3H30.07c-.546-2.479-2.764-4.342-5.4-4.342-2.64 0-4.856 1.863-5.402 4.342H1.188a1.187 1.187 0 1 0 0 2.375h18.08a5.54 5.54 0 0 0 5.401 4.342 5.54 5.54 0 0 0 5.401-4.342h6.742a1.188 1.188 0 0 0 0-2.375zm-12.144 4.342a3.158 3.158 0 0 1-3.155-3.147v-.017a3.16 3.16 0 0 1 3.155-3.145 3.161 3.161 0 0 1 3.155 3.142v.017a3.158 3.158 0 0 1-3.155 3.15zm12.143-17.83h-18.08a5.54 5.54 0 0 0-5.401-4.343 5.54 5.54 0 0 0-5.402 4.342H1.187a1.188 1.188 0 0 0 0 2.375H7.93c.546 2.48 2.764 4.343 5.4 4.343 2.64 0 4.856-1.863 5.402-4.343h18.08a1.188 1.188 0 0 0 0-2.375zm-20.326 1.184v.013a3.16 3.16 0 0 1-3.155 3.145 3.161 3.161 0 0 1-3.155-3.143v-.017a3.158 3.158 0 0 1 3.155-3.15 3.158 3.158 0 0 1 3.155 3.148v.004z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--main-nowait:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m33.966 10.1 1.598-1.502a.8.8 0 0 0-.26-1.294.799.799 0 0 0-.874.175l-1.455 1.454a18.474 18.474 0 0 0-12.081-5.641V1.966a.735.735 0 0 0-.096-.368h.8a.799.799 0 1 0 0-1.598H18.4a.8.8 0 1 0 0 1.598h.927a.768.768 0 0 0-.112.368v1.326A19.177 19.177 0 0 0 1.62 21.622 19.177 19.177 0 0 0 20 40a19.081 19.081 0 0 0 18.378-18.378 18.059 18.059 0 0 0-4.41-11.522zM20 38.402a17.451 17.451 0 0 1-16.78-16.78A17.451 17.451 0 0 1 20 4.842a17.42 17.42 0 0 1 16.78 16.78A17.419 17.419 0 0 1 20 38.402z' fill='%230A5067'/%3E%3Cpath d='M22.107 22.005c.054-.35.03-.708-.07-1.048l10.766-6.317a.799.799 0 0 0-.811-1.366l-10.765 6.318a2.54 2.54 0 0 0-.986-.407 2.396 2.396 0 1 0 1.866 2.82zm-3.153-.522a.799.799 0 1 1 1.577.261.799.799 0 0 1-1.577-.261zm1.048-11.847a.8.8 0 0 0 .8-.799V7.24a.8.8 0 0 0-1.599 0v1.598a.799.799 0 0 0 .8.8zm0 23.972a.799.799 0 0 0-.799.799v1.598a.799.799 0 1 0 1.598 0v-1.598a.8.8 0 0 0-.799-.8zm14.38-12.785h-1.599a.8.8 0 0 0 0 1.598h1.599a.799.799 0 1 0 0-1.598zm-27.172 0H5.612a.8.8 0 0 0 0 1.598H7.21a.799.799 0 0 0 0-1.598z' fill='%230A5067'/%3E%3Cpath stroke='%23FAB826' stroke-width='1.5' stroke-linecap='round' d='M35.939 38 3 5.061'/%3E%3C/svg%3E");
    /*1*/--main-free:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m13.797 12.34-.59-.59 1.178-1.178 1.769 1.768a.834.834 0 0 0 1.178-1.178l-2.357-2.357a.834.834 0 0 0-1.178 0l-4.713 4.713a.834.834 0 0 0 .59 1.422c.213 0 .426-.08.586-.243l1.769-1.769.59.59a.837.837 0 0 0 1.178 0 .834.834 0 0 0 0-1.178zM23.224 28.84l2.357 2.357a.837.837 0 0 0 1.18.001.834.834 0 0 0 0-1.178l-1.768-1.768 1.178-1.179.588.589a.837.837 0 0 0 1.179 0 .834.834 0 0 0 0-1.179l-.589-.588 1.179-1.18 1.768 1.768a.834.834 0 0 0 1.178-1.178l-2.356-2.358a.84.84 0 0 0-1.18 0l-4.714 4.715a.834.834 0 0 0 0 1.178zM18.511 13.518l-2.343 2.342-.034.033-2.34 2.34a.834.834 0 0 0 1.179 1.179l.935-.935v2.701a.834.834 0 0 0 1.665 0v-2.731c.435.336.965.518 1.525.518.668 0 1.297-.26 1.768-.732a2.504 2.504 0 0 0 0-3.536l-1.178-1.178a.832.832 0 0 0-1.177 0zm1.18 3.537a.832.832 0 0 1-1.18-.002l-.59-.588 1.18-1.18.59.59a.836.836 0 0 1 0 1.18zM18.51 24.125l2.357 2.358a.837.837 0 0 0 1.18-.001.834.834 0 0 0 0-1.179l-1.768-1.768 1.177-1.177.59.59a.837.837 0 0 0 1.178 0 .834.834 0 0 0 0-1.178l-.59-.588L23.814 20l1.767 1.768a.834.834 0 0 0 1.178-1.178l-2.357-2.357a.834.834 0 0 0-1.178 0l-4.713 4.714a.831.831 0 0 0 0 1.178z' fill='%23FAB826'/%3E%3Cpath d='M33.823 9.262c-.523-.5-1.051-1.002-1.566-1.517a90.238 90.238 0 0 1-1.524-1.573C27.84 3.137 24.852 0 20 0 8.972 0 0 8.972 0 20s8.972 20 20 20 20-8.972 20-19.998c0-4.86-3.142-7.85-6.177-10.74zM29.527 7.32a93.914 93.914 0 0 0 1.551 1.602c.524.525 1.064 1.036 1.597 1.545 1.632 1.553 3.192 3.066 4.267 4.816a12.127 12.127 0 0 0-1.535-.365c-.025-.005-.047-.01-.072-.011l-.607-.104c-2.095-.34-4.473-.726-6.636-2.891-2.164-2.165-2.55-4.542-2.89-6.637-.124-.755-.259-1.508-.48-2.21 1.743 1.073 3.255 2.63 4.805 4.255zm-5.972-1.78c.362 2.228.813 5.002 3.358 7.548 2.545 2.547 5.319 2.997 7.549 3.359l.093.016C34.833 17.615 35 18.798 35 20c0 8.27-6.728 15-15 15S5 28.27 5 20 11.728 5 20 5c1.198 0 2.382.167 3.538.447.005.033.01.06.017.093zM20 38.333C9.892 38.333 1.667 30.108 1.667 20 1.667 9.892 9.892 1.667 20 1.667c.397 0 .767.046 1.137.095 1.238.215 1.745.838 2.046 1.915-1.046-.204-2.108-.344-3.183-.344C10.812 3.333 3.333 10.81 3.333 20c0 9.19 7.477 16.667 16.667 16.667 9.19 0 16.667-7.477 16.667-16.667 0-1.077-.139-2.137-.342-3.182 1.075.302 1.7.809 1.913 2.047.049.368.095.738.095 1.135 0 10.108-8.225 18.333-18.333 18.333z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--main-pay:url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M97.393 71.575c-1.866-2.741-5.03-3.41-8.468-1.793l-1.822.802c2.873-6.123 3.23-12.949 1.8-19.396-1.643-7.405-5.61-14.578-11.791-21.321a1.464 1.464 0 1 0-2.16 1.98c5.83 6.358 9.561 13.079 11.091 19.975 1.611 7.264.674 14.756-3.438 20.742l-18.23 8.028.014-2.06c0-.051-.001-.103-.007-.155a9.179 9.179 0 0 0-7.904-8.204l-16.203-1.866c-6.23-.887-7.835-4.62-16.274-6.75-.583-4.947.194-10.214 2.324-15.495 3.208-7.953 9.484-15.68 18.185-22.404 3.242 2.299 17.71 2.585 20.947-.381a78.208 78.208 0 0 1 4.717 3.871 1.46 1.46 0 0 0 2.068-.12 1.465 1.465 0 0 0-.12-2.066 81.62 81.62 0 0 0-5.179-4.235c.428-1.812-.17-3.933-1.748-5.195 4.585-6.956 5.92-11.508 4.077-13.893-1.266-1.639-2.84-.87-3.512-.541-1.14.556-1.761.585-2.81-.1-2-1.31-4.102-1.352-6.167 0-1.061.694-1.898.694-2.959 0-2-1.31-4.102-1.352-6.167 0-1.06.693-1.684.65-2.805.093-.672-.334-2.244-1.115-3.518.523-1.8 2.318-.596 6.727 3.68 13.446a4.762 4.762 0 0 0-.744.498c-1.7-1.796-4.487-3.67-8.517-3.22-3.342.375-5.807-.73-7.286-1.722a1.465 1.465 0 0 0-1.632 2.433c1.886 1.264 5.02 2.671 9.243 2.2 3.113-.349 5.226 1.242 6.54 2.861a4.838 4.838 0 0 0-.05.189 25.144 25.144 0 0 0-4.643.506c-4.44.924-7.736 3.033-9.531 6.102a1.465 1.465 0 0 0 2.528 1.48c2.67-4.565 9.19-5.123 11.779-5.158.01.032.024.064.035.096-9.24 7.128-15.672 15.076-19.127 23.64-2.183 5.414-3.056 10.838-2.613 15.992a30.484 30.484 0 0 0-4.253-.33v-.885a4.255 4.255 0 0 0-4.25-4.25H5.77a4.255 4.255 0 0 0-4.25 4.25v34.11a4.255 4.255 0 0 0 4.25 4.25h6.723a4.255 4.255 0 0 0 4.25-4.25v-.417l14.666 5.459a17.547 17.547 0 0 0 6.14 1.105h21.853c3.34 0 6.598-.945 9.42-2.733 29.152-18.48 27.382-17.33 27.55-17.48a6.28 6.28 0 0 0 1.02-8.211zM62.709 21.541c-5.356 1.353-10.563 1.353-15.92 0-2.299-.58-1.633-4.68.837-4.06 4.793 1.202 9.452 1.202 14.245 0 2.428-.61 3.173 3.47.838 4.06zM43.514 3.697l.034.017c1.982.986 3.719 1.04 5.713-.265 2.495-1.634 2.766.985 6.042.985 1.578 0 2.448-.57 3.084-.985 1.062-.695 1.898-.695 2.96 0 2.003 1.31 3.697 1.245 5.737.262.302 1.086-.38 4.325-4.723 10.79-2.157-.036-5.287 2.082-14.146.11-4.334-6.55-5.004-9.82-4.701-10.914zm50.993 73.827L67.254 94.793a14.649 14.649 0 0 1-7.852 2.278H37.549c-1.753 0-3.475-.31-5.118-.922L16.743 90.31V74.538a1.465 1.465 0 1 0-2.929 0v19.315c0 .728-.592 1.321-1.32 1.321H5.77a1.323 1.323 0 0 1-1.321-1.321v-34.11c0-.729.592-1.321 1.32-1.321h6.724c.729 0 1.321.592 1.321 1.32v7.949a1.464 1.464 0 1 0 2.929 0v-4.133c12.115.092 14.84 6.478 23.14 7.652a.801.801 0 0 0 .037.005l16.203 1.865a6.256 6.256 0 0 1 5.336 5.514l-.02 2.785H46.33a1.465 1.465 0 1 0 0 2.93h16.564c.185 0 .399-.041.584-.122l26.646-11.732c1.916-.851 3.663-.973 4.847.768a3.346 3.346 0 0 1-.463 4.3z' fill='%230A5067'/%3E%3Cpath d='M55.134 66.45c.809 0 1.465-.657 1.465-1.466v-2.427c4.111-.667 6.51-3.995 7.032-7.1.652-3.878-1.38-7.251-5.175-8.593a72.704 72.704 0 0 1-1.858-.683v-9.338c1.733.287 2.773 1.184 2.849 1.251a1.464 1.464 0 0 0 1.978-2.16c-.103-.095-1.897-1.71-4.827-2.048v-2.083a1.465 1.465 0 1 0-2.929 0v2.201a10.8 10.8 0 0 0-1.086.266c-2.485.748-4.342 2.878-4.847 5.559-.458 2.432.313 4.772 2.013 6.105.976.765 2.204 1.466 3.92 2.215v11.583c-1.694-.072-2.736-.39-4.555-1.58a1.464 1.464 0 1 0-1.603 2.451c2.39 1.564 3.989 1.972 6.158 2.057v2.325c0 .808.656 1.464 1.465 1.464zm-3.578-22.82c-.836-.657-1.197-1.905-.941-3.259.236-1.255 1.1-2.78 2.813-3.297.081-.024.161-.045.241-.067v7.911c-.877-.438-1.564-.859-2.112-1.289zm5.924 5.996c3.644 1.288 3.418 4.417 3.262 5.346-.323 1.922-1.734 3.974-4.144 4.591V49.31c.285.104.577.21.882.317z' fill='%23FAB826'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--main-use:url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M67.68 69.889a1.562 1.562 0 0 0 2.208-.07l23.438-25a1.564 1.564 0 0 0-1.783-2.51c-.188.09-.357.216-.495.372l-23.438 25a1.562 1.562 0 0 0 .07 2.208zm-37.568-.07a1.563 1.563 0 1 0 2.278-2.138l-23.437-25a1.562 1.562 0 1 0-2.279 2.138l23.438 25zm56.283-8.424-7.813 7.813a1.56 1.56 0 0 0 .494 2.57 1.562 1.562 0 0 0 1.716-.36l7.812-7.813a1.562 1.562 0 0 0-2.209-2.21zm-75 0a1.563 1.563 0 0 0 0 2.21l7.813 7.812a1.563 1.563 0 0 0 2.209-2.21l-7.813-7.812a1.563 1.563 0 0 0-2.209 0z' fill='%23FAB826'/%3E%3Cpath d='m16.572 26.436 13.115 5.62v21.069a1.562 1.562 0 0 0 1.069 1.481A60.926 60.926 0 0 0 50 57.711a60.92 60.92 0 0 0 19.243-3.105 1.563 1.563 0 0 0 1.07-1.481V37.276a1.562 1.562 0 1 0-3.126 0v14.71a58.101 58.101 0 0 1-34.375 0V33.392l16.572 7.102a1.562 1.562 0 0 0 1.231 0L81.25 27.369v8.856a4.687 4.687 0 1 0 3.125 0V25a1.562 1.562 0 0 0-.947-1.436L50.615 9.502a1.573 1.573 0 0 0-1.231 0l-13.29 5.696a1.564 1.564 0 1 0 1.23 2.87L50 12.639 78.845 25 50 37.362 21.154 25l10.711-4.59a1.562 1.562 0 1 0-1.231-2.872l-14.063 6.026a1.562 1.562 0 0 0 0 2.872zm66.24 15.752a1.563 1.563 0 1 1 0-3.126 1.563 1.563 0 0 1 0 3.126z' fill='%230A5067'/%3E%3Cpath d='M48.438 62.5v3.125a1.563 1.563 0 0 0 3.124 0V62.5a1.563 1.563 0 0 0-3.124 0zm11.395-1.105-3.125 3.125a1.56 1.56 0 0 0 .493 2.57 1.562 1.562 0 0 0 1.716-.36l3.125-3.125a1.562 1.562 0 0 0-2.21-2.21zm-21.875 0a1.563 1.563 0 0 0 0 2.21l3.125 3.125a1.562 1.562 0 0 0 2.209-2.21l-3.125-3.125a1.563 1.563 0 0 0-2.21 0z' fill='%23FAB826'/%3E%3Cpath d='m95.625 87.533-44.063-9.118a4.688 4.688 0 0 1 5.9-4.475l29.283 7.885a1.563 1.563 0 0 0 .811-3.017l-29.275-7.885a7.752 7.752 0 0 0-6.784 1.344A7.864 7.864 0 0 0 50 73.792a7.759 7.759 0 0 0-8.281-2.869l-29.282 7.885a6.25 6.25 0 0 0-4.624 6.036v1.978l-3.438.712a1.562 1.562 0 0 0-1.25 1.528v6.25a1.562 1.562 0 0 0 1.719 1.563l20.422-2.119a1.564 1.564 0 1 0-.322-3.11L6.25 93.58v-3.247l42.188-8.728V87.5a1.562 1.562 0 1 0 3.124 0v-5.894l42.188 8.728v3.247l-37.344-3.864a1.613 1.613 0 0 0-1.207.395 1.562 1.562 0 0 0-.516 1.16v.915a1.563 1.563 0 0 1-1.563 1.563h-6.245a1.562 1.562 0 0 1-1.563-1.563v-.915a1.563 1.563 0 0 0-1.723-1.555l-12.426 1.284a1.564 1.564 0 0 0 .321 3.11l10.782-1.113a4.688 4.688 0 0 0 4.609 3.877h6.25a4.687 4.687 0 0 0 4.617-3.877l37.414 3.877c.055 0 .108.008.156.008a1.563 1.563 0 0 0 1.563-1.563v-6.258a1.562 1.562 0 0 0-1.25-1.53zm-84.688-2.69a3.126 3.126 0 0 1 2.313-3.017l29.281-7.884a4.686 4.686 0 0 1 5.907 4.474l-37.5 7.757v-1.33z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--main-safe:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36.15 5.66s-6.523-1.151-8.377-1.79A20.546 20.546 0 0 1 20.562.223.8.8 0 0 0 20.034 0a.815.815 0 0 0-.575.224 19.793 19.793 0 0 1-7.18 3.645c-1.838.64-8.233 1.791-8.361 1.791a.8.8 0 0 0-.672.784c0 12.95.16 18.93 4.125 25.022 3.39 5.212 11.992 8.378 12.36 8.522.09.016.181.016.271 0h.272c.368-.144 9.034-3.31 12.423-8.522 3.965-6.092 4.125-12.072 4.125-25.022a.8.8 0 0 0-.671-.784zm-4.796 24.942c-2.782 4.27-9.88 7.195-11.352 7.77-1.47-.575-8.506-3.5-11.288-7.77-3.517-5.404-3.853-10.232-3.87-23.487 2.692-.39 5.36-.924 7.995-1.599a25.581 25.581 0 0 0 7.195-3.677 25.742 25.742 0 0 0 7.243 3.55 76.737 76.737 0 0 0 7.994 1.598c-.064 13.319-.4 18.147-3.917 23.551v.064z' fill='%230A5067'/%3E%3Cpath d='M28.915 13.368 18.462 23.991 14.1 19.556a1.214 1.214 0 0 0-1.738 0 1.262 1.262 0 0 0 0 1.766l5.226 5.312c.48.488 1.257.488 1.738 0l11.316-11.5c.48-.488.48-1.29-.012-1.779-.456-.476-1.233-.476-1.714.013z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--idea:url("data:image/svg+xml,%3Csvg width='40' height='54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.237 31.22 5.794 32.66a.784.784 0 0 0 1.108 1.108l1.443-1.442a.784.784 0 0 0-1.108-1.108zM19.782 3.606a.784.784 0 0 0 .784-.782V.783a.784.784 0 0 0-1.567 0v2.042c0 .432.35.782.783.782zm11.992 4.968c.2 0 .401-.077.553-.23l1.444-1.442a.784.784 0 0 0-1.108-1.108l-1.444 1.442a.783.783 0 0 0 .554 1.337zm.553 22.644a.784.784 0 1 0-1.108 1.108l1.444 1.442A.782.782 0 0 0 34 33.216a.783.783 0 0 0-.23-.555l-1.443-1.442zM7.237 8.345a.78.78 0 0 0 1.337-.554.783.783 0 0 0-.229-.553L6.902 5.795a.783.783 0 1 0-1.108 1.108l1.443 1.442zM2.824 18.999H.784a.783.783 0 1 0 0 1.567h2.04a.784.784 0 0 0 0-1.567z' fill='%23FAB826'/%3E%3Cpath d='M33.65 15.657a.783.783 0 0 0-.488.359.804.804 0 0 0-.094.603c.237.996.356 2.026.356 3.062 0 2.303-.599 4.568-1.733 6.548-2.417 4.225-3.751 8.908-3.878 13.59h-3.365v-1.717c0-3.088.685-6.198 1.983-8.992l.083-.18a1.515 1.515 0 0 0-.332-1.756 1.464 1.464 0 0 0-1.754-.22l-1.761.988-.66-.796a1.965 1.965 0 0 0-1.507-.71 1.942 1.942 0 0 0-1.506.71l-.66.796-1.762-.987a1.463 1.463 0 0 0-1.753.22 1.514 1.514 0 0 0-.333 1.756l.083.179a21.5 21.5 0 0 1 1.983 8.992v1.718h-3.365c-.125-4.72-1.449-9.386-3.85-13.544a13.194 13.194 0 0 1-1.758-6.841 13.087 13.087 0 0 1 3.81-9.014c2.398-2.416 5.565-3.774 8.92-3.824a12.78 12.78 0 0 1 6.712 1.78 12.993 12.993 0 0 1 4.831 5.044.78.78 0 0 0 1.063.307.807.807 0 0 0 .32-1.072 14.569 14.569 0 0 0-5.419-5.658 14.332 14.332 0 0 0-7.531-1.996c-3.766.054-7.32 1.579-10.008 4.289a14.681 14.681 0 0 0-4.274 10.115 14.805 14.805 0 0 0 1.972 7.676c2.385 4.127 3.646 8.785 3.646 13.47v5.142a4.141 4.141 0 0 0 1.174 2.887 4.04 4.04 0 0 0 2.838 1.222c.078.496.228.975.452 1.43a.798.798 0 0 0 .454.424.777.777 0 0 0 .865-.235.799.799 0 0 0 .184-.596.805.805 0 0 0-.093-.305 3.397 3.397 0 0 1-.258-.716h6.523a3.42 3.42 0 0 1-.569 1.227c-.27.367-.608.675-.997.905a3.332 3.332 0 0 1-2.603.342.779.779 0 0 0-.586.085.807.807 0 0 0-.296 1.07.79.79 0 0 0 .457.38 4.876 4.876 0 0 0 3.987-.6 4.964 4.964 0 0 0 1.467-1.465 5.03 5.03 0 0 0 .747-1.945 4.04 4.04 0 0 0 2.838-1.222 4.14 4.14 0 0 0 1.174-2.888V40.55c0-4.644 1.27-9.32 3.675-13.522A14.808 14.808 0 0 0 35 19.681c0-1.16-.135-2.316-.399-3.434a.798.798 0 0 0-.355-.494.781.781 0 0 0-.595-.096zM16.012 28.463l1.61.903a1.49 1.49 0 0 0 1.881-.353l.7-.841a.386.386 0 0 1 .597 0l.699.841a1.491 1.491 0 0 0 1.88.354l1.612-.904a23.121 23.121 0 0 0-2.118 9.639v1.718H18.13v-1.718c0-3.31-.733-6.641-2.118-9.639zm11.791 17.23c0 .668-.262 1.307-.728 1.778a2.472 2.472 0 0 1-1.755.738h-9.638a2.472 2.472 0 0 1-1.755-.737 2.534 2.534 0 0 1-.728-1.777v-.085h14.604v.084zm0-1.678H13.198v-2.6h14.604v2.6z' fill='%230A5067'/%3E%3Cpath d='M13 17.76v1.008a.746.746 0 0 0 .242.522.811.811 0 0 0 .552.213.812.812 0 0 0 .551-.213.747.747 0 0 0 .242-.521V17.76a.745.745 0 0 0-.233-.538.811.811 0 0 0-.56-.223c-.211 0-.413.08-.562.223a.745.745 0 0 0-.232.538zm26.207 1.499H37.14a.823.823 0 0 0-.561.223.759.759 0 0 0-.233.538.733.733 0 0 0 .233.537.797.797 0 0 0 .56.223h2.067c.21 0 .412-.08.56-.223A.745.745 0 0 0 40 20.02a.745.745 0 0 0-.232-.538.811.811 0 0 0-.561-.223zM25.35 17.761v1.008c0 .201.084.395.232.537a.81.81 0 0 0 .561.223.81.81 0 0 0 .561-.223.745.745 0 0 0 .233-.538V17.76a.745.745 0 0 0-.233-.537.811.811 0 0 0-.56-.223c-.211 0-.413.08-.562.223a.745.745 0 0 0-.232.538zm-6.661-.683c-.702 0-1.274.547-1.274 1.22v1.255c.001.649.27 1.27.749 1.73a2.612 2.612 0 0 0 1.804.717c.677 0 1.325-.259 1.804-.717a2.4 2.4 0 0 0 .748-1.73V18.3c0-.674-.57-1.221-1.272-1.221h-2.56zm2.245 2.475a.91.91 0 0 1-.297.63.99.99 0 0 1-.67.257.989.989 0 0 1-.668-.258.91.91 0 0 1-.297-.629V18.6h1.932v.954z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1*/--a-comission:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.926.082A24.918 24.918 0 0 1 47.05 13.536L24.926 25V.082z' fill='%231984A8'/%3E%3Cpath d='M47.05 13.536a24.918 24.918 0 0 1 1.355 19.808L24.925 25 47.05 13.536z' fill='%2315D69C'/%3E%3Cpath d='M48.403 33.344C44.16 45.28 31.64 52.134 19.3 49.275S-1.272 34.755.167 22.17C1.605 9.585 12.257.082 24.923.082V25l23.48 8.344z' fill='%23E8F6FB'/%3E%3C/svg%3E");
    /*1*/--a-scheme-bg:url("data:image/svg+xml,%3Csvg width='8' height='1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill='%237DB6C9' d='M0 0h4v1H0z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--a-scheme-1:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='white'%3E%3Cpath d='M39.873 19.471a.734.734 0 00.734-.733V3.082c0-1.7-1.383-3.082-3.083-3.082H5.431a3.086 3.086 0 00-3.083 3.082v11.79H.734a.734.734 0 100 1.469h1.614v7.925H.734a.734.734 0 100 1.468h1.614v7.926H.734a.734.734 0 100 1.467h1.614v11.791c0 1.7 1.383 3.082 3.083 3.082h32.093c1.7 0 3.083-1.383 3.083-3.082V22.31a.734.734 0 10-1.468 0v24.608c0 .89-.724 1.614-1.615 1.614H5.431c-.89 0-1.615-.724-1.615-1.614v-.049h29.012a.734.734 0 00.734-.734v-5.528h1.614c1.268 0 2.3-1.032 2.3-2.3v-4.696c0-1.268-1.032-2.3-2.3-2.3h-1.614v-1.663h1.614c1.268 0 2.3-1.032 2.3-2.3v-4.696c0-1.268-1.032-2.3-2.3-2.3h-1.614V18.69h1.614c1.268 0 2.3-1.032 2.3-2.3v-4.696c0-1.268-1.032-2.3-2.3-2.3h-1.614V3.865a.734.734 0 00-.734-.734H3.816v-.049c0-.89.724-1.614 1.614-1.614h32.094c.89 0 1.615.724 1.615 1.614v15.656c0 .405.328.733.734.733zm-6.311-8.61h1.614c.459 0 .832.373.832.832v4.697a.833.833 0 01-.832.831h-1.614v-6.36zm0 10.959h1.614c.459 0 .832.373.832.832v4.696a.833.833 0 01-.832.832h-1.614v-6.36zm0 10.959h1.614c.459 0 .832.373.832.832v4.696a.833.833 0 01-.832.832h-1.614v-6.36zm-1.468-28.18V45.4H3.816V35.127h.97a3.087 3.087 0 002.993 2.349c1.7 0 3.082-1.383 3.082-3.083 0-1.7-1.383-3.082-3.082-3.082a3.087 3.087 0 00-2.993 2.349h-.97v-7.926h.97a3.087 3.087 0 002.993 2.348c1.7 0 3.082-1.383 3.082-3.082 0-1.7-1.383-3.082-3.082-3.082a3.087 3.087 0 00-2.993 2.348h-.97V16.34h.97a3.087 3.087 0 002.993 2.349c1.7 0 3.082-1.383 3.082-3.083 0-1.7-1.383-3.082-3.082-3.082a3.087 3.087 0 00-2.993 2.349h-.97V4.599h28.278zM6.996 33.659h-.653c.267-.521.81-.88 1.436-.88.89 0 1.614.724 1.614 1.614 0 .89-.724 1.615-1.614 1.615a1.615 1.615 0 01-1.436-.881h.653a.734.734 0 100-1.468zm0-9.393h-.653a1.613 1.613 0 111.436 2.348 1.615 1.615 0 01-1.436-.88h.653a.734.734 0 100-1.468zm0-9.393h-.653a1.613 1.613 0 111.436 2.348 1.615 1.615 0 01-1.436-.88h.653a.734.734 0 100-1.468z'/%3E%3Cpath d='M28.914 14.873h-14.09a.734.734 0 000 1.467h14.09a.734.734 0 000-1.467zm0 9.393h-14.09a.734.734 0 000 1.468h14.09a.734.734 0 000-1.468zm0 9.394h-14.09a.734.734 0 000 1.467h14.09a.734.734 0 000-1.468zm20.352-4.6a.734.734 0 00-.734.735v10.842l-.88.036V9.736c0-1.23-.83-2.268-1.958-2.588v-2.5a.734.734 0 10-1.468 0v2.5a2.695 2.695 0 00-1.956 2.588v33.268c0 1.268 1.031 2.3 2.299 2.3h.783c1.268 0 2.3-1.032 2.3-2.3v-.862l1.644-.068A.734.734 0 0050 41.34V29.793a.734.734 0 00-.733-.733zm-3.082 13.944a.833.833 0 01-.832.832h-.783a.833.833 0 01-.832-.832V31.996h2.447v11.008zm0-12.476h-2.447V9.736a1.224 1.224 0 012.447 0v20.792z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--a-scheme-2:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)' fill='white'%3E%3Cpath d='M44.327 11.542l-3.74-3.74v-5.58A2.225 2.225 0 0038.364 0H7.656C6.446 0 5.46.985 5.46 2.195v36.82c0 1.21.985 2.194 2.195 2.194h1.241v1.223c0 1.21.985 2.195 2.195 2.195h4.76a.732.732 0 100-1.465h-4.76a.73.73 0 01-.73-.73V12.984a.732.732 0 10-1.465 0v26.76h-1.24a.73.73 0 01-.73-.73V2.194a.73.73 0 01.73-.73h30.708c.418 0 .758.34.758.758v4.115l-2.705-2.705a.733.733 0 00-.518-.214H11.092c-1.21 0-2.195.984-2.195 2.195v3.962a.732.732 0 101.465 0V5.613a.73.73 0 01.73-.73h24.075v7.176c0 .404.327.732.732.732l7.178.001v29.64a.73.73 0 01-.73.73h-4.704a.732.732 0 100 1.465h4.704c1.21 0 2.195-.985 2.195-2.195V12.06a.732.732 0 00-.215-.518zm-7.696-.216V5.918l5.41 5.41-5.41-.002z'/%3E%3Cpath d='M35.5 17.134H17.98a.732.732 0 100 1.465H35.5a.732.732 0 100-1.465zm0 4.32H17.98a.732.732 0 100 1.465H35.5a.732.732 0 000-1.465zm-.001 4.406h-3.462a.732.732 0 100 1.464H35.5a.732.732 0 100-1.464zm-6.907 1.464a.732.732 0 100-1.464H17.979a.732.732 0 100 1.464h10.613zm.829 12.774l-1.953-1.953v7.08a.732.732 0 11-1.464 0v-7.08l-1.953 1.953a.732.732 0 01-1.036-1.036l3.203-3.203a.73.73 0 011.036 0l3.203 3.203a.732.732 0 01-1.036 1.036z'/%3E%3Cpath d='M26.738 31.602c-5.072 0-9.199 4.127-9.199 9.2 0 5.071 4.127 9.198 9.2 9.198 5.072 0 9.198-4.127 9.198-9.199s-4.126-9.199-9.199-9.199zm0 16.933c-4.264 0-7.734-3.47-7.734-7.734 0-4.264 3.47-7.733 7.734-7.733 4.265 0 7.734 3.469 7.734 7.733 0 4.265-3.47 7.734-7.734 7.734z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--a-scheme-3:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49.335 27.25c-.702-.98-1.87-1.638-3.05-1.718-.962-.067-1.834.26-2.455.917-.136.144-.283.302-.439.472-.686-.63-1.586-1.034-2.493-1.096-.953-.065-1.818.255-2.437.899-.719-.571-1.613-.903-2.49-.907h-.016c-.865 0-1.651.328-2.215.925-.905.958-2.38 2.636-4.384 4.988-4.155-1.66-12.013-4.567-16.082-4.567H.734a.735.735 0 100 1.47h12.54c5.27 0 18.084 5.51 18.213 5.566.024.01.048.02.073.027a2.403 2.403 0 01.4 4.417 2.385 2.385 0 01-1.854.158l-8.017-2.208a.742.742 0 00-.903.514.742.742 0 00.513.903l8.005 2.205c.973.3 2.036.202 2.937-.27a3.865 3.865 0 002.069-3.253l2.15-.227a.736.736 0 00.489-.26c.053-.064 5.325-6.394 7.549-8.747.401-.426.921-.486 1.287-.46.742.05 1.509.485 1.955 1.107 1.026 1.434-.25 3-.665 3.445-2.04 2.19-5.784 6.702-6.456 7.515L26.45 46.35a1.615 1.615 0 01-1.35.044l-13.894-5.85a.734.734 0 00-.285-.057H.735a.735.735 0 100 1.469h10.04l13.756 5.792a3.106 3.106 0 002.578-.084l14.706-7.353a.735.735 0 00.238-.19c.043-.052 4.327-5.24 6.497-7.568 1.598-1.714 1.899-3.746.785-5.302zM32.82 33.19a3.857 3.857 0 00-.784-.354c-.144-.062-.585-.25-1.245-.523 1.806-2.114 3.19-3.686 4.017-4.561.362-.384.822-.465 1.147-.465h.01c.51.002 1.05.196 1.498.524-1.358 1.515-3.16 3.625-4.643 5.38zm3.59 1.845l-1.916.202a3.898 3.898 0 00-.577-1.068c1.6-1.894 4.201-4.944 5.593-6.417.402-.426.922-.485 1.288-.46.576.038 1.166.31 1.61.721-2.204 2.489-5.205 6.073-5.997 7.022z' fill='white'/%3E%3Cpath d='M38.257 16.595a.74.74 0 00-.688-.476h-3.967v-5.894a.735.735 0 10-1.47 0v6.629c0 .406.33.735.735.735H35.5l-10.47 8.506-10.47-8.507h2.634a.735.735 0 00.734-.734V3.482h14.205v3.216a.735.735 0 101.469 0v-3.95a.735.735 0 00-.735-.735H17.194a.735.735 0 00-.735.734V16.12h-3.967a.741.741 0 00-.688.476.74.74 0 00.224.829l12.54 10.188c.266.217.659.217.926 0l12.539-10.188a.741.741 0 00.224-.83z' fill='white'/%3E%3Cpath d='M28.164 12.103a.734.734 0 00.735-.735v-.784A3.09 3.09 0 0025.813 7.5h-.049V5.882a.735.735 0 10-1.47 0v1.634a3.482 3.482 0 00-3.134 3.46 3.482 3.482 0 003.478 3.478h.784c1.107 0 2.008.9 2.008 2.008a2.01 2.01 0 01-2.008 2.008h-1.176a1.618 1.618 0 01-1.616-1.616.735.735 0 10-1.47 0 3.09 3.09 0 003.086 3.086h.05v1.616a.735.735 0 101.468 0v-1.633a3.482 3.482 0 003.135-3.461 3.481 3.481 0 00-3.477-3.478h-.784a2.01 2.01 0 01-2.008-2.008c0-1.107.9-2.008 2.008-2.008h1.175c.892 0 1.617.725 1.617 1.616v.784c0 .406.329.735.734.735z' fill='white'/%3E%3C/svg%3E");
    /*1*/--a-register-vk:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 50c13.807 0 25-11.193 25-25S38.807 0 25 0 0 11.193 0 25s11.193 25 25 25z' fill='%232787F5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.053 35.965h1.962s.593-.065.896-.392c.278-.299.27-.861.27-.861s-.04-2.633 1.183-3.021c1.204-.382 2.751 2.545 4.39 3.67 1.24.852 2.183.665 2.183.665l4.384-.061s2.293-.142 1.206-1.945c-.09-.147-.634-1.333-3.26-3.771-2.749-2.551-2.38-2.139.93-6.552 2.017-2.688 2.823-4.329 2.572-5.031-.24-.67-1.724-.493-1.724-.493l-4.936.03s-.366-.049-.637.113c-.265.16-.436.53-.436.53s-.781 2.08-1.823 3.849c-2.198 3.732-3.077 3.929-3.436 3.697-.836-.54-.627-2.17-.627-3.327 0-3.617.549-5.125-1.068-5.516-.537-.13-.932-.215-2.304-.229-1.761-.018-3.252.006-4.096.42-.561.274-.994.887-.73.922.326.044 1.064.2 1.456.733.506.688.488 2.233.488 2.233s.29 4.258-.679 4.787c-.665.363-1.578-.378-3.537-3.764-1.004-1.735-1.762-3.652-1.762-3.652s-.146-.358-.407-.55c-.316-.232-.759-.306-.759-.306l-4.69.031s-.704.02-.963.326c-.23.272-.018.835-.018.835s3.672 8.592 7.83 12.921c3.813 3.97 8.142 3.709 8.142 3.709z' fill='%23fff'/%3E%3C/svg%3E");
    /*1*/--a-register-ig:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='25' fill='url(%23a)'/%3E%3Cpath d='M24.996 6.54c-7.564 0-14.748-.673-17.492 6.368-1.133 2.909-.968 6.686-.968 12.094 0 4.746-.152 9.206.968 12.092 2.738 7.046 9.98 6.37 17.488 6.37 7.244 0 14.712.755 17.49-6.37 1.135-2.938.968-6.659.968-12.092 0-7.212.398-11.869-3.1-15.365C36.81 6.096 32.02 6.54 24.988 6.54h.008zm-1.654 3.327c15.78-.025 17.787-1.78 16.68 22.59-.395 8.618-6.957 7.672-15.024 7.672-14.708 0-15.131-.42-15.131-15.135 0-14.886 1.167-15.119 13.475-15.132v.005zM34.85 12.93a2.215 2.215 0 1 0 0 4.43 2.215 2.215 0 0 0 0-4.43zm-9.854 2.59c-5.235 0-9.48 4.246-9.48 9.481a9.479 9.479 0 1 0 18.957 0c0-5.235-4.241-9.481-9.477-9.481zm0 3.327c8.136 0 8.146 12.308 0 12.308-8.133 0-8.146-12.308 0-12.308z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='42.5' y1='7' x2='6.5' y2='42.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C837AB'/%3E%3Cstop offset='.501' stop-color='%23FF543E'/%3E%3Cstop offset='1' stop-color='%23FD5'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    /*1*/--a-register-tg:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 50c13.807 0 25-11.193 25-25S38.807 0 25 0 0 11.193 0 25s11.193 25 25 25z' fill='%23039BE5'/%3E%3Cpath d='M11.437 24.458l24.105-9.293c1.118-.405 2.095.273 1.733 1.964l.002-.002-4.104 19.335c-.304 1.371-1.119 1.705-2.259 1.059l-6.25-4.606-3.014 2.904c-.333.333-.615.614-1.26.614l.443-6.36 11.584-10.465c.504-.443-.113-.693-.777-.252L17.325 28.37l-6.17-1.925c-1.34-.425-1.37-1.34.282-1.986z' fill='white'/%3E%3C/svg%3E");
    /*1*/--a-register-wa:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.006 0h-.012C11.209 0 0 11.213 0 25a24.814 24.814 0 004.76 14.653l-3.116 9.288 9.61-3.072A24.784 24.784 0 0025.005 50C38.791 50 50 38.784 50 25S38.79 0 25.006 0z' fill='%234CAF50'/%3E%3Cpath d='M39.555 35.303c-.603 1.703-2.997 3.116-4.907 3.528-1.306.278-3.012.5-8.756-1.881-7.347-3.044-12.078-10.51-12.447-10.994-.353-.484-2.968-3.953-2.968-7.54 0-3.588 1.821-5.335 2.556-6.085.603-.615 1.6-.897 2.556-.897.31 0 .588.016.838.029.734.03 1.103.075 1.587 1.234.603 1.453 2.072 5.04 2.247 5.41.178.368.356.868.106 1.352-.234.5-.44.722-.81 1.147-.368.425-.718.75-1.087 1.206-.337.397-.718.822-.293 1.557.425.718 1.893 3.115 4.056 5.04 2.79 2.485 5.053 3.279 5.862 3.616.603.25 1.322.19 1.763-.278.56-.603 1.25-1.603 1.953-2.588.5-.706 1.131-.793 1.794-.543.675.234 4.247 2 4.98 2.365.735.369 1.22.544 1.398.853.175.31.175 1.763-.428 3.47z' fill='%23FAFAFA'/%3E%3C/svg%3E");
    /*1*/--a-register-em:url("data:image/svg+xml,%3Csvg width='50' height='50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 50c13.807 0 25-11.193 25-25S38.807 0 25 0 0 11.193 0 25s11.193 25 25 25z' fill='%230A5067'/%3E%3Cpath d='M27.07 9.506c-5.112-.647-10.04 1.113-13.528 4.866-3.48 3.753-4.878 8.828-3.83 13.928 1.215 5.906 5.783 10.581 11.64 11.912a16.34 16.34 0 003.66.42c2.402 0 4.746-.548 6.915-1.623a1.569 1.569 0 00.706-2.096 1.569 1.569 0 00-2.097-.707c-2.61 1.297-5.547 1.628-8.49.96-4.594-1.044-8.32-4.863-9.272-9.494-.844-4.1.275-8.172 3.059-11.175 2.787-3 6.734-4.416 10.837-3.89 6.175.8 10.829 6.405 10.829 13.046v.91a3.126 3.126 0 01-6.25 0v-6.25a1.56 1.56 0 00-2.99-.625 6.03 6.03 0 00-3.26-.938c-3.682 0-6.25 2.89-6.25 7.031 0 4.14 2.568 7.032 6.25 7.032 1.94 0 3.556-.82 4.665-2.188 1.147 1.328 2.822 2.188 4.71 2.188a6.256 6.256 0 006.25-6.25v-.91c0-8.206-5.825-15.147-13.554-16.147zM25 29.687c-1.929 0-3.125-1.496-3.125-3.906s1.196-3.906 3.125-3.906c1.928 0 3.125 1.497 3.125 3.906 0 2.41-1.197 3.907-3.125 3.907z' fill='%23FAFAFA'/%3E%3C/svg%3E");
    /*1*/--a-stat-1:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m50.474 41.812-3.756-1.102-8.172-5.338v-1.223a10.877 10.877 0 0 0 4.292-7.64 2.497 2.497 0 0 0 2.096-2.461v-3.363l-.002-.039v-4.26c.473-.339.773-.89.773-1.509V10.98l5.64-.961a1.97 1.97 0 0 0 1.658-1.832 1.97 1.97 0 0 0-1.388-2.044L32.603.095a1.99 1.99 0 0 0-1.213 0L12.378 6.142a1.97 1.97 0 0 0-1.388 2.044c.041.596.326 1.11.765 1.446v5.098h-.046c-1.07 0-1.942.871-1.942 1.942v2.53L8.514 26.56a2.087 2.087 0 0 0 2.057 2.437h4.244a2.087 2.087 0 0 0 2.057-2.437l-1.254-7.356v-2.53c0-1.071-.87-1.942-1.941-1.942h-.047v-4.546l4.662.794v3.898c0 .616.299 1.167.77 1.506l.001 4.302v3.363c0 1.24.91 2.27 2.096 2.462a10.877 10.877 0 0 0 4.288 7.636v1.229l-8.17 5.336-3.753 1.102a9.533 9.533 0 0 0-6.852 9.152v2.794a.937.937 0 1 0 1.875 0v-2.794c0-3.378 2.264-6.402 5.505-7.353l3.497-1.026 13.97 8.301a.948.948 0 0 0 .959 0l13.971-8.302 3.497 1.026c3.24.952 5.504 3.976 5.504 7.353v9.055a2.109 2.109 0 0 1-2.106 2.106h-4.132v-4.04a.937.937 0 1 0-1.875 0v4.04H16.656v-4.04a.937.937 0 1 0-1.875 0v4.04h-4.128a2.109 2.109 0 0 1-2.106-2.106v-1.878a.937.937 0 1 0-1.875 0v1.878A3.986 3.986 0 0 0 10.653 64h42.69a3.986 3.986 0 0 0 3.982-3.981v-9.055a9.533 9.533 0 0 0-6.851-9.152zm-35.66-14.69h-4.243a.211.211 0 0 1-.209-.248l1.134-6.654h2.394l1.133 6.654a.211.211 0 0 1-.208.247zm-1.07-10.45v1.673h-2.102v-1.673c0-.037.03-.067.067-.067h1.968c.037 0 .066.03.066.067zm14.902 29.974.373.574-9.571-5.687 6.075-3.968a19.692 19.692 0 0 0 3.123 9.081zm-.007-4.047c2.207.314 4.511.314 6.719 0a17.91 17.91 0 0 1-1.578 3.025l-1.782 2.738-1.78-2.738a17.902 17.902 0 0 1-1.579-3.025zm6.712 4.047a19.692 19.692 0 0 0 3.123-9.081l6.075 3.968-9.57 5.687.372-.574zm5.484-29.911h2.222v3.012h-1.103a1.12 1.12 0 0 1-1.119-1.119v-1.893zM12.946 7.929 31.96 1.88a.123.123 0 0 1 .075 0L51.047 7.93c.04.012.093.03.086.127-.007.097-.062.107-.103.114l-6.286 1.07-2.36-.292a.938.938 0 0 0-.23 1.861l1.676.208v3.843H20.167v-3.844l9.7-1.2a17.366 17.366 0 0 1 4.258 0l3.672.454a.938.938 0 0 0 .23-1.86l-3.671-.455a19.233 19.233 0 0 0-4.718 0L19.25 9.241 12.963 8.17c-.04-.007-.096-.017-.103-.114-.007-.098.047-.115.086-.127zm7.991 11.818v-3.012h2.225v1.893a1.12 1.12 0 0 1-1.12 1.12h-1.105zm2.064 6.28a1.453 1.453 0 0 0-1.445-1.36.62.62 0 0 1-.618-.62v-2.425h1.105a2.997 2.997 0 0 0 2.994-2.994v-1.893H38.96v1.893a2.998 2.998 0 0 0 2.994 2.994h1.105v2.426a.62.62 0 0 1-.618.618c-.762 0-1.397.598-1.445 1.362-.299 4.733-4.25 8.441-8.998 8.441-4.747 0-8.699-3.708-8.997-8.441zm8.997 10.317c1.668 0 3.253-.38 4.673-1.059v.594c0 1.603-.216 3.184-.633 4.71a22.137 22.137 0 0 1-8.08 0 17.865 17.865 0 0 1-.632-4.71c0-.02-.003-.039-.004-.058v-.538A10.822 10.822 0 0 0 32 36.344z' fill='%23FF7131'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--a-stat-2:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%23FF7131'%3E%3Cpath d='m52.026 10.47-.671-4.8a.913.913 0 0 0-1.042-.774l-5.287.81a.912.912 0 1 0 .276 1.803l3.081-.472c-4.12 5.094-8.551 9.433-13.192 12.909-4.039 3.025-8.244 5.41-12.5 7.087-7.242 2.854-12.187 2.667-12.236 2.665a.912.912 0 0 0-.087 1.823c.03.001.154.006.368.006 1.314 0 5.99-.201 12.51-2.752 4.421-1.73 8.784-4.191 12.968-7.316 4.808-3.59 9.39-8.075 13.641-13.34l.364 2.604a.912.912 0 0 0 1.807-.253z'/%3E%3Cpath d='M62.317 54.093h-7.373c.607-.404 1.179-.87 1.706-1.397a10.927 10.927 0 0 0 3.221-7.777c0-2.938-1.144-5.7-3.221-7.777-.74-.74-1.562-1.35-2.434-1.834v-3.683a.912.912 0 1 0-1.825 0v2.873a10.97 10.97 0 0 0-7.647.225V23.517c0-.118.096-.214.214-.214h7.22c.117 0 .213.096.213.214v2.264a.912.912 0 0 0 1.825 0v-2.264a2.04 2.04 0 0 0-2.039-2.039h-7.219a2.04 2.04 0 0 0-2.039 2.039v12.155a10.98 10.98 0 0 0-1.824 1.47 10.927 10.927 0 0 0-3.221 7.777c0 2.938 1.144 5.7 3.221 7.777.527.527 1.099.993 1.706 1.397H37.04V31.794A2.04 2.04 0 0 0 35 29.756h-7.219a2.041 2.041 0 0 0-2.038 2.038v22.299h-5.88V39.299a2.04 2.04 0 0 0-2.038-2.038h-7.22a2.04 2.04 0 0 0-2.038 2.038v14.794H4.81V7.176c0-.928-.755-1.683-1.683-1.683H1.683C.755 5.493 0 6.248 0 7.176v6.477a.912.912 0 1 0 1.825 0V7.317h1.16v46.917c0 .928.756 1.684 1.684 1.684h57.506v1.373H1.825V19.418a.912.912 0 0 0-1.825 0v38.014c0 .928.755 1.683 1.683 1.683h60.634c.928 0 1.683-.755 1.683-1.683v-1.656c0-.928-.755-1.683-1.683-1.683zm-44.278 0h-7.647V39.299c0-.118.097-.214.215-.214h7.219c.117 0 .213.096.213.214v14.794zm9.53 0V31.794c0-.117.095-.213.213-.213h7.22c.117 0 .213.096.213.213v22.299h-7.647zm25.334-.933a9.23 9.23 0 0 1-2.951.868l-.052.006a9.252 9.252 0 0 1-.53.045l-.102.004c-.131.006-.263.01-.395.01a9.5 9.5 0 0 1-1.488-.122l-.033-.005a9.16 9.16 0 0 1-3.064-1.1l-.015-.008a9.22 9.22 0 0 1-1.888-1.452 9.114 9.114 0 0 1-2.686-6.487c0-2.45.954-4.754 2.687-6.487a9.144 9.144 0 0 1 2.193-1.62l.067-.035a9.208 9.208 0 0 1 7.643-.37l.057.022c.114.046.227.095.339.146l.133.063a9.13 9.13 0 0 1 2.541 1.794 9.182 9.182 0 0 1-2.424 14.715l-.032.013z'/%3E%3Cpath d='M49.297 44.036v-3.25c1.12.08 1.537.593 1.921.593.48 0 .704-.609.704-.913 0-.784-1.536-1.12-2.625-1.152v-.432c0-.193-.24-.369-.48-.369-.272 0-.464.176-.464.369v.464c-1.52.16-3.041.96-3.041 2.977 0 2.049 1.6 2.625 3.04 3.138v3.761c-1.632-.128-2.064-1.248-2.592-1.248-.4 0-.737.528-.737.912 0 .784 1.345 1.857 3.33 1.889v.496c0 .192.192.368.464.368.24 0 .48-.176.48-.368v-.544c1.729-.24 2.913-1.329 2.913-3.298 0-2.177-1.52-2.881-2.913-3.393zm-.848-.304c-.848-.32-1.537-.657-1.537-1.569 0-.832.64-1.233 1.537-1.345v2.914zm.752 5.458v-3.377c.785.336 1.409.784 1.409 1.792 0 .913-.544 1.425-1.409 1.585z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--a-stat-3:url("data:image/svg+xml,%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%23FF7131'%3E%3Cpath d='M62.331 45.808c-1.194-1.755-3.219-2.183-5.419-1.148l-1.166.514c1.839-3.919 2.067-8.287 1.152-12.414-1.051-4.739-3.59-9.33-7.546-13.645a.937.937 0 1 0-1.382 1.267c3.73 4.07 6.119 8.37 7.098 12.784 1.03 4.65.43 9.444-2.2 13.275L41.2 51.58l.01-1.318a.895.895 0 0 0-.005-.1 5.874 5.874 0 0 0-5.059-5.25l-10.37-1.194c-3.988-.568-5.015-2.958-10.415-4.32-.373-3.166.124-6.538 1.487-9.917 2.053-5.09 6.07-10.035 11.638-14.34 2.076 1.472 11.335 1.655 13.407-.243a50.054 50.054 0 0 1 3.018 2.478.935.935 0 0 0 1.323-.076.937.937 0 0 0-.076-1.324 52.236 52.236 0 0 0-3.314-2.71c.273-1.16-.11-2.517-1.12-3.325 2.936-4.451 3.79-7.365 2.61-8.891C43.524 0 42.517.492 42.086.703c-.729.356-1.127.374-1.797-.065-1.28-.837-2.626-.864-3.947 0-.68.445-1.215.445-1.894 0-1.28-.837-2.626-.864-3.947 0-.679.445-1.078.417-1.796.06-.43-.213-1.436-.714-2.251.335-1.153 1.484-.381 4.305 2.355 8.606-.167.09-.327.197-.476.318-1.089-1.15-2.872-2.348-5.451-2.06-2.14.239-3.716-.468-4.663-1.103a.938.938 0 0 0-1.044 1.557c1.207.81 3.212 1.71 5.915 1.409 1.992-.224 3.345.794 4.186 1.83l-.032.121c-.718.011-1.79.078-2.972.324-2.842.591-4.95 1.942-6.1 3.906a.938.938 0 0 0 1.618.946c1.71-2.92 5.881-3.278 7.538-3.3l.024.061c-5.914 4.562-10.031 9.649-12.242 15.13-1.397 3.465-1.956 6.936-1.672 10.234a19.5 19.5 0 0 0-2.722-.21v-.567c0-1.5-1.22-2.72-2.72-2.72H3.693c-1.5 0-2.72 1.22-2.72 2.72v21.83c0 1.5 1.22 2.72 2.72 2.72h4.303c1.5 0 2.72-1.22 2.72-2.72v-.267l9.386 3.494c1.261.47 2.584.707 3.93.707h13.985c2.138 0 4.223-.605 6.03-1.749C62.703 50.423 61.57 51.158 61.677 51.063a4.02 4.02 0 0 0 .653-5.255zM40.134 13.786c-3.428.866-6.76.866-10.19 0-1.47-.371-1.044-2.995.537-2.599 3.067.77 6.05.77 9.117 0 1.553-.39 2.03 2.222.536 2.6zM27.849 2.366l.022.011c1.268.63 2.38.665 3.656-.17 1.597-1.045 1.77.63 3.867.63 1.01 0 1.567-.364 1.974-.63.68-.445 1.215-.444 1.894 0 1.282.839 2.367.798 3.672.168.193.695-.243 2.768-3.023 6.906-1.38-.023-3.383 1.332-9.053.07-2.774-4.191-3.203-6.284-3.009-6.985zm32.636 47.25L43.043 60.666a9.376 9.376 0 0 1-5.026 1.459H24.031a9.358 9.358 0 0 1-3.275-.59l-10.04-3.738V47.704a.937.937 0 1 0-1.875 0v12.362c0 .466-.38.845-.845.845H3.693a.847.847 0 0 1-.846-.845v-21.83c0-.467.38-.846.846-.846h4.303c.466 0 .845.38.845.845v5.087a.937.937 0 1 0 1.875 0v-2.645c7.754.06 9.497 4.146 14.81 4.898a.394.394 0 0 0 .023.003l10.37 1.194a4.004 4.004 0 0 1 3.415 3.528l-.013 1.783h-9.67a.937.937 0 0 0 0 1.875h10.6a.97.97 0 0 0 .375-.078l17.053-7.509c1.226-.545 2.344-.623 3.102.492.59.866.46 2.036-.296 2.752z'/%3E%3Cpath d='M35.288 42.528c.517 0 .937-.42.937-.938v-1.554c2.631-.427 4.167-2.556 4.5-4.544.418-2.482-.882-4.64-3.312-5.499-.429-.152-.824-.297-1.188-.437V23.58c1.109.184 1.774.757 1.823.8a.937.937 0 0 0 1.266-1.382c-.066-.061-1.214-1.095-3.09-1.311v-1.333a.937.937 0 1 0-1.874 0v1.409a6.927 6.927 0 0 0-.695.17c-1.59.478-2.779 1.842-3.102 3.557-.294 1.557.2 3.055 1.288 3.908.625.49 1.41.938 2.51 1.418v7.412c-1.085-.046-1.752-.25-2.916-1.01a.937.937 0 1 0-1.026 1.568c1.53 1.001 2.553 1.262 3.941 1.316v1.488c0 .518.42.938.938.938zm-2.29-14.605c-.535-.42-.766-1.219-.603-2.085.152-.804.704-1.78 1.8-2.11.053-.016.104-.03.155-.043v5.063c-.561-.28-1.001-.55-1.352-.825zm3.79 3.838c2.333.824 2.189 2.827 2.089 3.42-.207 1.231-1.11 2.544-2.652 2.94v-6.564c.182.067.369.135.564.204z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ft-service:url("data:image/svg+xml,%0A%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32.921 25.296c-.583-.039-1.132.127-1.637.491-.487-.287-1.06-.433-1.709-.433-1.406 0-4.075 1.974-4.823 2.55l-3.194.745-.521-.868h2.72c1.895 0 3.496-1.564 3.496-3.415v-.93a.587.587 0 0 0-.587-.587h-3.535a.587.587 0 0 0 0 1.174h2.948v.343c0 1.193-1.085 2.24-2.322 2.24H20c-.445 0-.735.506-.503.89l1.878 3.13a.587.587 0 0 0 .504.286h5.636a.588.588 0 0 0 .415-.172l3.757-3.757c.373-.373.75-.541 1.152-.516.534.034 1.056.41 1.397.73l-5.149 5.721-9.065 1.813-11.137-3.093a.58.58 0 0 0-.157-.022H6.184v-6.34h2.544c.063 0 .126-.01.186-.03l3.667-1.223h7.732a.587.587 0 1 0 0-1.174h-7.832l-.037.002c-.008 0-.015 0-.023.002a.578.578 0 0 0-.028.004c-.01.002-.022.003-.032.006-.006 0-.012.003-.018.004l-.04.011-.003.001-3.667 1.223H6.184v-.666a.587.587 0 0 0-.587-.587H.587a.587.587 0 0 0-.587.587v10.02c0 .324.263.587.587.587h5.01a.587.587 0 0 0 .587-.587v-.666h2.464l11.195 3.11a.586.586 0 0 0 .272.01l9.393-1.879a.585.585 0 0 0 .322-.182l5.636-6.263a.587.587 0 0 0 .03-.749c-.045-.059-1.12-1.445-2.575-1.541zm-5.65 4.442h-5.06l-.018-.031 2.95-.69a.584.584 0 0 0 .228-.108c1.267-.988 3.41-2.38 4.204-2.38.29 0 .552.04.785.12l-3.089 3.088zM5.01 32.867H1.174v-8.845H5.01v8.846z' fill='%230A5067'/%3E%3Cpath d='M4.307 31.577a.587.587 0 1 1-1.174 0 .587.587 0 0 1 1.174 0z' fill='%23FAB826'/%3E%3Cpath d='M39.413 20.97h-.685a19.477 19.477 0 0 0-6.642-10.17 19.129 19.129 0 0 0-10.4-4.162A1.842 1.842 0 0 0 20 4.062a1.842 1.842 0 0 0-1.686 2.577 19.126 19.126 0 0 0-10.401 4.16 19.477 19.477 0 0 0-6.642 10.172H.587a.587.587 0 1 0 0 1.174h38.826a.587.587 0 1 0 0-1.174zM19.335 5.903a.666.666 0 1 1 1.332.002.666.666 0 0 1-1.332-.002zM2.488 20.971C4.696 13.144 11.793 7.74 20 7.74s15.304 5.403 17.512 13.23H2.488z' fill='%230A5067'/%3E%3Cpath d='M20.5 11a.5.5 0 0 0 0 1h.001a.5.5 0 0 1 .5.5.5.5 0 1 0 1 0 1.502 1.502 0 0 0-1.5-1.5z' fill='%23FAB826'/%3E%3Cpath d='M20.48 9.028c-1.774-.207-3.475.743-4.167 2.33-.693 1.585-.208 3.42 1.186 4.495a.534.534 0 0 1 .215.424v.424c.001.39.219.751.57.947l.001.703c.002.53.267 1.027.713 1.337.29.203.64.312 1 .312.19 0 .38-.03.562-.088.707-.243 1.172-.895 1.153-1.618v-.646a1.09 1.09 0 0 0 .57-.947v-.422a.559.559 0 0 1 .23-.437c1.12-.865 1.668-2.245 1.433-3.61-.298-1.685-1.705-2.986-3.466-3.204zm-.28 9.84a.599.599 0 0 1-.533-.072.546.546 0 0 1-.24-.446v-.55h1.143v.495a.593.593 0 0 1-.37.572zm1.595-3.882c-.41.313-.651.789-.654 1.293v.42l-2.285.002v-.424c0-.5-.237-.972-.643-1.283-.944-.73-1.308-1.954-.907-3.054.4-1.1 1.478-1.837 2.689-1.84.117 0 .235.008.351.02 1.256.156 2.259 1.082 2.472 2.284a2.685 2.685 0 0 1-1.023 2.582z' fill='%230A5067'/%3E%3Cpath d='M12.668 14.076 14 14.075a.667.667 0 1 0 0-1.333h-1.335a.667.667 0 1 0 .001 1.334zM12.93 11.307l1.253.454a.667.667 0 1 0 .455-1.253l-1.254-.454a.667.667 0 0 0-.455 1.253zM14.84 15.184a.667.667 0 0 0-.657-.115l-1.253.457a.667.667 0 1 0 .457 1.252l1.253-.457a.667.667 0 0 0 .2-1.137zM27.664 12.74h-.001l-1.333.002a.667.667 0 0 0 0 1.333l1.334-.002a.667.667 0 0 0 0-1.333zM25.936 11.79a.67.67 0 0 0 .229-.04l1.252-.457a.667.667 0 1 0-.457-1.253l-1.252.457a.667.667 0 0 0 .228 1.294zM27.423 15.512l-1.253-.455a.667.667 0 0 0-.455 1.254l1.253.455a.667.667 0 0 0 .455-1.253z' fill='%23FAB826'/%3E%3C/svg%3E");
    /*1--ft-service:url("data:image/svg+xml,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M10.625 19.375c-4.136 0-7.5 3.364-7.5 7.5s3.364 7.5 7.5 7.5 7.5-3.364 7.5-7.5-3.364-7.5-7.5-7.5zm6.218 6.875H11.25v-5.593a6.26 6.26 0 0 1 5.593 5.593zm-12.468.625A6.258 6.258 0 0 1 10 20.657v12.437a6.26 6.26 0 0 1-5.625-6.219zm6.875 6.218V27.5h5.593a6.26 6.26 0 0 1-5.593 5.593z' fill='%23FAB826'/%3E%3Cpath d='m29.971 18.588 1.263.56a2.6 2.6 0 0 0 1.065.227c.7 0 1.358-.273 1.853-.768l.848-.848a2.12 2.12 0 0 0 .625-1.509A2.12 2.12 0 0 0 35 14.741l-.991-.991c-.806-.806-2.212-.806-3.018 0l-.4.4a.766.766 0 0 1-.545.225h-.092c-.207 0-.4-.08-.546-.226l-.432-.431a.767.767 0 0 1-.226-.547c0-.235.106-.455.29-.602l.359-.287a1.606 1.606 0 0 0 .131-2.385L28.385 8.75c-.806-.806-2.212-.806-3.018 0l-.848.848a2.613 2.613 0 0 0-.768 1.868c0 .356.071.703.212 1.032a11.684 11.684 0 0 0 6.01 6.09zm-4.57-8.106.849-.848a.879.879 0 0 1 .625-.259.88.88 0 0 1 .625.259l1.147 1.147a.358.358 0 0 1 .103.249.35.35 0 0 1-.132.275l-.359.287a2.012 2.012 0 0 0-.759 1.58c0 .54.21 1.047.592 1.429l.432.431c.382.383.89.593 1.43.593h.092c.54 0 1.048-.21 1.43-.592l.399-.4a.907.907 0 0 1 1.25 0l.991.992a.879.879 0 0 1 .259.625.879.879 0 0 1-.259.625l-.848.848a1.385 1.385 0 0 1-1.526.283l-1.263-.56a10.434 10.434 0 0 1-5.368-5.44A1.376 1.376 0 0 1 25 11.45c0-.366.143-.71.402-.97z' fill='%230A5067'/%3E%3Cpath d='M32.68 21.875h4.82A1.877 1.877 0 0 0 39.375 20V7.5A1.877 1.877 0 0 0 37.5 5.625h-6.875v-5H5.991L.625 5.991v30.884h15.436l3.75 2.5H37.5a1.877 1.877 0 0 0 1.875-1.875V35a1.877 1.877 0 0 0-1.875-1.875h-6.875v-9.966l2.054-1.284zM38.124 7.5V20c0 .345-.28.625-.625.625h-5.18l-4.195 2.622v-2.622H21.25a.625.625 0 0 1-.625-.625V7.5c0-.345.28-.625.625-.625H37.5c.345 0 .625.28.625.625zm-32.5-4.741v2.866H2.759l2.866-2.866zm15 34.116h10v1.25h-10v-1.25zm11.25-2.5h1.25v3.75h-1.25v-3.75zm-1.25 1.25h-10v-1.25h10v1.25zm-11.25 1.958-1.998-1.333 1.998-1.333v2.666zM38.125 35v2.5c0 .345-.28.625-.625.625h-3.125v-3.75H37.5c.345 0 .625.28.625.625zm-8.75-1.875h-9.564l-3.75 2.5H1.875V6.875h5v-5h22.5v3.75H21.25A1.877 1.877 0 0 0 19.375 7.5V20c0 1.034.841 1.875 1.875 1.875h5.625v3.628l2.5-1.562v9.184z' fill='%230A5067'/%3E%3Cpath d='M16.25 8.125H15v7.5h-1.25v-8.75H12.5v8.75h-1.25v-3.75H10v3.75H8.75v-6.25H7.5v6.25H6.25v-5H5v5H3.125v1.25h15v-1.25H16.25v-7.5z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");*/
    /*1*/--link:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M25.487 1.512a5.008 5.008 0 0 0-3.55-1.47 5.008 5.008 0 0 0-3.55 1.47l-3.374 3.376a5.009 5.009 0 0 0-1.47 3.55 4.996 4.996 0 0 0 .933 2.893l-3.145 3.145a5.005 5.005 0 0 0-2.894-.934 5.009 5.009 0 0 0-3.55 1.47l-3.374 3.376a5.011 5.011 0 0 0-1.47 3.55c0 1.281.492 2.571 1.47 3.55a5.009 5.009 0 0 0 3.55 1.47 5.009 5.009 0 0 0 3.55-1.47l3.375-3.376a5.009 5.009 0 0 0 1.47-3.55 5.01 5.01 0 0 0-.933-2.893l3.145-3.145a5.005 5.005 0 0 0 2.893.934 5.008 5.008 0 0 0 3.55-1.47l3.375-3.376a5.017 5.017 0 0 0 0-7.1zM10.794 20.919l-3.375 3.375a3.32 3.32 0 0 1-2.357.976 3.32 3.32 0 0 1-2.356-.976 3.318 3.318 0 0 1-.976-2.357 3.317 3.317 0 0 1 .977-2.356l3.375-3.375a3.32 3.32 0 0 1 2.356-.976c.583 0 1.158.163 1.674.465l-1.427 1.427a.843.843 0 1 0 1.193 1.193l1.427-1.427c.302.516.464 1.09.465 1.674 0 .856-.323 1.704-.976 2.357zm13.5-13.5-3.375 3.375a3.319 3.319 0 0 1-2.357.976 3.325 3.325 0 0 1-1.674-.464l1.428-1.428a.843.843 0 1 0-1.193-1.193l-1.428 1.427a3.323 3.323 0 0 1-.465-1.674 3.322 3.322 0 0 1 .977-2.357l3.375-3.375a3.32 3.32 0 0 1 2.356-.976 3.32 3.32 0 0 1 2.357.976 3.32 3.32 0 0 1 .975 2.357c0 .855-.323 1.703-.976 2.356z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--link-add:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M21.094 15.188a5.906 5.906 0 1 0 0 11.812 5.906 5.906 0 0 0 0-11.813zm2.531 6.75h-1.687v1.687a.844.844 0 0 1-1.687 0v-1.688h-1.689a.844.844 0 0 1 0-1.687h1.689v-1.688a.844.844 0 0 1 1.687 0v1.688h1.687a.844.844 0 0 1 0 1.688z' fill='%23FAB826'/%3E%3Cpath d='M25.487 1.512a5.008 5.008 0 0 0-3.55-1.47 5.008 5.008 0 0 0-3.55 1.47l-3.374 3.376a5.009 5.009 0 0 0-1.47 3.55 4.996 4.996 0 0 0 .933 2.893l-3.145 3.145a5.005 5.005 0 0 0-2.894-.934 5.009 5.009 0 0 0-3.55 1.47l-3.374 3.376a5.011 5.011 0 0 0-1.47 3.55c0 1.281.492 2.571 1.47 3.55a5.009 5.009 0 0 0 3.55 1.47 5.009 5.009 0 0 0 3.55-1.47l3.375-3.376a5.009 5.009 0 0 0 1.47-3.55 5.01 5.01 0 0 0-.933-2.893l3.145-3.145a5.005 5.005 0 0 0 2.893.934 5.008 5.008 0 0 0 3.55-1.47l3.375-3.376a5.017 5.017 0 0 0 0-7.1zM10.794 20.919l-3.375 3.375a3.32 3.32 0 0 1-2.357.976 3.32 3.32 0 0 1-2.356-.976 3.318 3.318 0 0 1-.976-2.357 3.317 3.317 0 0 1 .977-2.356l3.375-3.375a3.32 3.32 0 0 1 2.356-.976c.583 0 1.158.163 1.674.465l-1.427 1.427a.843.843 0 1 0 1.193 1.193l1.427-1.427c.302.516.464 1.09.465 1.674 0 .856-.323 1.704-.976 2.357zm13.5-13.5-3.375 3.375a3.319 3.319 0 0 1-2.357.976 3.325 3.325 0 0 1-1.674-.464l1.428-1.428a.843.843 0 1 0-1.193-1.193l-1.428 1.427a3.323 3.323 0 0 1-.465-1.674 3.322 3.322 0 0 1 .977-2.357l3.375-3.375a3.32 3.32 0 0 1 2.356-.976 3.32 3.32 0 0 1 2.357.976 3.32 3.32 0 0 1 .975 2.357c0 .855-.323 1.703-.976 2.356z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--teacher-e:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.578 17.719h-2.11V2.53h2.11a.422.422 0 1 0 0-.844H.422a.422.422 0 1 0 0 .844h2.11V17.72H.421a.422.422 0 1 0 0 .843h5.906v5.907H4.641a.422.422 0 1 0 0 .843h4.218a.422.422 0 1 0 0-.843H7.172v-5.907h13.5v5.907h-1.688a.422.422 0 1 0 0 .843h4.22a.422.422 0 1 0 0-.843h-1.688v-5.907h5.062a.422.422 0 1 0 0-.843zm-2.953 0H3.375V2.53h20.25V17.72z' fill='%231984A8'/%3E%3Cpath d='M7.766 13.556a.42.42 0 0 0 .298-.123l4.208-4.208 2.56 3.585c.083.115.22.189.358.176a.42.42 0 0 0 .345-.2l4.56-7.41a.422.422 0 0 0-.718-.443l-4.227 6.87-2.48-3.474a.423.423 0 0 0-.642-.053l-4.56 4.56a.422.422 0 0 0 .298.72z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--teacher-v:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M27 9.195c0-.41-.121-.825-.388-1.168l-2.14-2.737a1.84 1.84 0 0 0-1.448-.688c-.324 0-.654.083-.946.265l-2.086 1.298c-.219.14-.595.236-.958.233a1.738 1.738 0 0 1-.735-.144l-2.043-.99a2.46 2.46 0 0 0-1.066-.224c-.53.003-1.068.133-1.5.433l-.238.167-.812-.404c-.395-.194-.86-.272-1.33-.274a3.183 3.183 0 0 0-1.22.224l-1.392.594c-.227.098-.587.162-.945.16-.357.002-.717-.062-.943-.16l-1.393-.594a2.027 2.027 0 0 0-.795-.155c-.31 0-.618.061-.904.177a2.056 2.056 0 0 0-.763.525L.42 8.573a1.643 1.643 0 0 0 .16 2.353l2.366 2.018-1.122 1.17a1.668 1.668 0 0 0 .057 2.367l.228.217c.214.203.472.333.742.402-.135.248-.21.521-.209.795 0 .44.174.884.52 1.212l.228.217a1.687 1.687 0 0 0 1.817.329c.074.299.226.583.465.81l.229.217a1.686 1.686 0 0 0 2.093.18c.083.264.223.515.438.719l.228.217c.324.308.746.461 1.16.461.443 0 .89-.173 1.219-.518l.992-1.035 1.347 1.247c.322.299.736.448 1.145.447.449 0 .902-.179 1.232-.533l.215-.23c.186-.2.307-.436.377-.682l.522.482a1.69 1.69 0 0 0 2.379-.088l.213-.23c.248-.264.387-.59.43-.924.137.035.277.059.418.059.449 0 .902-.18 1.233-.533l.214-.23c.3-.322.45-.734.449-1.14 0-.126-.018-.252-.046-.375.372-.05.734-.216 1.009-.511l.215-.23a1.67 1.67 0 0 0-.088-2.368l-.402-.372 3.63-4.013c.326-.362.476-.827.477-1.285zm-23.73 7.05a.763.763 0 0 1-.527-.208l-.228-.216a.754.754 0 0 1-.236-.552.75.75 0 0 1 .21-.524l2.297-2.398a.763.763 0 0 1 .555-.235c.192 0 .38.07.527.21l.227.216s.235.347.236.551a.757.757 0 0 1-.136.43l-2.48 2.585a.774.774 0 0 1-.445.142zm1.836 2.392a.764.764 0 0 1-.554.235.763.763 0 0 1-.528-.209l-.228-.217a.754.754 0 0 1-.236-.552c0-.19.07-.377.21-.524 0 0 3.063-3.189 3.089-3.22a.76.76 0 0 1 .53-.213c.192 0 .38.069.527.208l.228.217a.754.754 0 0 1 .236.552c0 .19-.07.378-.21.525l-3.064 3.198zm2.51 1.356a.76.76 0 0 1-.553.235.762.762 0 0 1-.528-.21l-.229-.216a.753.753 0 0 1-.066-1.025l2.133-2.227a.762.762 0 0 1 1.039.01l.228.218a.758.758 0 0 1 .026 1.076l-2.05 2.14zm4.053-.235-1.294 1.351a.763.763 0 0 1-.554.235.762.762 0 0 1-.527-.21l-.229-.216a.757.757 0 0 1-.235-.552c0-.191.07-.378.21-.524l1.294-1.351a.764.764 0 0 1 .554-.235c.192 0 .38.07.527.21l.23.216a.756.756 0 0 1 .234.551c0 .192-.07.379-.21.525zm11.245-3.664a.754.754 0 0 1-.203.517l-.215.23a.763.763 0 0 1-.56.242.76.76 0 0 1-.52-.202L17.8 13.538l-.625.67 3.869 3.583a.76.76 0 0 1 .04 1.076l-.215.23a.765.765 0 0 1-.56.242.762.762 0 0 1-.52-.202l-3.615-3.342-.624.669 3.208 2.967a.754.754 0 0 1 .234.548.751.751 0 0 1-.203.517l-.214.23a.764.764 0 0 1-.562.242.764.764 0 0 1-.52-.202l-3.201-2.956h-.001l-.624.67.013.012 1.604 1.48a.753.753 0 0 1 .013 1.042l-.214.23a.763.763 0 0 1-.56.241.761.761 0 0 1-.52-.202l-1.396-1.293a1.66 1.66 0 0 0 .19-.756c0-.44-.174-.884-.52-1.212l-.23-.217a1.682 1.682 0 0 0-1.16-.461c-.031 0-.064.007-.095.009l.001-.023c.001-.44-.52-1.213-.52-1.213l-.228-.217a1.676 1.676 0 0 0-.847-.431c.064-.18.1-.367.1-.554 0-.44-.175-.885-.52-1.213l-.229-.217a1.685 1.685 0 0 0-1.16-.461c-.049 0-.096.01-.145.014a1.667 1.667 0 0 0-.514-1.16l-.228-.217a1.684 1.684 0 0 0-1.16-.461c-.444 0-.89.173-1.219.517l-.542.566-2.403-2.05a.735.735 0 0 1-.072-1.052l2.536-2.84c.1-.113.249-.215.423-.286.175-.07.372-.11.557-.11.162 0 .313.03.434.082l1.392.594c.392.165.848.233 1.305.235.459-.002.914-.07 1.306-.235l1.392-.594c.214-.093.538-.151.86-.15.355-.002.712.072.919.177l.371.185-1.419.998a1.643 1.643 0 0 0-.374 2.326l.187.252c.356.473.91.716 1.466.717.313 0 .632-.079.916-.25l.849-.51c.173-.105.434-.172.705-.17.317-.003.637.091.83.233l2.347 1.683a23.444 23.444 0 0 1 1.845 1.505l2.718 2.513c.16.149.242.35.242.558zm2.928-6.225-3.62 4.003-1.644-1.52a24.179 24.179 0 0 0-1.933-1.577l-2.347-1.683c-.398-.282-.885-.404-1.367-.405-.41 0-.823.09-1.18.302l-.847.51a.861.861 0 0 1-.443.119.915.915 0 0 1-.728-.349l-.187-.251a.73.73 0 0 1 .166-1.036l2.509-1.763c.217-.157.603-.267.97-.264.254-.002.497.05.664.132l2.042.99c.349.166.742.235 1.137.236.508-.003 1.022-.113 1.445-.373l2.087-1.298a.867.867 0 0 1 .46-.126.93.93 0 0 1 .723.335l2.14 2.738a.996.996 0 0 1 .194.607c0 .256-.09.508-.241.673z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--teacher-f:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.352 18a.45.45 0 1 0 0 .9h1.8a.45.45 0 1 0 0-.9h-1.8zm2.7-8.1h-2.7a.45.45 0 1 0 0 .9h2.7a.45.45 0 1 0 0-.9zm.898 3.6h.9a.45.45 0 1 0 0-.9h-.9a.45.45 0 1 0 0 .9z' fill='%231984A8'/%3E%3Cpath d='M20.25 26.1H4.05c-.744 0-1.35-.606-1.35-1.35V4.95a.45.45 0 1 0-.9 0v19.8C1.8 25.99 2.81 27 4.05 27h16.2a.45.45 0 1 0 0-.9z' fill='%231984A8'/%3E%3Cpath d='M24.752 5.4h-3.6c-.744 0-1.35-.606-1.35-1.35V2.7a.45.45 0 1 0-.9 0v1.35c0 1.24 1.01 2.25 2.25 2.25h3.15v14.85c0 .744-.605 1.35-1.35 1.35h-15.3c-.744 0-1.35-.606-1.35-1.35V2.25c0-.744.606-1.35 1.35-1.35h11.514l3.468 3.468a.45.45 0 1 0 .636-.636l-3.6-3.6A.448.448 0 0 0 19.352 0h-11.7c-1.24 0-2.25 1.01-2.25 2.25v18.9c0 1.24 1.01 2.25 2.25 2.25h15.3c1.241 0 2.25-1.01 2.25-2.25V5.85a.45.45 0 0 0-.45-.45z' fill='%231984A8'/%3E%3Cpath d='M22.052 24.3h-16.2c-.745 0-1.35-.606-1.35-1.35V3.15a.45.45 0 1 0-.9 0v19.8c0 1.24 1.009 2.25 2.25 2.25h16.2a.45.45 0 1 0 0-.9z' fill='%231984A8'/%3E%3Cpath d='M16.202 15.75a.45.45 0 0 0-.45-.45h-5.4a.45.45 0 1 0 0 .9h5.4a.45.45 0 0 0 .45-.45zm-5.85-2.25h1.8a.45.45 0 1 0 0-.9h-1.8a.45.45 0 1 0 0 .9zm5.4-7.2h-5.4a.45.45 0 1 0 0 .9h5.4a.45.45 0 1 0 0-.9zm4.498 6.3h-3.6a.45.45 0 1 0 0 .9h3.6a.45.45 0 1 0 0-.9zm-.898-2.7h-4.5a.45.45 0 1 0 0 .9h4.5a.45.45 0 1 0 0-.9zm-5.402 9h6.3a.45.45 0 1 0 0-.9h-6.3a.45.45 0 1 0 0 .9zm5.402-2.7a.45.45 0 1 0 0-.9h-1.8a.45.45 0 1 0 0 .9h1.8z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--teacher-r:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M2.69 24.776c-.431 0-.783-.12-1.055-.36-.256-.24-.384-.584-.384-1.032 0-.384.08-.656.24-.816.16-.176.432-.264.816-.264.16 0 .312.016.456.048.16.016.368.048.624.096s.608.096 1.056.144c1.856-.96 3.344-1.928 4.464-2.904 1.12-.992 1.68-2.088 1.68-3.288 0-.368-.144-.632-.432-.792-.272-.16-.64-.264-1.104-.312a18.26 18.26 0 0 0-1.44-.144 23.226 23.226 0 0 1-1.512-.096 6.862 6.862 0 0 1-1.368-.312 2.165 2.165 0 0 1-1.008-.696c-.24-.32-.36-.752-.36-1.296 0-1.088.176-2.168.528-3.24.352-1.088.76-2.04 1.224-2.856-.304-.064-.512-.16-.624-.288a.93.93 0 0 1-.144-.528c0-.208.208-.408.624-.6.416-.192.952-.368 1.608-.528.208-.16.376-.24.504-.24.096 0 .184.024.264.072.752-.16 1.568-.296 2.448-.408a37.33 37.33 0 0 1 2.616-.288 32.364 32.364 0 0 1 2.376-.096c.896 0 1.544.128 1.944.384.4.24.6.512.6.816 0 .176-.08.336-.24.48-.144.128-.392.2-.744.216-.144 0-.448.032-.912.096-.448.048-1 .112-1.656.192-.656.08-1.36.168-2.112.264s-1.488.184-2.208.264c-.72.08-1.376.144-1.968.192-.176.384-.384.832-.624 1.344-.224.512-.448 1.04-.672 1.584-.208.528-.384 1.04-.528 1.536-.144.48-.216.896-.216 1.248 0 .384.24.624.72.72.48.096 1.056.168 1.728.216.528.032 1.072.088 1.632.168.56.08 1.08.224 1.56.432.496.208.888.528 1.176.96.304.432.456 1.024.456 1.776s-.208 1.512-.624 2.28c-.416.768-.976 1.504-1.68 2.208A13.043 13.043 0 0 1 8.043 23c-.88.544-1.784.976-2.712 1.296-.912.32-1.792.48-2.64.48zm18.067-5.52c-.224 0-.48-.104-.768-.312-.272-.208-.408-.6-.408-1.176 0-.464.032-.984.096-1.56.08-.592.184-1.2.312-1.824-.96.064-1.864.096-2.712.096-.624 0-1.048-.088-1.272-.264-.224-.192-.336-.392-.336-.6 0-.192.104-.368.312-.528.208-.176.536-.272.984-.288.464-.032 1-.088 1.608-.168.608-.096 1.232-.2 1.872-.312.208-.8.432-1.536.672-2.208.24-.688.472-1.24.696-1.656.24-.416.448-.624.624-.624.304 0 .52.08.648.24.128.16.192.448.192.864 0 .224-.048.616-.144 1.176-.08.544-.184 1.168-.312 1.872.304-.032.592-.056.864-.072.272-.032.52-.048.744-.048.784 0 1.304.104 1.56.312.272.192.408.432.408.72 0 .16-.176.32-.528.48-.352.144-.832.28-1.44.408-.592.128-1.256.24-1.992.336-.16.832-.32 1.64-.48 2.424-.144.768-.264 1.4-.36 1.896-.064.272-.176.48-.336.624a.796.796 0 0 1-.504.192z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--steacher-e:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.578 17.719h-2.11V2.53h2.11a.422.422 0 1 0 0-.844H.422a.422.422 0 1 0 0 .844h2.11V17.72H.421a.422.422 0 1 0 0 .843h5.906v5.907H4.641a.422.422 0 1 0 0 .843h4.218a.422.422 0 1 0 0-.843H7.172v-5.907h13.5v5.907h-1.688a.422.422 0 1 0 0 .843h4.22a.422.422 0 1 0 0-.843h-1.688v-5.907h5.062a.422.422 0 1 0 0-.843zm-2.953 0H3.375V2.53h20.25V17.72z' fill='%238BB7C6'/%3E%3Cpath d='M7.766 13.556a.42.42 0 0 0 .298-.123l4.208-4.208 2.56 3.585c.083.115.22.189.358.176a.42.42 0 0 0 .345-.2l4.56-7.41a.422.422 0 0 0-.718-.443l-4.227 6.87-2.48-3.474a.423.423 0 0 0-.642-.053l-4.56 4.56a.422.422 0 0 0 .298.72z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--steacher-v:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M27 9.195c0-.41-.121-.825-.388-1.168l-2.14-2.737a1.84 1.84 0 0 0-1.448-.688c-.324 0-.654.083-.946.265l-2.086 1.298c-.219.14-.595.236-.958.233a1.738 1.738 0 0 1-.735-.144l-2.043-.99a2.46 2.46 0 0 0-1.066-.224c-.53.003-1.068.133-1.5.433l-.238.167-.812-.404c-.395-.194-.86-.272-1.33-.274a3.183 3.183 0 0 0-1.22.224l-1.392.594c-.227.098-.587.162-.945.16-.357.002-.717-.062-.943-.16l-1.393-.594a2.027 2.027 0 0 0-.795-.155c-.31 0-.618.061-.904.177a2.056 2.056 0 0 0-.763.525L.42 8.573a1.643 1.643 0 0 0 .16 2.353l2.366 2.018-1.122 1.17a1.668 1.668 0 0 0 .057 2.367l.228.217c.214.203.472.333.742.402-.135.248-.21.521-.209.795 0 .44.174.884.52 1.212l.228.217a1.687 1.687 0 0 0 1.817.329c.074.299.226.583.465.81l.229.217a1.686 1.686 0 0 0 2.093.18c.083.264.223.515.438.719l.228.217c.324.308.746.461 1.16.461.443 0 .89-.173 1.219-.518l.992-1.035 1.347 1.247c.322.299.736.448 1.145.447.449 0 .902-.179 1.232-.533l.215-.23c.186-.2.307-.436.377-.682l.522.482a1.69 1.69 0 0 0 2.379-.088l.213-.23c.248-.264.387-.59.43-.924.137.035.277.059.418.059.449 0 .902-.18 1.233-.533l.214-.23c.3-.322.45-.734.449-1.14 0-.126-.018-.252-.046-.375.372-.05.734-.216 1.009-.511l.215-.23a1.67 1.67 0 0 0-.088-2.368l-.402-.372 3.63-4.013c.326-.362.476-.827.477-1.285zm-23.73 7.05a.763.763 0 0 1-.527-.208l-.228-.216a.754.754 0 0 1-.236-.552.75.75 0 0 1 .21-.524l2.297-2.398a.763.763 0 0 1 .555-.235c.192 0 .38.07.527.21l.227.216s.235.347.236.551a.757.757 0 0 1-.136.43l-2.48 2.585a.774.774 0 0 1-.445.142zm1.836 2.392a.764.764 0 0 1-.554.235.763.763 0 0 1-.528-.209l-.228-.217a.754.754 0 0 1-.236-.552c0-.19.07-.377.21-.524 0 0 3.063-3.189 3.089-3.22a.76.76 0 0 1 .53-.213c.192 0 .38.069.527.208l.228.217a.754.754 0 0 1 .236.552c0 .19-.07.378-.21.525l-3.064 3.198zm2.51 1.356a.76.76 0 0 1-.553.235.762.762 0 0 1-.528-.21l-.229-.216a.753.753 0 0 1-.066-1.025l2.133-2.227a.762.762 0 0 1 1.039.01l.228.218a.758.758 0 0 1 .026 1.076l-2.05 2.14zm4.053-.235-1.294 1.351a.763.763 0 0 1-.554.235.762.762 0 0 1-.527-.21l-.229-.216a.757.757 0 0 1-.235-.552c0-.191.07-.378.21-.524l1.294-1.351a.764.764 0 0 1 .554-.235c.192 0 .38.07.527.21l.23.216a.756.756 0 0 1 .234.551c0 .192-.07.379-.21.525zm11.245-3.664a.754.754 0 0 1-.203.517l-.215.23a.763.763 0 0 1-.56.242.76.76 0 0 1-.52-.202L17.8 13.538l-.625.67 3.869 3.583a.76.76 0 0 1 .04 1.076l-.215.23a.765.765 0 0 1-.56.242.762.762 0 0 1-.52-.202l-3.615-3.342-.624.669 3.208 2.967a.754.754 0 0 1 .234.548.751.751 0 0 1-.203.517l-.214.23a.764.764 0 0 1-.562.242.764.764 0 0 1-.52-.202l-3.201-2.956h-.001l-.624.67.013.012 1.604 1.48a.753.753 0 0 1 .013 1.042l-.214.23a.763.763 0 0 1-.56.241.761.761 0 0 1-.52-.202l-1.396-1.293a1.66 1.66 0 0 0 .19-.756c0-.44-.174-.884-.52-1.212l-.23-.217a1.682 1.682 0 0 0-1.16-.461c-.031 0-.064.007-.095.009l.001-.023c.001-.44-.52-1.213-.52-1.213l-.228-.217a1.676 1.676 0 0 0-.847-.431c.064-.18.1-.367.1-.554 0-.44-.175-.885-.52-1.213l-.229-.217a1.685 1.685 0 0 0-1.16-.461c-.049 0-.096.01-.145.014a1.667 1.667 0 0 0-.514-1.16l-.228-.217a1.684 1.684 0 0 0-1.16-.461c-.444 0-.89.173-1.219.517l-.542.566-2.403-2.05a.735.735 0 0 1-.072-1.052l2.536-2.84c.1-.113.249-.215.423-.286.175-.07.372-.11.557-.11.162 0 .313.03.434.082l1.392.594c.392.165.848.233 1.305.235.459-.002.914-.07 1.306-.235l1.392-.594c.214-.093.538-.151.86-.15.355-.002.712.072.919.177l.371.185-1.419.998a1.643 1.643 0 0 0-.374 2.326l.187.252c.356.473.91.716 1.466.717.313 0 .632-.079.916-.25l.849-.51c.173-.105.434-.172.705-.17.317-.003.637.091.83.233l2.347 1.683a23.444 23.444 0 0 1 1.845 1.505l2.718 2.513c.16.149.242.35.242.558zm2.928-6.225-3.62 4.003-1.644-1.52a24.179 24.179 0 0 0-1.933-1.577l-2.347-1.683c-.398-.282-.885-.404-1.367-.405-.41 0-.823.09-1.18.302l-.847.51a.861.861 0 0 1-.443.119.915.915 0 0 1-.728-.349l-.187-.251a.73.73 0 0 1 .166-1.036l2.509-1.763c.217-.157.603-.267.97-.264.254-.002.497.05.664.132l2.042.99c.349.166.742.235 1.137.236.508-.003 1.022-.113 1.445-.373l2.087-1.298a.867.867 0 0 1 .46-.126.93.93 0 0 1 .723.335l2.14 2.738a.996.996 0 0 1 .194.607c0 .256-.09.508-.241.673z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--steacher-r:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M2.69 24.776c-.431 0-.783-.12-1.055-.36-.256-.24-.384-.584-.384-1.032 0-.384.08-.656.24-.816.16-.176.432-.264.816-.264.16 0 .312.016.456.048.16.016.368.048.624.096s.608.096 1.056.144c1.856-.96 3.344-1.928 4.464-2.904 1.12-.992 1.68-2.088 1.68-3.288 0-.368-.144-.632-.432-.792-.272-.16-.64-.264-1.104-.312a18.26 18.26 0 0 0-1.44-.144 23.226 23.226 0 0 1-1.512-.096 6.862 6.862 0 0 1-1.368-.312 2.165 2.165 0 0 1-1.008-.696c-.24-.32-.36-.752-.36-1.296 0-1.088.176-2.168.528-3.24.352-1.088.76-2.04 1.224-2.856-.304-.064-.512-.16-.624-.288a.93.93 0 0 1-.144-.528c0-.208.208-.408.624-.6.416-.192.952-.368 1.608-.528.208-.16.376-.24.504-.24.096 0 .184.024.264.072.752-.16 1.568-.296 2.448-.408a37.33 37.33 0 0 1 2.616-.288 32.364 32.364 0 0 1 2.376-.096c.896 0 1.544.128 1.944.384.4.24.6.512.6.816 0 .176-.08.336-.24.48-.144.128-.392.2-.744.216-.144 0-.448.032-.912.096-.448.048-1 .112-1.656.192-.656.08-1.36.168-2.112.264s-1.488.184-2.208.264c-.72.08-1.376.144-1.968.192-.176.384-.384.832-.624 1.344-.224.512-.448 1.04-.672 1.584-.208.528-.384 1.04-.528 1.536-.144.48-.216.896-.216 1.248 0 .384.24.624.72.72.48.096 1.056.168 1.728.216.528.032 1.072.088 1.632.168.56.08 1.08.224 1.56.432.496.208.888.528 1.176.96.304.432.456 1.024.456 1.776s-.208 1.512-.624 2.28c-.416.768-.976 1.504-1.68 2.208A13.043 13.043 0 0 1 8.043 23c-.88.544-1.784.976-2.712 1.296-.912.32-1.792.48-2.64.48zm18.067-5.52c-.224 0-.48-.104-.768-.312-.272-.208-.408-.6-.408-1.176 0-.464.032-.984.096-1.56.08-.592.184-1.2.312-1.824-.96.064-1.864.096-2.712.096-.624 0-1.048-.088-1.272-.264-.224-.192-.336-.392-.336-.6 0-.192.104-.368.312-.528.208-.176.536-.272.984-.288.464-.032 1-.088 1.608-.168.608-.096 1.232-.2 1.872-.312.208-.8.432-1.536.672-2.208.24-.688.472-1.24.696-1.656.24-.416.448-.624.624-.624.304 0 .52.08.648.24.128.16.192.448.192.864 0 .224-.048.616-.144 1.176-.08.544-.184 1.168-.312 1.872.304-.032.592-.056.864-.072.272-.032.52-.048.744-.048.784 0 1.304.104 1.56.312.272.192.408.432.408.72 0 .16-.176.32-.528.48-.352.144-.832.28-1.44.408-.592.128-1.256.24-1.992.336-.16.832-.32 1.64-.48 2.424-.144.768-.264 1.4-.36 1.896-.064.272-.176.48-.336.624a.796.796 0 0 1-.504.192z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--steacher-eb:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.578 17.719h-2.11V2.53h2.11a.422.422 0 1 0 0-.844H.422a.422.422 0 1 0 0 .844h2.11V17.72H.421a.422.422 0 1 0 0 .843h5.906v5.907H4.641a.422.422 0 1 0 0 .843h4.218a.422.422 0 1 0 0-.843H7.172v-5.907h13.5v5.907h-1.688a.422.422 0 1 0 0 .843h4.22a.422.422 0 1 0 0-.843h-1.688v-5.907h5.062a.422.422 0 1 0 0-.843zm-2.953 0H3.375V2.53h20.25V17.72z' fill='%230A5067'/%3E%3Cpath d='M7.766 13.556a.42.42 0 0 0 .298-.123l4.208-4.208 2.56 3.585c.083.115.22.189.358.176a.42.42 0 0 0 .345-.2l4.56-7.41a.422.422 0 0 0-.718-.443l-4.227 6.87-2.48-3.474a.423.423 0 0 0-.642-.053l-4.56 4.56a.422.422 0 0 0 .298.72z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--steacher-vb:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M27 9.195c0-.41-.121-.825-.388-1.168l-2.14-2.737a1.84 1.84 0 0 0-1.448-.688c-.324 0-.654.083-.946.265l-2.086 1.298c-.219.14-.595.236-.958.233a1.738 1.738 0 0 1-.735-.144l-2.043-.99a2.46 2.46 0 0 0-1.066-.224c-.53.003-1.068.133-1.5.433l-.238.167-.812-.404c-.395-.194-.86-.272-1.33-.274a3.183 3.183 0 0 0-1.22.224l-1.392.594c-.227.098-.587.162-.945.16-.357.002-.717-.062-.943-.16l-1.393-.594a2.027 2.027 0 0 0-.795-.155c-.31 0-.618.061-.904.177a2.056 2.056 0 0 0-.763.525L.42 8.573a1.643 1.643 0 0 0 .16 2.353l2.366 2.018-1.122 1.17a1.668 1.668 0 0 0 .057 2.367l.228.217c.214.203.472.333.742.402-.135.248-.21.521-.209.795 0 .44.174.884.52 1.212l.228.217a1.687 1.687 0 0 0 1.817.329c.074.299.226.583.465.81l.229.217a1.686 1.686 0 0 0 2.093.18c.083.264.223.515.438.719l.228.217c.324.308.746.461 1.16.461.443 0 .89-.173 1.219-.518l.992-1.035 1.347 1.247c.322.299.736.448 1.145.447.449 0 .902-.179 1.232-.533l.215-.23c.186-.2.307-.436.377-.682l.522.482a1.69 1.69 0 0 0 2.379-.088l.213-.23c.248-.264.387-.59.43-.924.137.035.277.059.418.059.449 0 .902-.18 1.233-.533l.214-.23c.3-.322.45-.734.449-1.14 0-.126-.018-.252-.046-.375.372-.05.734-.216 1.009-.511l.215-.23a1.67 1.67 0 0 0-.088-2.368l-.402-.372 3.63-4.013c.326-.362.476-.827.477-1.285zm-23.73 7.05a.763.763 0 0 1-.527-.208l-.228-.216a.754.754 0 0 1-.236-.552.75.75 0 0 1 .21-.524l2.297-2.398a.763.763 0 0 1 .555-.235c.192 0 .38.07.527.21l.227.216s.235.347.236.551a.757.757 0 0 1-.136.43l-2.48 2.585a.774.774 0 0 1-.445.142zm1.836 2.392a.764.764 0 0 1-.554.235.763.763 0 0 1-.528-.209l-.228-.217a.754.754 0 0 1-.236-.552c0-.19.07-.377.21-.524 0 0 3.063-3.189 3.089-3.22a.76.76 0 0 1 .53-.213c.192 0 .38.069.527.208l.228.217a.754.754 0 0 1 .236.552c0 .19-.07.378-.21.525l-3.064 3.198zm2.51 1.356a.76.76 0 0 1-.553.235.762.762 0 0 1-.528-.21l-.229-.216a.753.753 0 0 1-.066-1.025l2.133-2.227a.762.762 0 0 1 1.039.01l.228.218a.758.758 0 0 1 .026 1.076l-2.05 2.14zm4.053-.235-1.294 1.351a.763.763 0 0 1-.554.235.762.762 0 0 1-.527-.21l-.229-.216a.757.757 0 0 1-.235-.552c0-.191.07-.378.21-.524l1.294-1.351a.764.764 0 0 1 .554-.235c.192 0 .38.07.527.21l.23.216a.756.756 0 0 1 .234.551c0 .192-.07.379-.21.525zm11.245-3.664a.754.754 0 0 1-.203.517l-.215.23a.763.763 0 0 1-.56.242.76.76 0 0 1-.52-.202L17.8 13.538l-.625.67 3.869 3.583a.76.76 0 0 1 .04 1.076l-.215.23a.765.765 0 0 1-.56.242.762.762 0 0 1-.52-.202l-3.615-3.342-.624.669 3.208 2.967a.754.754 0 0 1 .234.548.751.751 0 0 1-.203.517l-.214.23a.764.764 0 0 1-.562.242.764.764 0 0 1-.52-.202l-3.201-2.956h-.001l-.624.67.013.012 1.604 1.48a.753.753 0 0 1 .013 1.042l-.214.23a.763.763 0 0 1-.56.241.761.761 0 0 1-.52-.202l-1.396-1.293a1.66 1.66 0 0 0 .19-.756c0-.44-.174-.884-.52-1.212l-.23-.217a1.682 1.682 0 0 0-1.16-.461c-.031 0-.064.007-.095.009l.001-.023c.001-.44-.52-1.213-.52-1.213l-.228-.217a1.676 1.676 0 0 0-.847-.431c.064-.18.1-.367.1-.554 0-.44-.175-.885-.52-1.213l-.229-.217a1.685 1.685 0 0 0-1.16-.461c-.049 0-.096.01-.145.014a1.667 1.667 0 0 0-.514-1.16l-.228-.217a1.684 1.684 0 0 0-1.16-.461c-.444 0-.89.173-1.219.517l-.542.566-2.403-2.05a.735.735 0 0 1-.072-1.052l2.536-2.84c.1-.113.249-.215.423-.286.175-.07.372-.11.557-.11.162 0 .313.03.434.082l1.392.594c.392.165.848.233 1.305.235.459-.002.914-.07 1.306-.235l1.392-.594c.214-.093.538-.151.86-.15.355-.002.712.072.919.177l.371.185-1.419.998a1.643 1.643 0 0 0-.374 2.326l.187.252c.356.473.91.716 1.466.717.313 0 .632-.079.916-.25l.849-.51c.173-.105.434-.172.705-.17.317-.003.637.091.83.233l2.347 1.683a23.444 23.444 0 0 1 1.845 1.505l2.718 2.513c.16.149.242.35.242.558zm2.928-6.225-3.62 4.003-1.644-1.52a24.179 24.179 0 0 0-1.933-1.577l-2.347-1.683c-.398-.282-.885-.404-1.367-.405-.41 0-.823.09-1.18.302l-.847.51a.861.861 0 0 1-.443.119.915.915 0 0 1-.728-.349l-.187-.251a.73.73 0 0 1 .166-1.036l2.509-1.763c.217-.157.603-.267.97-.264.254-.002.497.05.664.132l2.042.99c.349.166.742.235 1.137.236.508-.003 1.022-.113 1.445-.373l2.087-1.298a.867.867 0 0 1 .46-.126.93.93 0 0 1 .723.335l2.14 2.738a.996.996 0 0 1 .194.607c0 .256-.09.508-.241.673z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--steacher-rb:url("data:image/svg+xml,%0A%3Csvg width='27' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M2.69 24.776c-.431 0-.783-.12-1.055-.36-.256-.24-.384-.584-.384-1.032 0-.384.08-.656.24-.816.16-.176.432-.264.816-.264.16 0 .312.016.456.048.16.016.368.048.624.096s.608.096 1.056.144c1.856-.96 3.344-1.928 4.464-2.904 1.12-.992 1.68-2.088 1.68-3.288 0-.368-.144-.632-.432-.792-.272-.16-.64-.264-1.104-.312a18.26 18.26 0 0 0-1.44-.144 23.226 23.226 0 0 1-1.512-.096 6.862 6.862 0 0 1-1.368-.312 2.165 2.165 0 0 1-1.008-.696c-.24-.32-.36-.752-.36-1.296 0-1.088.176-2.168.528-3.24.352-1.088.76-2.04 1.224-2.856-.304-.064-.512-.16-.624-.288a.93.93 0 0 1-.144-.528c0-.208.208-.408.624-.6.416-.192.952-.368 1.608-.528.208-.16.376-.24.504-.24.096 0 .184.024.264.072.752-.16 1.568-.296 2.448-.408a37.33 37.33 0 0 1 2.616-.288 32.364 32.364 0 0 1 2.376-.096c.896 0 1.544.128 1.944.384.4.24.6.512.6.816 0 .176-.08.336-.24.48-.144.128-.392.2-.744.216-.144 0-.448.032-.912.096-.448.048-1 .112-1.656.192-.656.08-1.36.168-2.112.264s-1.488.184-2.208.264c-.72.08-1.376.144-1.968.192-.176.384-.384.832-.624 1.344-.224.512-.448 1.04-.672 1.584-.208.528-.384 1.04-.528 1.536-.144.48-.216.896-.216 1.248 0 .384.24.624.72.72.48.096 1.056.168 1.728.216.528.032 1.072.088 1.632.168.56.08 1.08.224 1.56.432.496.208.888.528 1.176.96.304.432.456 1.024.456 1.776s-.208 1.512-.624 2.28c-.416.768-.976 1.504-1.68 2.208A13.043 13.043 0 0 1 8.043 23c-.88.544-1.784.976-2.712 1.296-.912.32-1.792.48-2.64.48zm18.067-5.52c-.224 0-.48-.104-.768-.312-.272-.208-.408-.6-.408-1.176 0-.464.032-.984.096-1.56.08-.592.184-1.2.312-1.824-.96.064-1.864.096-2.712.096-.624 0-1.048-.088-1.272-.264-.224-.192-.336-.392-.336-.6 0-.192.104-.368.312-.528.208-.176.536-.272.984-.288.464-.032 1-.088 1.608-.168.608-.096 1.232-.2 1.872-.312.208-.8.432-1.536.672-2.208.24-.688.472-1.24.696-1.656.24-.416.448-.624.624-.624.304 0 .52.08.648.24.128.16.192.448.192.864 0 .224-.048.616-.144 1.176-.08.544-.184 1.168-.312 1.872.304-.032.592-.056.864-.072.272-.032.52-.048.744-.048.784 0 1.304.104 1.56.312.272.192.408.432.408.72 0 .16-.176.32-.528.48-.352.144-.832.28-1.44.408-.592.128-1.256.24-1.992.336-.16.832-.32 1.64-.48 2.424-.144.768-.264 1.4-.36 1.896-.064.272-.176.48-.336.624a.796.796 0 0 1-.504.192z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--small-comm:url("data:image/svg+xml,%0A%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.063 3.487c-.625-.768-1.475-1.375-2.547-1.82C9.443 1.222 8.27.999 7 .999a9.29 9.29 0 0 0-2.719.395c-.864.263-1.609.618-2.234 1.066A5.33 5.33 0 0 0 .555 4.058 3.721 3.721 0 0 0 0 5.999c0 .781.236 1.513.707 2.195.471.683 1.116 1.256 1.934 1.72a4.965 4.965 0 0 1-.204.593 6.085 6.085 0 0 1-.21.46 3.17 3.17 0 0 1-.254.4 4.053 4.053 0 0 1-.243.308l-.27.297a28.305 28.305 0 0 0-.358.406l-.047.07c-.026.04-.038.064-.036.074a.208.208 0 0 1-.015.078c-.013.042-.012.073.004.094v.008c.02.094.066.17.136.226.07.058.15.081.239.07.338-.041.635-.098.89-.171a8.538 8.538 0 0 0 3.594-1.89c.39.04.768.062 1.133.062 1.27 0 2.443-.223 3.516-.668 1.072-.446 1.921-1.053 2.546-1.82.626-.768.938-1.606.938-2.512 0-.906-.313-1.744-.937-2.512z' fill='%238BB7C6'/%3E%3C/svg%3E");
    /*1*/--kaf:url("data:image/svg+xml,%0A%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M53.677 12.387h8.258A2.067 2.067 0 0 0 64 10.323V2.065A2.067 2.067 0 0 0 61.935 0h-8.258a2.067 2.067 0 0 0-2.064 2.065V5.16h-6.194a2.067 2.067 0 0 0-2.064 2.065v5.161h-5.161V2.065A2.067 2.067 0 0 0 36.129 0H19.613a2.067 2.067 0 0 0-2.065 2.065v6.193h-6.193a2.067 2.067 0 0 0-2.065 2.065v11.354H2.065A2.067 2.067 0 0 0 0 23.742v16.516c0 1.139.926 2.065 2.065 2.065H9.29v11.354c0 1.139.926 2.065 2.065 2.065h6.193v6.194c0 1.138.926 2.064 2.065 2.064h16.516a2.067 2.067 0 0 0 2.065-2.065V51.614h5.16v5.161c0 1.139.927 2.065 2.065 2.065h6.194v3.096c0 1.14.926 2.065 2.064 2.065h8.258A2.067 2.067 0 0 0 64 61.935v-8.258a2.067 2.067 0 0 0-2.065-2.064h-8.258a2.067 2.067 0 0 0-2.064 2.064v3.097h-6.194V42.323h6.194v3.096c0 1.139.926 2.065 2.064 2.065h8.258A2.067 2.067 0 0 0 64 45.419v-8.258a2.067 2.067 0 0 0-2.065-2.064h-8.258a2.067 2.067 0 0 0-2.064 2.064v3.097h-6.194a2.067 2.067 0 0 0-2.064 2.065v7.225h-5.161V45.42a2.067 2.067 0 0 0-2.065-2.064H19.613a2.067 2.067 0 0 0-2.065 2.064v8.258h-6.193V42.323h7.226a2.067 2.067 0 0 0 2.064-2.065V23.742a2.067 2.067 0 0 0-2.064-2.065h-7.226V10.323h6.193v8.258c0 1.138.926 2.064 2.065 2.064h16.516a2.067 2.067 0 0 0 2.065-2.064v-4.13h5.16v7.226c0 1.139.927 2.065 2.065 2.065h6.194v3.097c0 1.138.926 2.064 2.064 2.064h8.258A2.067 2.067 0 0 0 64 26.84V18.58a2.067 2.067 0 0 0-2.065-2.065h-8.258a2.067 2.067 0 0 0-2.064 2.065v3.096h-6.194V7.226h6.194v3.097c0 1.138.926 2.064 2.064 2.064zm0-10.322h8.258l.002 8.258h-8.26V2.065zm0 51.612h8.258l.002 8.258h-8.26v-8.258zm0-16.516h8.258l.002 8.258h-8.26v-8.258zM27.871 57.806a5.04 5.04 0 0 1 4.966 4.13h-9.932a5.04 5.04 0 0 1 4.966-4.13zm-3.097-5.16a3.1 3.1 0 0 1 3.097-3.098 3.1 3.1 0 0 1 3.097 3.097 3.1 3.1 0 0 1-3.097 3.097 3.1 3.1 0 0 1-3.097-3.097zm-5.161-7.227h16.516l.001 16.517H34.94l-.04-.24a7.103 7.103 0 0 0-3.708-5.132c1.117-.948 1.841-2.344 1.841-3.919a5.167 5.167 0 0 0-5.161-5.161 5.167 5.167 0 0 0-5.161 5.161c0 1.575.724 2.971 1.841 3.919a7.102 7.102 0 0 0-3.708 5.132l-.04.24h-1.19V45.418zm-9.29-9.29a5.04 5.04 0 0 1 4.966 4.13H5.356a5.04 5.04 0 0 1 4.967-4.13zm-3.097-5.161a3.1 3.1 0 0 1 3.097-3.097 3.1 3.1 0 0 1 3.096 3.097 3.1 3.1 0 0 1-3.096 3.097 3.1 3.1 0 0 1-3.097-3.097zm11.356 9.29H17.39l-.04-.24a7.102 7.102 0 0 0-3.708-5.132c1.117-.947 1.842-2.343 1.842-3.918a5.167 5.167 0 0 0-5.161-5.162 5.167 5.167 0 0 0-5.162 5.162c0 1.575.725 2.97 1.842 3.918a7.102 7.102 0 0 0-3.708 5.133l-.04.24h-1.19V23.741H18.58v16.516zm9.289-25.806a5.04 5.04 0 0 1 4.966 4.129h-9.932a5.04 5.04 0 0 1 4.966-4.13zM24.774 9.29a3.1 3.1 0 0 1 3.097-3.096 3.1 3.1 0 0 1 3.097 3.096 3.1 3.1 0 0 1-3.097 3.097 3.1 3.1 0 0 1-3.097-3.097zm10.165 9.29-.04-.239a7.102 7.102 0 0 0-3.708-5.132c1.117-.948 1.841-2.343 1.841-3.919a5.167 5.167 0 0 0-5.161-5.161A5.167 5.167 0 0 0 22.71 9.29c0 1.576.724 2.971 1.841 3.919a7.102 7.102 0 0 0-3.708 5.132l-.04.24h-1.19V2.065h16.516l.001 16.516H34.94zm18.738 0h8.258l.002 8.259h-8.26V18.58z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--reviews-big:url("data:image/svg+xml,%0A%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M59.053 1.506H20.979a4.953 4.953 0 0 0-4.948 4.947v2.066h-3.068a4.953 4.953 0 0 0-4.947 4.948v2.066H4.947A4.953 4.953 0 0 0 0 20.48v27.053a4.953 4.953 0 0 0 4.947 4.947h5.073v9.08c0 .779.94 1.223 1.54.722l11.762-9.802h19.7a4.953 4.953 0 0 0 4.947-4.947v-2.066h3.068a4.953 4.953 0 0 0 4.947-4.947v-2.067h3.069A4.953 4.953 0 0 0 64 33.506V6.453a4.953 4.953 0 0 0-4.947-4.947zM46.09 47.533a3.072 3.072 0 0 1-3.069 3.069H22.983a.939.939 0 0 0-.6.217l-10.484 8.736v-8.014a.94.94 0 0 0-.94-.94h-6.01a3.072 3.072 0 0 1-3.07-3.068V20.48a3.072 3.072 0 0 1 3.07-3.068h38.074a3.072 3.072 0 0 1 3.068 3.069v27.052zm16.031-14.027a3.072 3.072 0 0 1-3.068 3.068h-3.069V20.981a.94.94 0 0 0-1.878 0V40.52a3.072 3.072 0 0 1-3.069 3.068H47.97V20.48a4.953 4.953 0 0 0-4.947-4.947H9.894v-2.066a3.072 3.072 0 0 1 3.069-3.069h38.074a3.072 3.072 0 0 1 3.069 3.069v3.068a.94.94 0 0 0 1.878 0v-3.068a4.953 4.953 0 0 0-4.947-4.947H17.91V6.453a3.072 3.072 0 0 1 3.069-3.068h38.074a3.072 3.072 0 0 1 3.068 3.068v27.053z' fill='%230A5067'/%3E%3Cpath d='M19.978 24.55h-8.015a.94.94 0 0 0 0 1.88h8.015a.94.94 0 1 0 0-1.88zm10.02 0h-6.012a.94.94 0 0 0 0 1.88h6.012a.94.94 0 0 0 0-1.88zm-5.01 8.016H11.963a.94.94 0 0 0 0 1.88h13.025a.94.94 0 0 0 0-1.88zm16.032 0H29.998a.94.94 0 0 0 0 1.88h11.021a.94.94 0 0 0 0-1.88zm-21.042 5.01h-8.015a.94.94 0 0 0 0 1.879h8.015a.94.94 0 0 0 0-1.879zm21.042 0H23.986a.94.94 0 0 0 0 1.879H41.02a.94.94 0 0 0 0-1.879zm-11.022 5.01H11.963a.94.94 0 0 0 0 1.879h18.035a.94.94 0 0 0 0-1.88z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--rating-big:url("data:image/svg+xml,%0A%3Csvg width='64' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%230A5067'%3E%3Cpath d='M63.786 33.662a4.28 4.28 0 0 0-3.477-2.931l-3.565-.519a2.433 2.433 0 0 1-1.832-1.33l-1.594-3.233a4.397 4.397 0 0 0-.657-.975 6.161 6.161 0 0 0 1.23-6.001 6.164 6.164 0 0 0-5.006-4.221l-5.572-.809a4.326 4.326 0 0 1-3.259-2.368l-2.492-5.05A6.164 6.164 0 0 0 32 2.77a6.165 6.165 0 0 0-5.562 3.457l-1.662 3.368a.937.937 0 1 0 1.682.83l1.661-3.368c.746-1.51 2.197-2.412 3.88-2.412 1.685 0 3.136.901 3.881 2.412l2.493 5.048a6.201 6.201 0 0 0 4.67 3.395l5.572.809c1.667.242 2.973 1.343 3.494 2.945.52 1.602.11 3.26-1.096 4.437l-4.031 3.93a6.203 6.203 0 0 0-1.785 5.49l.953 5.55c.284 1.66-.36 3.243-1.722 4.233-1.363.99-3.067 1.113-4.558.329l-4.984-2.62a6.203 6.203 0 0 0-5.773 0l-4.983 2.62c-1.492.784-3.196.66-4.558-.33-1.363-.99-2.006-2.572-1.721-4.232l.951-5.55a6.206 6.206 0 0 0-1.783-5.49l-4.033-3.93c-1.206-1.176-1.615-2.835-1.095-4.437.521-1.602 1.827-2.703 3.494-2.945l5.572-.81a6.166 6.166 0 0 0 3.357-1.62.937.937 0 1 0-1.286-1.364 4.3 4.3 0 0 1-2.34 1.13l-5.572.808a6.165 6.165 0 0 0-5.008 4.222 6.16 6.16 0 0 0 1.23 6c-.258.292-.48.62-.656.977l-1.594 3.231a2.431 2.431 0 0 1-1.832 1.33l-3.565.519a4.28 4.28 0 0 0-3.477 2.93 4.28 4.28 0 0 0 1.09 4.416l2.58 2.515c.573.56.835 1.365.7 2.153l-.61 3.552a4.28 4.28 0 0 0 1.713 4.212 4.282 4.282 0 0 0 4.537.328l3.19-1.677a2.431 2.431 0 0 1 2.262 0l3.19 1.677c.636.334 1.323.5 2.008.5.89 0 1.773-.28 2.528-.828a4.28 4.28 0 0 0 1.714-4.213l-.233-1.356c.04-.02.08-.038.119-.059l4.984-2.62a4.327 4.327 0 0 1 4.027 0l4.984 2.62.12.06-.232 1.356a4.28 4.28 0 0 0 1.712 4.212 4.292 4.292 0 0 0 2.529.828c.684 0 1.372-.165 2.008-.5l3.19-1.678c.29-.152.606-.244.937-.27a.937.937 0 1 0-.152-1.87 4.277 4.277 0 0 0-1.658.482l-3.19 1.677a2.388 2.388 0 0 1-2.562-.186 2.386 2.386 0 0 1-.967-2.378l.188-1.091a6.163 6.163 0 0 0 4.61-1.113 6.164 6.164 0 0 0 2.468-6.067l-.953-5.55a4.328 4.328 0 0 1 1.245-3.83L51.33 26c.117.144.22.303.308.479l1.594 3.232a4.308 4.308 0 0 0 3.243 2.356l3.565.519c.937.136 1.67.754 1.963 1.655.293.9.063 1.831-.615 2.492l-2.58 2.516a4.312 4.312 0 0 0-1.24 3.813l.61 3.55a2.386 2.386 0 0 1-.966 2.379 2.387 2.387 0 0 1-2.562.186l-1.53-.805a.938.938 0 0 0-.873 1.66l1.53.805a4.31 4.31 0 0 0 2.008.498c.89 0 1.774-.278 2.53-.827a4.28 4.28 0 0 0 1.711-4.213l-.61-3.55a2.436 2.436 0 0 1 .701-2.154l2.58-2.516a4.278 4.278 0 0 0 1.09-4.414zM23.268 46.614a2.387 2.387 0 0 1-.968 2.378 2.388 2.388 0 0 1-2.562.186L16.55 47.5a4.306 4.306 0 0 0-4.008 0l-3.19 1.677a2.388 2.388 0 0 1-2.562-.186 2.387 2.387 0 0 1-.967-2.378l.61-3.552a4.31 4.31 0 0 0-1.24-3.812l-2.58-2.516a2.386 2.386 0 0 1-.615-2.492 2.386 2.386 0 0 1 1.964-1.655l3.565-.52a4.306 4.306 0 0 0 3.243-2.355l1.595-3.232c.086-.175.19-.334.307-.479l3.039 2.962a4.33 4.33 0 0 1 1.244 3.83l-.951 5.55a6.163 6.163 0 0 0 2.466 6.067 6.18 6.18 0 0 0 3.64 1.191c.324 0 .649-.028.971-.08l.188 1.093zM50.239 8.81a.938.938 0 0 0 1.172-.619l1.85-5.98a.938.938 0 0 0-1.79-.555l-1.85 5.981a.938.938 0 0 0 .618 1.173zM55.89 14.458a.938.938 0 0 0 1.173.618l5.98-1.85a.938.938 0 0 0-.554-1.791l-5.98 1.85a.938.938 0 0 0-.62 1.173zM53.501 11.197a.935.935 0 0 0 1.326 0l4.507-4.507a.937.937 0 1 0-1.326-1.326L53.5 9.871a.937.937 0 0 0 0 1.326zM37.26 54.53a.938.938 0 1 0-1.66.875l2.921 5.537a.937.937 0 1 0 1.659-.875l-2.92-5.537zM28.007 54.138a.938.938 0 0 0-1.267.392l-2.92 5.537a.938.938 0 0 0 1.658.875l2.92-5.537a.938.938 0 0 0-.391-1.267zM32 54.756a.938.938 0 0 0-.938.938v6.373a.938.938 0 0 0 1.875 0v-6.373a.937.937 0 0 0-.937-.938zM12.588 8.191a.938.938 0 0 0 1.791-.554l-1.85-5.98a.938.938 0 0 0-1.792.554l1.85 5.98zM.958 13.226l5.98 1.85a.938.938 0 1 0 .554-1.791l-5.98-1.85a.937.937 0 1 0-.554 1.79zM9.172 11.197a.934.934 0 0 0 1.326 0 .937.937 0 0 0 0-1.326L5.99 5.364A.937.937 0 1 0 4.665 6.69l4.507 4.507z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--q-question:url("data:image/svg+xml,%0A%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M25.344 26.668h-.002a.667.667 0 1 0 0 1.333h.002c.368 0 .666.298.667.666 0 .368.299.666.666.666h.001a.667.667 0 0 0 .666-.667 2.002 2.002 0 0 0-2-1.998zm-8.008 2.667 1.333-.002a.667.667 0 0 0 0-1.333h-.001l-1.334.001a.667.667 0 0 0 .001 1.334zm.261-2.77 1.254.455a.667.667 0 1 0 .455-1.253l-1.254-.455a.667.667 0 0 0-.455 1.253zm1.911 3.877a.667.667 0 0 0-.657-.115l-1.253.457a.667.667 0 0 0 .457 1.253l1.253-.457a.667.667 0 0 0 .2-1.138zm13.824-2.443h-.001L31.998 28a.667.667 0 0 0 0 1.333l1.334-.001a.667.667 0 1 0 0-1.333zm-1.728-.949a.667.667 0 0 0 .229-.042l1.252-.457a.667.667 0 0 0-.457-1.252l-1.252.457a.667.667 0 0 0 .228 1.293zm1.486 3.72-1.252-.454a.667.667 0 0 0-.455 1.253l1.253.455a.667.667 0 0 0 .455-1.253z' fill='%23FAB826'/%3E%3Cpath d='M13.776 2.672a4.667 4.667 0 0 0-4.444 4.661.667.667 0 1 0 1.333 0 3.323 3.323 0 0 1 1.232-2.588 3.37 3.37 0 0 1 2.826-.67 3.31 3.31 0 0 1 2.533 2.534 3.34 3.34 0 0 1-2.78 4.024 1.337 1.337 0 0 0-1.144 1.315v.719a.667.667 0 0 0 1.333 0v-.715a4.667 4.667 0 0 0-.889-9.28zm.696 12.188a.77.77 0 0 0-.22-.14.685.685 0 0 0-.727.14.77.77 0 0 0-.14.22.666.666 0 0 0-.04.386.42.42 0 0 0 .04.12.507.507 0 0 0 .06.12l.08.1a.704.704 0 0 0 .474.194.56.56 0 0 0 .253-.053.776.776 0 0 0 .22-.14l.08-.1a.509.509 0 0 0 .06-.12.433.433 0 0 0 .04-.12.666.666 0 0 0-.04-.387.781.781 0 0 0-.14-.22z' fill='%230A5067'/%3E%3Cpath d='M29.333 16V2.667A2.67 2.67 0 0 0 26.667 0h-24A2.67 2.67 0 0 0 0 2.667V16a2.67 2.67 0 0 0 2.667 2.667h.666v3.998a1.333 1.333 0 0 0 2.321.893l3.995-4.891h17.018A2.67 2.67 0 0 0 29.333 16zm-20 1.333c-.01 0-.02.006-.031.007a1.39 1.39 0 0 0-.252.062.652.652 0 0 0-.098.066.662.662 0 0 0-.11.09c-.007.008-.018.012-.025.02l-4.15 5.082V18A.667.667 0 0 0 4 17.333H2.667A1.335 1.335 0 0 1 1.333 16V2.667a1.336 1.336 0 0 1 1.334-1.334h24A1.335 1.335 0 0 1 28 2.667V16c0 .736-.597 1.333-1.333 1.333H9.333z' fill='%230A5067'/%3E%3Cpath d='M37.335 21.333h-.667v-3.998a1.333 1.333 0 0 0-2.321-.893l-3.995 4.891H13.335A2.67 2.67 0 0 0 10.668 24v13.333A2.67 2.67 0 0 0 13.335 40h24A2.67 2.67 0 0 0 40 37.333V24a2.67 2.67 0 0 0-2.666-2.667zm1.333 16c0 .736-.597 1.333-1.334 1.334h-24a1.335 1.335 0 0 1-1.333-1.334V24c0-.736.597-1.333 1.334-1.333h17.333a.648.648 0 0 0 .27-.06.679.679 0 0 0 .058-.039.655.655 0 0 0 .164-.128c.007-.008.017-.01.024-.018l4.15-5.082V22c0 .368.299.667.667.667h1.334c.736 0 1.332.597 1.333 1.333v13.333z' fill='%230A5067'/%3E%3Cpath d='M25.896 24.033a4.665 4.665 0 0 0-3.478 8.273c.158.124.25.313.25.514v.513c.002.474.255.911.666 1.148v.853a2.007 2.007 0 0 0 2.656 1.891 2.028 2.028 0 0 0 1.346-1.96v-.784c.41-.236.664-.674.666-1.148v-.511a.686.686 0 0 1 .267-.53 4.636 4.636 0 0 0 1.674-4.374 4.715 4.715 0 0 0-4.047-3.885zm-.325 11.927a.677.677 0 0 1-.623-.087.669.669 0 0 1-.28-.54v-.666h1.334v.6a.72.72 0 0 1-.431.693zm1.86-4.705c-.479.38-.76.956-.763 1.567v.51l-2.666.001v-.513c0-.606-.277-1.179-.751-1.555a3.333 3.333 0 0 1 2.49-5.908 3.36 3.36 0 0 1 2.885 2.768 3.317 3.317 0 0 1-1.195 3.13z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--like:url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.838 4.19h-.615c.297-.824.586-2.035.197-2.985-.229-.56-.665-.958-1.26-1.151A1.095 1.095 0 008.82 0c-.776 0-1.477.757-2.503 2.7a7.225 7.225 0 01-1.59 2.006 3.17 3.17 0 00-.485.51A1.969 1.969 0 00.637 6.311v5.718c0 1.086.884 1.97 1.97 1.97a1.97 1.97 0 001.683-.952 2.52 2.52 0 001.962.938h4.823c1.991 0 2.289-1.286 2.289-2.052V6.716a2.529 2.529 0 00-2.526-2.526zM3.32 12.03a.714.714 0 01-1.426 0V6.312a.714.714 0 011.426 0v5.718zm8.787-.096c0 .465-.074.795-1.032.795H6.252c-.7 0-1.27-.57-1.27-1.27V6.717l.003-.02-.005-.037c-.001-.02-.022-.5.56-.995a8.57 8.57 0 001.89-2.378c.865-1.64 1.278-1.96 1.39-2.02a.7.7 0 01.437.416c.271.66-.07 1.932-.545 2.846l-.478.918h2.604c.7 0 1.269.57 1.269 1.27v5.218z' fill='%231984A8'/%3E%3C/svg%3E");
    /*1*/--reply:url("data:image/svg+xml,%0A%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M15.527 7.313c-.965-2.399-3.569-3.598-7.813-3.598h-2V1.429a.55.55 0 0 0-.17-.402.549.549 0 0 0-.401-.17.549.549 0 0 0-.402.17L.17 5.598A.55.55 0 0 0 0 6a.55.55 0 0 0 .17.402l4.571 4.572a.55.55 0 0 0 .402.17.55.55 0 0 0 .402-.17.55.55 0 0 0 .17-.402V8.286h2c.582 0 1.105.018 1.566.053.461.036.92.1 1.375.192.455.093.851.22 1.188.38.336.16.65.368.942.62.291.254.53.554.714.902.184.349.329.76.433 1.237.104.476.156 1.015.156 1.616 0 .327-.014.693-.044 1.098 0 .036-.008.106-.023.21a1.839 1.839 0 0 0-.022.236c0 .09.025.164.076.223.05.06.12.09.21.09.095 0 .178-.05.25-.152.041-.054.08-.12.116-.197a16.063 16.063 0 0 0 .214-.482C15.622 12.617 16 11.274 16 10.287c0-1.184-.158-2.176-.473-2.973z' fill='%238BB7C6'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--ar:url("data:image/svg+xml,%3Csvg width='9' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M4.851 7l4.005-4.005A.489.489 0 009 2.647a.489.489 0 00-.144-.348l-.295-.295a.493.493 0 00-.696 0L4.502 5.367 1.135 2a.49.49 0 00-.696 0l-.295.295A.489.489 0 000 2.644a.49.49 0 00.144.348L4.152 7a.49.49 0 00.35.144.49.49 0 00.35-.144z' fill='%231984A8'/%3E%3C/g%3E%3C/svg%3E");
    /*1*//*--attach-view:url("data:image/svg+xml,%0A%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.953 9.75a11.042 11.042 0 0 0-4.014-4.557A10.98 10.98 0 0 0 10 3.456c-2.114 0-4.168.6-5.94 1.737A11.043 11.043 0 0 0 .08 9.679c-.1.19-.107.42-.01.621a11.042 11.042 0 0 0 3.991 4.507A10.98 10.98 0 0 0 10 16.544c2.114 0 4.168-.6 5.94-1.737a11.043 11.043 0 0 0 3.992-4.506.696.696 0 0 0 .021-.551zM10 15.158A9.692 9.692 0 0 1 1.47 10 9.692 9.692 0 0 1 10 4.842 9.692 9.692 0 0 1 18.531 10c-1.653 3.144-4.965 5.158-8.53 5.158z' fill='%230A5067'/%3E%3Cpath d='M9.999 6.958A3.046 3.046 0 0 0 6.957 10a3.046 3.046 0 0 0 3.042 3.042A3.046 3.046 0 0 0 13.041 10 3.046 3.046 0 0 0 10 6.958zm0 4.698A1.658 1.658 0 0 1 8.343 10c0-.913.743-1.656 1.656-1.656.913 0 1.656.743 1.656 1.656 0 .913-.743 1.656-1.656 1.656z' fill='%230A5067'/%3E%3C/svg%3E");*/
    /*1*/--attach-link:url("data:image/svg+xml,%0A%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%230A5067'%3E%3Cpath d='M16.19 12.376a.714.714 0 0 0-.714.714v5.475H1.43V4.518h4.314a.714.714 0 1 0 0-1.429H.714A.714.714 0 0 0 0 3.803V19.28a.714.714 0 0 0 .714.714H16.19a.714.714 0 0 0 .715-.714v-6.19a.714.714 0 0 0-.715-.714z'/%3E%3Cpath d='M19.761 5.064 14.286.174a.714.714 0 0 0-1.182.533V2.8c-4.797.186-8.462 5.807-7.683 11.233a.714.714 0 0 0 .357.54.714.714 0 0 0 .94-.244c.935-3.386 3.407-5.872 6.375-5.915v2.072a.713.713 0 0 0 1.193.532l5.475-4.89a.714.714 0 0 0 0-1.064zM14.533 8.89V7.678a.714.714 0 0 0-.604-.664c-2.722-.278-5.272 1.072-6.93 3.415.804-3.768 3.619-6.393 6.966-6.222a.714.714 0 0 0 .568-.7V2.303l3.682 3.293-3.682 3.294z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--attach-download:url("data:image/svg+xml,%0A%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M1 19h18M1 19v-2M19 19v-2' stroke='%230A5067' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M9.483 14.757 4.48 9.163a.73.73 0 0 1 .545-1.207h2.142c.19-4.9 5.943-8.645 11.496-7.85a.732.732 0 0 1 .552.366.729.729 0 0 1-.249.96c-3.465.955-6.01 3.48-6.053 6.513h2.12a.732.732 0 0 1 .545 1.218l-5.004 5.594a.73.73 0 0 1-1.09 0zm3.915-5.342H12.16a.732.732 0 0 1-.68-.617c-.285-2.78 1.097-5.385 3.495-7.078-3.857.82-6.543 3.696-6.368 7.115a.73.73 0 0 1-.716.58H6.658l3.37 3.762 3.37-3.762z' fill='%230A5067'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--folder:url("data:image/svg+xml,%0A%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.842 14.031a.796.796 0 0 0-.639-.32H34.19V9.979a.797.797 0 0 0-.797-.797h-17.67c-.67 0-1.215-.545-1.215-1.215 0-1.55-1.26-2.81-2.81-2.81H.797A.797.797 0 0 0 0 5.954v28.092c0 .396.29.732.682.789l32.71.008a.797.797 0 0 0 .764-.57l5.81-19.538a.797.797 0 0 0-.124-.704zM1.594 6.751h10.104c.67 0 1.216.545 1.216 1.216a2.812 2.812 0 0 0 2.81 2.809h16.872v2.935H6.607a.797.797 0 0 0-.763.57l-4.25 14.29V6.751zm31.204 26.498H1.865l5.337-17.945h30.933L32.798 33.25z' fill='%230A5067'/%3E%3Cpath d='M9.016 18.407h14.171a.797.797 0 0 0 0-1.594H9.016a.797.797 0 0 0 0 1.594zm18.027 0h1.845a.797.797 0 0 0 0-1.594h-1.845a.797.797 0 0 0 0 1.594z' fill='%230A5067'/%3E%3C/svg%3E");
    /*1*/--rar:url("data:image/svg+xml,%0A%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%230A5067'%3E%3Cpath d='M35.755 8.88c-.043 0-.043-.044-.087-.088-.043-.043-.043-.087-.087-.13l-7.486-8.4c-.044-.044-.13-.088-.174-.131-.044 0-.044-.044-.087-.044A.82.82 0 0 0 27.485 0H9.118C6.419 0 4.199 2.22 4.199 4.918v30.164C4.2 37.78 6.42 40 9.118 40H30.88c2.699 0 4.919-2.22 4.919-4.918V9.184c0-.087-.044-.218-.044-.305zm-7.443-5.92 4.832 5.44h-4.832V2.96zm5.833 32.078c0 1.828-1.437 3.308-3.265 3.308H9.118a3.26 3.26 0 0 1-3.265-3.264V4.875A3.26 3.26 0 0 1 9.118 1.61h17.54v7.574c0 .435.349.827.827.827h6.66v25.027z'/%3E%3Cpath d='M17 4.25h2.5v2.5H17V8h2.5v1.25H17v1.25h2.5v1.25H17V13h2.5v1.25H17v1.25h2.5v1.25H17V18h2.5v1.25H17v1.25h2.5v1.25H17V23h2.5v1.25h1.25v-2.5h2.5V20.5h-2.5v-1.25h2.5V18h-2.5v-1.25h2.5V15.5h-2.5v-1.25h2.5V13h-2.5v-1.25h2.5V10.5h-2.5V9.25h2.5V8h-2.5V6.75h2.5V5.5h-2.5V4.25h2.5V3H17v1.25zM21.986 25.99a.626.626 0 0 0-.611-.49h-2.5a.626.626 0 0 0-.61.49l-.844 3.794A17.796 17.796 0 0 0 17 33.625a3.129 3.129 0 0 0 3.125 3.125 3.129 3.129 0 0 0 3.125-3.125c0-1.29-.142-2.582-.421-3.841l-.843-3.795zm-1.861 9.51a1.877 1.877 0 0 1-1.875-1.875c0-1.2.132-2.4.392-3.57l.734-3.305h1.498l.734 3.305c.26 1.17.392 2.37.392 3.57a1.877 1.877 0 0 1-1.875 1.875z'/%3E%3Cpath d='M19.5 33h1.25v1.25H19.5V33z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--cad:url("data:image/svg+xml,%0A%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' fill='%230A5067'%3E%3Cpath d='M35.755 8.88c-.043 0-.043-.044-.087-.088-.043-.043-.043-.087-.087-.13l-7.486-8.4c-.044-.044-.13-.088-.174-.131-.044 0-.044-.044-.087-.044A.82.82 0 0 0 27.485 0H9.118C6.419 0 4.199 2.22 4.199 4.918v30.164C4.2 37.78 6.42 40 9.118 40H30.88c2.699 0 4.919-2.22 4.919-4.918V9.184c0-.087-.044-.218-.044-.305zm-7.443-5.92 4.832 5.44h-4.832V2.96zm5.833 32.078c0 1.828-1.437 3.308-3.265 3.308H9.118a3.26 3.26 0 0 1-3.265-3.264V4.875A3.26 3.26 0 0 1 9.118 1.61h17.54v7.574c0 .435.349.827.827.827h6.66v25.027z'/%3E%3Cpath d='M10.935 13h-1.29a.645.645 0 0 0-.645.645v1.29a.645.645 0 0 0 1.29 0v-.645h.646a.645.645 0 1 0 0-1.29zM28.997 14.29h.645v.646a.646.646 0 0 0 1.29 0v-1.29a.645.645 0 0 0-.645-.646h-1.29a.645.645 0 0 0 0 1.29zM30.932 33a.645.645 0 0 0-1.29 0v.645h-.645a.645.645 0 0 0 0 1.29h1.29a.645.645 0 0 0 .645-.644V33zM10.935 33.645h-.645V33A.645.645 0 1 0 9 33v1.29a.645.645 0 0 0 .645.646h1.29a.645.645 0 0 0 0-1.29zM25.207 13.794c-1.41-.512-3.27-.794-5.239-.794-1.968 0-3.828.282-5.238.794-2.069.753-2.503 1.738-2.503 2.432V31.71c0 .693.434 1.679 2.503 2.431 1.41.512 3.27.794 5.238.794 1.969 0 3.83-.282 5.24-.794 2.068-.752 2.502-1.738 2.502-2.431V16.226c0-.694-.434-1.68-2.503-2.432zm-.44 19.134c-1.273.462-2.976.717-4.799.717-1.822 0-3.525-.255-4.797-.717-1.143-.415-1.654-.911-1.654-1.218 0-.308.511-.803 1.654-1.219 1.272-.462 2.975-.717 4.797-.717a17.07 17.07 0 0 1 3.226.292v1.644a.645.645 0 0 0 1.29 0v-1.315c.097.03.19.063.282.096 1.143.416 1.654.911 1.654 1.219 0 .307-.511.803-1.654 1.218zm1.653-3.08c-.384-.23-.79-.42-1.213-.57-.229-.083-.47-.16-.722-.23v-4.435a.645.645 0 1 0-1.29 0v4.142a18.65 18.65 0 0 0-3.227-.271c-1.968 0-3.828.282-5.238.794-.423.15-.829.34-1.213.57v-11.76c.384.23.79.42 1.213.57 1.41.511 3.27.794 5.238.794 1.969 0 3.83-.283 5.24-.795.422-.149.828-.34 1.212-.57v11.76zm-1.654-12.404c-1.272.463-2.975.717-4.797.717-1.823 0-3.526-.255-4.798-.717-1.143-.415-1.654-.91-1.654-1.218 0-.307.511-.803 1.654-1.219 1.272-.462 2.975-.717 4.797-.717 1.823 0 3.526.255 4.798.717 1.143.416 1.654.912 1.654 1.219 0 .307-.511.803-1.654 1.218z'/%3E%3Cpath d='M24.486 22.032a.645.645 0 1 0-1.29 0v.645a.645.645 0 0 0 1.29 0v-.645zM9.645 5.29h5.807a.645.645 0 0 0 0-1.29H9.645a.645.645 0 1 0 0 1.29zM12.226 6.58a.645.645 0 0 0-.645-.645H9.645a.645.645 0 0 0 0 1.29h1.936a.645.645 0 0 0 .645-.645z'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--vk-auth:url("data:image/svg+xml,%0A%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 10.56c0-4.978 0-7.467 1.546-9.014C3.093 0 5.582 0 10.56 0h.88c4.978 0 7.467 0 9.013 1.546C22 3.093 22 5.582 22 10.56v.88c0 4.978 0 7.467-1.547 9.013C18.907 22 16.418 22 11.44 22h-.88c-4.978 0-7.467 0-9.014-1.547C0 18.907 0 16.418 0 11.44v-.88z' fill='%23fff'/%3E%3Cpath d='M11.706 15.9c-5.023 0-7.887-3.453-8.007-9.2h2.516c.083 4.218 1.937 6.004 3.406 6.373V6.7h2.37v3.638c1.45-.157 2.974-1.815 3.488-3.638h2.37c-.396 2.247-2.048 3.905-3.224 4.586 1.176.553 3.058 1.999 3.774 4.614h-2.608c-.56-1.75-1.955-3.104-3.8-3.288V15.9h-.285z' fill='%2307F'/%3E%3C/g%3E%3C/svg%3E");
    /*1*/--dp-wm:url("data:image/svg+xml,%0A%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M11.943.183c1.872 0 3.654.429 5.253 1.2.251.113.502.248.753.384l-1.096.97-1.644-1.693-2.83 2.483L10.71 1.74 5.503 6.368l3.334 3.635-1.301 1.129 3.289 3.634-1.302 1.128 4.705 5.17 2.784-2.529 2.422 2.71c-.48.361-1.005.723-1.575 1.039a12.042 12.042 0 0 1-5.892 1.533C5.367 23.817 0 18.514 0 11.99-.023 5.51 5.344.183 11.943.183zM9.75 11.267l2.855-2.529 2.558 2.822-2.855 2.528-2.558-2.821zm2.033 4.876 2.83-2.55 2.582 2.82-2.855 2.53-2.557-2.8zM7.719 6.459l2.85-2.529 2.558 2.822-2.855 2.528L7.719 6.46zM12.948 5.1l2.127-1.892 1.919 2.1-2.124 1.918L12.948 5.1zm3.787 8.691 2.128-1.892 1.918 2.121-2.124 1.898-1.922-2.127zm1.873 4.268 2.124-1.897 1.917 2.1-2.124 1.919-1.917-2.122zm.868-9.753 1.415-1.264 1.28 1.4-1.416 1.264-1.28-1.4zM17.649 4.13l1.415-1.286 1.28 1.422-1.417 1.263-1.278-1.4zm3.63 8.353 1.416-1.264L24 12.622l-1.438 1.264-1.283-1.403zm-6.374-3.138 2.124-1.896 1.917 2.099-2.123 1.897-1.918-2.1z' fill='%23106DB3'/%3E%3C/g%3E%3C/svg%3E");
}