page {
    background-image: url("img_1.png");
    background-size: 800px;
    display: block;
    margin: 0 auto;
    margin-bottom: 0.5cm;
    box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
page[size="A4"] {
    width: 21cm;
    height: 29.7cm;
}
page[size="A4"][layout="portrait"] {
    width: 29.7cm;
    height: 21cm;
}

* {
    font-family: "Liberation Sans", serif;
    font-size: small;
}
.cborder{
    border-style: solid;
}

.border-round{
    border-radius: 10px;
}
.border-blue{
    border-color: cornflowerblue;
}
.flex-grow-2{
    flex-grow: 2;
}
.flex-grow-1{
    flex-grow: 1;
}
.border-thick{
    border-width: thick !important;
}
.flex-container{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.flex-between{
    justify-content: space-between;
}
.flex-center{
    justify-content: center;
    align-items: center;
}
.flex-col{
    flex-direction: column;
}
.shadow-right{
    -webkit-box-shadow: 7px 8px 15px 5px #000000;
    box-shadow: 7px 8px 15px 5px #000000;
}
.t-shadow-right{
    text-shadow: 4px 7px 9px rgba(0,0,0,0.41);
}



/*Range Slider */

html input[type=range] {
    outline: 0;
    border: 0;
    border-radius: 100px;
    width: 250px;
    max-width: 100%;
    /*margin: 24px 0 16px;*/
    transition: box-shadow 0.2s ease-in-out;
}

html input[type=range] {
    overflow: hidden;
    height: 15px;
    -webkit-appearance: none;
    background-color: #2084ea;
}
html input[type=range]::-webkit-slider-runnable-track {
    height: 30px;
    /*-webkit-appearance: none;*/
    color: #444;
    -webkit-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
}
html input[type=range]::-webkit-slider-thumb {
    width: 50px;
    -webkit-appearance: none;
    height: 30px;
    cursor: ew-resize;
    /*background: #fff;*/
    /*box-shadow: -340px 0 0 320px #1597ff, inset 0 0 0 40px #1597ff;*/
    box-shadow: 340px 0 0 320px #e9eef3;
    border-radius: 300%;
    /*-webkit-transition: box-shadow 0.2s ease-in-out;*/
    transition: box-shadow 0.2s ease-in-out;
    position: relative;
}
html input[type=range]:active::-webkit-slider-thumb {
    /*background: #fff;*/
    /*box-shadow: -340px 0 0 320px #1597ff, inset 0 0 0 3px #1597ff;*/
}

html input[type=range]::-moz-range-progress {
    background-color: #43e5f7;
}
html input[type=range]::-moz-range-track {
    background-color: #9a905d;
}
html input[type=range]::-ms-fill-lower {
    background-color: #43e5f7;
}
html input[type=range]::-ms-fill-upper {
    background-color: #9a905d;
}

#h4-container {
    width: 200px;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}
#h4-container #h4-subcontainer {
    width: 100%;
    position: relative;
}
#h4-container #h4-subcontainer h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    color: #fff !important;
    font-size: 12px;
    transform-origin: center -10px;
    transform: translateX(-50%);
    transition: margin-top 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
#h4-container #h4-subcontainer h4 span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1597ff;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    z-index: -1;
}

input:not(:active) + #h4-container h4 {
    opacity: 0;
    margin-top: -50px;
    pointer-events: none;
}

.inline-icon{
    vertical-align: bottom;
    font-size: 18px !important;
}
.green{
    color: green;
}




@media print {
    body{
        width: 21cm;
        height: 29.7cm;
        /*margin: 30mm 45mm 30mm 45mm;*/
        /* change the margins as you want them to be. */
    }
    page {
        page-break-before: always;
    }
}