/* --------------------------------------------------------
Style Sheet for QPM

version: 1.0
last modified: 20.10.2022
author: Paolo Pizzuti
email: info@paolopizzuti.it
website: http://www.paolopizzuti.it
----------------------------------------------------------*/

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); */
@import url('fontface.css');


:root {
    --background-color: #f8fafc;;
    --header-height: 80px;
    --border-color: #e8e8e8;
    --light-color: #ddd;
    --main-text-color: #333;
    --main-color: #004B87;
    --main-color-rgb: 0, 75, 135;
    --secondary-color: #FC4C02;
    --secondary-color-light: rgba(252, 76, 2, .15);
    --side-padding-value: 25px;
    --border-radius: 6px;
}

*,
:after,
:before {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

* {
    color: var(--main-text-color);
}

a, a:hover, a:active, a:visited {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 25px 0;
    padding-left: 20px;
}

li {
    list-style: disc;
}

p, li {
    font-size: 1.6rem;
    line-height: 1.4;
}

h1 {
    font-size: 3.6rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

input, textarea, button, select {
    outline: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 20px;
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius);
}

input {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
}

input[type="checkbox"] {
    width: unset;
    padding: 0 !important;
}

input[type="checkbox"]:checked:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/icon-check.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

textarea {
    border: 1px solid var(--light-color);
    width: 100%;
    height: 200px;
    font-size: 1.6rem;
    border-radius: var(--border-radius);
    transition: .2s;
}

textarea:focus {
    border-color: #999;
}

button {
    padding: 15px 40px;
    margin: 0 !important;
    background-color: var(--main-color);
    border: 0;
    border-radius: var(--border-radius);
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    opacity: .9;
}

button:disabled {
    background-color: var(--light-color);
    cursor: not-allowed;
}

a[disabled] {
    opacity: .4;
    pointer-events: none;
    cursor: not-allowed !important;
    color: #ddd !important;
}

a[disabled] * {
    color: #ddd !important;
    border-color: #ddd !important;
}

select {
    height: 40px;
    font-size: 1.4rem !important;
    border-radius: var(--border-radius) !important;
    border: 1px solid var(--light-color) !important;
    background-color: white !important;
    background-image: url('../images/icon-select.svg') !important;
    background-size: 16px !important;
    background-position: right 15px center !important;
    background-repeat: no-repeat;
    cursor: pointer;
}

.text-left{
    text-align: left !important;
}
.moreButton {
    position: relative;
    display: block;
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-decoration: underline;
    text-decoration-style: dotted;
    color: var(--secondary-color);
    cursor: pointer;
}

.moreButton:hover {
    opacity: .8;
}

.modalClose {
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
}

.modalClose svg {
    width: 26px;
    fill: #aaa;
}

/* Override Bootstrap padding and margin */
.container,
.container-fluid {
    padding-right: var(--side-padding-value);
    padding-left: var(--side-padding-value);
}

.w-small {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.w-medium {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.progressQpm {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.circleProgress {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.circleProgress:before {
    --stoke-width: 8px;
    content: "";
    position: absolute;
    width: calc(100% - var(--stoke-width));
    height: calc(100% - var(--stoke-width));
    top: calc(var(--stoke-width) / 2);
    left: calc(var(--stoke-width) / 2);
    background-color: white;
    border-radius: 100%;
    z-index: 10;
}

.circleProgressPie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    fill: #eeeeee;
    stroke: var(--secondary-color);
    transform: rotate(-90deg);
}

.circleProgress.complete .circleProgressPie {
    stroke: #11dd88;
    color: #11dd88;
}

.progressNumber {
    font-weight: 600;
}

html {
    font-size: 62.5%;
}

body, html {
    background-color: var(--background-color);
    font-family: "Muli", Helvetica, Arial, sans-serif;
    font-smooth: auto;
    height: 100%;
}

body {
    font-size: 1.6rem;
    padding-top: var(--header-height);
}

body.login {
    padding: 0;
    background-color: var(--background-color);
    background-image: url(../images/login-background.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 85%;
}

body.login .contentQpm {
    padding: 0;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--background-color);
    z-index: 1000;
}

header .headerQpm {
    height: var(--header-height);
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
}

header .headerQpm .backHide {
    display: flex;
    align-items: center;
    margin-left: -50px;
    transition: margin-left .3s;
}

body.scroll header .headerQpm .backHide {
    margin-left: var(--side-padding-value);
}

.contentQpm {
    padding: 0 0 50px 0;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.loginQpm {
    width: 420px;
    margin: 0 auto;
    padding-top: 15vh;
    /* height: 100vh; */
    /* display: flex;
    justify-content: center;
    flex-direction: column; */
}

.loginQpm a:hover {
    text-decoration: underline;
}

.loginQpm .loginQpmContent {
    position: relative;
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: rgba(50, 50, 93, 0.03) 0px 30px 60px -12px, rgba(0, 0, 0, 0.07) 0px 18px 36px -18px;
    border: 1px solid rgba(0, 0, 0, .05);
}

.loginQpm .loginQpmContent img {
    display: block;
    width: 160px;
    margin: 0 auto 30px auto;
}

.loginQpm .loginQpmContent h1 {
    font-size: 2.2rem;
    text-align: center;
}

/* .loginQpm .loginQpmContent p {
	text-align: center;
	font-size: 2rem;
} */
.loginQpm .loginQpmContent form {
    margin-top: 20px;
}

.loginQpm .loginQpmContent input {
    width: 100%;
    margin: 6px 0;
}

.loginQpm .loginQpmContent input::placeholder {
    color: #bbb;
}

.loginQpm .loginQpmContent label {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
}

.loginQpm .loginQpmContent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-right: 5px;
}

.loginQpm .loginQpmContent input[type="checkbox"]:checked {
    background-color: var(--main-color);
    border-color: #82D4EC;
    background-color: #82D4EC;
    background-size: 1px !important;
}

.loginQpm .loginQpmContent input[type="checkbox"]:checked:before {
    background-size: 10px;
}

.loginQpm .loginQpmContent button {
    width: 100%;
    background-color: #82D4EC;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--main-text-color);
    letter-spacing: .05rem;
    margin-top: 30px !important;
}

.loginQpm .loginQpmContent a.forgot {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
}

.loginQpm .loginQpmContent .helpQpm {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 1.4rem;
}

.loginQpm .loginQpmContent .invalid-feedback {
    display: block;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
}

.loginQpm .loginQpmContent input.is-invalid {
    border-color: red;
}

.loginQpm .loginFooter {
    width: 100%;
    padding: 35px 0;
    text-align: center;
    font-size: 1.2rem;
}

.loginQpm .loginFooter img {
    margin-bottom: 10px;
}

.loginQpm .loginFooter span {
    display: block;
}

header .headerQpm .backHide .backQpm {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #e8e8e8;
    cursor: pointer;
}

header .headerQpm .clientLogo,
header .headerQpm .mainLogo {
    display: flex;
    padding-left: var(--side-padding-value);
    padding-right: var(--side-padding-value);
}

header .headerQpm .clientLogo {
    border-right: 1px solid var(--border-color);
}

header .headerQpm .clientLogo img {
    width: 125px;
    height: auto;
}

header .headerQpm .mainLogo {
    flex: 1;
    display: flex;
    align-items: center;
}

header .headerQpm .mainLogo .platformName {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    width: min-content;
}

header .headerQpm .mainLogo img {
    width: 100px;
    height: auto;
}

header .headerQpm .userMenu {
    display: flex;
    align-items: center;
    padding-right: var(--side-padding-value);
}

header .headerQpm .userMenu ul {
    display: flex;
    align-items: center;
}

header .headerQpm .userMenu li {
    display: inline;
    font-size: 0;
    margin-right: 25px;
}

header .headerQpm .userMenu li:last-of-type {
    margin: 0;
}

header .headerQpm .userMenu li a {
    display: inline-flex;
    font-size: 1.4rem;
    padding: 5px;
    font-weight: 500;
}

header .headerQpm .userMenu li a img {
    margin-left: 6px;
}

header .headerQpm .userMenu li.userQpm a {
    width: 42px;
    height: 42px;
    background-color: var(--secondary-color);
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center
}

.mainTitle {
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.mainTitle .backQpm {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #e8e8e8;
    cursor: pointer;
}

.surveyQpm {
    display: flex;
    flex-direction: row;
}

.surveyQpm .progressQpm {
    width: 100px;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: sticky;
    top: calc(var(--header-height) + 50px);
}

.surveyQpm .progressQpm .pinStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.surveyQpm .progressQpm .pinStep:after {
    content: "";
    position: relative;
    display: block;
    width: 2px;
    height: 100%;
    background-color: var(--light-color);
    margin-top: 3px;
    margin-bottom: 3px;
}

.surveyQpm .progressQpm .pinStep:last-of-type:after {
    all: unset;
}

.surveyQpm .progressQpm .pinPoint {
    width: 31px;
    height: 31px;
    border-radius: 100%;
    border: 3px solid var(--light-color);
    flex-shrink: 0;
}

.surveyQpm .progressQpm .pinStep.done .pinPoint {
    position: relative;
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.surveyQpm .progressQpm .pinStep.done .pinPoint:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/icon-done-point.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.surveyQpm .progressQpm .pinStep.done:after {
    background-color: var(--main-color);
}

.surveyQpm .progressQpm .pinStep.current .pinPoint {
    position: relative;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.surveyQpm .progressQpm .pinStep.current .pinPoint:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/icon-current-point.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.surveyQpm .surveyBlocks {
    flex: 1;
}

.surveyQpm .surveyBlock {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 18px 50px -10px;
    overflow: hidden;
    margin-bottom: 50px;
    opacity: .5;
    pointer-events: none;
    padding: 70px;
}

.surveyQpm .surveyBlock:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background-color: var(--light-color);
}

.surveyQpm .surveyBlock.current {
    opacity: 1;
    pointer-events: all;
}

.surveyQpm .surveyBlock.current:before {
    background-color: var(--secondary-color);
}

.surveyQpm .surveyBlock h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.surveyQpm .surveyBlock li {
    font-weight: 700;
}

.surveyQpm .surveyBlock .valResult {
    position: relative;
    padding: 25px;
    /* border: 3px solid var(--secondary-color); */
    border-radius: var(--border-radius);
    background-color: var(--secondary-color-light);
    max-height: 200px;
    overflow-y: scroll;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.compContent .valResult  {
    position: relative;
    padding: 25px;
    /* border: 3px solid var(--secondary-color); */
    border-radius: var(--border-radius);
    background-color: var(--secondary-color-light);
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.surveyQpm .surveyBlock .valResult h3 {
    font-size: 2rem;
}

.surveyQpm .surveyBlock .valResult span {
    display: block;
    margin-bottom: 10px;
}

.surveyQpm .surveyBlock .valResult .valAns {
    display: flex;
    flex-direction: row;
}

.surveyQpm .surveyBlock .valResult .valAns .surveyRadio {
    justify-content: center;
    align-items: flex-start;
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 30px;
    /* max-width: 500px; */
    margin: 50px 0 50px 50%;
    transform: translateX(-50%);
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 0 25px; */
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue input[type="radio"] {
    position: relative;
    width: 60px;
    height: 90px;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
    border: 0;
    font-size: 0;
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue input[type="radio"]:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 70%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ddd;
    transition: .2s;
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio:hover .surveyValue input[type="radio"]:before {
    background-color: var(--secondary-color-light);
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio:hover .surveyValue:hover ~ .surveyValue input[type="radio"]:before {
    background-color: #ddd;
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue:hover input[type="radio"]:before {
    height: 100%;
}

.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue input[type="radio"]:checked:before {
    height: 100%;
    background-color: var(--secondary-color);
}

/* .surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue input[type="radio"]:hover:before {
	transition: .2s;
	height: 100%;
	background-color: var(--secondary-color-light);
}
.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue input[type="radio"]:checked:before {
	height: 100%;
	background-color: var(--secondary-color);
} */
.surveyQpm .surveyBlock .surveyForm .surveyRadio .surveyValue span {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.surveyQpm .surveyBlock .surveyForm .surveyText .dropdown-menu {
    padding: 30px !important;
    border: 1px solid rgba(0, 0, 0, .03);
    border-radius: var(--border-radius);
    box-shadow: rgba(50, 50, 93, 0.07) 0px 30px 60px -12px, rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
    width: 400px
}

.surveyQpm .surveyBlock .surveyForm .surveyText .dropdown-menu .modalClose {
    top: 20px;
    right: 20px;
}

.surveyQpm .surveyBlock .surveyForm .surveyText .dropdown-menu h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.surveyQpm .surveyBlock .surveyForm .surveyText .dropdown-menu p {
    font-size: 1.2rem;
}

.surveyQpm .surveyBlock .surveyForm .surveyText .dropdown-menu button {
    margin-top: 10px !important;
    padding: 6px 12px !important;
    font-size: 1.2rem !important;
}

.surveyQpm .surveyBlock .surveyForm .surveyText .moreButton {
    display: inline-block;
    float: right;
    text-align: right;
    margin-top: -20px;
    margin-bottom: 5px;
}

.surveyQpm .surveyBlock h3 {
    font-weight: 600;
}

.tableQpm {
    display: table;
    height: auto;
    width: 100%;
    /* border-collapse: separate;  */
    border-spacing: 0 10px;
    margin-top: -10px;
    font-size: 1.6rem;
}

.tableQpm.full {
    max-width: unset;
}

.tableQpm .tableRow {
    position: relative;
    display: table-row;
    width: auto;
    background-color: white;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    transform: scale(1);
    box-shadow: rgba(50, 50, 93, 0.1) 0px 6px 12px -2px, rgba(0, 0, 0, 0.05) 0px 3px 7px -3px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tableQpm .tableRow .tableCell {
    position: relative;
    display: table-cell;
    padding: 20px 25px;
    overflow: hidden;
    vertical-align: middle;
}

.tableQpm .tableRow.tableHead {
    font-weight: 700;
}

.tableQpm .tableRow.tableHead .tableCell:first-child:before {
    background-color: var(--main-color);
}

.tableQpm .tableRow .tableCell:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background-color: var(--light-color);
}

.tableQpm .tableRow .tableCell:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.tableQpm .tableRow .tableCell:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.tableQpm .tableRow .tableCell.comment {
    text-align: center;
}

.tableQpm .tableRow .tableCell .color-1 {
    color: var(--main-color);
}

.tableQpm .tableRow .tableCell .color-2 {
    color: var(--secondary-color);
}

.tableQpm .tableRow:not(:first-child) .tableCell.comment {
    color: #bbb;
    font-weight: 500;
}

a.tinyButton {
    display: inline-block;
    padding: 1px 7px;
    border: 1px solid var(--main-text-color);
    color: var(--main-text-color);
    font-size: 1.2rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: .05rem;
    border-radius: 4px;
}

a.tinyButton:hover {
    opacity: .8;
}

/* .tableQpm .tableRow .tableCell.comment a {
	color: var(--secondary-color);
	border-color: var(--secondary-color);
} */
.tableQpm .tableRow .tableCell .valueResultGroup {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.tableQpm .tableRow .tableCell .valueResultGroup:nth-child(2) {
    margin-top: 5px;
}

.tableQpm .tableRow .tableCell .valueResult {
    display: flex;
    margin-right: 3px;
}

.tableQpm .tableRow .tableCell .valueResult .radio {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid var(--main-color);
    border-radius: 100%;
    margin-right: 2px;
}

.tableQpm .tableRow .tableCell .valueResult .radio:before {
    display: none;
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--main-color);
}

.tableQpm .tableRow .tableCell .valueResult .radio:after {
    display: none;
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    left: 2px;
    top: 2px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--main-color);
}

.tableQpm .tableRow .tableCell .valueResultGroup:nth-child(2) .valueResult .radio {
    border-color: var(--secondary-color);
}

.tableQpm .tableRow .tableCell .valueResultGroup:nth-child(2) .valueResult .radio:before,
.tableQpm .tableRow .tableCell .valueResultGroup:nth-child(2) .valueResult .radio:after {
    background-color: var(--secondary-color);
}

.tableQpm .tableRow .tableCell .valueResult[value="1.00"] .radio:nth-child(1):before,
.tableQpm .tableRow .tableCell .valueResult[value="1.50"] .radio:nth-child(1):before,
.tableQpm .tableRow .tableCell .valueResult[value="2.00"] .radio:nth-child(-n+2):before,
.tableQpm .tableRow .tableCell .valueResult[value="2.50"] .radio:nth-child(-n+2):before,
.tableQpm .tableRow .tableCell .valueResult[value="3.00"] .radio:nth-child(-n+3):before,
.tableQpm .tableRow .tableCell .valueResult[value="3.50"] .radio:nth-child(-n+3):before,
.tableQpm .tableRow .tableCell .valueResult[value="4.00"] .radio:nth-child(-n+4):before,
.tableQpm .tableRow .tableCell .valueResult[value="4.50"] .radio:nth-child(-n+4):before,
.tableQpm .tableRow .tableCell .valueResult[value="5.00"] .radio:nth-child(-n+5):before,
.tableQpm .tableRow .tableCell .valueResult[value="1.50"] .radio:nth-child(2):after,
.tableQpm .tableRow .tableCell .valueResult[value="2.50"] .radio:nth-child(3):after,
.tableQpm .tableRow .tableCell .valueResult[value="3.50"] .radio:nth-child(4):after,
.tableQpm .tableRow .tableCell .valueResult[value="4.50"] .radio:nth-child(5):after {
    display: block;
}

.commentQpm {
    margin-top: 40px;
}

.commentQpm p {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 25px;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    max-height: 200px;
    overflow-y: scroll;
}

.buttonsQpm {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.buttonsQpm button {
    margin: 5px !important;
}

.entryButtons,
.entryButton {
    display: flex;
}

.entryButton {
    width: 33.333333%;
    padding: 8px;
}
.entryButton2 {
    width: 66.666666%;
}
.entryButton3 {
    width: 100%;
}

.entryButton > a, .entryButton .docs {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px;
    background-color: white;
    border-radius: var(--border-radius);
    /* border: 2px solid #eee; */
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.03);
    font-size: 1.6rem;
    font-weight: 500;
    width: 100%;
    /* box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.1) 0px 50px 100px -20px, rgba(0, 0, 0, 0.1) 0px 30px 60px -30px; */
    transition: all .2s;
}

.entryButton > a:hover {
    box-shadow: 0px 0px 0px 2px rgba(var(--main-color-rgb), .3);
}

.entryButton .title {
    font-size: 24px;
    color: var(--secondary-color);
}

.entryButton .infoQpm {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: .2;
    transition: .3s;
}

.entryButton .infoQpm:hover {
    opacity: .4;
}

.entryButton .counterQpm {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    border: 16px solid var(--main-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.entryButton:nth-child(1) .counterQpm {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.entryButton .counterQpm .number {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    color: inherit;
}

.entryButton .counterQpm .user {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
}

.entryButton .counterQpmS {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    border: 11px solid var(--main-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.entryButton:nth-child(1) .counterQpmS {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.entryButton .counterQpmS .number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: inherit;
}

.entryButton .counterQpm .user {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
}

.entryButton .areaQpm {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.entryButton .areaQpm span {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
}

.modalQpm {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(10, 10, 10, .8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.modalQpm .modalQpmContent {
    position: relative;
    width: 100%;
    max-height: 80vh;
    height: 700px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.modalQpm .notesQpm {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.modalQpm .notesQpm .competencesQpm {
    border-right: 1px solid #e9e9e9;
    padding: 50px;
    height: 100%;
    max-width: 320px;
    flex-shrink: 0;
}

.modalQpm .notesQpm .competencesQpm ul {
    padding: 0;
    margin: 0;
}

.modalQpm .notesQpm .competencesQpm li {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.2;
}

.modalQpm .notesQpm .competencesQpm li a:hover {
    opacity: .75;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: white;
    margin-right: 10px;
    border-radius: 100%;
    border: 3px solid var(--light-color);
    flex-shrink: 0;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.done {
    background-color: #333;
    border-color: #333;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.done:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/icon-check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65% 65%;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.done + a {
    color: #333;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.inProgress {
    background-color: white;
    border-color: var(--secondary-color);
    border-width: 7px;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.inProgress:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 70%;
}

.modalQpm .notesQpm .competencesQpm li .statusQpm.inProgress + a {
    color: var(--secondary-color);
    font-weight: 600;
    opacity: 1 !important;
}

.modalQpm .notesQpm .compContent {
    padding: 50px;
    overflow-y: scroll;
    height: 100%;
}

.modalQpm .notesQpm .compContent h2 {
    font-size: 3rem;
}

.modalQpm .notesQpm .compContent form {
    margin-top: 50px;
}

.modalQpm .notesQpm .compContent form button {
    margin-right: 10px;
}

/* !FOOTER */
footer {
    position: sticky;
    top: 100vh;
}

.footerQpm {
    width: 100%;
    background-color: transparent;
    position: sticky;
    bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.footerQpmContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    font-size: 1.2rem;
}

/* TABULATOR */
.connectQpm {
    margin-bottom: 40px;
}

.connectQpm .ts-wrapper {
    width: 400px;
    margin-right: 8px;
    background-color: white;
}

.connectQpm .ts-wrapper .item,
.connectQpm .ts-wrapper .option {
    font-size: 1.4rem;
}

.connectQpm form {
    display: flex;
}

.connectQpm select,
.connectQpm button {
    height: 50px;
    padding: 14px;
}

.connectQpm select {
    width: 360px;
    margin-right: 8px;
    outline: 0;
    cursor: pointer;
}

.connectQpm button {
    font-size: 1.4rem;
    width: 120px;
}

.connectQpm .howToQpm {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 1.2rem;
    line-height: 1;
    opacity: .7;
}

.connectQpm .howToQpm img {
    width: 14px;
    margin-right: 5px;
}

/* .tableQpm {
	display: flex;
	overflow-x: scroll;
	height: 600px;
} */
#users-table {
}

.tabulator {
    background-color: unset;
}

.tabulator-footer {
    /*display: none;*/
}

.tabulator-header {
    border: 0 !important;
    background-color: unset !important;
}

.tabulator-headers,
.tabulator-row {
    position: relative;
    display: flex;
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    padding-left: 16px !important;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.1) 0px 6px 12px -2px, rgba(0, 0, 0, 0.05) 0px 3px 7px -3px;
}

.tabulator-headers {
    padding-top: 25px;
    padding-bottom: 25px;
    height: auto !important;
}

.tabulator-headers .tabulator-col {
    font-weight: 600;
}

.tabulator-headers,
.tabulator-row {
    padding-right: 10px;
}

.tabulator-headers .tabulator-col,
.tabulator-row .tabulator-cell {
    padding: 10px;
    flex-shrink: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.tabulator-headers .tabulator-col {
    align-items: flex-start;
}

.tabulator-headers .tabulator-col input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--border-color);
    margin-top: 5px;
    padding: 8px 10px !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    transition: .3s;
}

.tabulator-headers .tabulator-col input[type="search"]:focus {
    outline: 0;
    border: 1px solid #aaa;
}

.tabulator-headers .tabulator-col[tabulator-field="documents"],
.tabulator-row .tabulator-cell[tabulator-field="documents"],
.tabulator-headers .tabulator-col[tabulator-field="evaluation"],
.tabulator-row .tabulator-cell[tabulator-field="evaluation"],
.tabulator-headers .tabulator-col[tabulator-field="actions"],
.tabulator-row .tabulator-cell[tabulator-field="actions"],
.tabulator-headers .tabulator-col[tabulator-field="checkbox_html"],
.tabulator-row .tabulator-cell[tabulator-field="checkbox_html"] {
    align-items: center;
    justify-content: center;
}

.tabulator-headers .tabulator-col {
    justify-content: flex-start !important;
}

.tabulator-headers .tabulator-col[tabulator-field="checkbox_html"],
.tabulator-row .tabulator-cell[tabulator-field="checkbox_html"] {

}

.tabulator-row {
    border: 0;
    min-height: 60px !important;
}

.tabulator-headers:before,
.tabulator-row:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background-color: var(--light-color);
}

.tabulator-headers:before {
    background-color: var(--main-color);
}

.tabulator-row.tabulator-row-even {
    background-color: white;
}

.tabulator-row.tabulator-selectable:hover {
    background-color: white;
    cursor: default;
}

.tabulator-row .tabulator-cell {
    height: auto !important;
}

.tabulator-row .tabulator-cell .btn {
    color: unset !important;
    background-color: unset !important;
    border: unset !important;
    opacity: .5;
    transition: opacity .1s;
    padding: 0;
    margin: 0 5px;
}

.tabulator-row .tabulator-cell .btn:hover {
    opacity: 1;
}

.tabulator-row .tabulator-cell[tabulator-field="parent.name"] {
    color: var(--secondary-color);

}

.tabulator-paginator .tabulator-page-size {
    width: 52px;
    background-size: 12px !important;
    background-position: right 10px center !important;
}

#users-table input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--light-color);
    cursor: pointer !important;
    background-color: transparent;
    transition: background-color .2s, border-color .2s;
    margin: 0;
}

#users-table input[type="checkbox"]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

#users-table input[type="checkbox"]:checked:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/icon-check.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.tabulator .tabulator-footer {
    border: 0;
    background-color: unset;
}

.tabulator .tabulator-footer .tabulator-counter {
    font-size: 1.4rem;
}

.tabulator .tabulator-footer .tabulator-page {
    padding: 6px 8px;
    margin: 0 5px 0 0;
    border: 0;
    background-color: unset;
    color: var(--main-color);
    font-size: 1.4rem;
}

.tabulator .tabulator-footer .tabulator-page:disabled {
    border: 0;
    background-color: unset;
    color: var(--main-color);
}

.tabulator .tabulator-footer .tabulator-pages .tabulator-page {
    height: 30px;
    width: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-color);
    margin-right: 0px;
}

.tabulator .tabulator-footer .tabulator-page.active,
.tabulator .tabulator-footer .tabulator-page.active:hover {
    background-color: var(--main-color);
    color: white;
    border: 0;
}

.tabulator .tabulator-col-resize-handle {
    width: 3px;
    margin-right: -4px;
}

.tiny-text {
    font-size: 0.875rem;
}


.auth-button {
    width: 100%;
    background-color: #82D4EC;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--main-text-color);
    letter-spacing: .05rem;
    margin-top: 30px !important;
    padding: 15px 40px;
    border: 0;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none !important;
}

.auth-button:hover {
    opacity: .9;
}

/* Medium devices (tablets, 768px and up) */
@media screen and (max-width: 768px) {

}

/* Small devices (landscape phones, 576px and up) */
@media screen and (max-width: 576px) {

}

/* Small devices (portrait phones, 576px and up) */
@media screen and (max-width: 414px) and (orientation: portrait) {

}

/* DEBUG */
/* * { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue }  */

.btn-primary {
    color: #fff !important;
    background: #004B87 !important;
}
.btn-secondary {
    color: #fff !important;
    background: #FC4C02 !important;
}
