:root {
    --gray-bg: #caced2;
    --cyan-custom: #5ebcc5;
    --color-hybris: #bcc55e;
    --color-spanish: #c59a5e;
    --color-musica: #5e89c5;
}

button {
    background: white;
    color: black !important;
    cursor: pointer;
    border: none;
    padding: 5px 15px;
    border: 1px solid #fd8204;
    display: block;
    margin-left: 5px;
}
input [type="text"] {
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    line-height:34px;
    height:34px;
    padding:0 10px;
}

.color-cr {
    color: var(--blue) !important;
}

.color-ni {
    color: var(--indigo) !important;
}

.color-gt {
    color: var(--purple) !important;
}

.color-sv {
    color: var(--pink) !important;
}

.color-pa {
    color: var(--orange) !important;
}

.color-finda {
    color: var(--yellow) !important;
}

.color-nomad {
    color: var(--green) !important;
}

.color-regional {
    color: var(--teal) !important;
}

.color-trixo {
    color: var(--dark) !important;
}

.color-sjude {
    color: var(--red) !important;
}

.color-fcar {
    color: var(--secondary) !important;
}

.color-modelcar {
    color: var(--primary) !important;
}

.color-kunn {
    color: var(--success) !important;
}

.color-cachimba {
    color: var(--danger) !important;
}

.color-fotografia {
    color: var(--gray) !important;
}

.color-hybris {
    color: var(--color-hybris) !important;
}

.color-spanish {
    color: var(--color-spanish) !important;
}

.color-musica {
    color: var(--color-musica) !important;
}

.color-custom-cyan {
    color: var(--cyan-custom);
}

.allDays {
    width: 95%;
    margin: 50px auto 0;
}

.allDays a {
    color: var(--gray);
}

.day {
    width: calc((100% / 7) - 4px);
    height: auto;
    border: 1px dotted #f1f1f1;
    display: inline-block;
    position: relative;
    padding: 10px;
    height: 70px;
    margin-bottom: 5px;
}

.day>.day-number {
    line-height: 13px;
    padding: 5px 0px;
    text-align: left;
    color: var(--gray-dark);
    font-size: 18px;
    font-weight: bold;
}

.disabled-click .day>.day-number {
    color: lightslategrey;
}

.day {
    background: #f3f3f3;
}

.day:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.day:hover .btn-custom-hour {
    color: white !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: 10x;
    right: 5px;
    font-weight: bold;
    background-color: var(--cyan-custom) !important;
}

.day.active .btn-custom-hour {
    color: var(--cyan-custom);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: bold;
    background-color: white;
    border: none;
}

.day:hover .btn-custom-hour.custom-red {
    background-color: var(--red) !important;
    border: 1px solid var(--red) !important;
    color: var(white) !important;
}

.day:hover .btn-custom-hour.custom-orange {
    background-color: var(--orange) !important;
    border: 1px solid var(--orange) !important;
    color: var(white) !important;
}

.day:hover .btn-custom-hour.custom-yellow {
    background-color: var(--yellow) !important;
    border: 1px solid var(--yellow) !important;
    color: var(white) !important;
}

.day:hover .btn-custom-hour.custom-green {
    background-color: var(--green) !important;
    border: 1px solid var(--green) !important;
    color: var(white) !important;
}

.day.active .day-number {
    color: white;
}

.day.active .day-name {
    color: white;
}

.day>.day-name {
    line-height: 13px;
    padding: 10px 0px 0px;
    text-align: left;
    font-size: 14px;
    color: var(--gray-dark);
}


/**/

.projectImage {
    width: 40px;
    height: 40px;
    margin: auto;
}

.projectImage>img {
    width: inherit;
    height: inherit;
    border-radius: 100%;
    padding: 5px;
}

.project.active>.projectImage>img {
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
}

.project {
    width: 100%;
    max-width: 100px;
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .1);
}

.project.active {
    background-color: rgba(0, 0, 0, .25);
}

.project:hover {
    background-color: rgba(0, 0, 0, .2);
}

.getProjects,
.select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}


/**/

.field {
    background: #fff;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 10px;
    width: auto;
    cursor: pointer;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.field span {
    font-size: 12px;
}

.field:hover {
    background: #f3f3f3;
}

.cont {
    width: 100%;
    display: none;
    background: #fff;
    overflow: auto;
    max-height: 160px;
    position: absolute;
    z-index: 1;
    /
}

.select {
    display: inline-block;
}

.option {
    padding: 2px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background .15s;
    -o-transition: background .15s;
    transition: background .15s;
    color: #000;
    font-size: 12px;
    text-align: left;
}

.option:not(.active):hover {
    background: rgba(0, 0, 0, 0.2);
}

.option.active {
    background: rgba(0, 0, 0, 0.33);
    color: #fff;
}


/**/

select#client {}

.getProjects {
    padding: 10px 10px 0px 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cont::-webkit-scrollbar {
    width: 5px;
    height: initial;
}

.cont::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.cont::-webkit-scrollbar-thumb {
    background: #ffaa55;
    border: 0px none #ffffff;
    border-radius: 50px;
}

.cont::-webkit-scrollbar-thumb:hover {
    background: #ff962d;
}

.cont::-webkit-scrollbar-thumb:active {
    background: #f07800;
}

.cont::-webkit-scrollbar-track {
    background: #ffffff;
    border: 0px none #ffffff;
    border-radius: 0px;
}

.cont::-webkit-scrollbar-track:hover {
    background: #9f9f9f;
}

.cont::-webkit-scrollbar-track:active {
    background: #969696;
}

.cont::-webkit-scrollbar-corner {
    background: transparent;
}

.day.active {
    background: #fd8204;
}

.jobItem {
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.jobItem:hover {
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.jobItem>div {
    display: inline-block;
    padding: 5px 10px;
    width: calc(25% - 2.8px);
    border-right: 1px solid;
}

.jobTime {
    color: green;
}

.jobList {
    border: 1px solid;
}

.jobActions {
    border-right: none !important;
}

span.headerSeparator {
    height: 50px;
    width: 2px;
    background: #000;
    margin-left: 20px;
}

span.userIcon {
    display: inline-block;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    font-size: 21px;
    text-align: center;
}

span.userIcon i {
    /* color: var(--orange); */
    display: block;
    background: #fd8204;
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.logoutIcon i {
    background-color:silver;
}
span.userIcon i:before {
    color: white;
    /* line-height: 22px; */
    font-size: 15px;
}
span.logoutIcon i:before {
    color: white;
    font-size: 15px;
}

span.logoutIcon {
    display: inline-block;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    font-size: 21px;
}

.userLabel {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 3px 5px;
    text-align: center;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.userLabel:nth-child(2),
.userLabel:nth-child(3) {
    background-color: var(--white);
    border-radius: 50%;
    margin: 0;
}

.userLabel:first-child:hover {
    text-decoration: none;
    color: var(--cyan);
}

.userLabel i {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    display: block;
    /* background: grey; */
    height: 25px;
    width: 25px;
    border-radius: 50%;
    text-align: center;
}

.userLabel:nth-child(2):hover i,
.userLabel:nth-child(3):hover i {
    color: var(--cyan);
}

.backButton {
    margin: 10px 30px;
    text-transform: uppercase;
}

.custom-search {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-custom-circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--cyan-custom);
    vertical-align: middle;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.btn-custom-circle-hover {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-custom-circle-hover span {
    font-size: 10px !important;
    font-weight: bold;
    color: var(--gray-dark);
}

.btn-custom-circle-hover:hover span {
    color: var(--white);
}

.btn-custom-circle-hover:hover,
.btn-custom-circle-hover:focus {
    background-color: var(--cyan-custom) !important;
    color: var(--white) !important;
    outline: none;
    text-decoration: none;
}

.btn-custom {
    padding: 0px 15px;
    border-radius: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid var(--cyan-custom);
    font-size: 14px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-weight: 500;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    vertical-align: middle;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow: hidden;
}

.btn-custom i {
    line-height: 30px;
    margin-right: 10px;
}

.btn-custom-small {
    padding: 0px 10px;
    border-radius: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid var(--cyan-custom);
    font-size: 10px;
    text-align: center;
    height: 25px;
    line-height: 25px;
    font-weight: 500;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    vertical-align: middle;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.btn-custom-orange {
    background: var(--white);
    color: var(--gray-dark);
    cursor: pointer;
    border: 1px solid var(--orange) !important;
}

.btn-custom-orange:hover,
.btn-custom-orange:focus {
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
    border: 1px solid var(--orange);
    outline: none;
    text-decoration: none;
}

.btn-custom-gray {
    background: var(--gray-bg);
    color: var(--gray-dark);
    cursor: pointer;
    border: 1px solid var(--gray-bg) !important;
}

.btn-custom-gray:hover,
.btn-custom-gray:focus {
    background: var(--gray);
    color: var(--gray-bg);
    cursor: pointer;
    border: 1px solid var(--gray);
    outline: none;
    text-decoration: none;
}

.btn-custom-white {
    background: var(--white);
    color: var(--gray-dark);
    cursor: pointer;
    border: 1px solid var(--cyan-custom);
}

.btn-custom-white:hover,
.btn-custom-white:focus {
    background: var(--cyan-custom);
    color: var(--white);
    cursor: pointer;
    border: 1px solid var(--cyan-custom);
    outline: none;
    text-decoration: none;
}

.btn-custom-cyan {
    background: var(--cyan-custom);
    color: white !important;
    cursor: pointer;
}

.btn-custom-cyan:hover,
.btn-custom-cyan:focus {
    background-color: rgba(94, 188, 197, .7);
    color: #fff;
    outline: none;
    text-decoration: none;
    border: 1px solid rgba(94, 188, 197, .7);
}

.btn-custom-gray-low {
    background-color: var(--gray-bg);
    color: var(--gray-dark) !important;
    cursor: pointer;
}

.btn-custom-gray-low:hover,
.btn-custom-gray-low:focus,
.btn-custom-gray-low:hover span,
.btn-custom-gray-low:focus span {
    background-color: var(--cyan-custom);
    color: var(--white) !important;
    text-decoration: none;
}

.btn-edit {
    text-transform: uppercase;
    margin-left: 5px;
    overflow: hidden;
    text-align: center;
}

.editableDiv {
    height: 40px;
    line-height: 40px !important;
    min-width: 100px;
}

.editableDiv.btn-custom-white:hover {
    background-color: white !important;
}

.editableDiv span {
    color: var(--cyan-custom);
    cursor: initial;
}

.editableDiv span:nth-child(odd) {
    font-size: 22px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.blueButtonTrans {
    color: var(--gray-dark);
    font-size: 16px;
}

.btn-custom-circle:hover {
    background-color: var(--cyan-custom);
    border: 1px solid var(--cyan-custom);
}

.btn-custom-circle:hover .blueButtonTrans {
    color: #fff;
}

.sendForm {
    margin: 5px !important;
}

.mayorQue,
.menorQue,
.dateSelect,
.blueButton.addActivity {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.head1 {
    position: relative;
}

.blueButton.disabled {
    background-color: #f3f3f3;
    border: 1px groove #c3c3c3;
    color: #000;
    cursor: default;
}

.globalError {
    color: red;
}

.disabled-click {
    pointer-events: none;
}

.reset-input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    font-size: 16px;
    position: absolute;
    right: 3px;
    top: 4px;
    border: 1px solid rgba(0, 0, 0, .4);
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.reset-input:hover {
    color: red;
    border: 1px solid red;
}


/*style custom*/

.nav-custom {
    background-color: rgb(243, 243, 243) !important;
    padding: 12px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.nav-custom .navbar-brand {
    margin-left: 20px;
    font-weight: 600;
    color: var(--gray-dark);
}

.nav-custom .navbar-brand:hover {
    color: var(--gray);
}

.box-login {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .3s linear;
    display: flex;
}

.container-list {
    padding: 10px 30px 10px;
    /* overflow: hidden; */
    margin-right: 10px !important;
    margin-left: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.table-list {
    margin: 30px auto;
    width: 100%;
    float: left;
}

.row-head {
    background-color: var(--gray-bg);
}

.row-head,
.row-list {
    width: 100%;
}

.row-list {
    border-bottom: 2px solid var(--gray-bg);
}

.row-list:nth-child(odd) {
    // background-color:rgba(0,0,0,.05)
}

.row-head div:nth-child(1),
.row-list div:nth-child(1) {
    width: 100%;
    max-width: 80px;
}

.row-list div:nth-child(1) input {
    margin: 0 auto;
}

.row-head div:nth-child(2),
.row-list div:nth-child(2) {
    width: 100%;
    max-width: 100%;
}

.row-head div:nth-child(3),
.row-list div:nth-child(3) {
    width: 100%;
    max-width: 360px;
}

.row-list div:nth-child(3) {
    font-size: 12px;
    font-weight: bold;
}

.row-head div:nth-child(4) i {
    font-size: 25px !important;
}

.row-head div:nth-child(4),
.row-list div:nth-child(4) {
    width: 100%;
    max-width: 80px;
}

.row-head div:nth-child(5),
.row-list div:nth-child(5) {
    width: 100%;
    max-width: 50px;
}

.row-head div:nth-child(5) p,
.row-list div:nth-child(5) p {
    margin-left: 10px;
    text-align: center;
}

.row-head div:nth-child(6),
.row-list div:nth-child(6) {
    width: 100%;
    max-width: 150px;
}

.head-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    /* border: 1px solid red; */
}

.head-item p {
    margin-bottom: initial;
    font-weight: 600;
}

.list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 7px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    /* border: 1px solid green; */
}

.list-item:nth-child(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.list-item p {
    margin-bottom: initial;
}

.list-item p span:first-child {
    text-transform: uppercase
}

.modal-view .modal-dialog {
    max-width: 700px;
}

.veil {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    top: 0;
    left: 0;
    z-index: 1000;
}

.modal-view {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: initial !important;
    outline: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.modal-view .modal-content {
    padding: 0 20px;
    -webkit-box-shadow: 0px 0px 17px rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 17px rgba(0, 0, 0, .5);
    border: none;
}

.modal-view .modal-body {
    padding: 20px 0;
}

.modal-view .modal-time {
    text-align: center;
}

.modal-view .modal-time p {
    font-size: 20px;
    line-height: 34px;
    padding: 0px 20px;
    height: 34px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.modal-view .modal-time p small {
    vertical-align: text-bottom;
    margin-right: 5px;
}

.modal-view .modal-header {
    border-bottom: 1px solid var(--cyan-custom);
    padding: 10px 0 !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.modal-view .modal-footer {
    border-top: none;
    padding: 20px 0 !important;
}

.modal-view .modal-title {
    font-weight: 400;
    text-align: left;
}

.modal-view .modal-title i {
    margin-right: 10px;
}

.modal-view .modal-title span:nth-child(2) {
    text-transform: uppercase;
}

.modal-data ul {
    margin-left: 0;
    padding-left: 0;
}

.modal-data ul li {
    list-style: none;
}

.modal-data ul li i {
    padding: 0 10px;
    width: 40px;
}

.container-edit {
    display: -ms-grid;
    display: grid;
    max-width: 1920px;
    width: 100%;
    position: relative;
    grid-gap: 2%;
    grid-row-gap: 25px;
    -ms-grid-columns: 33% 33% 33%;
    grid-template-columns: 32% 32% 32%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.content-edit-1 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
}

.content-edit-2 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
}

.content-edit-3 {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
}

.content-edit-4 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
}

.content-edit {
    background-color: rgba(0, 0, 0, .1);
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 3px;
}

.content-edit-head {
    padding: 10px 10px;
    border-bottom: 1px solid var(--cyan-custom);
}

.content-edit-head .userLabel {
    margin: initial;
}

.content-edit-head h5 {
    text-transform: uppercase;
    margin-bottom: initial;
    width: auto;
    display: inline-flex;
}

.addForm {
    position: relative;
    width: 100%;
    padding: 10px 10px;
}

label.text-label {
    margin-top: 15px;
    margin-left: 15px;
    font-weight: 600;
    font-size: 16px;
}

.getTime {
    padding: 10px;
}

.selectable:after {
    /*    content: '';
display: block;
position: absolute;
border: 6px solid #ccc;
height: 7px;
width: 7px;
z-index: 11;
top: 0px;
right: 15px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
border-color: transparent var(--cyan-custom) var(--cyan-custom) transparent;
z-index: 1000;*/
}

.comentaries {
    width: calc(100% - 20px);
    position: relative;
    display: block;
    margin: 0 auto;
}

.comentaries textarea {
    display: block;
    width: 100% !important;
    border-radius: 8px;
    border: 2px solid transparent;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.comentaries textarea:hover {
    border: 1px solid var(--gray);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.select.selectable:after {
    content: '';
    top: 7px;
}

.rel {
    position: relative;
    width: 100%;
}

.select-style {
    width: 100%;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    color: var(--gray-dark);
    border: 1px solid var(--white);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    cursor: pointer;
    -webkit-appearance: none;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

input.select-style::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .3) !important;
}

.selectable {
    position: relative;
    display: block;
    width: calc(100% - 30px);
}

.content-edit-1 .selectable {
    width: 100%;
}

.content-edit-1 .selectable:before {
    display: none;
}

.selectable:before {
    display: block;
    height: 15px;
    width: 15px;
    content: '';
    border: 1px solid silver;
    position: absolute;
    right: -24px;
    top: 5px;
    transform: rotate(135deg);
    border-color: grey grey transparent transparent;
    z-index: 59;
}

.select-style:hover,
.select-style:focus {
    outline: none;
    color: var(--gray-dark);
    /* border: 1px solid var(--cyan-custom); */
    cursor: pointer;
    background-color: rgba(255, 255, 255, .6);
}

.btn-custom-hour {
    color: var(--cyan-custom);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: bold;
}

.lat-menu {
    background-color: #eaeaea;
    float: left;
    width: 30%;
    margin-left: 7%;
    -webkit-box-shadow: 0px 0px 10px #80808085;
    box-shadow: 0px 0px 10px #80808085;
}

.lat-menu span:nth-child(5) {
    background: var(--cyan);
    color: var(--white);
    padding: 5px 15px !important;
    margin-left: 10px;
    margin-bottom: 10px !important;
    border-radius: 20px;
    display: inline-block;
    font-size: 20px;
}

span.client-name-lat-menu {
    float: right;
    color: #fd8204;
}

span.client-time-lat-menu {
    float: right;
}

span.client-time-lat-menu {
    color: #2b2b2b;
    font-weight: bold;
}

.client-sect-lat-menu {
    padding: 20px;
}

.client-sect-lat-menu:nth-child(2n+1) {
    background-color: white;
}
.button-content-kunn-home > a {
    display:inline-block;
    /* float: left; */
    margin: 0 1px;
}
.button-content-kunn-home > a:hover {
    text-decoration:none;
}

.btn-home {
    background-color: #fd8204;
    padding: 10px 20px;
    color: white;
    border: none;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: bold;
    /* border: 3px solid #ffa500; */
    width: fit-content;
    /* display: inline-block; */
    text-decoration: none !important;
    border-radius: 4px;
}

.btn-home:hover {
    background-color: #caced2;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #434343;
    /* border: 3px solid #a9abac; */
}

.button-content-kunn-home {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: center;
    text-align: center;
    margin-top: 10px;
    padding: 5px;
    justify-content: center;
}

p.cliente {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #8080806e;
}

.prevMonth {
    position: absolute;
    left: 0px;
    top: 10%;
    transform: translateY(-10%);
}

.backButton.blueButton.btn-custom.btn-custom-cyan.nextMonth {
    position: absolute;
    right: 0px;
    top: 10%;
    transform: translateY(-10%);
}

i.fas.fa-angle-double-right {
    margin-left: 10px;
    margin-right: 0px;
}

span.total-hours {
    float: right;
    font-size: 16px;
    padding-right: 20px !important;
    font-weight: bold;
    color: #5ebcc5;
}

.control-countries {
    width: 100%;
    position: relative;
    display: block;
    margin: 40px 0;
}

.control-countries--item {
    width: 100%;
    position: relative;
    display: block;
    background-color: var(--gray-bg);
    font-size: 20px;
    padding: 0 20px;
    line-height: 50px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease-in;
}

.control-countries--item.is-active {
    background-color: var(--cyan-custom);
    color: #ffffff;
    margin-bottom: 0;
}

.control-countries--item:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #000000;
    border-left: 3px solid #000000;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: all .2s linear;
}

.control-countries--item.is-active:after {
    border-left: 3px solid #ffffff;
    border-bottom: none;
    transform: rotate(90deg);
    top: 25px;
}

.control-countries--item:hover {
    cursor: pointer;
    opacity: .7;
}

.control-countries--data {
    width: 100%;
    position: relative;
    padding: 40px;
    background-color: rgba(0, 0, 0, .05);
}

.control-users {
    display: block;
    position: relative;
    width: 100%;
    background-color: rgba(0, 0, 0, .05);
    padding: 20px
}

.control-users>h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.control-users--list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.control-users--item {
    text-align: center;
    margin: 20px auto;
    display: inline-block;
    padding: 10px;
    max-width: 300px;
    width: 33.33%;
}

.control-users--item h4 {}

.control-users--item p {
    font-weight: 800;
    font-size: 20px;
}

.control-users--item .user-images {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.user-progress {
    position: absolute;
    top: 0;
    left: 0;
}

.user-progress>strong {
    position: absolute;
    top: -2px;
    left: 52px;
    font-size: 10px;
    color: #ffffff;
    display: none;
}

.control-users--item .user-images>img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    top: -2px;
    left: -2px;
    position: relative;
}

.bg-red {
    background-color: #f73636;
}

.bg-green {
    background-color: #48af4d;
}

.bg-blue {
    background-color: #4371ff;
}

.color-red {
    color: #f73636;
}

.color-green {
    color: #48af4d;
}

.color-blue {
    color: #4371ff;
}

.disabledDay {
    background-color: #ffffff;
    opacity: 0.4;
}

.panelChecks {
    width: fit-content;
    display: inline-block;
    vertical-align: top;
    padding: 10px 60px;
    background: #c3c3c3;
}

.panelClient {
    width: fit-content;
    display: inline-block;
    vertical-align: top;
}

.panelChecks label:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}

.panelChecks label {
    padding: 4px;
    transition: all .2s;
}

.panelChecks p {
    margin: 0px;
}

#searchClient:focus,
#searchClient:active {
    background-color: #fff;
}

#searchClient {
    width: 100%;
    padding: 5px;
    border: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.7);
}

.clientSelectable::-webkit-scrollbar, div.export-userSelect ul::-webkit-scrollbar {
    width: 5px;
    height: initial;
}

.clientSelectable::-webkit-scrollbar-button, div.export-userSelect ul::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.clientSelectable::-webkit-scrollbar-thumb, div.export-userSelect ul::-webkit-scrollbar-thumb {
    background: #ffaa55;
    border: 0px none #ffffff;
    border-radius: 50px;
}

.clientSelectable::-webkit-scrollbar-thumb:hover, div.export-userSelect ul::-webkit-scrollbar-thumb:hover {
    background: #ff962d;
}

.clientSelectable::-webkit-scrollbar-thumb:active, div.export-userSelect ul::-webkit-scrollbar-thumb:active {
    background: #f07800;
}

.clientSelectable::-webkit-scrollbar-track {
    background: #ffffff;
    border: 0px none #ffffff;
    border-radius: 0px;
}
div.export-userSelect ul::-webkit-scrollbar-track {
    background:#f1f1f1;
}

.clientSelectable::-webkit-scrollbar-track:hover, div.export-userSelect ul::-webkit-scrollbar-track:hover {
    background: #9f9f9f;
}

.clientSelectable::-webkit-scrollbar-track:active, div.export-userSelect ul::-webkit-scrollbar-track:active {
    background: #969696;
}

.clientSelectable::-webkit-scrollbar-corner, div.export-userSelect ul::-webkit-scrollbar-corner {
    background: transparent;
}

.clientSelectable {
    min-height: 500px !important;
}

.clientSelectable div {
    padding: 2px;
}

.clientSelectable div:hover,
.clientSelectable div.activedClient {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.clientSelectable>a {
    text-decoration: none;
    color: rgb(33, 37, 41);
}

#addUser input:not([type='submit']),
#addUser select {
    width: 90%;
    position: relative;
    left: 5%;
}

#addUser input[type="submit"] {
    margin: auto;
    display: block;
}

#addUser {
    margin: auto;
    text-align: left;
    width: 50%;
}

div.export-userSelect {
    display: inline-block;
    vertical-align: top;
    padding: 23px;
    border-right:1px solid #f1f1f1;
    min-width: 278px;
}

div.export-userSelect button {
    background: white;
    color: black !important;
    cursor: pointer;
    border:none;
    padding: 5px 15px;
    border:1px solid #fd8204;
    display: block;
    /* margin: 0 0 0 auto; */
    margin-left: 5px;
}

.export-userSelect button#submit {
    background:#fd8204;
    color:white !important;
}

div.export-userSelect ul {
    max-height: 403px;
    overflow: auto;
    margin-left: 0px;
    padding-left: 0;
    padding: 5px 18px 5px 5px;
    /* margin-top: 11px; */
    /* padding-right: 18px; */
}

.export-userSelect li {
    list-style-type: none;
    padding: 5px;
}

.export-userSelect li input[type="checkbox"] {
    display: none;
}

.export-userSelect li {
    cursor: pointer;
    background: white;
    color: black !important;
    cursor: pointer;
    padding: 0px 15px;
    border-radius: 100px;
    margin-bottom: 5px;
    border: 1px solid silver;
    position: relative;
    line-height: 32px;
}
.export-userSelect li:after {
    position:absolute;
    border:1px solid silver;
    content:'';
    height:10px;
    width:10px;
    right: 9px;
    top: 11px;
    transform: rotate(45deg);
    border-color: grey grey transparent transparent;
}
.export-userSelect li.active:after {
    border-color: white white transparent transparent;
}
.export-userSelect li:hover {
    background-color:#f1f1f1;
}

.export-userSelect li.active {
        text-decoration: none;
    background-color: var(--cyan-custom);
    color: white !important;
    border: 1px solid var(--cyan-custom);
    
}


div.export-projectSelect {
    display: inline-block;
    vertical-align: top;
    margin: 12px;
}

div.export-projectSelect ul {
    max-height: 360px;
    overflow: auto;
    margin-left: 0px;
    padding-left: 6px;
    padding: 12px;
}

.export-projectSelect li {
    list-style-type: none;
    padding: 5px;
}

.export-projectSelect li input[type="checkbox"] {
    display: none;
}

.export-projectSelect li {
    cursor: pointer;
}

.export-projectSelect li:hover,
.export-projectSelect li.active {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.mostUsed {
    padding: 0px 0px 8px 0px;
}

#input_text-project2[disabled] {
    background: rgba(137, 137, 137, 0.48);
    color: #888888;
}

.resetInput2 {
    padding: 2px 8px;
    width: fit-content;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1001;
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, .4);
}

.resetInput2:hover {
    color: red;
    border: 1px solid red;
}

div#transferPopup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    background-color: #f3f3f3;
    border: 1px solid #c3c3c3;
}

.transferPopup-user {
    padding: 10px;
    text-align: center;
}

.transfer-users {
    display: inline-block;
    padding: 35px 5px;
    border: 1px solid #000;
    background-color: #fff;
    cursor: pointer;
}

.transfer-users:hover {
    background-color: #fd8204;
    color: #fff;
}

.transfer-users.active {
    background-color: #ca6804;
    color: #fff;
}

.transfer-button {
    background-color: #fd8204;
    color: #fff;
    padding: 14px 7px;
    width: fit-content;
    cursor: pointer;
    margin: auto;
    transition: .3s;
    display: inline-block;
}

.transfer-button:hover {
    background-color: #ca6804;
    color: #fff;
}

#transferVel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

.transfer-buttons {
    width: 100%;
    text-align: center;
}

.contextmenu {
    position: absolute;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    padding: 7px;
    background-color: #f3f3f3;
    border: 1px solid #c3c3c3;
}

.contextmenu>ul {
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.contextmenu>ul li {
    list-style-type: none;
    padding: 0px 5px;
    cursor: pointer;
}

.contextmenu>ul li:hover {
    list-style-type: none;
    padding: 0px 5px;
    background-color: #fd8204bf;
    color: #fff;
}

.betaWarnWrapper {
    background: silver;
    color: #fff;
    padding: 5px;
    position: fixed;
    right: 18px;
    bottom: 14px;
    margin: auto;
    width: 32%;
    height: auto;
    text-align: center;
    border-radius: 27px;
}

button#back-Beta {
    margin-right: 5px;
    color: #fff;
    background: #4e4c4c;
    border: 0;
}

#sv .control-users .control-users--list .control-users--item:nth-child(4),
#sv .control-users .control-users--list .control-users--item:nth-child(5),
#sv .control-users .control-users--list .control-users--item:nth-child(6),
#sv .control-users .control-users--list .control-users--item:nth-child(8),
#sv .control-users .control-users--list .control-users--item:nth-child(9),
#sv .control-users .control-users--list .control-users--item:nth-child(10) {
    display: none;
}

/* status controller */

.containerStatus input[type="text"] {
    border-radius:100px;
    display:inline-block;
    border:1px dotted silver;
    padding: 5px 10px;
}
.containerStatus textarea {
    border:1px dotted silver;
    border-radius:4px;
}
.panelInfoStatistics {
    background-color: #caced247;
    padding:20px;
}
.panelInfoStatistics span {
    /* background-color: #5ebcc540 !important; */
    display:block;
    margin-bottom:1px;
    border-bottom: 1px dotted silver;
}
.containerStatus #selectCountry > div {
    display: inline-block;
    background: white;
    color: black !important;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 100px;
    margin-right: 5px;
    border: 1px solid silver;
}
.containerStatus #selectCountry > div:hover {
    text-decoration:none;
}
.containerStatus #selectCountry.multiSelect {
    background-color:white !important;
}
.containerStatus #selectCountry > div.activeItem {
    text-decoration:none;
    background-color:var(--cyan-custom);
    color: white !important;
    border: 1px solid var(--cyan-custom);
}
.containerStatus #selectType {
    display:flex;
    background-color: white;
}
.containerStatus #selectType > div, .export-userSelect > span {
    display:inline-block;
    background: #f1f1f1;
    color: black;
    cursor: pointer;
    padding:5px 15px;
    border-radius:100px;
    margin-right:5px;
    font-size: 18px;
}
.export-userSelect > span {
    cursor:initial;
    margin-bottom: 12px;
    display: block;
}
.containerStatus #selectType > div:hover {
    text-decoration:none;
    background-color: rgba(94, 188, 197, .7);
}
.containerStatus #selectType > div.activeItem {
    background-color: var(--cyan-custom);
    text-decoration:none;
    color: white;
}

.frameChap {
    height: 500px !important;
}

@media screen and (max-width: 1199px) {
    .container-list iframe {
        float: initial !important;
        width: 100% !important;
        height: 400px !important;
    }
    .lat-menu {
        background-color: #eaeaea;
        float: initial;
        width: 100%;
        margin-left: 0;
        -webkit-box-shadow: 0px 0px 10px #80808085;
        box-shadow: 0px 0px 10px #80808085;
    }
}

@media screen and (max-width: 992px) {
    .control-countries--data {
        padding: 20px;
    }
    .control-users {
        padding: 10px
    }
    .container-calendar {
        max-width: initial !important;
    }
    .btn-custom-hour {
        color: var(--cyan-custom);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        text-align: center;
        position: absolute;
        top: 5px;
        right: 5px;
        font-weight: bold;
    }
    .day:hover .btn-custom-hour {
        color: var(--white);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        text-align: center;
        position: absolute;
        top: 5px;
        right: 5px;
        font-weight: bold;
        background-color: var(--cyan-custom) !important;
    }
    .day.active .btn-custom-hour {
        color: var(--cyan-custom);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        text-align: center;
        position: absolute;
        top: 5px;
        right: 5px;
        font-weight: bold;
        background-color: var(--white) !important;
    }
    .container-edit {
        display: -ms-grid;
        display: grid;
        max-width: 1920px;
        width: 98%;
        position: relative;
        grid-gap: 5px;
        grid-row-gap: 25px;
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
    }
    .content-edit {
        min-height: 300px !important;
    }
    .content-edit-1 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-row-span: 0;
        grid-row-end: 1;
    }
    .content-edit-2 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-row: 2;
        grid-row-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 3;
    }
    .content-edit-3 {
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        -ms-grid-row: 2;
        grid-row-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 3;
    }
    .content-edit-4 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
        -ms-grid-row: 3;
        grid-row-start: 3;
        -ms-grid-row-span: 1;
        grid-row-end: 4;
    }
}

@media screen and (max-width: 767px) {
    .control-users--item {
        max-width: initial;
        width: 50%;
    }
    .nav-custom {
        background-color: rgb(202, 206, 210) !important;
        padding: 20px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav-custom .navbar-brand {
        margin-left: 10px;
        font-weight: bold;
    }
    span.headerSeparator {
        height: 50px;
        width: 2px;
        background: #000;
        margin-left: 10px;
    }
    .userLabel:first-child {
        display: none;
    }
    .box-login {
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .btn-edit {
        text-transform: uppercase;
        margin-left: 5px;
        overflow: hidden;
    }
    .btn-custom-small {
        padding: 0px 10px;
        border-radius: 50px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        border: 1px solid var(--cyan-custom);
        font-size: 10px;
        text-align: center;
        height: 25px;
        line-height: 25px;
        font-weight: 500;
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
        vertical-align: middle;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }
    .head1 {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .row-head div:nth-child(3),
    .row-list div:nth-child(3) {
        width: 10%;
        display: none;
    }
    .row-head div:nth-child(2),
    .row-list div:nth-child(2) {
        width: 40%;
    }
    .container-edit {
        display: -ms-grid;
        display: grid;
        max-width: 1920px;
        width: 100%;
        position: relative;
        grid-gap: 5px;
        grid-row-gap: 25px;
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
    }
    .content-edit {
        min-height: 300px !important;
    }
    .content-edit-1 {
        -ms-grid-column: initial;
        grid-column-start: initial;
        -ms-grid-column-span: NaN;
        grid-column-end: initial;
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
    }
    .content-edit-2 {
        -ms-grid-column: initial;
        grid-column-start: initial;
        -ms-grid-column-span: NaN;
        grid-column-end: initial;
        -ms-grid-row: 2;
        grid-row-start: 2;
        -ms-grid-row-span: 1;
        grid-row-end: 3;
    }
    .content-edit-3 {
        -ms-grid-column: initial;
        grid-column-start: initial;
        -ms-grid-column-span: NaN;
        grid-column-end: initial;
        -ms-grid-row: 3;
        grid-row-start: 3;
        -ms-grid-row-span: 1;
        grid-row-end: 4;
    }
    .content-edit-4 {
        -ms-grid-column: initial;
        grid-column-start: initial;
        -ms-grid-column-span: NaN;
        grid-column-end: initial;
        -ms-grid-row: 4;
        grid-row-start: 4;
        -ms-grid-row-span: 1;
        grid-row-end: 5;
    }
    .allDays {
        width: 95%;
        margin: 50px auto 0;
        width: 780px;
    }
    .container-calendar .row div:nth-child(3) {
        overflow: auto;
    }
    .head-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        padding: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
    }
    .row-head div:nth-child(4) i {
        font-size: 18px !important;
    }
    .table-list {
        margin: 30px auto;
        width: 700;
        float: initial;
        overflow-x: auto;
    }
}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 479px) {
    .box-login {
        position: absolute;
        right: 10px;
        top: initial;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
        bottom: -40px;
    }
    .btn-custom {
        padding: 0px 15px;
        border-radius: 50px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        border: 1px solid var(--cyan-custom);
        font-size: 12px;
        text-align: center;
        height: 30px;
        line-height: 30px;
        font-weight: 500;
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
        vertical-align: middle;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        overflow: hidden;
    }
    .blueButtonTrans {
        color: var(--gray-dark);
        font-size: 12px;
    }
    .rightContent .btn-custom:first-child {
        width: auto;
        display: flex !important;
        margin-bottom: 5px;
    }
    .editableDiv span:nth-child(odd) {
        font-size: 22px;
        -ms-flex-item-align: end;
        align-self: center;
        margin-bottom: -5px;
    }
}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}