﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
   display: block;
}

html {
   font-family: sans-serif !important;
   line-height: 1.15 !important;
   -webkit-text-size-adjust: 100% !important;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
   height: 100%;
}

@font-face {
   font-family: "Gilroy-SemiBold";
   src: url(../webfonts/Gilroy-SemiBold.ttf) format("truetype");
}

body {
   margin: 0;
   font-family: "Metropolis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
   font-size: 1rem !important;
   font-weight: 400 !important;
   line-height: 1.5 !important;
   color: #687281 !important;
   text-align: left !important;
   background-color: #eff3f9 !important;
   height: 100%;
}

/*ol, ul {
   list-style: none;
}*/

blockquote, q {
   quotes: none;
}

   blockquote:before, blockquote:after,
   q:before, q:after {
      content: '';
      content: none;
   }

table {
   border-collapse: collapse;
   border-spacing: 0;
}

#blazor-error-ui {
   background: lightyellow;
   bottom: 0;
   box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
   display: none;
   left: 0;
   padding: 0.6rem 1.25rem 0.7rem 1.25rem;
   position: fixed;
   width: 100%;
   z-index: 1000;
   animation: hideAnimation 0s ease-in 5s;
   animation-fill-mode: forwards;
}

   #blazor-error-ui .dismiss {
      cursor: pointer;
      position: absolute;
      right: 0.75rem;
      top: 0.5rem;
   }

@keyframes hideAnimation {
   to {
      visibility: hidden;
      width: 0;
      height: 0;
   }
}

.cursor-pointer {
   cursor: pointer;
}

.cursor-no {
   cursor: not-allowed;
}

.cursor-default {
   cursor: default;
}

.pb-10, .py-10 {
   padding-bottom: 6rem !important;
}

.h-100 {
   height: 100% !important;
}

.mt-n10, .my-n10 {
   margin-top: -6rem !important;
}

.elem-form-group-label-up {
   position: absolute;
   top: -0.5rem;
   left: 0.4rem;
   font-size: 0.70rem;
   color: black;
   background-color: white;
}

.elem-form-group-label-down {
   position: absolute;
   top: 0.5rem;
   left: 0.65rem;
   font-size: 0.74rem;
   color: gray;
   background-color: transparent;
}

.elem-from-group-search-icon {
   position: absolute;
   right: 0.6rem;
}

.footer {
   position: absolute;
   bottom: 0;
   width: 100%;
   line-height: 30px; /* Vertically center the text there */
   background-color: #f5f5f5;
}

/*ID le 20/04/2021*/
/*Partie servant à intégrer un drop down dans un drop down (n'existe pas dans le boostrap de base)*/
.dropdown-menu {
   margin-top: 0 !important;
   padding-top: 0 !important;
   padding-bottom: 0 !important;
}

   .dropdown-menu .dropdown-toggle::after {
      vertical-align: middle;
      border-left: 4px solid;
      border-bottom: 4px solid transparent;
      border-top: 4px solid transparent;
   }

   .dropdown-menu .dropdown .dropdown-menu {
      left: 100%;
      top: 0%;
      margin: 0 20px;
      border-width: 0;
   }

      .dropdown-menu .dropdown .dropdown-menu.left {
         right: 100%;
         left: auto;
      }

   .dropdown-menu > li a:hover,
   .dropdown-menu > li.show {
      background: #007bff;
      color: white;
   }

      .dropdown-menu > li.show > a {
         color: white;
      }

@media (min-width: 768px) {
   .dropdown-menu .dropdown .dropdown-menu {
      margin: 0;
      border-width: 1px;
   }
}

.grecaptcha-badge {
   visibility: hidden;
}

.hidden-scroll::-webkit-scrollbar {
   background-color: transparent;
   display: none;
}

.bg-info_hover:hover {
   background-color: var(--bs-info);
}

.bg-primary_hover:hover {
   background-color: var(--bs-primary);
}

.bg-danger_hover:hover {
   background-color: var(--bs-danger);
}

.bg-warning_hover:hover {
   background-color: var(--bs-warning);
}

.slide-in-left {
   -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
   animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
   0% {
      -webkit-transform: translateX(-1000px);
      transform: translateX(-1000px);
      opacity: 0;
   }

   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
   }
}

@keyframes slide-in-left {
   0% {
      -webkit-transform: translateX(-1000px);
      transform: translateX(-1000px);
      opacity: 0;
   }

   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
   }
}

.slide-in-right {
   -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
   animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
   0% {
      -webkit-transform: translateX(1000px);
      transform: translateX(1000px);
      opacity: 0;
   }

   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
   }
}

@keyframes slide-in-right {
   0% {
      -webkit-transform: translateX(1000px);
      transform: translateX(1000px);
      opacity: 0;
   }

   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
   }
}

@keyframes headshake {
   25% {
      transform: translateX(1%);
      -webkit-transform: translateX(1%);
   }

   75% {
      transform: translateX(-1%);
      -webkit-transform: translateX(-1%);
   }
}

@-webkit-keyframes headshake {
   25% {
      transform: translateX(1%);
      -webkit-transform: translateX(1%);
   }

   75% {
      transform: translateX(-1%);
      -webkit-transform: translateX(-1%);
   }
}

@-webkit-keyframes go {
   100% {
      background: transparent;
      flex: 10;
      box-shadow: 0 0 0 transparent;
   }
}

@keyframes go {
   100% {
      background: transparent;
      flex: 10;
      box-shadow: 0 0 0 transparent;
   }
}

.icons-container:hover > .topright-onhover {
   display: block;
}

.mobile-size .topright {
   right: auto;
}

.topright {
   position: absolute;
   top: .5rem;
   right: 0;
}

.topright-onhover {
   position: absolute;
   display: none;
   right: 1rem;
   top: .5rem;
}

.mobile-size .mobile-vertical {
   transform: rotate(180deg);
   writing-mode: vertical-rl;
   white-space: break-spaces;
}

@keyframes fly {
   0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

@-webkit-keyframes fly {
   0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(0deg);
   }
}

.flying-img-animated {
   transition: 1s opacity ease-in, 1s height ease-in, 1s width ease-in, 1s top ease-in, 1s left ease-in;
}

.flying-img {
   position: absolute;
   width: 200px;
   height: 200px;
   z-index: 5;
   animation: fly 0.7s 0.3s 1;
   -webkit-backface-visibility: hidden;
}

/* family, login et futurefamilylogin */

.btn-fc {
   background: url(/content/images/franceconnect-btn-principal.png) no-repeat center;
   height: 56px;
   width: 209px;
   border: none;
}

   .btn-fc + a {
      color: -webkit-link;
   }

   .btn-fc:hover {
      background: url(/content/images/franceconnect-btn-principal-hover.png) no-repeat center;
   }

.fconnect-profile > a {
   padding-top: 0;
   padding-bottom: 0;
   padding-left: 40px !important;
   background: url(/content/images/fc-avatar.png) left center / 30px no-repeat;
}

/* manager, mailcampaign */

.mailcampaign a {
   color: #0061f2;
   text-decoration: none;
   background-color: transparent;
}

/* family et manager, holiday */

.holiday-activity {
   width: 100%;
   height: 100%;
   border-radius: 10px;
}

.holidaystatus_normal,
.holidaystatus_closed {
   border: 2px solid var(--bs-gray);
}

.holidaystatus_reservpending {
   border: 4px solid var(--bs-primary);
}

.holidaystatus_reserved {
   border: 2px solid var(--bs-success);
}

.holidaystatus_present {
   border: 4px solid var(--bs-success);
}

.holidaystatus_ano {
   border: 4px solid var(--bs-danger);
}

.holidaystatus_full {
   border: 4px solid var(--bs-secondary);
}

.holidaystatus_cancelpending {
   border: 4px solid var(--bs-warning);
}

.holiday-activity-status:after {
   content: "";
   position: absolute;
   right: 0;
   opacity: 0.8;
   margin: -25px;
   width: 50px;
   height: 50px;
   transform: rotate(45deg);
}

.holidaystatus_reservpending:after {
   background-color: var(--bs-primary);
}

.holidaystatus_reserved:after {
   background-color: var(--bs-success);
}

.holidaystatus_present:after {
   background-color: var(--bs-success);
   border-bottom: 4px solid var(--bs-blue);
}

.holidaystatus_ano:after {
   background-color: var(--bs-danger);
}

.holidaystatus_full:after {
   background-color: var(--bs-secondary);
}

.holidaystatus_cancelpending:after {
   background-color: var(--bs-warning);
}

.activity-truncated-txt {
   -webkit-box-orient: vertical;
   display: -webkit-box;
   overflow: hidden !important;
   -webkit-line-clamp: 3;
   height: 80px;
}

.activity--disabled {
   color: rgba(152, 160, 166, 0.6);
   background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http:www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
   cursor: not-allowed;
   z-index: 4;
}

.holidayconfig .planning {
   display: grid;
   width: 100%;
   grid-template-rows: 50px;
   grid-auto-rows: auto;
   overflow-x: hidden;
   /*overflow-y: scroll;
   max-height: 75vh;*/
}

.holidayconfig.mobile-size .planning {
   max-height: max-content;
   overflow-y: visible;
}

.holidayconfig.mobile-size .panel {
   margin: 0 -0.75rem;
}

.holidayconfig.mobile-size .activity-single {
   padding: 0.1rem !important;
}

.holidayconfig .activity-single {
   position: relative;
   padding: 0.2rem;
   text-align: center;
   justify-content: center;
}

.holiday-row-borderbottomright {
   border-bottom: 2px solid rgb(var(--bs-info-rgb));
   border-right: 1px solid rgb(var(--bs-info-rgb));
}

.holiday-row-header {
   font-size: 12px;
   text-transform: uppercase;
   color: #99a1a7;
   text-align: center;
   border-bottom: 2px solid rgb(var(--bs-info-rgb));
   line-height: 50px;
   font-weight: 500;
}

.holiday-activity-check {
   position: absolute;
   right: 0.2rem;
   z-index: 1;
   color: white;
}

.holiday-activity-foodno {
   position: absolute;
   left: 0.2rem;
   bottom: 2.2rem;
   z-index: 1;
}

/* wMaliceComponents */
/* Tooltip */

.tooltip-text:hover {
   opacity: 0;
}

.tooltip-sibling:hover ~ .tooltip-text {
   transition: all 0.75s ease;
   opacity: 1;
   z-index: 200;
}

.tooltip-text {
   padding: 8px;
   text-align: justify;
   position: absolute;
   width: auto;
   box-shadow: 1px 1px 20px #aaa;
   border-radius: 5px;
   background-color: #fff;
   opacity: 0;
   z-index: -200;
   font-size: 0.9em;
   cursor: default;
}

.tooltip-sibling:hover {
   cursor: help;
}

/* SplitContainer */

.resizeable {
   display: flex;
}

.rowleft {
   resize: horizontal;
   width: 20%;
}

.rowright {
   flex: 1;
}

.rowright,
.rowleft {
   border: 1px solid black;
   overflow: scroll;
   max-height: 83vh;
}

/* Pagination */

.pagination {
   position: relative;
   display: flex;
   justify-content: space-between;
   overflow: hidden;
   border-radius: 3px;
   background-color: var(--bs-secondary);
   height: 35px;
   max-width: 20rem
}

.pagination_content {
   background-color: var(--bs-primary);
   display: flex;
   justify-content: space-around;
   cursor: pointer;
   width: 22px;
   transition: all ease .25s
}

   .pagination_content:hover {
      width: 33%;
   }

.pagination_arrow {
   font-size: 10px;
   margin: auto 8px;
   transition: all ease .1s
}

.pagination_content:hover .pagination_arrow {
   display: none;
}

.pagination_item_content {
   display: none;
   color: #3C80EB;
   cursor: pointer;
}

.pagination_content:hover .pagination_item_content {
   display: flex;
}

.pagination_item {
   font-size: 11px;
   font-family: 'Gilroy-SemiBold';
   text-align: center;
   border-bottom-width: 2px;
   border-bottom-style: solid;
   margin: auto 5px;
   -webkit-transition: all 0.2s ease-in-out;
   max-width: 20px;
   color: darkgrey;
}

   .pagination_item:hover {
      color: white;
   }

   .pagination_item.active {
      display: flex;
      width: 100%;
   }

.pagination .pagination_now {
   display: flex;
}

   .pagination .pagination_now label {
      margin: auto;
      color: white;
   }

/* ObjectFromToSelect */

.from-to-select span.title:hover {
   background: #e9ecef;
}

/* DialogBox */

.dialogbox {
   position: relative;
   display: flex;
   margin: 25px auto;
}

   .dialogbox img {
      position: absolute;
      bottom: 0px;
      width: 3rem;
      height: 3rem;
      box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
   }

   .dialogbox.left {
      justify-content: start;
   }

   .dialogbox.right {
      justify-content: end;
   }


   .dialogbox.left img {
      bottom: 0px;
   }

   .dialogbox.right img {
      width: 3rem;
      height: 3rem;
      box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
   }


   .dialogbox.left .dialogbox_bulle {
      background-color: white;
      margin-left: 55px;
      margin-bottom: 20px;
      border-radius: 10px 10px 10px 0;
      box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
   }

   .dialogbox.right .dialogbox_bulle {
      margin-right: 75px;
      margin-bottom: 20px;
      border-radius: 10px 10px 0 10px;
      box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
   }

/* Button */

.button-shadow {
   box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%);
}

/* Animate */

.animation-infinite {
   animation-iteration-count: infinite;
}

.slide-left {
   animation-name: slideFromLeft;
}

.slide-right {
   animation-name: slideFromRight;
}

.slide-top {
   animation-name: slideFromTop;
}

.slide-bottom {
   animation-name: slideFromBottom;
}

.bounce {
   animation-name: bounce;
   width: fit-content;
}

.shake {
   animation-name: shake;
   width: fit-content;
}

.scale-left {
   animation-name: scale-in-left;
}

.rotate-in {
   animation-name: rotateIn;
   width: fit-content;
}

@-webkit-keyframes slideFromLeft {
   0% {
      -webkit-transform: translateX(-60px);
      transform: translateX(-60px);
   }

   100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
   }
}

@keyframes slideFromLeft {
   0% {
      -webkit-transform: translateX(-60px);
      transform: translateX(-60px);
   }

   100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
   }
}

@-webkit-keyframes slideFromRight {
   0% {
      -webkit-transform: translateX(60px);
      transform: translateX(60px);
   }

   100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
   }
}

@keyframes slideFromRight {
   0% {
      -webkit-transform: translateX(60px);
      transform: translateX(60px);
   }

   100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
   }
}

@-webkit-keyframes slideFromBottom {
   0% {
      -webkit-transform: translateY(60px);
      transform: translateY(60px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
   }
}

@keyframes slideFromBottom {
   0% {
      -webkit-transform: translateY(60px);
      transform: translateY(60px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
   }
}

@-webkit-keyframes slideFromTop {
   0% {
      -webkit-transform: translateY(-60px);
      transform: translateY(-60px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
   }
}

@keyframes slideFromTop {
   0% {
      -webkit-transform: translateY(-60px);
      transform: translateY(-60px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
   }
}

@-webkit-keyframes bounce {
   0% {
      -webkit-transform: scale(1) translateY(0px);
      transform: scale(1) translateY(0px);
   }

   10% {
      -webkit-transform: scale(1.1, 0.6);
      transform: scale(1.1, 0.6);
   }

   30% {
      -webkit-transform: scale(0.8, 1.1) translateY(-15px);
      transform: scale(0.8, 1.1) translateY(-15px);
   }

   50% {
      -webkit-transform: scale(1) translateY(0px);
      transform: scale(1) translateY(0px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0);
   }
}

@keyframes bounce {
   0% {
      -webkit-transform: scale(1) translateY(0px);
      transform: scale(1) translateY(0px);
   }

   10% {
      -webkit-transform: scale(1.1, 0.6);
      transform: scale(1.1, 0.6);
   }

   30% {
      -webkit-transform: scale(0.8, 1.1) translateY(-15px);
      transform: scale(0.8, 1.1) translateY(-15px);
   }

   50% {
      -webkit-transform: scale(1) translateY(0px);
      transform: scale(1) translateY(0px);
   }

   100% {
      -webkit-transform: translateY(0px);
      transform: translateY(0);
   }
}

@-webkit-keyframes shake {
   10%, 90% {
      -webkit-transform: translateX(-1px) rotate(-1deg);
      transform: translateX(-1px) rotate(-1deg);
   }

   20%, 80% {
      -webkit-transform: translateX(2px) rotate(2deg);
      transform: translateX(2px) rotate(2deg);
   }

   30%, 50%, 70% {
      -webkit-transform: translateX(-6px) rotate(-5deg);
      transform: translateX(-6px) rotate(-5deg);
   }

   40%, 60% {
      -webkit-transform: translateX(6px) rotate(5deg);
      transform: translateX(6px) rotate(5deg);
   }
}

@keyframes shake {
   10%, 90% {
      -webkit-transform: translateX(-1px) rotate(-1deg);
      transform: translateX(-1px) rotate(-1deg);
   }

   20%, 80% {
      -webkit-transform: translateX(2px) rotate(2deg);
      transform: translateX(2px) rotate(2deg);
   }

   30%, 50%, 70% {
      -webkit-transform: translateX(-6px) rotate(-5deg);
      transform: translateX(-6px) rotate(-5deg);
   }

   40%, 60% {
      -webkit-transform: translateX(6px) rotate(5deg);
      transform: translateX(6px) rotate(5deg);
   }
}

@-webkit-keyframes rotateIn {
   from {
      -webkit-transform: rotate(-200deg);
      transform: rotate(-200deg);
      opacity: 0;
   }

   to {
      -webkit-transform: translate(0);
      transform: translate(0);
      opacity: 1;
   }
}

@keyframes rotateIn {
   from {
      -webkit-transform: rotate(-200deg);
      transform: rotate(-200deg);
      opacity: 0;
   }

   to {
      -webkit-transform: translate(0);
      transform: translate(0);
      opacity: 1;
   }
}

@keyframes scale {
   from {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
   }

   to {
      -webkit-transform: scale(1);
      transform: scale(1);
   }
}

@-webkit-keyframes scale {
   from {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
   }

   to {
      -webkit-transform: scale(1);
      transform: scale(1);
   }
}

@keyframes scale-in-left {
   from {
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transform-origin: 0% 50%;
      transform-origin: 0% 50%;
      opacity: 1;
   }

   to {
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transform-origin: 0% 50%;
      transform-origin: 0% 50%;
      opacity: 1;
   }
}

@-webkit-keyframes scale-in-left {
   from {
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transform-origin: 0% 50%;
      transform-origin: 0% 50%;
      opacity: 1;
   }

   to {
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transform-origin: 0% 50%;
      transform-origin: 0% 50%;
      opacity: 1;
   }
}

/* HorizontalSpinner */

.spinner.wrapper {
   width: 100%;
   height: 6px;
   background: #06f804;
}

.spinner > .end {
   height: 100%;
   display: flex;
   transform: translateZ(0);
}

   .spinner > .end > div {
      flex: 1;
      background: #fff;
      -webkit-animation: go 0.8s;
      animation: go 0.8s;
      box-shadow: 0 0 50% #033302;
   }

.spinner > .loader {
   height: 100%;
   display: flex;
   transform: translateZ(0);
}

   .spinner > .loader div {
      flex: 1;
      background: #033302;
      -webkit-animation: go 0.8s infinite alternate ease;
      animation: go 0.8s infinite alternate ease;
      box-shadow: 0 0 20% #033302;
   }

      .spinner > .loader div:nth-child(1) {
         -webkit-animation-delay: -0.72s;
         animation-delay: -0.72s;
      }

      .spinner > .loader div:nth-child(2) {
         -webkit-animation-delay: -0.64s;
         animation-delay: -0.64s;
      }

      .spinner > .loader div:nth-child(3) {
         -webkit-animation-delay: -0.56s;
         animation-delay: -0.56s;
      }

      .spinner > .loader div:nth-child(4) {
         -webkit-animation-delay: -0.48s;
         animation-delay: -0.48s;
      }

      .spinner > .loader div:nth-child(5) {
         -webkit-animation-delay: -0.4s;
         animation-delay: -0.4s;
      }

      .spinner > .loader div:nth-child(6) {
         -webkit-animation-delay: -0.32s;
         animation-delay: -0.32s;
      }

      .spinner > .loader div:nth-child(7) {
         -webkit-animation-delay: -0.24s;
         animation-delay: -0.24s;
      }

      .spinner > .loader div:nth-child(8) {
         -webkit-animation-delay: -0.16s;
         animation-delay: -0.16s;
      }

      .spinner > .loader div:nth-child(9) {
         -webkit-animation-delay: -0.08s;
         animation-delay: -0.08s;
      }

      .spinner > .loader div:nth-child(10) {
         -webkit-animation-delay: 0s;
         animation-delay: 0s;
      }

/* TreeView */

.treeview .btn-group .sort-items:before {
   right: 0.5rem;
   top: 0.2rem;
   font-weight: 900;
   position: absolute;
   font-style: normal;
   display: block;
   cursor: pointer;
   opacity: .3;
}

.treeview .btn-group .sort-items.selected:before {
   opacity: 1;
}

.treeview .btn-group .sort-items#down:before {
   z-index: 1;
}

.treeview tbody > tr:hover {
   background: #cee4f7;
}

/* Switch */

.switch_content {
   margin-top: 3px;
}

   .switch_content .switch {
      content: '';
      width: 2.25rem;
      height: .875rem;
      border-radius: .4375rem;
      background-color: rgba(0,0,0,.38);
      margin: auto 0;
      transition: background-color .2s;
      cursor: pointer;
   }

      .switch_content .switch::after {
         content: "";
         position: absolute;
         border: none;
         z-index: 2;
         border-radius: 50%;
         width: 1.25rem;
         height: 1.25rem;
         background-color: #fff;
         margin-top: -.1875rem;
         box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 12%);
         -webkit-transition: background-color .2s,-webkit-transform .2s;
         transition: margin-left 0.2s,background-color .2s;
         cursor: pointer;
      }

      .switch_content .switch:checked ~ .switch {
         background-color: var(--main-color);
         transition: background-color .2s;
         cursor: pointer;
      }

      .switch_content .switch:disabled ~ .switch {
         cursor: default;
      }

         .switch_content .switch:disabled ~ .switch::after {
            cursor: default;
         }

      .switch_content .switch:checked ~ .switch::after {
         width: 1.25rem;
         height: 1.25rem;
         background-color: var(--main-color);
         margin-top: -3px;
         margin-left: 1.0625rem;
         box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 50%), 0 1px 5px 0 rgb(0 0 0 / 12%);
      }

   .switch_content .switch_label {
      margin-right: 10px;
   }

   .switch_content .switch:disabled ~ .switch_label {
      cursor: default;
   }

/* Step */

.step {
   display: flex;
   flex-wrap: nowrap;
   width: 100%;
}

   .step.vertical-step {
      flex-direction: column;
      height: 70vh;
      width: 55px;
      margin-left: -.5rem;
   }

.step-item {
   flex: 1 1 0;
   position: relative;
   text-align: center;
}

.vertical-step .step-item:not(:first-child)::before {
   left: 50%;
   position: absolute;
   top: -100%;
   width: .1rem;
   height: 100%;
}

.step-item:not(:first-child)::before {
   background-color: #687281;
   content: "";
   height: 0.125rem;
   left: -50%;
   position: absolute;
   top: 0.4375rem;
   width: 100%;
   z-index: 0;
}

.step-item .step-item-link {
   color: #687281;
   position: relative;
   display: inline-block;
   padding-top: 1.25rem;
   padding-left: 1rem;
   padding-right: 1rem;
   text-decoration: none;
   z-index: 1;
}

.vertical-step .step-item .step-item-link span {
   position: absolute;
   left: 100%;
   top: -50%;
}

.step-item .step-item-link::before {
   background-color: #687281;
   border: 0.125rem solid #fff;
   border-radius: 100%;
   content: "";
   display: block;
   height: 1rem;
   width: 1rem;
   left: 50%;
   position: absolute;
   top: 0;
   transform: translateX(-50%);
   z-index: 1;
}

.step-item .step-item-link.disabled {
   pointer-events: none;
   cursor: default;
}

.step-item.active a::before {
   background: #fff;
   border: 0.125rem solid #687281;
}

.step-item.active ~ .step-item .step-item-link {
   color: #d7dce3;
}

   .step-item.active ~ .step-item .step-item-link::before {
      background: #d7dce3;
   }

.step-item.active ~ .step-item::before {
   background: #d7dce3;
}

/* SideBar */

.sidebar-slide-in-left {
   -webkit-animation: slide-in-left 0.5s both;
   animation: slide-in-left 0.5s both;
}

@keyframes sidebar-slide-in-left {
   0% {
      margin-left: 0rem;
      opacity: 0;
   }

   100% {
      margin-left: 15rem;
      opacity: 1;
   }
}

.sidebar-slide-in-right {
   -webkit-animation: slide-in-right 0.5s both;
   animation: slide-in-right 0.5s both;
}

@keyframes sidebar-slide-in-right {
   0% {
      margin-left: 15rem;
      opacity: 1;
   }

   100% {
      margin-left: 0rem;
      opacity: 0;
   }
}

.sidenav .sidenav-menu .nav .sidenav-menu-heading {
   padding: 1.75rem 1rem 0.75rem;
   font-size: 0.7rem;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.sidenav-light .sidenav-menu .sidenav-menu-heading {
   color: #a7aeb8;
}

.sidenav .sidenav-menu .nav .nav-link {
   display: flex;
   align-items: center;
   line-height: normal;
   padding-top: 0.75rem;
   padding-bottom: 0.75rem;
   position: relative;
}

.sidenav-light .sidenav-menu .nav-link {
   color: #212832;
}

.sidenav .sidenav-menu .nav .nav-link {
   display: flex;
   align-items: center;
   line-height: normal;
   padding-top: 0.75rem;
   padding-bottom: 0.75rem;
   position: relative;
}

.sidenav-light .sidenav-menu .nav-link {
   color: #212832;
}

.sidenav .sidenav-menu .nav .sidenav-menu-nested {
   flex-direction: column;
   margin-left: 1.4375rem;
   border-left-style: solid;
   border-left-width: thin;
   padding-left: 0.5625rem;
}

.sidenav .sidenav-menu .nav {
   flex-direction: column;
   flex-wrap: nowrap;
}

.sidenav-light .sidenav-menu-nested {
   border-left-color: #d4dae3;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav {
   width: 15rem;
   height: 100vh;
   z-index: 1038;
}

.sidenav-toggled #layoutSidenav #layoutSidenav_nav {
   transform: translateX(0);
}

.fixed-top, .nav-fixed #layoutSidenav #layoutSidenav_nav, .nav-fixed .topnav {
   position: fixed;
   top: 0;
   right: 0;
   left: 0;
   z-index: 1030;
}

   .nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav {
      padding-top: 3.625rem;
   }

.sidenav-light {
   background-color: #fff;
   color: #212832;
}

.sidenav .sidenav-menu {
   flex-grow: 1;
}

   .sidenav .sidenav-menu .nav {
      flex-direction: column;
      flex-wrap: nowrap;
   }

.sidenav-light .sidenav-footer {
   background-color: rgba(33, 40, 50, 0.05);
}

.sidenav .sidenav-footer {
   display: flex;
   flex-shrink: 0;
   align-items: center;
   padding-left: 0.75rem;
   padding-right: 0.75rem;
   height: 5rem;
}

   .sidenav .sidenav-footer .sidenav-footer-content {
      font-size: 0.9rem;
   }

/* Select */

.dropdown_content {
   position: relative;
   margin: .5rem 0;
}

.dropdown_content .dropdown {
   width: 100%;
   min-height: auto;
   padding: .33em .75em;
   border-radius: .25rem;
   color: #4f4f4f;
   background-color: transparent;
   border: 0;
}

.dropdown_notch {
   display: flex;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   max-width: 100%;
   height: 98%;
   pointer-events: none;
}

.dropdown_notch_leading {
   width: 10px;
   left: 0;
   top: 0;
   height: 100%;
   box-sizing: border-box;
   border-radius: .25rem 0 0 .25rem;
   border: 1px solid #bdbdbd;
   border-right: none;
   pointer-events: none;
   background: transparent;
   transition: all .2s ease-out;
}

.dropdown_content .dropdown:focus + .dropdown_notch .dropdown_notch_leading {
   border: 2px solid var(--main-color);
   border-right: none;
}

.dropdown_content .dropdown:not(:placeholder-shown) + .dropdown_notch .dropdown_notch_leading {
   border: 2px solid var(--main-color);
   border-right: none;
}

.dropdown_notch_middle {
   pointer-events: none;
   box-sizing: border-box;
   background: transparent;
   pointer-events: none;
   flex-grow: 0;
   height: 100%;
   display: flex;
   max-width: 66%;
   /*-------------------------------*/
   border: 1px solid #bdbdbd;
   border-right: none;
   border-left: none;
   transition: all .2s ease-out;
}

.dropdown_content .dropdown:focus + .dropdown_notch .dropdown_notch_middle {
   border: 2px solid var(--main-color);
   border-top: none;
   border-right: none;
   border-left: none;
}

.dropdown_content .dropdown:not(:placeholder-shown) + .dropdown_notch .dropdown_notch_middle {
   border: 2px solid var(--main-color);
   border-top: none;
   border-right: none;
   border-left: none;
}

.dropdown_notch_middle .dropdown_label {
   position: relative;
   margin: .33rem 0 0 0;
   font-size: 12px;
   float: left;
   font-size: 0.8rem;
   font-weight: 500;
   color: #4f4f4f;
   transition: all .2s ease-out;
}

.dropdown_content .dropdown:focus + .dropdown_notch .dropdown_notch_middle .dropdown_label {
   margin: -.43rem 0 0 0;
   font-size: 10px;
   color: var(--main-color);
}

.dropdown_content .dropdown:not(:placeholder-shown) + .dropdown_notch .dropdown_notch_middle .dropdown_label {
   margin: -.43rem 0 0 0;
   font-size: 10px;
   color: var(--main-color);
}

.dropdown_notch_trailing {
   position: relative;
   display: flex;
   justify-content: end;
   pointer-events: none;
   box-sizing: border-box;
   background: transparent;
   flex-grow: 1;
   height: 100%;
   border-radius: 0 .25rem .25rem 0;
   border: 1px solid #bdbdbd;
   border-left: none;
   transition: all .2s ease-out;
}

.dropdown_content .dropdown:focus + .dropdown_notch .dropdown_notch_trailing {
   border: 2px solid var(--main-color);
   border-left: none;
}

.dropdown_content .dropdown:not(:placeholder-shown) + .dropdown_notch .dropdown_notch_trailing {
   border: 2px solid var(--main-color);
   border-left: none;
}

.dropdown_notch_trailing i {
   margin: .5rem;
   pointer-events: visible;
   cursor: pointer;
   color: var(--main-color);
}

/* Panel */

.panel {
   border-radius: 6px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.panel-border-left {
   border-left: 3px solid;
   border-top: none;
   border-bottom: none;
   border-right: none;
}

/* NavBar */

.navbar-shadow {
   box-shadow: 0 0.15rem 1.75rem 0 rgba(31, 45, 65, 0.40);
}

.navbar {
   z-index: 20;
}

/* Modal */

.modal-body {
   max-height: calc(100vh - 200px);
   overflow-y: auto;
}

/* ListGroup */

.list_group_content {
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
}

   .list_group_content.horizontal {
      justify-content: space-evenly;
      flex-direction: row;
   }

.list_group {
   display: flex;
   flex-direction: row;
   border: 1px solid rgba(0,0,0,.125);
   min-height: 40px;
   padding: 0.13rem 0.50rem;
}

   .list_group.active {
      background-color: var(--main-color);
      cursor: pointer;
      color: white;
   }

   .list_group:first-child {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px;
   }

   .list_group:last-child {
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px;
   }

   .list_group:not(.disabled):not(.active):hover {
      background-color: #f8f9fa;
      cursor: pointer;
   }

.list_group_item_left {
   display: flex;
   flex-grow: 1;
}

.list_group_item_right {
   display: flex;
   justify-content: center;
}

.list_group_content.horizontal > .list_group > .list_group_item_left {
   margin-right: 1rem;
   padding: .5rem;
}

/* Breadcrumb */

.breadcrumb .nav-link {
   padding: 0 10px 5px 10px;
   text-underline-offset: 3px;
}

.breadcrumb .nav-active {
   color: #33b5e5 !important;
   border-bottom: 2px solid;
}

.breadcrumb .nav-noactive {
   color: gray
}

/* Cards */

.card-amiciel {
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border-radius: 0.35rem;
}

.card-header-amiciel {
   padding: 0.75rem 1.25rem;
   font-weight: 500;
   margin-bottom: 0;
   background-color: rgba(33, 40, 50, 0.03);
   border-bottom: 1px solid rgba(33, 40, 50, 0.125);
}

/* Grid */

.grid .sorting > .btn-group .sort-items:before {
   right: 0.3rem;
   top: 0.1rem;
   font-weight: 900;
   position: absolute;
   font-style: normal;
   display: block;
   opacity: .3;
}

.grid .sorting > .btn-group .sort-items.selected:before {
   opacity: 1;
}

.grid .notSelected:before {
   z-index: 2;
}

.grid .sorting > .btn-group .sort-items#down:before {
   z-index: 1;
}

.table-centered > thead > tr > th {
   vertical-align: middle;
   text-align: center !important;
}

.header-fixed > thead,
.header-fixed > thead > tr,
.header-fixed > thead > tr > th {
   display: block;
}

   .header-fixed > thead > tr:after {
      content: ' ';
      display: block;
      visibility: hidden;
      clear: both;
   }

   .header-fixed > thead > tr > th {
      float: left;
   }

.header-fixed > tbody {
   overflow-y: auto;
   height: fit-content;
   max-height: 75vh;
   display: block;
}

   .header-fixed > tbody > tr:after {
      content: ' ';
      display: block;
      visibility: hidden;
      clear: both;
   }

   .header-fixed > tbody > tr {
      display: block;
   }

.table-centered tr > th,
.table-centered tr > td {
   vertical-align: middle;
   text-align: center !important;
}

.header-fixed > tbody > tr > td {
   float: left;
   display: block;
}

.icon-sm-responsive {
   cursor: pointer;
}

.searchbar {
   display: block;
   position: relative;
}

   .searchbar > input {
      width: auto;
      display: inline-block
   }

/* Dropdowns */

.dropdownfull {
   min-width: 9rem;
   border-radius: 10px;
}

.dropdownfull_icon {
   position: absolute;
   right: 14px;
   top: 4px;
}

.dropdown-pagination {
   display: flex;
   padding-left: 0;
   list-style: none;
}

/* FileUpload */

.dropContainer {
   box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
   font-size: 1.25rem;
   cursor: pointer;
   background: linear-gradient( 90deg, steelblue 50%, transparent 50%), linear-gradient( 90deg, steelblue 50%, transparent 50%),linear-gradient( 0deg, steelblue 50%, transparent 50%), linear-gradient( 0deg, steelblue 50%, transparent 50%);
   background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
   background-size: 10px 4px, 10px 4px, 4px 10px, 4px 10px;
   background-position: 0 0, 100% 100%;
}

   .dropContainer.dropzone-drag {
      color: #34891f;
      animation: border-dotted-move 3s infinite linear;
      background-repeat: repeat-x, repeat-x, repeat-y, repeat-y !important;
      background-size: 10px 4px, 10px 4px, 4px 10px, 4px 10px !important;
      background-position: 0 0, 100% 100%;
      background: linear-gradient( 90deg, #2eb72e 50%, transparent 50%), linear-gradient( 90deg, #2eb72e 50%, transparent 50%),linear-gradient( 0deg, #2eb72e 50%, transparent 50%), linear-gradient( 0deg, #2eb72e 50%, transparent 50%);
   }

   .dropContainer * {
      pointer-events: none;
   }

   .dropContainer > .dropzone {
      background-color: #eee;
   }

   .dropContainer:hover > .dropzone {
      background-color: #f3f3f3;
   }

@keyframes border-dotted-move {
   0% {
      background-position: 0 0, 20% 100%, 0 50%, 100% 0;
   }

   100% {
      background-position: 20% 0, 0 100%, 0 0, 100% 50%;
   }
}

/* Inputs */

.input_content {
   position: relative;
}

   .input_content .input {
      width: 100%;
      min-height: auto;
      padding: .33em .75em;
      border-radius: .25rem;
      background-color: transparent;
      -webkit-appearance: none;
      -moz-appearance: textfield;
      border: 0;
   }

      .input_content .input:focus {
         outline: none;
         color: black;
      }

.input_notch {
   display: flex;
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   max-width: 100%;
   height: 98%;
   pointer-events: none;
}

.input_notch_leading {
   width: 10px;
   left: 0;
   top: 0;
   height: 100%;
   box-sizing: border-box;
   border-radius: .25rem 0 0 .25rem;
   border: 1px solid #bdbdbd;
   border-right: none;
   pointer-events: none;
   background: transparent;
   transition: all .2s ease-out;
}

.input_content .input:focus + .input_notch .input_notch_leading {
   border: 2px solid var(--main-color);
   border-right: none;
}

.input_content .input:not(:placeholder-shown) + .input_notch .input_notch_leading {
   border: 2px solid var(--main-color);
   border-right: none;
}

.input_notch_middle {
   pointer-events: none;
   box-sizing: border-box;
   background: transparent;
   pointer-events: none;
   flex-grow: 0;
   height: 100%;
   display: flex;
   max-width: 66%;
   /*-------------------------------*/
   border: 1px solid #bdbdbd;
   border-right: none;
   border-left: none;
   transition: all .2s ease-out;
}

.input_content .input:focus + .input_notch .input_notch_middle {
   border: 2px solid var(--main-color);
   border-top: none;
   border-right: none;
   border-left: none;
}

.input_content .input:not(:placeholder-shown) + .input_notch .input_notch_middle {
   border: 2px solid var(--main-color);
   border-top: none;
   border-right: none;
   border-left: none;
}

.input_notch_middle .input_label {
   position: relative;
   margin: .33rem 0 0 0;
   padding: 0 0.3rem;
   font-size: 12px;
   float: left;
   font-size: 0.8rem;
   font-weight: 500;
   color: #4f4f4f;
   transition: all .2s ease-out;
}

.input_content .input:focus + .input_notch .input_notch_middle .input_label {
   margin: -.43rem 0 0 0;
   font-size: 10px;
   color: var(--main-color);
}

.input_content .input:not(:placeholder-shown) + .input_notch .input_notch_middle .input_label {
   margin: -.43rem 0 0 0;
   font-size: 10px;
   color: var(--main-color);
}

.input_notch_trailing {
   position: relative;
   display: flex;
   justify-content: end;
   pointer-events: none;
   box-sizing: border-box;
   background: transparent;
   flex-grow: 1;
   height: 100%;
   border-radius: 0 .25rem .25rem 0;
   border: 1px solid #bdbdbd;
   border-left: none;
   pointer-events: none;
   transition: all .2s ease-out;
}

.input_content .input:focus + .input_notch .input_notch_trailing {
   border: 2px solid var(--main-color);
   border-left: none;
}

.input_content .input:not(:placeholder-shown) + .input_notch .input_notch_trailing {
   border: 2px solid var(--main-color);
   border-left: none;
}

.input_notch_trailing i {
   margin: auto .5rem;
   pointer-events: visible;
   cursor: pointer;
   color: var(--main-color);
}

/* SwitchFor */

.switch span.lever {
   content: "";
   display: inline-block;
   position: relative;
   background-color: #818181;
   border-radius: .9375rem;
   margin-right: .625rem;
   vertical-align: middle;
   margin: 0 1rem;
   width: 2.5rem;
   height: .9375rem;
   transition: background 0.3s ease;
}

.switch span.lever-ball {
   position: absolute;
   display: inline-block;
   background-color: #F1F1F1;
   border-radius: 1.3125rem;
   left: -.3125rem;
   top: -.1875rem;
   box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgb(0 0 0 / 40%);
   width: 1.3125rem;
   height: 1.3125rem;
   transition: margin-left 0.5s ease,background 0.3s ease,box-shadow 1s ease;
   margin-left: 1rem;
}

.switch input[type=checkbox]:checked + label > .btn-group > .lever-ball {
   margin-left: 3rem;
}

.switch input[type=checkbox]:disabled + label > .btn-group > .lever {
   opacity: 0.5;
}

.switch input[type=checkbox]:disabled + label {
   cursor: default;
}

/* InputNumberFor */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

/* Firefox */
input[type=number] {
   -moz-appearance: textfield;
}

/* CheckBoxEnumFor */

.form-check-label::before {
   top: 0px;
   left: -3px;
   opacity: 0;
   width: 8px;
   height: 1rem;
   border-right: 2px solid #4285F4;
   border-bottom: 2px solid #4285F4;
   transform: rotate(40deg);
   transform-origin: 100% 100%;
   content: '';
   position: absolute;
   margin-top: 3px;
   cursor: pointer;
}


.checkbox-enum input[type=checkbox]:checked + .form-check-label::before {
   opacity: 1;
   transition: opacity 1.5s ease;
}

.checkbox-enum input[type=checkbox]:checked {
   opacity: 0;
   transition: opacity 0s ease;
}

.checkbox-enum input[type=checkbox] {
   opacity: 1;
   transition: opacity 1.5s ease;
}