:root {
    --f_lato: 'Lato', sans-serif;
    --f_asap: 'Asap', sans-serif;
    --f_roboto: 'Roboto', sans-serif;
    --f_lucida: 'Lucida Console', Monaco, monospace;
    --f_courier: 'Courier New', Courier, monospace;

    --c_yellow: #ffe01b;
    --c_yellow_light: #fff9cf;
    --c_turquoise: #134a85;
    --c_turquoise_light: #4e75b5;
    --c_gray: #d3d3d3;
    --c_text: #000000;
    --c_link: #134a85;
    --c_link_hover: #007c89;
    --c_bg: #ffffff;
    --c_bg_hover: #e8f0fe;
    --c_error_red: #da0000;
    --c_success_green: #bae622;
    --c_facebook: #4267b2;
    --c_facebook_hover: #1b3363;
    --c_discord: #7289DA;
    --c_discord_hover: #4458a1;

    --header_height: 124px;
    --header_height_mobile: 70px;
    --scrollbar_width: 12px; /* overwrite in scroll helpers */
    --infobar_height: 0px;
}

/* This will work on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #222 #f0f0f0;
}

/* Targtes on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #f0f0f0;
}

*::-webkit-scrollbar-thumb {
    background-color: #222;
    border-radius: 20px;
    border: 3px solid #f0f0f0;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    outline: 0;
}

html {
    background-color: #ffffff;
    color: #000000;
}

body {
    width: 100%;
    font-family: var(--f_lato);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
    position: relative;
}

body:not(.no-header):before {
    content: '';
    display: block;
    box-sizing: border-box;
    padding: calc(var(--header_height) + var(--infobar_height)) 0 0 0;
    margin: 0;
    background-color: var(--c_yellow);
}
/* mobile header */
body.mobile-padding:not(.no-header):before {
    padding: calc(var(--header_height_mobile) + var(--infobar_height)) 0 0 0;
}

body.overflow-hidden {
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: scroll;
}

body.scroll-lock {
    overflow: hidden;
    border-right: var(--scrollbar_width) solid transparent;
}

body.scroll-lock .pt-menu-desktop,
body.scroll-lock .simple-menu {
    width: calc(100vw - var(--scrollbar_width));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f_asap);
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

input,
button {
    font-family: var(--f_asap);
}

input[type='text'],
input[type='password'] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 42px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding: 6px 6px 6px 15px;
    margin: 0;
    border: 3px solid #000000;
    transition: all 0.2s ease-out;
}

input[type='text']::-webkit-input-placeholder {
    color: #b8b8b8;
}
input[type='text']::-moz-placeholder {
    color: #b8b8b8;
}
input[type='text']:-ms-input-placeholder {
    color: #b8b8b8;
}
input[type='text']:-moz-placeholder {
    color: #b8b8b8;
}
input[type='text']:focus {
    background-color: var(--c_yellow_light);
}

input[type='text']:focus::-webkit-input-placeholder {
    color: #808080;
}
input[type='text']:focus::-moz-placeholder {
    color: #808080;
}
input[type='text']:focus:-ms-input-placeholder {
    color: #808080;
}
input[type='text']:focus:-moz-placeholder {
    color: #808080;
}

input[type='password']::-webkit-input-placeholder {
    color: #b8b8b8;
}
input[type='password']::-moz-placeholder {
    color: #b8b8b8;
}
input[type='password']:-ms-input-placeholder {
    color: #b8b8b8;
}
input[type='password']:-moz-placeholder {
    color: #b8b8b8;
}
input[type='password']:focus {
    background-color: var(--c_yellow_light);
}

input[type='password']:focus::-webkit-input-placeholder {
    color: #808080;
}
input[type='password']:focus::-moz-placeholder {
    color: #808080;
}
input[type='password']:focus:-ms-input-placeholder {
    color: #808080;
}
input[type='password']:focus:-moz-placeholder {
    color: #808080;
}

/* autocomplete styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--c_yellow_light) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* User disabled styles */
.user-disabled {
    transition: all 0.3s ease-out;
    filter: grayscale(1);
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    user-select: none;
}
/* fix for algolia autocomplete detached mode after cancel, prevent jump to end of page */
.fixed {
    position: fixed!important;
    opacity: 0;
    height: 0;
}

/* master wrapper
--------------------------------------------------- */
.body-master {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: relative;
    left: 0;
    top: 0;
    transition: transform 0.2s linear;
    /* this overflow crash all child sticky position  */
    /* overflow: hidden; */
}

.body-master.open {
    transform: translateX(-240px);
    pointer-events: none;
    overflow: hidden;
    filter: grayscale(1);
    opacity: .5;
}

/* footer */
.pt-footer {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: var(--c_yellow);
}

.pt-footer .st-bleed {
    display: block;
    box-sizing: border-box;
    padding: 0 30px 0 30px;
    margin: 0;
    position: relative;
}

.pt-footer .st-cnt {
    display: block;
    box-sizing: border-box;
    max-width: 1260px;
    padding: 60px 0 60px 0;
    margin: 0 auto;
}

.pt-footer .st-cnt .logo {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 40px 0;
}

.pt-footer .st-cnt .logo:last-child {
    margin: 0;
}

.pt-footer .st-cnt .logo a {
    display: block;
    box-sizing: border-box;
    width: 270px;
    height: 54px;
    line-height: 0;
    padding: 0;
    margin: 0 auto;
}

.pt-footer .st-cnt .logo a svg {
    width: 100%;
    height: 100%;
    fill: #000000;
}

@media only screen and (max-width: 480px) {
    .pt-footer .st-bleed {
        padding: 0 20px 0 20px;
    }
}

.pt-footer .st-cnt .links-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0;
    margin: 0 -15px 0 -15px;
}

.pt-footer .st-cnt .links-cols .col {
    display: block;
    box-sizing: border-box;
    padding: 0 0 40px 0;
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .inner {
    display: block;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0;
    margin: 0 0 20px 0;
}

.pt-footer .st-cnt .links-cols .col .head:last-child {
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .head .image {
    align-self: center;
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
}

.pt-footer .st-cnt .links-cols .col .head .image.icon-package {
    width: 60px;
    height: 40px;
    margin: 0 5px 0 0;
    background-image: url('/images/svg/footer/package.svg');
    background-size: cover;
}

.pt-footer .st-cnt .links-cols .col .head .image.icon-basket {
    width: 60px;
    height: 40px;
    margin: 0;
    background-image: url('/images/svg/footer/basket.svg');
    background-size: cover;
}

.pt-footer .st-cnt .links-cols .col .head .image.icon-loot {
    width: 60px;
    height: 40px;
    margin: 0 10px 0 0;
    background-image: url('/images/svg/footer/loot.svg');
    background-size: cover;
}

.pt-footer .st-cnt .links-cols .col .head .image.icon-center {
    width: 60px;
    height: 40px;
    margin: 0 5px 0 0;
    background-image: url('/images/svg/footer/center.svg');
    background-size: cover;
}

.pt-footer .st-cnt .links-cols .col .head .name {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .head .name .text {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .links {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pt-footer .st-cnt .links-cols .col .links li {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0 0 10px 0;
}

.pt-footer .st-cnt .links-cols .col .links li:last-child {
    margin: 0;
}

.pt-footer .st-cnt .links-cols .col .links li a {
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease-out;
}

.pt-footer .st-cnt .links-cols .col .links li a:hover {
    color: var(--c_link_hover);
}

@media only screen and (max-width: 1240px) {
    .pt-footer .st-cnt .links-cols {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .pt-footer .st-cnt .links-cols .col {
        width: 25%;
    }
}

@media only screen and (max-width: 960px) {
    .pt-footer .st-cnt .links-cols .col {
        width: 33%;
    }
}

@media only screen and (max-width: 768px) {
    .pt-footer .st-cnt .links-cols .col:nth-child(1) {
        width: 45%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(2) {
        width: 55%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(3) {
        width: 45%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(4) {
        width: 55%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(5) {
        width: 45%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(6) {
        width: 55%;
    }
}

@media only screen and (max-width: 480px) {

    .pt-footer .st-cnt .links-cols {
        justify-content: center;
    }

    .pt-footer .st-cnt .links-cols .col:nth-child(1) {
        width: 100%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(2) {
        width: 100%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(3) {
        width: 100%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(4) {
        width: 100%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(5) {
        width: 100%;
    }
    .pt-footer .st-cnt .links-cols .col:nth-child(6) {
        width: 100%;
    }

    .pt-footer .st-cnt .links-cols .col .head {
        justify-content: center;
        min-height: 0;
    }

    .pt-footer .st-cnt .links-cols .col .links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pt-footer .st-cnt .links-cols .col .links li {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 360px) {
    .pt-footer .st-cnt .logo a {
        width: 225px;
        height: 45px;
    }
}

.pt-footer .st-cnt .services {
    display: block;
    box-sizing: border-box;
    max-width: 720px;
    padding: 0;
    margin: 0 0 20px 0;
}

.pt-footer .st-cnt .services:last-child {
    margin: 0;
}

.pt-footer .st-cnt .services .list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 10px 0 0 0;
    margin: 0;
    border-top: 2px solid #000;
}

.pt-footer .st-cnt .services .list .item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0 25px 0 0;
}

.pt-footer .st-cnt .services .list .item:last-child {
    margin: 0;
}

.pt-footer .st-cnt .services .list .item .title {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .services .list .item .image {
    display: block;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pt-footer .st-cnt .services .list .item .image.icon-nerdosia {
    background-image: url('/images/svg/common/nh/services/nerdosia.svg');
}

.pt-footer .st-cnt .services .list .item .image.icon-lab {
    background-image: url('/images/svg/common/nh/services/nerdslab.svg');
}

.pt-footer .st-cnt .services .list .item .image.icon-gg {
    background-image: url('/images/svg/common/nh/services/gg_academy.svg');
}

.pt-footer .st-cnt .services .list .item .name {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    color: #000;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .services .list .item .name a {
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    padding: 2px 0 0 0;
    margin: 0;
}

.pt-footer .st-cnt .services .list .item .name a:hover {
    color: var(--c_link_hover);
}

@media only screen and (max-width: 640px) {

    .pt-footer .st-cnt .services {
        margin: 0 0 10px 0;
    }

    .pt-footer .st-cnt .services .list {
        flex-wrap: wrap;
    }

    .pt-footer .st-cnt .services .list .item {
        padding: 0 0 10px 0;
    }

    .pt-footer .st-cnt .services .list .item:nth-child(1) {
        width: 100%;
        margin: 0;
    }
}

.pt-footer .st-cnt .copyright {
    display: block;
    box-sizing: border-box;
    max-width: 1024px;
    padding: 0;
    margin: 0 0 20px 0;
}

.pt-footer .st-cnt .copyright:last-child {
    margin: 0;
}

.pt-footer .st-cnt .copyright p {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_lato);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0 0 10px 0;
}

.pt-footer .st-cnt .copyright p:last-child {
    margin: 0;
}

.pt-footer .st-cnt .social {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .social:last-child {
    margin: 0;
}

.pt-footer .st-cnt .social .list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.pt-footer .st-cnt .social .list .item {
    display: block;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    line-height: 0;
    padding: 0;
    margin: 0 16px 0 0;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pt-footer .st-cnt .social .list .item:last-child {
    margin: 0;
}

.pt-footer .st-cnt .social .list .item svg {
    width: 100%;
    height: 100%;
    fill: #000000;
    transition: all 0.2s ease-out;
}

.pt-footer .st-cnt .social .list .item.touch svg,
.notouch .pt-footer .st-cnt .social .list .item:hover svg {
    fill: var(--c_link_hover);
    transform: scale(0.95);
}

/* developer note */
.developer-note {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    min-height: 90px;
    font-family: var(--f_lucida);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    color: #000000;
    padding: 35px 15px 15px 70px;
    margin: 0 0 20px 0;
    border: 1px solid #c5c5c5;
    background-image: url('/images/svg/common/dizzy_blue_dead.svg');
    background-repeat: no-repeat;
    background-position: 15px 35px;
    background-size: 40px 40px;
    position: relative;
    background-color: #fdfdfd;
}

.developer-note:last-child {
    margin: 0;
}

.developer-note:before {
    content: 'Developer note';
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    text-align: left;
    text-transform: uppercase;
    color: #000000;
    padding: 5px 12px;
    margin: 0;
    background-color: #e4e4e4;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px;
}

/* default conent */
.bk-def-cnt {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_roboto);
    font-size:16px;
    font-weight:400;
    line-height:150%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0;
}

.bk-def-cnt h1 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:42px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h1:last-child {
    margin:0;
}

.bk-def-cnt h2 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:38px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h2:last-child {
    margin:0;
}

.bk-def-cnt h3 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:34px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h3:last-child {
    margin:0;
}

.bk-def-cnt h4 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:30px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h4:last-child {
    margin:0;
}

.bk-def-cnt h5 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:26px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h5:last-child {
    margin:0;
}

.bk-def-cnt h6 {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:22px;
    font-weight:700;
    line-height:136%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0 0 15px 0;
}

.bk-def-cnt h6:last-child {
    margin:0;
}

.bk-def-cnt :is(h1, h2, h3, h4, h5, h6).uppercase {
    text-transform: uppercase;
}

.bk-def-cnt :is(h1, h2, h3, h4, h5, h6).left {
    text-align: left;
}

.bk-def-cnt :is(h1, h2, h3, h4, h5, h6).right {
    text-align: right;
}

.bk-def-cnt :is(h1, h2, h3, h4, h5, h6).center {
    text-align: center;
}

.bk-def-cnt p {
    display:block;
    box-sizing:border-box;
    font-size:inherit;
    font-weight: inherit;
    line-height: inherit;
    color:inherit;
    padding:0;
    margin:0 0 24px 0;
}

.bk-def-cnt p:last-child {
    margin:0;
}

.bk-def-cnt p.uppercase {
    text-transform: uppercase;
}

.bk-def-cnt p strong {
    color:#000;
}

.bk-def-cnt p em {
    font-style: italic;
}

.bk-def-cnt a {
    color: var(--c_link);
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.bk-def-cnt a:hover {
    color:#890101;
}

.bk-def-cnt > blockquote {
    display:block;
    box-sizing:border-box;
    padding:32px 32px;
    margin:36px 0 36px 0;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}

.bk-def-cnt > blockquote:last-child {
    margin:0;
}

.bk-def-cnt > blockquote > p {
    display:block;
    box-sizing:border-box;
    font-size:20px;
    font-weight:700;
    line-height:150%;
    text-align:left;
    color: #000;
    padding:0;
    margin:0 0 20px 0;
}

.bk-def-cnt > blockquote > p:last-child {
    margin:0;
}

.bk-def-cnt > blockquote > cite {
    display:block;
    box-sizing:border-box;
    font-family: var(--f_asap);
    font-size:14px;
    font-style: italic;
    font-weight: 400;
    line-height:140%;
    text-align:left;
    color:#000;
    padding:0;
    margin:0;
}

.bk-def-cnt > ul {
    display: block;
    box-sizing: border-box;
    padding: 0 0 0 24px;
    margin: 0 0 24px 0;
    list-style-type: disc;
}

.bk-def-cnt > ul:last-child {
    margin: 0;
}

.bk-def-cnt > ul li {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    padding: 0;
    margin: 0 0 4px 0;
}

.bk-def-cnt > ul li:last-child {
    margin:0;
}

.bk-def-cnt .empty-10,
.bk-def-cnt .empty-20 {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.bk-def-cnt .empty-10 { height: 10px; }
.bk-def-cnt .empty-20 { height: 20px; }
.bk-def-cnt .empty-30 { height: 30px; }

.bk-def-cnt hr {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 auto 24px auto;
    background-color: #000;
    position: relative;
}

.bk-def-cnt hr:last-child {
    margin: 0;
}

.bk-def-cnt hr.gray {
    background-color: #999;
}

.bk-def-cnt hr.half {
    width: 50%;
}

.bk-def-cnt hr.third {
    width: 33%;
}

.bk-def-cnt hr.icon-nerdosia {
    overflow: visible;
}

.bk-def-cnt hr.icon-nerdosia:before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 30px;
    padding: 0;
    margin: 0;
    background-image: url(/images/svg/common/nh/services/nerdosia.svg);
    background-size: 30px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media only screen and (max-width: 960px) {

    .bk-def-cnt {
        font-size:15px;
    }

    .bk-def-cnt h1 { font-size:36px;	}
    .bk-def-cnt h2 { font-size:32px;	}
    .bk-def-cnt h3 { font-size:28px;	}
    .bk-def-cnt h4 { font-size:24px;	}
    .bk-def-cnt h5 { font-size:22px;	}
    .bk-def-cnt h6 { font-size:20px;	}
}

@media only screen and (max-width: 768px) {

    .bk-def-cnt h1 { font-size:34px;	}
    .bk-def-cnt h2 { font-size:30px;	}
    .bk-def-cnt h3 { font-size:26px;	}
    .bk-def-cnt h4 { font-size:22px;	}
    .bk-def-cnt h5 { font-size:20px;	}
    .bk-def-cnt h6 { font-size:18px;	}

    .bk-def-cnt > blockquote {
        padding:24px 16px;
    }

    .bk-def-cnt > blockquote > p {
        font-size:22px;
    }
}

@media only screen and (max-width: 480px) {

    .bk-def-cnt {
        font-size:14px;
    }

    .bk-def-cnt h1 { font-size:30px; margin: 0 0 10px 0; }
    .bk-def-cnt h2 { font-size:26px; margin: 0 0 10px 0; }
    .bk-def-cnt h3 { font-size:24px; margin: 0 0 10px 0; }
    .bk-def-cnt h4 { font-size:22px; margin: 0 0 10px 0; }
    .bk-def-cnt h5 { font-size:20px; margin: 0 0 10px 0; }
    .bk-def-cnt h6 { font-size:18px; margin: 0 0 10px 0; }

    .bk-def-cnt > blockquote {
        padding:20px 20px;
    }

    .bk-def-cnt > blockquote > p {
        font-size:18px;
    }
}

@media only screen and (max-width: 360px) {

    .bk-def-cnt h1 { font-size:26px;	}
    .bk-def-cnt h2 { font-size:24px;	}
    .bk-def-cnt h3 { font-size:22px;	}
    .bk-def-cnt h4 { font-size:20px;	}
    .bk-def-cnt h5 { font-size:18px;	}
    .bk-def-cnt h6 { font-size:16px;	}
}

.bk-def-cnt .list-term {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 24px 0;
}

.bk-def-cnt .list-term:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 24px 0;
}

.bk-def-cnt .list-term .term:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-number {
    flex: 0 0 48px;
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0 16px 0 0;
}

.bk-def-cnt .list-term .term .t-number.lucida {
    font-family: var(--f_lucida);
    font-size: 12px;
}

.bk-def-cnt .list-term .term .t-cnt {
    flex: 1 1 auto;
    display: block;
    box-sizing: border-box;
    font-size: 15px;
    padding: 0;
    margin: 0;
}

.bk-def-cnt .list-term .term .t-cnt ol {
    display: block;
    box-sizing: border-box;
    padding: 0 0 0 24px;
    margin: 0 0 24px 0;
}

.bk-def-cnt .list-term .term .t-cnt ol:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-cnt ol.lower-latin {
    list-style-type: lower-latin;
}

.bk-def-cnt .list-term .term .t-cnt ol li {
    display: list-item;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
}

.bk-def-cnt .list-term .term .t-cnt ol li:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-cnt ul {
    display: block;
    box-sizing: border-box;
    padding: 0 0 0 24px;
    margin: 0 0 24px 0;
}

.bk-def-cnt .list-term .term .t-cnt ul:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-cnt ul.disc {
    list-style-type: disc;
}

.bk-def-cnt .list-term .term .t-cnt ul li {
    display: list-item;
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 10px 0;
}

.bk-def-cnt .list-term .term .t-cnt ul li:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-cnt ul li p {
    margin: 0 0 10px 0;
}

.bk-def-cnt .list-term .term .t-cnt ul li p:last-child {
    margin: 0;
}

.bk-def-cnt .list-term .term .t-desktop {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.bk-def-cnt .list-term .term .t-mobile {
    display: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 1024px) {

    .bk-def-cnt .list-term .term .t-desktop {
        display: none;
    }

    .bk-def-cnt .list-term .term .t-mobile {
        display: block;
    }
}

@media only screen and (max-width: 480px) {

    .bk-def-cnt .list-term .term .t-number {
        flex: 0 0 36px;
        margin: 0 12px 0 0;
    }

    .bk-def-cnt .list-term .term .t-cnt {
        font-size: 14px;
    }
}

/* global pagination */
nav.nerd-pagination {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

nav.nerd-pagination .cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav.nerd-pagination .cnt li {
    display: inline-block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

nav.nerd-pagination .cnt li a[rel="prev"],
nav.nerd-pagination .cnt li a[rel="next"] {
    display: block;
    box-sizing: border-box;
    width:30px;
    height:30px;
    color: transparent;
    padding: 0;
    margin: 0;
    background-color: #f0f0f0;
    transition: all 0.2s ease-out;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    user-select:none;
}

nav.nerd-pagination .cnt li a:not([rel="prev"]):not([rel="next"]),
nav.nerd-pagination .cnt li.active span {
    display: block;
    box-sizing: border-box;
    height: 30px;
    width: 30px;
    font-family: var(--f_roboto);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #404040;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    background-color: #fff;
    transition: all 0.2s ease-out;
    text-decoration: none;
}

nav.nerd-pagination .cnt li a:not([rel="prev"]):not([rel="next"]):hover {
    background-color: #eee;
}

nav.nerd-pagination .cnt li.active span {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

nav.nerd-pagination .cnt li {
    margin: 0 4px 0 0;
}

nav.nerd-pagination .cnt li:last-child {
    margin: 0;
}

nav.nerd-pagination .cnt li a[rel="prev"] {
    margin:0 5px 0 0;
}
nav.nerd-pagination .cnt li a[rel="next"] {
    margin:0 0 0 5px;
}

nav.nerd-pagination .cnt li a[rel="prev"]:hover,
nav.nerd-pagination .cnt li a[rel="next"]:hover {
    background-color: #e0e0e0;
}

nav.nerd-pagination .cnt li a[rel="prev"]:after,
nav.nerd-pagination .cnt li a[rel="next"]:after {
    content:'';
    display: block;
    box-sizing: border-box;
    width:20px;
    height:20px;
    padding: 0;
    margin:0;
    background-color:transparent;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:14px 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-out;
    opacity: 0.8;
}

nav.nerd-pagination .cnt li a[rel="prev"]:after {
    background-image:url('/images/svg/common/base/chevron_left.svg');
}

nav.nerd-pagination .cnt li a[rel="next"]:after {
    background-image:url('/images/svg/common/base/chevron_right.svg');
}

nav.nerd-pagination .cnt li a[rel="prev"]:hover:after,
nav.nerd-pagination .cnt li a[rel="next"]:hover:after {
    opacity: 1.0;
}

nav.nerd-pagination .cnt li.separator span {
    display: block;
    box-sizing: border-box;
    height: 30px;
    font-family: var(--f_roboto);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #404040;
    padding: 0 5px;
    margin: 0;
    text-decoration: none;
}

nav.nerd-pagination .cnt li.disabled {
    display: none;
}
