@import "https://fonts.googleapis.com/css?family=Questrial:300,400,500,600,700";
@import "https://fonts.googleapis.com/css?family=K2D:300,400,500,600,700";
@import "https://fonts.googleapis.com/css2?family=Pridi:wght@200;300;400;500;600;700&display=swap";

body, h1, h2, h3, h4, h5, h6, .breadcrumb
a, ul, ul > a {
    font-family: 'Questrial', sans-serif;
}
/*type of font*/
.thfont {  font-family: 'Pridi', sans-serif; font-weight: 300; }
.enfont { font-family: 'Questrial', sans-serif; }
.thprfont {
    font-family: 'Pridi', sans-serif;
    font-weight: 300;
}

/*font size*/
.font10 { font-size: 10px; }
.font12 { font-size: 12px; }
.font14 { font-size: 14px; }
.font16 { font-size: 16px !important; }
.font18 { font-size: 18px !important; }
.font20 { font-size: 20px !important; }
/*font property*/
.text-bold { font-weight: bold !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-middle { vertical-align: middle !important; }
/*font color*/
.text-warning { color: #FDD835 !important; }
.text-gold { color: #FFAB00 !important; }
.text-red { color: #e74a3b !important; }
.text-black { color: #000 !important; }
.text-black5 { color: #555 !important; }
.text-blue { color: #304FFE !important; }
.text-green { color: #1B5E20 !important; }
/*backgroud*/
.bg-header-primary {
    background-color: #82B1FF !important;
    color: #fff;
}
.bg-header-info {
    background-color: #00ACC1 !important;
    color: #fff;
}
.bg-header-success {
    background-color: #C8E6C9 !important;
}
.bg-header-warning {
    background-color: #fceec9 !important;
}
.bg-header-danger {
    background-color: #FFCDD2 !important;
}
.bg-light-primary { background-color: #B2DFDB !important; }
.bg-light-yellow { background-color: #FFF59D !important; }

/*form*/
input::placeholder {
  color: gray;
  opacity: 0.5;
}
textarea::placeholder {
  color: gray!important;
  opacity: 0.5;
}

/*loader*/
.loader {
    position: relative;
    margin: auto;
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 148px;
    height: 148px;
    color: #fff;
}
.loader:before, .loader:after {
    content: '';
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}
.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateZ(360deg); }
}

@keyframes rotateccw {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes spin {
    0%, 100% { box-shadow: .2em 0px 0 0px currentcolor; }
    12% { box-shadow: .2em .2em 0 0 currentcolor; }
    25% { box-shadow: 0 .2em 0 0px currentcolor; }
    37% { box-shadow: -.2em .2em 0 0 currentcolor; }
    50% { box-shadow: -.2em 0 0 0 currentcolor; }
    62% { box-shadow: -.2em -.2em 0 0 currentcolor; }
    75% { box-shadow: 0px -.2em 0 0 currentcolor; }
    87% { box-shadow: .2em -.2em 0 0 currentcolor; }
}

/*sidebar*/
.sidebar .nav-item .nav-link {
    padding: 0.5rem !important;
}
.sidebar .sidebar-brand {
    text-transform: none !important;
}
.breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: .75rem 1rem !important;
    margin-bottom: 1rem !important;
    list-style: none !important;
    background-color: #eaecf4 !important;
    border-radius: .35rem !important;
}
.breadcrumb-item.active {
    color: black !important;
    font-family: 'Questrial', sans-serif;
}
a { text-decoration: none !important; }
 
 /*about page*/
 .bs-callout {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #eee;
        border-left-color: rgb(238, 238, 238);
        border-left-width: 2px;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout-info {
    border-left-color: #1b809e;
}
.bs-callout-orange {
    border-left-color: orange;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
}
.media:first-child {
    margin-top: 0;
}
.media, .media-body {
    overflow: hidden;
    zoom: 1;
}
.media-middle {
    vertical-align: middle;
}
.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top;
}
.img-circle {
    border-radius: 50%;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}
.media-left, .media > .pull-left {
    padding-right: 10px;
}
.bg-group-lightgreen {
    background-color: #F0FFF0 !important;
}
.bg-table-header-primary {
    background-color: #cfe2ff !important;
}
.bg-table-header-secondary {
    background-color: #e2e3e5 !important;
}
.bg-table-header-success {
    background-color: #d1e7dd !important;
}
.bg-table-header-warning {
    background-color: #fff3cd !important;
}
.bg-table-header-danger {
    background-color: #f8d7da !important;
}
