// ===================================================
// Style Global
// ===================================================
// @import 'global/variables';
// @import 'global/global';
// @import 'global/icon';
// @import 'global/animate';
// ===================================================
// Style Layouts
// ===================================================
// @import 'layouts/header';
// @import 'layouts/footer';
// ===================================================
// Style Pages
// ===================================================
@import 'pages/home-page';
// @import 'pages/status';




.popup {
    position: fixed;
    z-index: 32;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.popup.small {
    --popup: var(--small-popup);
}

.popup:not(.debug) {
    display: none;
}

.popup>.popup-content {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.popup>.popup-content>.popup-blackboard {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.popup>.popup-content>.wrapper {
    background: var(--bg);
    box-shadow: var(--shadow-m);
    position: relative;
    z-index: 2;
    width: var(--popup);
}

.success-popup .success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 1.4rem;
}

.h4 {
    font-size: 2rem;
    font-weight: 600;
}

.success-popup .success .icon {
    color: green;
    font-size: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup>.popup-content>.wrapper .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edeef5;
    padding: 2rem 3rem;
}

.popup>.popup-content>.wrapper .tabs {
    padding: 0 4rem;
    margin-left: calc(4rem * -1);
    margin-right: calc(4rem * -1);
    border-bottom: 1px solid #edeef5;
}

.popup>.popup-content>.wrapper p {
    color: #3e3e3e;
    font-weight: 500;
}

.popup>.popup-content>.wrapper .action {
    padding-top: 1rem;
}

.h5 {
    font-weight: 700;
    font-size: 1.8rem;
}

.popup>.popup-content>.wrapper>.content {
    padding: 3rem;
    max-height: 70vh;
    overflow: auto;
}

.popup>.popup-content>.wrapper .kanban-binding-form,
.popup>.popup-content>.wrapper .manually-form {
    display: none;
}


body .form-group input.error,
body .form-group textarea.error {
    border-color: red !important;
    -webkit-box-shadow: 0 0 0 3px rgb(235, 121, 121) !important;
    box-shadow: 0 0 0 3px rgb(235, 121, 121)  !important;
}


body .article>*:not(:last-child):not(.subtitle):not(.mb0) {
    margin-bottom: 2rem;
}

body .article>*:not(:last-child):not(.subtitle):not(.mb0).bm {
    margin-bottom: 3rem;
}

body .article>*:not(:last-child):not(.subtitle):not(.mb0).bordered:not(.btn) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

body .article>*:not(:last-child):not(.subtitle):not(.mb0).bordered:not(.btn).bm {
    padding-bottom: 3rem;
}


body input[type="text"]:not(.hidden):not(.code):focus,
body input[type="email"]:not(.hidden):not(.code):focus,
body input[type="string"]:not(.hidden):not(.code):focus,
body input[type="url"]:not(.hidden):not(.code):focus,
body input[type="password"]:not(.hidden):not(.code):focus,
body input[type="search"]:not(.hidden):not(.code):focus,
body input[type="number"]:not(.hidden):not(.code):focus,
body input[type="tel"]:not(.hidden):not(.code):focus,
body input[type="range"]:not(.hidden):not(.code):focus,
body input[type="date"]:not(.hidden):not(.code):focus,
body input[type="month"]:not(.hidden):not(.code):focus,
body input[type="week"]:not(.hidden):not(.code):focus,
body input[type="time"]:not(.hidden):not(.code):focus,
body input[type="datetime"]:not(.hidden):not(.code):focus,
body input[type="datetime-local"]:not(.hidden):not(.code):focus,
body input[type="color"]:not(.hidden):not(.code):focus,
body textarea:not(.hidden):not(.code):focus {
    color: grey !important;
}


body input[type=text]:not(.hidden):not(.code),
body input[type=email]:not(.hidden):not(.code),
body input[type=string]:not(.hidden):not(.code),
body input[type=url]:not(.hidden):not(.code),
body input[type=password]:not(.hidden):not(.code),
body input[type=search]:not(.hidden):not(.code),
body input[type=number]:not(.hidden):not(.code),
body input[type=tel]:not(.hidden):not(.code),
body input[type=range]:not(.hidden):not(.code),
body input[type=date]:not(.hidden):not(.code),
body input[type=month]:not(.hidden):not(.code),
body input[type=week]:not(.hidden):not(.code),
body input[type=time]:not(.hidden):not(.code),
body input[type=datetime]:not(.hidden):not(.code),
body input[type=datetime-local]:not(.hidden):not(.code),
body input[type=color]:not(.hidden):not(.code),
body textarea:not(.hidden):not(.code) {
    height: 4.5rem;
    border-radius: 0;
    border: 2px solid #edeef5;
    background: transparent;
    padding: 0 calc(4.5rem / 2.5);
    font-size: 1.3rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    color: #000;
    box-sizing: border-box;
    font-weight: 500;
}

