@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@500&display=swap');
@font-face{
    font-family:"Din Bold";
    src:url("fonts/d-din-bold-webfont.woff2") format("woff2"),
        url("fonts/d-din-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/KFOkCnqEu92Fr1Mu51xFIzQXKMnyrYk.woff) format('woff');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url(fonts/pxiDyp8kv8JHgFVrJJLmg1hVFteIYktMqlap.woff) format('woff');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
html, body {
    height: 100%;
}
html{
    letter-spacing: 5px;
}
body{
    font-family: 'Noto Sans HK', sans-serif;
}
a{
    text-decoration: none !important;
}
.num{
    font-family: PTSansRegular, Arial, Helvetica, sans-serif;
}
.money{
    font-family: "Din Bold";
}
time{
    font-size: 1.4rem;
    font-family: 'Roboto';
}
.wrapper {
    min-height: 100%;
}

.company{
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-style: normal;
    font-size: 1.4rem;
}
.badge{
    font-size: 1.6rem;
    line-height: 1.3rem;
    position: absolute;
    margin-left: 10.5rem;
    margin-top: -0.5rem;
    letter-spacing: 0px;
    background-color: #ff392d;
    color: #fff;
    z-index: 1;
}

.loss-money::before{
    content: '(';
}
.loss-money::after{
    content: ')';
}

:focus {
    outline: -webkit-focus-ring-color auto 0;
}

body.light{
    color: black;
}

body.dark {
    background-color: #1D2333;
}

.head-bg{
    position:absolute;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.2)), url(../images/index-bg10.jpg);
    background-position: center 0;
    width:100%;
    height:410px;
    z-index: -1;
}

.header{
    font-weight: bold;
    text-shadow: white 0em 0em 0.2em;
}

.header b.h5{
    padding: 3px 0;
    background-color: #333;
    opacity: 0.8;
    font-size: 1.6rem;
}
.header .settlement{
    padding: 3px 6px 6px 10px;
}

#headshot .b-avatar{
    box-shadow: 0 0 40px rgb(255 255 255);
}

header{
    padding:20px 0 20px 0;
}

header h2,
header .prev,
header .home{
    color: white;
}
header .prev,
header .home{
    font-size: 2rem;
    line-height: 1;
}


.summary{
    border: solid 1px #ddd;
    box-shadow: 0 2px 10px grey;
}
.summary .text-info b{
    font-size: 2rem;
}

.icon,
.icon:hover{
    font-size: 6rem;
    text-decoration: none;
    color: #140c61;
    mask-image: -webkit-gradient(linear, left top, right bottom, from(rgb(11, 12, 59)), color-stop(100%, rgba(11, 12, 59, 50%)), to(rgba(11, 12, 59, 0)));
    -webkit-mask-image: -webkit-gradient(linear, left top, right bottom, from(rgb(11, 12, 59)), color-stop(100%, rgba(11, 12, 59, 50%)), to(rgba(11, 12, 59, 0)));

    background-color: #ffffff;
    width: 200px;
    height: 200px;
    display: inline-block;
    border-radius: 20px;
}

.icon>p{
    font-size: 1rem;
    font-weight: bolder;
}

body > footer{
    height: 46px;
    margin-top: -42px;
    background-color: black;
    color: white;
}

.logo{
    max-width: 600px;
    width: 100%;
}

#app {
    min-height: 800px;
}
.tab-content{
    /*min-height: 750px;*/
}


.divider {
    margin: 40px 0;
    line-height: 50px;
    text-align: center;
    position: relative;
    height: 33px;
    font-size: 24px;
    font-weight: 400;
    color: rgba(140, 142, 165, 1);
    line-height: 25px;
}
.divider:after,
.divider:before{
    position: absolute;
    width: 54px;
    height: 0.5px;
    background: #dadada;
    content: '';
    top: 15px;
}
.divider:after{
    left: 28%;
}
.divider:before{
    right: 28%;
}


@media (max-width: 768px){
    html{
        letter-spacing: 3px;
        font-size: 12px;
    }
    .head-bg{
        height: 320px;
    }
    .summary .text-info b{
        font-size: 1.3rem;
    }
    .icon,
    .icon:hover{
        width: 140px;
        height: 140px;
    }
    .divider:after{
        left: 15%;
    }
    .divider:before{
        right: 15%;
    }
}
@media (max-width: 500px){
    html{
        letter-spacing: 1px;
        font-size: 10px;
    }
    .head-bg{
        height: 280px;
    }
    .summary .text-info b{
        font-size: 1rem;
    }
    .icon,
    .icon:hover{
        width: 120px;
        height: 120px;
    }
    .divider:after{
        left: 10%;
    }
    .divider:before{
        right: 10%;
    }
}
