/*
 Theme Name:   Bootscore Lnwdoujin 2026
 Description:  Bootscore Base
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

@import url('https://fonts.googleapis.com/css2?family=Sarabun&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    background-image: url(css/bg.png);
    background-repeat: repeat;
    background-position: 0px 0px;
}

a, a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.bg-gd {
    color: #fff;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.small-text {
    font-size: 0.6rem;
}

.twolinepls {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;	
}


/*fixul*/
.footer_widget ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-h-200 {
    height: 200px;
}

.home_card:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .4) 75%, rgba(0, 0, 0, .8) 100%);
    opacity: .5;
    transition: .5s;
    pointer-events: none;
}

.top-button {
    right: 5%;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.top-button.visible {
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s;
}


/*mobile*/
/*@media(min-width: 360px) {
    .home_card {
        width:320px
    }
}

@media(min-width: 400px) {
    .home_card {
        width:340px
    }
}

@media(min-width: 576px) {
    .home_card {
        width:360px
    }
}*/