@import url('https://fonts.googleapis.com/css2?family=Days+One&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-primary: 'Noto Sans', sans-serif;
    --font-secondary: 'Days One', sans-serif;
    --accent-color: #000000;
    --text-color: #505050;
    --title-color: var(--accent-color);
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    outline: none !important;
}

*:hover, *:focus {
    outline: none !important;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    /* overflow: hidden; */
}

body {
    min-width: 320px;
    position: relative;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.19;
    color: var(--text-color);
    background: #F7F7F7;
    opacity: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.wrapper {
    overflow: hidden;
    width: 100%;
}

.wrapper__in {
    overflow: hidden;
    /* padding-bottom: 60px; */
    /* max-width: 375px; */
    /*max-width: 1440px; */
}

.wrap {
    max-width: 1272px;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: auto;
    margin-left: auto;
}

input[type="search"]::-ms-clear {
    width : 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

a, button {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    background: none;
    padding: 0;
    border: none;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    cursor: pointer;
}

a {
    transition: color 0.3s ease 0s;
}

a:hover, a:focus {
    color: #16AD00;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.text-nowrap {
    white-space: nowrap;
}

.button {
    border: 1px solid #16AD00;
    background: #16AD00;
    padding: 8px 16px 8px 15px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    text-align: center;
    user-select: none;
    border-radius: 800px;
    position: relative;
    transition: all 0.3s ease 0s;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.button:visited {
    color: #ffffff;
}

.button:hover, .button:focus {
    background: none;
    color: #16AD00;
}

.button--blue {
    border-color: #3662FF;
    background: #3662FF;
}

.button--blue:hover, .button--blue:focus {
    color: #3662FF;
    background: none;
}

@media (min-width: 1272px) {
    .button {
        font-size: 16px;
        padding: 11px 16px 11px 14px;
        font-weight: 600;
    }
}

.ps-row {
    --bs-gutter-x: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.ps-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}

.ps-col {
    flex: 1 0 0%;
}



.desktop-only {
    display: none;
}

@media (min-width: 1272px) {
    .mobile-only {
        display: none;
    }
    .desktop-only {
        display: block;
    }
}

.burger-icon {
    width: 18px;
    height: 12px;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    display: block;
}

.burger-icon span {
    width: 18px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 1px;
}

.burger-icon span:nth-child(1) {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 5px;
}

.burger-icon span:nth-child(3) {
    top: 10px;
}

.nav-open .burger-icon span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.nav-open .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-open .burger-icon span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

.navigation {
}

.menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.menu li {
    padding: 6px 6px 6px 6px;
}

.menu a {
    color: #3662FF;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    font-size: 13px;
    border-radius: 800px;
    border: 1px solid #CACACA;
    background: #FFF;
    box-shadow: 0px 27px 8px 0px rgba(87, 125, 214, 0.00), 0px 17px 7px 0px rgba(87, 125, 214, 0.01), 0px 10px 6px 0px rgba(87, 125, 214, 0.05), 0px 4px 4px 0px rgba(87, 125, 214, 0.09), 0px 1px 2px 0px rgba(87, 125, 214, 0.10);
    padding: 9px 16px 8px 15px;
    display: block;
    transition: all 0.3s ease 0s;
}

.menu a:hover, .menu a:focus {
    box-shadow: none;
    transform: translateY(2px);
}

.header {
    min-height: 54px;
}

.header__fix {
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* width: 375px; */
    background: #ffffff;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-open .header__fix {
    box-shadow: none;
}

.header__wrap {
}

.header__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0 7px 0;
}

.header__block {
}

.header__block_logo {
}

.header-logo {
    font-size: 0;
    line-height: 1;
}

.header-logo img {
    height: 18px;
}

.header__block_nav {
    order: 1;
    position: absolute;
    top: 100%;
    z-index: 2;
    left: 0;
}

.header__block_buttons {
    margin-left: auto;
}

.header__block_burger {
    padding-left: 16px;
}

.navmain {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    background: #ffffff;
    box-shadow: 0px 3px 3px 0 rgba(0,0,0,0.1);
    display: none;
    padding-top: 55px;
    padding-bottom: 5px;
    z-index: 50;
}

.nav-open .navmain {
    display: block;
}

.sigblock {
    margin: 0 -4px;
    display: flex;
    flex-wrap: wrap;
}

.sigblock__item {
    padding: 4px;
}

.sigblock__item:last-child {
    display: none;
}

@media (min-width: 420px) {
    .sigblock__item:last-child {
        display: block;
    }
}

.navtoggle {
    padding: 4px 3px 4px 3px;
}

.hero {
}

.hero-main {
    background: #202639;
    backdrop-filter: blur(5px);
    box-shadow: 16px 0px 0 0 #202639, -16px 0px 0 0 #202639;
    color: #FFF;
    text-align: center;
    padding: 41px 0 41px 0;
    line-height: 1.4;
    position: relative;
}

.hero-content {
}

.hero-linkcover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1;
}

.hero-description {
    color: #65FF53;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 19px;
}

.hero-figure {
    margin: 10px -14px -3px -10px;
}

.hero-picture {
}

.hero-picture img {
}

.hero-control {
}

.hero-button {
    display: block;
    padding: 11px 0 11px 0;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.games {
    padding-top: 20px;
}

.games-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.games-item {
    padding: 6px 4px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.games-item:nth-child(n+11) {
    display: none;
}

@media (min-width: 375px) {
    .games-item {
        width: 50%;
    }
}

@media (min-width: 600px) {
    .games-item {
        width: 33.33333%;
    }
}

@media (min-width: 720px) {
    .games-item {
        width: 25%;
    }
}

@media (min-width: 920px) {
    .games-item {
        width: 20%;
    }
}

.games-control {
    text-align: center;
    font-size: 0;
    line-height: 1;
    padding-top: 18px;
}

.games-button {
    color: #3662FF;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #CACACA;
    background: #FFF;
    box-shadow: 0px 27px 8px 0px rgba(87, 125, 214, 0.00), 0px 17px 7px 0px rgba(87, 125, 214, 0.01), 0px 10px 6px 0px rgba(87, 125, 214, 0.05), 0px 4px 4px 0px rgba(87, 125, 214, 0.09), 0px 1px 2px 0px rgba(87, 125, 214, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0 8px 0;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}

.games-button:hover, .games-button:focus {
    color: #3662FF;
    box-shadow: none;
    transform: translateY(2px);
}

.games-button svg {
    margin-right: 8px;
    margin-top: 0px;
    margin-bottom: 1px;
}

.game {
    border-radius: 24px;
    border: 1px solid #BFBFBF;
    background: #FFF;
    padding: 7px 7px 8px 7px;
    position: relative;
}

.game-badge {
    background-image: url(../img/ribbon_resized_tinified.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    position: absolute;
    top: -4px;
    left: 22px;
    width: 26px;
    height: 39px;
    padding: 2px 0 0 0;
    z-index: 2;
}

.game-badge svg {
    display: block;
    margin: 0 auto 1px;
}

.game-picture {
    border-radius: 16px;
    overflow: hidden;
    height: 111px;
}

.game-picture a {
    display: block;
    width: 100%;
    height: 100%;
}

.game-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
}

.game-picture:hover img {
    transform: scale(1.1);
}

.game-control {
    display: flex;
    align-items: start;
    padding-top: 9px;
}

.game-button {
    border-radius: 16px;
    border: 1px solid #6B8CFF;
    background: #6B8CFF;
    box-shadow: 0px 27px 8px 0px rgba(87, 125, 214, 0.00), 0px 17px 7px 0px rgba(87, 125, 214, 0.01), 0px 10px 6px 0px rgba(87, 125, 214, 0.05), 0px 4px 4px 0px rgba(87, 125, 214, 0.09), 0px 1px 2px 0px rgba(87, 125, 214, 0.10);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 9px 0 8px 0;
    margin-right: 4px;
    transition: all 0.3s ease 0s;
}

.game-button:hover, .game-button:focus {
    color: #6B8CFF;
    background: none;
}

.game-button:last-child {
    margin-right: 0;
}

.game-button--white {
    border: 1px solid #CACACA;
    background: #FFF;
    color: #3662FF;
}

.game-button--white:hover, .game-button--white:focus {
    border-color: #3662FF;
    background: #3662FF;
    color: #fff;
}

.question {
    border-radius: 30px;
    border: 1px solid rgba(54, 98, 255, 0.20);
    background: #D9E3FF;
    margin-top: 40px;
    padding: 7px 11px 7px 11px;
    overflow: hidden;
    position: relative;
}

.question-linkcover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.question-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.question-col {
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
    padding: 4px;
}

.question-col--auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.question-col--control {
    margin-left: auto;
}

.question-iconblock {
    font-size: 0;
    line-height: 1;
}

.question-iconblock svg {
}

.question-text {
    color: #57595A;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    min-width: 120px;
}

.question-control {
}

.question-button {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 15px 8px 15px;
    position: relative;
    z-index: 2;
}

.entry-content {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.57;
    line-height: 1.5;
}

.home .entry-content {
    padding-top: 45px;
}

.entry-content h1 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.36;
}

.entry-content h2 {
    margin: 58px 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.entry-content p + h2 {
}

.entry-content h3 {
}

.entry-content p {
    margin: 0 0 21px 0;
}

.entry-content ul, .entry-content ol {
    margin-bottom: 21px;
    padding-left: 21px;
    line-height: 1.5;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
}

.entry-content ul li, .entry-content ol li {
}

.entry-content ul li {
}

.entry-content ol li {
}

.entry-content table {
    font-size: 16px;
    font-weight: 500;
    border-collapse: collapse;
    line-height: 1.5;
    min-width: 100%;
}

.entry-content table thead {
}

.entry-content table tbody {
}

.entry-content table th, .entry-content table td {
    text-align: left;
    border: 1px solid #AEAEB8;
    background: #FFF;
    Colors Hex Hex Background colors #FFFFFF;padding: 9px 16px 9px 16px;
}

.entry-content table th {
    font-weight: 600;
    background: #D9E5FF;
    Colors Hex Hex Background colors #D9E5FF;}

.entry-content table td {
    padding-bottom: 10px;
}

.toc {
    padding: 17px 0 4px 34px;
}

.toc-content {
}

.entry-content ul.kamatoc, .kamatoc {
    list-style-type: none;
    counter-reset: list;
    color: #3662FF;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
    /* 24.8px */
}

.kamatoc li:before {
    margin-right: 0px;
}

.kamatoc li.kamatoc__top {
    counter-increment: list;
    counter-reset: list1;
}

.kamatoc li.kamatoc__top:before {
    content: counter(list) '. ';
}

.kamatoc li.kamatoc__sub_1 {
    counter-increment: list1;
    counter-reset: list2;
}

.kamatoc li.kamatoc__sub_1:before {
    content: counter(list) '.' counter(list1) '. ';
}

.kamatoc li.kamatoc__sub_2 {
    counter-increment: list2;
}

.kamatoc li.kamatoc__sub_2:before {
    content: counter(list) '.' counter(list1) '.' counter(list2) '. ';
}

.kamatoc li.kamatoc__sub_3 {
    counter-increment: list3;
}

.kamatoc li.kamatoc__sub_3:before {
    content: counter(list) '.' counter(list1) '.' counter(list2) '.' counter(list3) '.';
}

.footer {
    background: #fff;
    color: #505050;
    font-size: 12px;
    line-height: 2;
    margin-top: 40px;
}

.footer-main {
    padding: 16px 0px 8px 0px;
}

.footer-logo {
    font-size: 0;
    line-height: 1;
}

.footer-nav {
    padding-top: 24px;
}

.footer-nav-title {
    color: #3662FF;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #16AD00;
    padding-bottom: 15px;
    margin-bottom: 17px;
}

.footer-menu {
    margin: 0 -4px;
    column-count: 2;
    line-height: 2.32;
}

.footer-menu li {
    padding: 0 4px 4px;
}

.footer-menu a {
}

.footer-infos {
    border-top: 1px solid #16AD00;
    margin-top: 23px;
    padding-top: 8px;
}

.footer-copyright {
    color: #505050;
    font-size: 14px;
    /* 200% */
    border-top: 1px solid #16AD00;
    margin-top: 4px;
    padding-top: 16px;
}

.footerinfos {
    padding-bottom: 11px;
}

.footerinfos-row {
}

.footerinfos-col {
    padding: 5px 0;
}

.infopictures {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.infopictures--apps {
}

.infopictures-title {
    font-size: 14px;
    line-height: 1;
    padding-right: 33px;
    font-weight: 600;
    color: #3662FF;
    padding: 10px 33px 10px 0;
}

.infopictures-content {
}

.infopictures-content--licenses {
    margin-left: auto;
}

.infopictures-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    line-height: 1;
    margin: 0 -13px;
}

.infopictures-item {
    padding: 0 13px;
}

.infopictures img {
    height: 24px;
}

@media (min-width: 1272px) {
    .navigation {
    }

    .menu {
    }

    .menu li {
    }

    .menu a {
    }

    .menu a:hover, .menu a:focus {
    }

    .header {
        min-height: 72px;
    }

    .header__fix {
        border-bottom: 1px solid #EBEBEB;
        box-shadow: none;
    }

    .header__wrap {
    }

    .header__main {
        padding: 12px 0 11px 0;
    }

    .header__block {
    }

    .header__block_logo {
    }

    .header-logo {
    }

    .header-logo img {
        height: auto;
    }

    .header__block_nav {
    }

    .header__block_buttons {
    }

    .header__block_burger {
        display: none;
    }

    .navmain {
        position: static;
        display: block;
        box-shadow: none;
        background: none;
        padding: 2px 0 17px 0;
    }

    .nav-open .navmain {
    }

    .sigblock {
    }

    .sigblock__item {
    }

    .sigblock__item:last-child {
    }

    .sigblock__item:last-child {
    }

    .navtoggle {
    }

    .hero {
    }

    .hero-main {
        box-shadow: none;
        border-radius: 24px;
        text-align: left;
        padding: 45px 0 45px 100px;
        overflow: hidden;
    }

    .hero-content {
        max-width: 400px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.28;
    }

    .hero-description {
        font-size: 20px;
        padding-top: 32px;
        line-height: 1.35;
    }

    .hero-figure {
        position: absolute;
        top: -37px;
        right: 90px;
        margin: 0;
    }

    .hero-picture {
        max-width: 646px;
    }

    .hero-picture img {
    }

    .hero-control {
        padding-top: 32px;
    }

    .hero-button {
        max-width: 200px;
    }

    .games {
        padding-top: 34px;
    }

    .games-list {
        margin: 0 -8px;
    }

    .games-item {
        width: 16.66666667%;
        padding: 15px 8px 14px;
    }

    .games-item:nth-child(n+11) {
        display: block;
    }

    .games-control {
        padding-top: 26px;
    }

    .games-button {
    }

    .games-button:hover, .games-button:focus {
    }

    .games-button svg {
    }

    .game {
        padding: 15px 15px 15px 15px;
    }

    .game-badge {
        width: 31px;
        height: 45px;
        top: -5px;
        left: 25px;
        font-size: 10px;
        padding: 4px 0 0 0;
    }

    .game-badge svg {
    }

    .game-picture {
        height: 112px;
    }

    .game-picture a {
    }

    .game-picture img {
    }

    .game-picture:hover img {
    }

    .game-control {
        padding-top: 8px;
    }

    .game-button {
        border-radius: 8px;
    }

    .game-button:hover, .game-button:focus {
    }

    .game-button:last-child {
    }

    .game-button--white {
    }

    .game-button--white:hover, .game-button--white:focus {
    }

    .question {
        margin-top: 67px;
        padding: 11px 31px 11px 31px;
    }

    .question-linkcover {
    }

    .question-row {
    }

    .question-col {
    }

    .question-col--auto {
    }

    .question-col--control {
    }

    .question-iconblock {
        padding-right: 17px;
    }

    .question-iconblock svg {
        width: 60px;
        height: 60px;
    }

    .question-text {
        font-size: 24px;
    }

    .question-text br {
        display: none;
    }

    .question-control {
    }

    .question-button {
        font-size: 16px;
        padding: 11px 20px 11px 20px;
    }

    .entry-content {
        font-size: 16px;
        line-height: 1.496;
    }

    .home .entry-content {
        padding-top: 74px;
    }

    .entry-content h1 {
        font-size: 32px;
        padding-left: 12px;
        padding-bottom: 19px;
    }

    .entry-content h2 {
        font-size: 24px;
        margin-top: 71px;
        margin-bottom: 23px;
        clear: both;
    }

    .entry-content p + h2 {
    }

    .entry-content h3 {
    }

    .entry-content p {
        margin-bottom: 22px;
    }

    .entry-content p.bigger {
        font-size: 18px;
        line-height: 1.556;
    }

    .entry-content p + p {
        margin-bottom: 24px;
    }

    .entry-content ul, .entry-content ol {
        margin-top: 23px;
        padding-left: 25px;
        margin-bottom: 25px;
    }

    .entry-content ul {
    }

    .entry-content ol {
    }

    .entry-content ul li, .entry-content ol li {
    }

    .entry-content ul li {
    }

    .entry-content ol li {
    }

    .entry-content table {
    }

    .entry-content table thead {
    }

    .entry-content table tbody {
    }

    .entry-content table th, .entry-content table td {
    }

    .entry-content table th {
    }

    .entry-content table td {
        padding-top: 10px;
        padding-bottom: 9px;
    }

    .toc {
        padding: 1px 13px 0 0px;
        float: left;
        margin: 0 0 0 -16px;
    }

    .toc-content {
        max-width: 320px;
    }

    .entry-content ul.kamatoc, .kamatoc {
        line-height: 1.565;
    }

    .kamatoc li:before {
    }

    .kamatoc li.kamatoc__top {
    }

    .kamatoc li.kamatoc__top:before {
    }

    .kamatoc li.kamatoc__sub_1 {
    }

    .kamatoc li.kamatoc__sub_1:before {
    }

    .kamatoc li.kamatoc__sub_2 {
    }

    .kamatoc li.kamatoc__sub_2:before {
    }

    .kamatoc li.kamatoc__sub_3 {
    }

    .kamatoc li.kamatoc__sub_3:before {
    }

    .footer {
        margin-top: 79px;
        font-size: 16px;
        line-height: 1.75;
    }

    .footer-main {
        position: relative;
        padding: 0px 0 16px 203px;
    }

    .footer-logo {
        position: absolute;
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
    }

    .footer-nav {
        padding-top: 16px;
    }

    .footer-nav-title {
        font-size: 16px;
        padding-bottom: 15px;
        margin-bottom: 16px;
    }

    .footer-menu {
        column-count: 4;
        margin: 0 -10px;
    }

    .footer-menu li {
        padding: 0 10px 8px;
        line-height: 1.75;
    }

    .footer-menu a {
    }

    .footer-infos {
        border: none;
        margin: 0;
        padding: 16px 0 0 0;
    }

    .footer-copyright {
        margin-top: 12px;
        font-size: 16px;
    }

    .footerinfos {
    }

    .footerinfos-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

    .footerinfos-col {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .footerinfos-col--apps {
        order: 1;
    }

    .infopictures {
        display: block;
    }

    .infopictures--apps {
    }

    .infopictures-title {
        border-bottom: 1px solid #16AD00;
        font-size: 16px;
        padding-bottom: 21px;
        margin-bottom: 32px;
    }

    .infopictures-content {
    }

    .infopictures-content--licenses {
    }

    .infopictures-list {
        margin: 0 -16px;
    }

    .infopictures-item {
        padding: 0 16px;
    }

    .infopictures img {
        height: 32px;
    }

    .infopictures-content--licenses img {
    }
}
