/* noto-sans-sc-regular - latin_chinese-simplified */
@font-face {
    font-family: 'Noto Sans SC';
    font-style: normal;
    src: local('Noto Sans SC Regular'), local('NotoSansSC-Regular'),
    url('fonts/NotoSansSCR.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/NotoSansSCR.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html, p, a {
    font-family: 'Noto Sans SC';
}


/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background: rgba(255,255,255,0.1);
    margin-right: 2px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(52,52,52,0.5);
}

.lxy-button
{
    color: white;
    display: block;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    cursor: pointer;
}

.catalogues
{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.cata-card
{
    padding: 20px;
    min-width: 300px;
    height: auto;
}

.cata-card .card-title
{
    padding: 5px;
}

.cata-card .card-body
{
    padding: 5px;
    padding-top: 10px;
}

.card-title > p
{
    text-align: left;
    font-size: large;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 5px;
}

.card-body .lxy-button,.card-body div
{
    margin-bottom: 10px;
}

.main-section
{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:0;
}



/* --- Header parts --- */
.head-section
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 4;
    margin: 0px;

    -moz-transition: ease-in-out 0.6s;
    -o-transition: ease-in-out 0.6s;
    -webkit-transition: ease-in-out 0.6s;
    transition: ease-in-out 0.6s;
}
.head-section > .list-container
{
    display: flex;
    justify-content: center;
    flex-direction:row;
    align-items: center;
}
.list-container .list-item
{
    text-decoration: none;
    display: block;
    padding: 15px 25px 15px 25px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 1.2em;
}

.header-menubtn {
    cursor: pointer;
    margin-top: 20px;
    padding: 12px 15px 15px 15px;
    visibility: hidden;
}

.header-menubtn span{
    display: block;
    width: 20px;
    border: 1px solid #fff;
    margin-top: 6px;

    -moz-transition:  0.6s;
    -o-transition: ease-in-out 0.6s;
    -webkit-transition: ease-in-out 0.6s;
    transition: ease-in-out 0.6s;
}

.header-menubtn > .h1 {
    transform: translateX(1px) rotate(-45deg);
    width: 10px;
    margin-left: -1px;
    margin-bottom: -3px;
}
.header-menubtn > .h2 {
    transform: rotate(90deg);
}

.header-menubtn > .h3 {
    transform: translate(12px, -15px) rotate(45deg);
    width: 10px;
    margin-left: -1px;
    margin-top: 3px;
    transform-origin: left;
}
.overlay {
    opacity: 0;
    -moz-transition: ease-in-out 0.6s;
    -o-transition: ease-in-out 0.6s;
    -webkit-transition: ease-in-out 0.6s;
    transition: ease-in-out 0.6s;
}
.show_overlay {
    z-index: 3 !important;
    opacity: 1;
}

@media all and (max-width: 900px){
    .head-section {
        flex-direction: column;
        align-items: center;
    }
    .head-section > .list-container {
        flex-direction: column;
    }
    .header-menubtn {
        visibility: visible;
    }
    .list-container .list-item {
        min-width: 100px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media all and (max-width: 400px){
    .list-container .list-item {
        min-width: 100px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}



.bg
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-attachment: fixed;
}

.lxy-input
{
    border: none;
    border-bottom: 2px solid rgba(55,58,119,0.8);
    color: white;
    background: transparent;
    padding: 5px 5px 5px 15px;
    font-size: 15px;
}
.lxy-input::placeholder
{
    color: rgba(255, 255, 255, 0.5);
}
.lxy-input:focus {
    outline: none !important;
}

.footer
{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 10px;
    
}
.footer > div
{
    text-align: center;
    padding: 0;
}
.footer p, .footer a
{
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media all and (max-width: 710px){
    .footer p, .footer a {
        font-size: 0.5em !important;
    }
}