@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('/assets/font/SamsungSharpSans-Bold.woff2') format('woff2'),
    url('/assets/font/SamsungSharpSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Samsung Sharp Sans';
    src: url('/assets/font/SamsungSharpSans-Medium.woff2') format('woff2'),
    url('/assets/font/SamsungSharpSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

*:hover {
    transition: all 0.2s ease-in-out;
}

*:before {
    transition: all 0.2s ease-in-out;
}

*:after {
    transition: all 0.2s ease-in-out;
}

.clearfix {
    overflow: auto;
    float: left;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.fl {
    float: left;
    width: 100%;
}

.w100 {
    width: 100% !important;
}

.bg-size-100 {
    background-size: 100% !important;
    -moz-background-size: 100% !important;
    -webkit-background-size: 100% !important;
}

.bg-size-cover {
    background-size: cover !important;
    -moz-background-size: cover !important;
    -webkit-background-size: cover !important;
}

a {
    text-decoration: none;
}

body, html {
    font-family: "Samsung Sharp Sans", serif;
    background-color: #ffffff;
    color: #2e3032;
    float: left;
    width: 100%;
    letter-spacing: .5px;
    padding: 0;
    margin: 0;
}

body.dark, html.dark {
    background-color: #212529 !important; /* shark */
    color: #f4f4f6 !important; /* athens-gray */
}

.divider {
    float: left;
    height: 1px;
    width: 100%;
    background: #00000024;
    margin-bottom: 32px;
}

.divider.dark {
    background: rgba(255, 255, 255, 0.14);
}

/* Button */
.btn-filled {
    width: auto;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-radius: 8px;
    background: #ebebeb;
    box-shadow: 0 3px 2px 0px rgb(51 51 51 / 10%);
    color: #44505d;
}

.btn-filled:hover {
    background-color: #f3bc34 !important;
    color: #000;
}

.btn-filled.dark {
    background-color: #383b3e;
    color: #fff;
}

.btn-filled.dark:hover {
    color: #383b3e;
}

.btn-outlined {
    width: auto;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-radius: 8px;
    background: transparent;
    color: #44505d;
}

.btn-icon {
    width: auto;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #8a2be3;
    color: #8a2be3;
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.btn-icon:hover {
    background-color: #8a2be3;
    color: #ffffff !important;
}

.btn-icon i {
    font-size: 200%;
    margin-right: 8px;
}

.btn-icon.dark {
    border-color: #f3bc34 !important;
}

.btn-icon.dark:hover {
    background-color: #f3bc34 !important;
    color: #212529 !important;
}

/* Screen */
.screen {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.screen.flex-start {
    justify-content: flex-start !important;
}

/* Page */
.page {
    width: 1524px;
}

.page .left {
    float: left;
    width: calc(27% - 50px);
}

.page .spacer {
    float: left;
    width: 100px;
}

.page .right {
    float: left;
    width: calc(73% - 50px);
}

/* Header */
.header {
    float: left;
    margin-top: 64px;
    width: 100%;
}

.header .top {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header .logo {
    float: left;
    width: 110px;
    margin: 10px;
}

.header .logo img {
    width: 100%;
}

.header .name {
    float: left;
    width: calc(100% - 130px);
}

.header .bottom-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 8px;
}

.header .bottom-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .bottom-menu ul li {
    float: left;
    margin-right: 16px;
}

.header .bottom-menu ul li a {
    color: #8a2be3;
    font-weight: bold;
    padding: 8px;
    border-radius: 12px;
}

.header .bottom-menu ul li a:hover, .header .bottom-menu ul li a.active {
    background-color: #8a2be3;
    color: #ffffff;
}

.header h2 {
    font-size: 16px;
}

.header.dark .bottom-menu ul li a {
    color: #f3bc34;
}

.header.dark .bottom-menu ul li a:hover, .header.dark .bottom-menu ul li a.active {
    background-color: #f3bc34;
    color: #212529;
}

/* Light-Dark Mode */
.lightDarkMode {
    cursor: pointer;
    float: right;
}

.lightDarkMode i {
    font-size: 2rem;
}

.lightDarkMode i.dark {
    color: white;
}

/* Columns */
.columns {
    display: inline-flex;
    width: 100%;
}

/* Section */
section {
    float: left;
    width: 100%;
}

section .section-title {
    margin-bottom: 16px;
    font-weight: bold;
}

section.section-body {
    float: left;
    width: 100%;
}

section.sub-page {
    min-height: 540px;
    padding-bottom: 60px;
}

section.sub-page .section-body a {
    color: #8a2be3;
    font-weight: bold;
}

section.sub-page .section-body ul li {
    float: left;
    width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
}

section.sub-page .section-body .page-title {
    font-size: 16px;
}

section.sub-page .section-body .small {
    font-size: 70%;
    float: left;
    width: 100%;
}

section .section-footer {
    float: left;
    width: 100%;
    text-align: center;
}

section.sub-page.dark a {
    color: #f3bc34;
}


/* Underline */
.underline {
    position: relative;
}

.underline::after {
    content: "";
    position: absolute;
    bottom: -0.125rem;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.75rem;
    z-index: 0;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/664131/underline.svg");
    background-repeat: no-repeat;
    background-size: auto;
}

.underline::after {
    bottom: -0.2rem;
    height: 0.5rem;
    left: -0.25rem;
    right: -0.25rem;
}

/* Medium Article */
.medium-articles {
    float: left;
    width: 100%;
}

.medium-articles ul {
    padding-left: 0;
    float: left;
}

.medium-articles ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
    counter-increment: number;
}

.medium-articles ul li:last-child {
    margin-bottom: 0;
}

.medium-articles ul li .title {
    font-size: 14px;
    font-weight: bold;
}

.medium-articles ul li .summary {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
    opacity: .7;
}

.medium-articles ul li:before {
    content: "0" counter(number) " ";
    color: #212529;
    font-size: 14px;
    margin-right: 10px;
    background: #f4f4f6;
    padding: 8px;
    border-radius: 8px;
}

.medium-articles ul li:hover:before {
    color: #ffffff;
    background: #f3bc34;
}

.medium-articles ul li div {
    display: flex;
    flex-direction: column;
}

.medium-articles ul li div a {
    color: #44505d;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.medium-articles ul li div a:hover {
    color: #000000;
}

.medium-articles ul li div span {
    color: #44505d;
    opacity: .7;
    font-size: 13px;
    margin-top: 5px;
}

.medium-articles.dark ul li:before {
    color: #f4f4f6; /* athens-gray */
    background: #414447;
}

.medium-articles.dark ul li:hover:before {
    color: #414447; /* athens-gray */
    background: #f3bc34;
}

.medium-articles.dark ul li div a {
    color: #c3c3c3;
}

.medium-articles.dark ul li div a:hover {
    color: #ffffff;
}

.medium-articles.dark ul li .summary {
    color: #c3c3c3;
    opacity: .7;
}

/* Android Apps */
.android-apps .section-body {
    float: left;
    display: inline;
    column-count: 2;
}

.android-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
    width: 100%;
    margin-bottom: 16px;
    background: #f3f3f3;
    border-radius: 16px;
    box-shadow: 0 3px 2px 0px rgb(51 51 51 / 10%);
    overflow: hidden;
}

.android-app a {
    color: #2e3032;
}

.android-app a:hover {
    scale: 1.07;
}

.android-app img.cover-image {
    float: left;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
}

.android-app .details {
    align-items: center;
    display: flex;
    float: left;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    flex-direction: row;
    background-color: #ebebeb;
}

.android-app .details div:first-child {
    padding: 0;
}

.android-app .details div:last-child {
    border-right: 0;
}

.android-app .details div {
    width: 100%;
    position: relative;
    float: left;
    text-align: center;
    border-right: 1px solid #c3c3c3;
    font-size: 12px;
}

.android-app .details div strong {
    font-size: 14px;
}

.android-app .logo-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px;
}

.android-app .logo-image .name {
    float: left;
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-top: 8px;
}

.android-app .logo-image img {
    border-radius: 8px;
    width: 40px;
}

.android-app .details .star-rating {

}

.android-app .details .comment-count {
}

.android-app .details .download-count {
}

.android-app.dark {
    background-color: #424447;
}

.android-app.dark .details {
    background-color: #383b3e;
}

.android-app.dark a {
    color: #c3c3c3;
}

.android-app.dark a:hover {
    color: #ffffff;
}


/* Web Apps */
.web-app {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 3px 10px 5px rgb(51 51 51 / 9%);
    padding: 16px;
    border-radius: 16px;
}

.web-app .logo {
    float: left;
    width: 120px;
    height: 120px;
    margin-right: 16px;
    background-color: #f4f4f6;
    background-size: 90%;
    -moz-background-size: 90%;
    -webkit-background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
}

.web-app .properties {
    float: left;
    width: calc(100% - 136px);
}

.web-app .properties div {
    float: left;
    width: 100%;
}

.web-app .properties .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.web-app .properties .description {
    font-size: 12px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.web-app .properties .url {
    width: auto;
}

.web-app .properties .url a {
    color: #8a2be3;
    font-weight: bold;
    font-size: 13px;
}

.web-app .properties .url:hover {
    scale: 1.07;
}

.web-app.dark {
    background-color: #424447;
}

.web-app.dark .properties .url a {
    color: #f3bc34;
}


/* Books */
section.books {
}

section.books .section-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

section.books .section-body img {
    width: 230px;
    max-width: 90%;
    float: left;
}

section.books .section-body .description {
    float: left;
    font-size: 12px;
}


/* Youtube Videos */
.youtube-videos .section-body {
    column-count: 3;
    display: inline-flex;
    column-gap: 16px;
}

.youtube-video {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 16px;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
    background: #f3f3f3;
    box-shadow: 0 3px 2px 0px rgb(51 51 51 / 10%);
    overflow: hidden;
}

.youtube-video .logo {
    width: 100%;
    height: 150px;
    margin: 0;
    background-position: center;
}

.youtube-video .properties {
    width: 100%;
    padding: 16px;
}

.youtube-video .properties .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.youtube-video .properties .description {
    font-size: 12px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.youtube-video .properties .url {
    width: auto;
}

.youtube-video .properties .url a {
    color: #8a2be3;
    font-weight: bold;
    font-size: 13px;
}

.youtube-video .properties .url:hover {
    scale: 1.07;
}

.youtube-videos.dark .youtube-video, .youtube-video.dark {
    background-color: #424447;
}

.youtube-videos.dark .youtube-video .properties .url a, .youtube-video.dark .properties .url a {
    color: #f3bc34;
}

/* Media */
@media screen and (max-width: 1720px) {
    body, html {
        height: unset;
    }

    .page {
        width: 90%;
        padding: 32px;
    }
}

@media screen and (max-width: 1024px) {

    .page {
        padding: 0;
    }

    .header {
        margin: 16px 0 !important;
    }

    .header .bottom-menu ul li a {
        float: left;
    }

    .header .bottom-menu {
        justify-content: space-between !important;
    }

    .header .top {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .header .name {
        width: 100% !important;
        text-align: center;
    }

    .columns {
        flex-direction: column;
    }

    .page .left, .page .right {
        width: 100%;
        margin: 16px 0;
    }

    .page .spacer {
        display: none;
    }

    .android-apps .section-body {
        column-count: 1;
    }

    .books .section-body {
        flex-direction: column !important;
    }

    .youtube-videos .section-body {
        display: block !important;
        column-count: 1 !important;
    }

    .youtube-videos .youtube-video {
        margin: 16px 0;
    }

    .properties .url {
        word-break: break-all !important;
    }

    .sm-w100 {
        width: 100% !important;
    }
}