@charset "utf-8";

/* //////////////// GLOBAL //////////////////// */

body {
	background: #f8f9f9;
    color: rgba(0, 0, 0, .8);
    overflow-y: scroll; /* Reserve Space for hypothetical Scroll-Bar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
    padding-top: 96px;

    /*background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%); min-height: 100%; overflow: hidden; }*/
}

::-webkit-scrollbar-thumb {
    background-color: #59636d; /*rgb(120, 166, 194);*/
    border: 4px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}

::-webkit-scrollbar {
    width: 14px;
    /*background-color: rgb(88, 121, 142);*/
}

::-webkit-resizer {
  background: transparent;
  /*box-shadow: 0 0 5px 5px blue;*/
}

/* Disable Chrome, Edge Default Clear Button */
::-webkit-search-cancel-button {
    -webkit-appearance: none; 
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #fff;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #4b5258 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.hidden {
    display: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fcfcfc;
}

.navbar-text {
    color: rgba(255, 255, 255, .8);
    font-size: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}


#confetti-canvas {
    position: absolute;
    top: 0;
}

/* //////////////// CARDS //////////////////// */

.card {
    width: 100%;
}

.entries {
    padding: 0 1rem;
}


/* //////////////// PROGRESS DEFAULT //////////////////// */

.progress {
    height: 37.6px;
    background-color: #f5f5f5;
}

.progress-bar {
    width: 0;
    font-size: 1rem;
    font-weight: bold;
}


/* //////////////// PROGRESS VERTICAL //////////////////// */

.progress-bar-bs {
    position: relative;
    padding-right: 60px;
    height: auto;
    margin: 0;
}

.progress-bar-vertical {
    display: flex;
    padding: 0 0 30px 0;
    justify-content: center;
}

.progress-bar-vertical .progress {
    width: 80%;
    min-height: 150px;
    display: flex;
    align-items: flex-end;
}

.progress-bar-vertical .progress-bar {
    width: 100%;
    height: 0;
}

.progress-bar-vertical .progress-bar {
    animation: progressVertical 1.5s ease-in-out forwards;
}

@keyframes progressVertical {
    from { height: 0; }
    to { height: 100%; }
}

.progress-bar-bs .caption {
    position: absolute;
    bottom: 0;
    /*text-transform: uppercase;*/
}

.progress-bar-vertical .caption {
    width: auto;
    padding-left: 0;
    white-space: nowrap;
}

.progress-bar-vertical .list-bars-item-header {
    font-size: 14px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 10px;
}


/* //////////////// MEDIA ONLY //////////////////// */

@media only screen and (min-width: 375px) and (max-width: 812px) { 

    body {
        padding-top: 144px;
    }

}

@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: portrait) { 

}

@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) { 
    
}