﻿*, *::before, *::after{
    box-sizing: border-box;
}

html{
    height: 100%;
}

ul, ol{
    margin: 0;
    padding: 0;
}

input, input[type="checkbox"]{
    margin: 0;
}

body.cm_onBoarding {
    display: grid;
    height: 100%;
    padding: 2em;
    font-size: 18px;
    color: black;
    background-color: var(--clr-modal-background);
}

#onBoarding-wizard .cm_tabs-wizard {
    gap: 48px;
}

.cm_onBoarding-section{
    display: grid;
    gap: 24px;
}

h1 {
    font-size: 3em;
}

h1, h2{
    color: var(--clr-primary);
}

.cm_onBoarding-table {
    width: 100%;
    max-width: max-content;
    margin: 0px;
    font-size: 11.5px;
}

.cm_tooltip{
    cursor: pointer;
    font-size: 14px;
    margin-left: 2px;
}

.ht_master .wtHolder {
    overflow-y: visible;
}

.actions button {
    background-color: var(--clr-primary-300);
    color: white;
    /* background-color: #333; */
    transition: background-color 0.3s ease; /* Smooth transition for the hover effect */
}

.actions button:hover {
    background-color: #555;
}


/*TODO: HAcer que los otros wizards tambien hagan esto*/
@media screen and (max-width: 768px) {
    body.cm_onBoarding{
        padding: 1em;
        grid-template-rows: 1fr;
    }

    #onBoarding-wizard .cm_tabs-wizard {
        grid-template-columns: unset;
    }

    #onBoarding-wizard .cm_wizard-scroll-container {
        background: var(--clr-modal-background);
        z-index: 200;
    }

    #onBoarding-wizard .cm_wizard-nav-links {
        display: flex;
        overflow-x: auto;
    }

    #onBoarding-wizard a[data-toggle="pill"]{
        flex-direction: column;
        padding: 0;
        padding-block: 16px;
    }

    .cm_wizard-line {
        top: calc(16px + calc(var(--circle-width) / 2));
        left: 0;
        width: 100%;
        height: 2px;
    }

    #onBoarding-wizard .tab-content{
        position: relative;
    }

    #ReportsPartial_E_Div{
        max-height: 500px;
    }
}
