/* begin license *
 *
 * "WWFT Common" is a library with components used in Frontend and Backend
 *
 * All rights reserved.
 *
 * Copyright (C) 2024 Seecr (Seek You Too B.V.) http://seecr.nl
 *
 * This file is part of "WWFT Common"
 *
 * end license */

:root {
    --color-1: #1d293b;
    --color-2: #cddbfe;
    --color-3: #f1f5f9;
    --color-4: #f7fafc;
}

.font-inter {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.antialiased { 
    -webkit-font-smoothing: antialiased !important;
}

.bg-wwft {
    background-color: var(--color-1) !important;
    color: white;
}

.bg-wwft-light {
    background-color: var(--color-3) !important;
    color: black;
}

.bg-wwft-header {
    background-color: var(--color-4) !important;
}

.wwft-header {
    text-transform: uppercase !important;
    font-weight: 600 !important;
    font-size:80% !important;
    color: #64748b !important;
}

.link {
    border: 0;
    background-color: white;
}

.dashboard-header {
    background-color: var(--color-2) !important;
    color: var(--color-1) !important;
}

.scrollable {
    overflow: auto;
    /*height: 100vh;*/
}

.mynav {
    color: #fff;
}

.mynav li a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    border-radius: 5px;
    padding: 8px 5px;
}

.mynav li a.active {
    background: rgba(255, 255, 255, 0.2);
}

.mynav li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mynav li a div i {
    width: 25px;
    text-align: center;
}

.notification-badge {
    background-color: rgba(255, 255, 255, 0.7);
    float: right;
    color: #222;
    font-size: 14px;
    padding: 0px 8px;
    border-radius: 2px;
}

.w-33 {
    width: 33.3%;
}

.w-66 {
    width: 66.6%;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.questionnaire-layout {
    display: flex;
    flex-direction: row;
}

.questionnaire-active {
    font-weight: bold;
}

@media only screen and (max-width: 639px) {
    .questionnaire-layout {
        display: flex;
        flex-direction: column;
    }

    .w-33 {
        width: 100%;
    }
    .w-66 {
        width: 100%;
    }

    .two-columns {
        display: grid;
        grid-template-columns: repeat(1, 100%);
    }
}

.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

.fit-content {
    width: fit-content;
}
