/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import "https://fonts.googleapis.com/css2?family=Montserrat";
@import "https://fonts.googleapis.com/css2?family=Inter";



body {    
    font-family: 'Inter', sans-serif;
    background: rgb(231, 234, 240);
    font-weight: 350;
    font-size: 1rem;
}

p {
    font-family: 'Poppins', sans-serif;    
    line-height: 1.7em;    
}

#sidebar a,
#sidebar a:hover,
#sidebar a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar a.disabled {
    color: #aaa !important;
}


/* .input-search */

.input-search {
    display: flex;
    flex-direction: row;
    border: 1px solid #ced4da;
    border-radius: 2rem;
    padding: 0.3rem 0.5rem 0.3rem 1.3rem;
    margin-bottom: 1rem;
}

.input-search:focus-within {
    border: 1px solid #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25)
}

.input-search input {
    flex-grow:2; 
    border:none;
}

.input-search button {
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border-color: transparent;
}

.input-search input:focus, .input-search button:focus {
    outline: none;
}

.input-search button:hover {
    color: #007bff;
}



/* table-input */
.table-input {
    background: #fafafa;    
}

.td-input {
    padding: 3px !important;
    vertical-align: middle!important;
    background: white;
}

.td-input:focus-within {
    border: 1px solid #80bdff;
    box-shadow: inset 0 0 0.7rem #80bdff
}

.table-input .form-control {
    border: 0!important;
    box-shadow: none;
    background: transparent;
}



/* text color */

.text-gold {
    background: -webkit-linear-gradient(#ffff00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
}


.text-over-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: black;
    background: white;
    border-radius: 50%;
    height: 1.4rem;
    padding-left: 7px;
    padding-right: 7px;
}

/* nav bar */

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    /* margin-bottom: 40px; */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.hidden {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 15px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;    
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a {
    color: #fff;
    background: #6d7fcc;
}

a[data-bs-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar a.sidebar-btn-white,
#sidebar a.sidebar-btn-white:hover {
    background: #fff;
    color: #7386D5;
    margin-bottom: 10px;
}

a.sidebar-btn,
a.sidebar-btn:hover {
    background: #6d7fcc !important;
    color: #fff !important;
    margin-bottom: 10px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    /* padding: 20px; */
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.hidden {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}