@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 15px;
}

/* Panel Skin */

.card{
    box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card:hover{
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-body{
    padding: 40px 50px;
}



/* Custom CSS */
.container{
    max-width: 1440px;
}

.header-logo{
    width: 60px;
    margin-right: 20px;
}

.loader {
    margin: auto;
    width: 20px;
    padding: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.btn-group-sm>.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
    min-width: 80px;
}

.modalProfile{
    list-style-type: none;
    padding-left: 0;
}

ul li{
    margin-bottom: 15px;
}

.modalProfile > li{
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 0px;
}

.modalProfile > li:last-child{
    border-bottom: none;
}

.modalProfile > li label{
    margin-bottom: 0;
}

.bg-yellow{
    background-color: yellow;
}

.note-small{
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    display: block;
}

.photo{
    position: absolute;
    z-index: 1;
    width: 190px;
    height: 190px;
    right: 30px;
    top: 0;
    border-radius: 0;
    background-color: #eee;
}

.photo .image{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.foto{
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.power-bi-embed{
    width: 100%;
    aspect-ratio: 16 / 9;
}

.profiling-filter{
    margin-bottom: 30px;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link{
    color: rgba(60, 39, 161, 1);
    font-weight: 600;
}

.ai-container {
    width: 100%;
    max-width: 400px;
}

.ai-skeleton-title,
.ai-skeleton-text {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 4px;
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.ai-skeleton-title {
    height: 24px;
    width: 60%;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

.areaSearch{
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.areaSearch .item{
    flex: 1 1 calc(12% - 1rem);
    box-sizing: border-box;
}

.areaSearch a{
    width: 100%;
    background-color: rgb(76, 61, 147);
    padding: 30px;
    border: none;
}

.areaSearch a.active, .areaSearch a:hover, .areaSearch a:focus, .areaSearch a:active{
    background-color: rgb(120, 98, 223) !important;
}

.modalProfile ul, .modalProfile ol{
    padding-left: 15px;
    margin-top: 15px;
}

.login-box, .register-box{
    width: 100%;
    max-width: 500px;
}

.login-box .card, .register-box .card{
    border-radius: 20px;
    border: none;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
}

.login-page .card-header{
    border: none;
    padding-top: 50px;
}

.login-page .card-body{
    padding: 0 4rem 4rem 4rem;
}

.login-page .form-control{
    padding: 10px 20px;
    height: auto;
}

.login-page .btn{
    padding: 15px 20px;
}

@media screen and (max-width: 768px) {
    .card-body{
        padding: 20px 15px;
    }

    .item {
        flex: 1 1 calc(50% - 1rem);
        flex-shrink: 2;
        max-width: 50%;
    }
}