/* * Skeleton V1.2 - Adapted for Legacy iOS UI Kit
 * Copyright 2011, Dave Gamache
 * www.getskeleton.com
 * Free to use under the MIT license.
 */

/* #Reset & Basics */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    /* iOS 6 fix */
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    /* Необходимо для корректной работы min-height: 100% в iOS 6 */
}

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,
sub,
sup,
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;
    border: 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;
}

/* #Base 960 Grid */
.container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 70px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    min-height: 100%;
    /* Фоллбэк для iOS 6, так как vh не поддерживается */
    min-height: 100vh;
}

.container .column,
.container .columns {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
}

.row {
    margin-bottom: 20px;
}

/* Nested Column Classes */
.column.alpha,
.columns.alpha {
    margin-left: 0;
}

.column.omega,
.columns.omega {
    margin-right: 0;
}

/* Base Grid */
.container .one.column,
.container .one.columns {
    width: 40px;
}

.container .two.columns {
    width: 100px;
}

.container .three.columns {
    width: 160px;
}

.container .four.columns {
    width: 220px;
}

.container .five.columns {
    width: 280px;
}

.container .six.columns {
    width: 340px;
}

.container .seven.columns {
    width: 400px;
}

.container .eight.columns {
    width: 460px;
}

.container .nine.columns {
    width: 520px;
}

.container .ten.columns {
    width: 580px;
}

.container .eleven.columns {
    width: 640px;
}

.container .twelve.columns {
    width: 700px;
}

.container .thirteen.columns {
    width: 760px;
}

.container .fourteen.columns {
    width: 820px;
}

.container .fifteen.columns {
    width: 880px;
}

.container .sixteen.columns {
    width: 940px;
}

.container .one-third.column {
    width: 300px;
}

.container .two-thirds.column {
    width: 620px;
}

/* Offsets */
.container .offset-by-one {
    padding-left: 60px;
}

.container .offset-by-two {
    padding-left: 120px;
}

.container .offset-by-three {
    padding-left: 180px;
}

.container .offset-by-four {
    padding-left: 240px;
}

.container .offset-by-five {
    padding-left: 300px;
}

.container .offset-by-six {
    padding-left: 360px;
}

.container .offset-by-seven {
    padding-left: 420px;
}

.container .offset-by-eight {
    padding-left: 480px;
}

.container .offset-by-nine {
    padding-left: 540px;
}

.container .offset-by-ten {
    padding-left: 600px;
}

.container .offset-by-eleven {
    padding-left: 660px;
}

.container .offset-by-twelve {
    padding-left: 720px;
}

.container .offset-by-thirteen {
    padding-left: 780px;
}

.container .offset-by-fourteen {
    padding-left: 840px;
}

.container .offset-by-fifteen {
    padding-left: 900px;
}

/* #Basic Styles */
body {
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Arial', 'Helvetica', sans-serif;
    color: #333;
    background-color: #F2F2F2;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

/* #Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0 0 10px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Для современных браузеров */
    max-width: 100%;
}

h1 {
    font-size: 46px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

h3 {
    font-size: 28px;
    line-height: 34px;
}

h4 {
    font-size: 21px;
    line-height: 30px;
}

h5 {
    font-size: 17px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 21px;
}

.hero-subtitle {
    font-size: 35px;
    line-height: 40px;
    color: #000;
    margin-bottom: 10px;
    font-weight: normal;
}

p {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 20px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.subtitle {
    font-size: 18px;
    line-height: 26px;
}

.caption {
    font-size: 12px;
    line-height: 18px;
}

.footnote {
    font-size: 10px;
    line-height: 18px;
}

.text-primary {
    color: #000;
}

.text-additional {
    color: #8A8D99;
}

a {
    color: #0088CC !important;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* #Center Class */
.center {
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* #Dividers 
 * Fix: добавлен старый синтаксис -webkit-gradient для поддержки radial-gradient в iOS 6
 */
.divider-top {
    height: 50px;
    background: -webkit-gradient(radial, 50% 0, 0, 50% 0, 50, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
    background: -webkit-radial-gradient(50% 0%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.divider-bottom {
    height: 50px;
    background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 50, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
    background: -webkit-radial-gradient(50% 100%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(50% 100% at 50% 100%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* #Header */
header {
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    -webkit-box-align: center;
    background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 50, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
    background: -webkit-radial-gradient(50% 100%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(50% 100% at 50% 100%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 0;
    max-width: 100%;
}

header .four.columns {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    width: 220px;
}

header .twelve.columns {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: end;
    -webkit-box-align: center;
    width: 700px;
}

.header-nav {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    list-style: none;
    margin: 0;
}

.header-nav li {
    margin-left: 30px;
}

.header-nav li:first-child {
    margin-left: 0;
}

.header-link {
    color: #333 !important;
    text-decoration: none;
    white-space: nowrap;
}

.header-link:hover {
    color: #0088CC !important;
    text-decoration: none;
}

.header-button {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    padding: 0px 10px;
    height: 21px;
    /* Старый синтаксис градиентов для iOS 6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#37ACED), to(#2E74CE));
    background: -webkit-linear-gradient(top, #37ACED 0%, #2E74CE 100%);
    background: linear-gradient(180deg, #37ACED 0%, #2E74CE 100%);
    border: none;
    -webkit-border-radius: 11px;
    border-radius: 11px;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.2), inset 0px 2px 0px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.2), inset 0px 2px 0px rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
}

.header-button:hover {
    text-decoration: none !important;
}

.header-button img {
    display: block;
}

/* #App Wrapper */
.app-wrapper {
    padding: 20px 15px 15px;
    /* Градиенты для iOS 6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F0F0F0));
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
    min-height: 200px;
    word-wrap: break-word;
    max-width: 100%;
}

.app-wrapper p {
    margin-bottom: 5px;
}

/* Fix: filter: drop-shadow ломает отображение картинок в iOS 6.
 * Заменено на box-shadow с префиксами. */
.app-icon {
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.app-icon-small {
    width: 34px;
    height: 34px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-right: 10px;
}

/* #Apps Grid - КРИТИЧЕСКОЕ ИСПРАВЛЕНИЕ ДЛЯ iOS 6
 * Отказываемся от calc(). Используем % width + % margin.
 * !important нужен, чтобы перебить свойства класса .center, иначе карточки слипнутся в одну колонку.
 */
.apps-grid {
    font-size: 0;
    letter-spacing: 0;
    margin: 0 -1%;
    /* Компенсируем внешние margin карточек */
    text-align: left;
}

.apps-grid .app-wrapper {
    display: inline-block !important;
    vertical-align: top;
    width: 23%;
    margin: 0 1% 20px 1% !important;
    padding: 20px 15px 15px;
    font-size: 14px;
    letter-spacing: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* #Features */
#features .eight.columns {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

#features img {
    max-width: 100%;
    height: auto;
}

/* #Footer */
footer {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    -webkit-box-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0px;
    margin-bottom: 0;
    max-width: 100%;
}

footer .eight.columns {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    width: 460px;
}

footer .eight.columns:last-child {
    -webkit-box-pack: end;
}

footer ul {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    list-style: none;
    margin: 0;
}

footer li {
    margin-left: 30px;
}

footer li:first-child {
    margin-left: 0;
}

/* #Pagination */
.pagination {
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    padding: 10px 0;
}

.pagination-link,
.pagination-current,
.pagination-dots {
    display: inline-block;
    padding: 5px 12px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 20px;
}

.pagination-link {
    color: #0088CC !important;
    background: #F5F5F5;
    border: 1px solid #DDD;
}

.pagination-link:hover {
    background: #E8E8E8;
    text-decoration: none;
}

.pagination-current {
    color: #333;
    /* Градиент для iOS 6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#E8E8E8));
    background: -webkit-linear-gradient(top, #F5F5F5 0%, #E8E8E8 100%);
    background: linear-gradient(to bottom, #F5F5F5 0%, #E8E8E8 100%);
    border: 1px solid #CCC;
    font-weight: bold;
}

.pagination-dots {
    color: #999;
    padding: 5px 5px;
}

/* #Clearing */
.container:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.row:after,
.clearfix:after {
    clear: both;
}

.row,
.clearfix {
    zoom: 1;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* #Media Queries */

/* Large Desktop (1180px and above) - 6 columns */
@media only screen and (min-width: 1180px) {
    .container {
        max-width: 1200px;
        padding: 20px 70px;
    }

    .apps-grid .app-wrapper {
        width: 14.666%;
        margin: 0 1% 20px 1% !important;
    }
}

/* Desktop (1024px to 1179px) - 5 columns */
@media only screen and (min-width: 1024px) and (max-width: 1179px) {
    .container {
        max-width: 1100px;
        padding: 20px 50px;
    }

    .apps-grid .app-wrapper {
        width: 18%;
        margin: 0 1% 20px 1% !important;
    }
}

/* Tablet (960px to 1023px) - 4 columns */
@media only screen and (min-width: 960px) and (max-width: 1023px) {
    .container {
        max-width: 960px;
        padding: 20px 40px;
    }

    .apps-grid .app-wrapper {
        width: 23%;
        margin: 0 1% 20px 1% !important;
    }
}

/* Tablet Portrait (768px to 959px) - 3 columns */
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .container {
        max-width: 768px;
        padding: 20px 30px;
    }

    .container .column,
    .container .columns {
        margin-left: 10px;
        margin-right: 10px;
    }

    .column.alpha,
    .columns.alpha {
        margin-left: 0;
        margin-right: 10px;
    }

    .column.omega,
    .columns.omega {
        margin-right: 0;
        margin-left: 10px;
    }

    .alpha.omega {
        margin-left: 0;
        margin-right: 0;
    }

    .container .one.column,
    .container .one.columns {
        width: 28px;
    }

    .container .two.columns {
        width: 76px;
    }

    .container .three.columns {
        width: 124px;
    }

    .container .four.columns {
        width: 172px;
    }

    .container .five.columns {
        width: 220px;
    }

    .container .six.columns {
        width: 268px;
    }

    .container .seven.columns {
        width: 316px;
    }

    .container .eight.columns {
        width: 364px;
    }

    .container .nine.columns {
        width: 412px;
    }

    .container .ten.columns {
        width: 460px;
    }

    .container .eleven.columns {
        width: 508px;
    }

    .container .twelve.columns {
        width: 556px;
    }

    .container .thirteen.columns {
        width: 604px;
    }

    .container .fourteen.columns {
        width: 652px;
    }

    .container .fifteen.columns {
        width: 700px;
    }

    .container .sixteen.columns {
        width: 748px;
    }

    .container .one-third.column {
        width: 236px;
    }

    .container .two-thirds.column {
        width: 492px;
    }

    .container .offset-by-one {
        padding-left: 48px;
    }

    .container .offset-by-two {
        padding-left: 96px;
    }

    .container .offset-by-three {
        padding-left: 144px;
    }

    .container .offset-by-four {
        padding-left: 192px;
    }

    .container .offset-by-five {
        padding-left: 240px;
    }

    .container .offset-by-six {
        padding-left: 288px;
    }

    .container .offset-by-seven {
        padding-left: 336px;
    }

    .container .offset-by-eight {
        padding-left: 384px;
    }

    .container .offset-by-nine {
        padding-left: 432px;
    }

    .container .offset-by-ten {
        padding-left: 480px;
    }

    .container .offset-by-eleven {
        padding-left: 528px;
    }

    .container .offset-by-twelve {
        padding-left: 576px;
    }

    .container .offset-by-thirteen {
        padding-left: 624px;
    }

    .container .offset-by-fourteen {
        padding-left: 672px;
    }

    .container .offset-by-fifteen {
        padding-left: 720px;
    }

    header .twelve.columns {
        -webkit-box-pack: end;
    }

    header .four.columns {
        width: 172px;
    }

    header .twelve.columns {
        width: 556px;
    }

    footer .eight.columns {
        width: 364px;
    }

    .apps-grid .app-wrapper {
        width: 31.333%;
        margin: 0 1% 20px 1% !important;
    }
}

/* All Mobile Sizes (Base mobile overrides) */
@media only screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 20px 15px;
    }

    .container .columns,
    .container .column {
        margin: 0;
        width: 100% !important;
        float: none;
        display: block;
        max-width: 100%;
    }

    .container .one.column,
    .container .one.columns,
    .container .two.columns,
    .container .three.columns,
    .container .four.columns,
    .container .five.columns,
    .container .six.columns,
    .container .seven.columns,
    .container .eight.columns,
    .container .nine.columns,
    .container .ten.columns,
    .container .eleven.columns,
    .container .twelve.columns,
    .container .thirteen.columns,
    .container .fourteen.columns,
    .container .fifteen.columns,
    .container .sixteen.columns,
    .container .one-third.column,
    .container .two-thirds.column {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        float: none;
        display: block;
        max-width: 100%;
    }

    .container .offset-by-one,
    .container .offset-by-two,
    .container .offset-by-three,
    .container .offset-by-four,
    .container .offset-by-five,
    .container .offset-by-six,
    .container .offset-by-seven,
    .container .offset-by-eight,
    .container .offset-by-nine,
    .container .offset-by-ten,
    .container .offset-by-eleven,
    .container .offset-by-twelve,
    .container .offset-by-thirteen,
    .container .offset-by-fourteen,
    .container .offset-by-fifteen {
        padding-left: 0;
    }

    header {
        height: auto;
        display: block;
        padding: 10px 0;
        max-width: 100%;
    }

    header .four.columns,
    header .twelve.columns {
        width: 100% !important;
        display: block;
        text-align: center;
        margin: 0 !important;
        max-width: 100%;
    }

    header .four.columns {
        margin-bottom: 10px !important;
    }

    header .twelve.columns {
        -webkit-box-pack: center;
        display: block;
    }

    .header-nav {
        display: block;
        text-align: center;
        max-width: 100%;
    }

    .header-nav li {
        display: inline-block;
        margin: 0 10px;
    }

    .header-nav li:first-child {
        margin-left: 10px;
    }

    .header-link {
        white-space: normal;
    }

    .header-button {
        display: inline-block;
        margin-top: 5px;
    }

    .apps-grid {
        font-size: 0;
        letter-spacing: 0;
        margin: 0;
        text-align: left;
    }

    .apps-grid .app-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding-left: 0;
        padding-right: 0;
        font-size: 14px;
        letter-spacing: normal;
    }

    #features .eight.columns {
        width: 100% !important;
        float: none;
        display: block;
        margin: 0 !important;
        max-width: 100%;
    }

    #features .eight.columns:first-child {
        margin-bottom: 20px !important;
    }

    footer {
        display: block;
        text-align: center;
        max-width: 100%;
    }

    footer .eight.columns {
        width: 100% !important;
        display: block;
        float: none;
        margin: 0 !important;
        text-align: center;
        max-width: 100%;
    }

    footer .eight.columns:last-child {
        margin-top: 10px !important;
    }

    footer ul {
        display: block;
        text-align: center;
    }

    footer li {
        display: inline-block;
        margin: 0 10px !important;
    }

    footer li:first-child {
        margin-left: 10px !important;
    }
}

/* Mobile Landscape (480px - 767px) - 3 columns */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 20px 15px;
    }

    .apps-grid {
        margin: 0 -1%;
    }

    .apps-grid .app-wrapper {
        display: inline-block !important;
        vertical-align: top;
        width: 31.333%;
        margin: 0 1% 10px 1% !important;
        padding: 20px 15px 15px;
        font-size: 14px;
        letter-spacing: normal;
        min-height: 180px;
    }
}

/* Mobile Portrait (320px - 479px) - 2 columns */
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .container {
        max-width: 100%;
        padding: 15px 10px;
    }

    .apps-grid {
        margin: 0 -1%;
    }

    .apps-grid .app-wrapper {
        display: inline-block !important;
        vertical-align: top;
        width: 48%;
        margin: 0 1% 10px 1% !important;
        padding: 15px 10px;
        font-size: 14px;
        letter-spacing: normal;
        min-height: 170px;
    }

    .app-icon {
        width: 50px;
        height: 50px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    p {
        font-size: 13px;
        line-height: 20px;
    }

    h1 {
        font-size: 32px;
        line-height: 36px;
    }

    h2 {
        font-size: 24px;
        line-height: 28px;
    }

    h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 28px;
    }

    .pagination-link,
    .pagination-current,
    .pagination-dots {
        padding: 3px 8px;
        font-size: 12px;
        line-height: 16px;
    }
}

/* Very small screens (less than 320px) - 1 column */
@media only screen and (max-width: 319px) {
    .container {
        padding: 10px 5px;
    }

    .apps-grid {
        margin: 0;
    }

    .apps-grid .app-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 0 0 10px 0 !important;
        padding: 10px 5px;
        min-height: 150px;
    }

    .app-icon {
        width: 40px;
        height: 40px;
    }
}