﻿
/* Boxing system : use class="row header" or class="row content" or class="row footer" in a class="box" div */
.box {
    display: flex;
    flex-flow: column;
    height: 100%;
}

    .box .row {
        /*border: 1px dotted grey;*/
    }

        .box .row.header {
            flex: 0 1 auto;
            /* The above is shorthand for:
                          flex-grow: 0,
                          flex-shrink: 1,
                          flex-basis: auto
                          */
        }

        .box .row.content {
            flex: 1 1 auto;
        }

        .box .row.footer {
            flex: 0 1 40px;
            width: 100%;
            justify-content: center;
            padding-bottom: 16px;
            margin: auto; /* Center content */
        }

            .box .row.footerLarge {
                flex: 0 1 140px;
                width: 100%;
                justify-content: center;
                padding-bottom: 16px;
                margin: auto; /* Center content */
            }

.bottom-text {
    position: absolute;
    font-size: small;
    bottom: 10px;
    left: 20%;
    transform: translateX(-20%);
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.7);
}

/* Onboarding */
.titleOnboarding {
    font-size: 24px !important;
    font-variant-caps: small-caps !important;
    font-weight: bold !important;
}


/* Temperament*/
.assetPanel {
    min-width: 250px;
    background-color: #e1deff;
    border:1px solid #8b5dfd;
    border-radius: 16px;
    padding: 16px;
    color:#48454e;
    font-size:14px;
}

/* On boarding*/
.bgStepOnboarding {
    background-image: linear-gradient(to bottom, #EBE1DC 80%, white);
    height: 100%;
}

.bgLibere {
    height: 100%;
    padding: 0px !important;
    background-image: url('/img/startScreen.jpg');
    background-position: center;
    background-size: cover;
}
.titleLibere {
    color: white;
    font-size: 54px !important;
    line-height: 64px !important;
    font-weight: bold !important;
    position: absolute;
    bottom: 180px;
    padding: 0px 0px 0px 12px;
    text-shadow: 0px 0px 2px #000000bb;
}

.timeline {
    padding: 0px;
    margin: 0px
}
    .timeline::before {
        background-color:#5a00aa !important;
    }

.bgTips {
    background-image: radial-gradient(ellipse at 50% 90%,  #c8a5c5, #c0a0df, white);
    /*background-image: linear-gradient(to bottom, white, #EBE1DC);*/
    height: 100%;
}

/* Projects choice in Onboarding*/
.projectPanel {
    padding: 0px;
    margin: 0px;
    background-color: #ebe1dc;
}

.projectPanelTopBorder {
    padding: 0px;
    margin: 0px;
    border-top: 2px solid #945ffc33
}

.categoryTitle {
    color: #00000055
}

.image-container {
    position: relative;
    width: 172px; /* adjust as needed */
    height: 150px; /* adjust as needed */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #8b5dfd;
}

.project-selected {
    border: 2px solid #8b5dfd;
}

.badge-selected {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background-color: #8b5dfd;
    border-radius: 20px;
}

/* Quick Survey */

.stickyHead {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 100;
    background-color: white;
}

.stickyFooter {
    position: -webkit-sticky;
    position: sticky;
    bottom: 12px
}

/* Pyramid */
.blur {
    pointer-events: none;
    /* DON'T FORGET to ALSO set on focusable CHILDREN: 
  tabindex="-1"
  aria-hidden="true"
  */
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}