/*------------------------------------------------------------------
    author : Kiko
-------------------------------------------------------------------*/
/* google font = Noto+Sans+HK */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&display=swap');
body {
    font-family: "Noto Sans HK",'Poppins', sans-serif;
}

/* add  checkbox lg */
.form-control-lg .form-check-input{
	 top:.2rem;
	 scale: 1.4;
	 margin-right: 0.7rem;
 }

 /* 去衝突 bootstrap-table */
.bootstrap-table .fixed-table-toolbar button i ,
.bootstrap-table .dropdown-toggle,
.bootstrap-table .dropdown-toggle::after{
    color: #a3a1a1;
}
.bootstrap-table .dropdown-menu {
	height: fit-content;
}
.bootstrap-table a:hover i {
    color: #fff;
}

/* sex */
.F-text{
	color: #93400e;
 }

.M-text {
	color: #0e3095;
}
.F-bg{
    color: #f5f2f2;
	background: #9b038e;;
 }

.M-bg {
    color: #f5f2f2;
	background: #027883;
}


/* Animation */
.animatedFadeInUp {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
