@charset "UTF-8";
@font-face {
  font-family: "Visby Light";
  src: url("fonts/VisbyRoundCF-Light.woff") format("woff");
}
@font-face {
  font-family: "Visby Regular";
  src: url("fonts/VisbyRoundCF-Regular.woff") format("woff");
}
@font-face {
  font-family: "Visby Medium";
  src: url("fonts/VisbyRoundCF-Medium.woff") format("woff");
}
@font-face {
  font-family: "Visby Bold";
  src: url("fonts/VisbyRoundCF-Bold.woff") format("woff");
}
@font-face {
  font-family: "Visby Heavy";
  src: url("fonts/VisbyRoundCF-Heavy.woff") format("woff");
}
/* Paddings & margins */
/* Transitions */
/**** LAYOUTS ****/
.p-al-full {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.p-al-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.p-al-right, .p-menu-second-user {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.p-al-r-full-center, .p-al-r-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.p-al-v-center, .p-content-page-right-banner-item, .p-menu-second-user, .p-menu-second-language, .p-menu-main-nav-menu, .p-menu-main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.p-al-c-full-center, .p-al-c-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body,
ul {
  padding: 0;
  margin: 0;
}

.p-search, .p-input-search, .p-input-text {
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  border-radius: 15px;
  border: 0;
}

.p-btn {
  -webkit-transition: background-color 0.4s ease-in-out;
  -moz-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 34px;
  width: fit-content;
}

/*%button {
    @include padding-horizontal($padding);
    @include padding-vertical($padding - 15);
    @include transition(all, 0.4, ease-in-out);
    cursor:pointer;
    border-radius:5px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
%button-after {
    content: "";
    position: absolute;
	border: 1px solid $dark-grey;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	-webkit-transition: height 0.95s;
	-moz-transition: height 0.95s;
	-o-transition: height 0.95s;
	transition: height 0.95s;
	opacity: 0;
	-moz-transform: translateY(-50%) translateX(-50%) rotate(25deg);
	-ms-transform: translateY(-50%) translateX(-50%) rotate(25deg);
	-webkit-transform: translateY(-50%) translateX(-50%) rotate(25deg);
	transform: translateY(-50%) translateX(-50%) rotate(25deg);
}
%button-hover-after {
    height: 400% !important;
	opacity: 1;
}*/
@keyframes menu-item {
  from {
    padding-top: 5px;
  }
  50% {
    padding-top: 0;
  }
  to {
    padding-top: 6px;
  }
}
@keyframes reduce-sidebar {
  from {
    width: 0;
  }
  25% {
    width: 115px;
  }
  50% {
    width: 50px;
  }
  75% {
    width: 115px;
  }
  to {
    width: 14px;
  }
}
* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #515151;
  line-height: 1;
}
@media only screen and (max-width: 1025px) {
  * {
    font-size: 12px;
  }
}

::-webkit-scrollbar-thumb {
  background: #ec841d !important;
}

::selection {
  background: #ec841d;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #ec841d;
  /* Gecko Browsers */
}

li {
  list-style-type: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8a8a8a;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #8a8a8a;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #8a8a8a;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #8a8a8a;
  height: 100%;
}

body {
  background-color: #fff !important;
  overflow: hidden;
  height: 100%;
  display: flex;
}

@media only screen and (max-width: 720px) {
  html {
    width: auto;
  }
}

#root {
  width: 100%;
}
.p {
  /*HOME */
  /* PAGE MAIN CONTAINERS */
  /* MENU */
  /* MAIN CONTENT */
  /* PHOTOTHEQUE */
  /* STATS */
  /* SURVEY */
  /*&-import {
    &-file {
      width: 0.1px;
      height: 0.1px;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      z-index: -1;
    }
    &-btn {
      @include transition(all, 0.4, ease-in-out);
      @include padding-horizontal($padding - 5);
      @include padding-vertical($padding - 12);
      margin-top: ($margin - 10) * 1px;
      margin-bottom: ($margin - 15) * 1px;
      position: relative;
      display: inline-block;
      overflow: hidden;
      color: $normal-main;
      background-color: $white;
      border: 1px solid $normal-main;
      border-radius: 4px;
      &:hover {
        @include transition(all, 0.4, ease-in-out);
        cursor: pointer;
        background-color: $light-main;
      }
    }
  }*/
  /* PLANNING */
  /* LANDING */
  /* LOGIN */
}
.p-home {
  margin-top: 80px;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  .p-home img {
    width: 300px;
  }
}
.p-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-menu {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  background-color: #e56900;
  /* stats */
  /* MAIN MENU */
  /* SECOND MENU */
}
.p-menu-left {
  height: 100%;
}
.p-menu-main {
  width: 100%;
  display: flex;
  align-items: center;
}
.p-menu-main-nav {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media only screen and (max-width: 720px) {
  .p-menu-main-nav {
    height: 25px;
  }
}
.p-menu-main-nav-menu-item {
  margin-right: 10px;
  margin-left: 10px;
  color: #ffe1c4;
  font-family: "Visby Medium", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
@media only screen and (max-width: 720px) {
  .p-menu-main-nav-menu-item {
    font-size: 12px;
  }
}
.p-menu-main-nav-menu-item:hover {
  color: #fff;
}
.p-menu-main-nav-menu-item:active {
  color: #fff;
}
.p-menu-main-nav-menu-item.active {
  font-family: "Visby Heavy", sans-serif;
  color: #fff;
}
.p-menu-second {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  background-color: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-menu-second {
    height: 45px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media only screen and (max-width: 720px) {
  .p-menu-second {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}
.p-menu-second-logo {
  background-image: url("img/logo.png");
  background-size: cover;
  cursor: pointer;
  height: 39px;
  width: 118px;
}
.p-menu-second-logo-container {
  margin-left: 30px;
  min-width: 290px;
}
@media only screen and (max-width: 720px) {
  .p-menu-second-logo-container {
    min-width: 0;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1025px) {
  .p-menu-second-logo {
    background-image: url("img/logo_small.png");
    height: 24px;
    width: 60px;
  }
}
@media only screen and (max-width: 720px) {
  .p-menu-second-logo {
    height: 15px;
    width: 37px;
  }
}
.p-menu-second-sub {
  padding-right: 30px;
  padding-left: 30px;
  width: calc(100% - 420px);
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1025px) {
  .p-menu-second-sub {
    width: auto;
  }
}
.p-menu-second-sub-item {
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Visby Regular", sans-serif;
  font-size: 14px;
  margin-right: 8px;
  margin-left: 8px;
}
@media only screen and (max-width: 1025px) {
  .p-menu-second-sub-item {
    font-size: 13px;
  }
}
.p-menu-second-sub-item:hover {
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-family: "Visby Medium", sans-serif;
  color: #ec841d;
}
.p-menu-second-sub-item.active {
  font-family: "Visby Medium", sans-serif;
  color: #ec841d;
}
.p-menu-second-sub.stats {
  padding-left: 0;
  padding-right: 20px;
  width: auto;
  justify-content: flex-start;
  height: 100%;
}
.p-menu-second-language-img {
  cursor: pointer;
  width: 30px;
  margin-right: 15px;
}
.p-menu-second-user {
  min-width: 210px;
  margin-right: 30px;
}
@media only screen and (max-width: 720px) {
  .p-menu-second-user {
    min-width: 0;
    margin-right: 15px;
  }
}
.p-menu-second-user-img {
  margin-right: 15px;
}
.p-menu-second-user-img-logo {
  cursor: pointer;
  display: inline-block;
  background-image: url("img/user_default.png");
  background-size: cover;
  height: 30px;
  width: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1025px) {
  .p-menu-second-user-img-logo {
    display: none;
  }
}
.p-menu-second-user-img-infos {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 15px;
  border: 1px solid #b9b9b9;
  font-size: 1rem;
  z-index: 10;
}
.p-menu-second-user-img:hover .p-menu-second-user-img-infos {
  display: block;
}
.p-menu-second-user-ico {
  cursor: pointer;
  padding-right: 10px;
  font-size: 1.8rem;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.p-menu-second-user-ico.icon-logout {
  padding-right: 0;
  padding-left: 15px;
}
@media only screen and (max-width: 720px) {
  .p-menu-second-user-ico.icon-logout {
    padding-left: 10px;
  }
}
.p-menu-second-user-ico:hover {
  color: #ec841d;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.p-menu.custom-stats {
  background: linear-gradient(#e1a063, #d67465);
}
.p-menu.custom-stats .p-menu-menu-item {
  padding-top: 18px;
  padding-bottom: 15px;
}
.p-menu.custom-stats .p-menu-menu-item-label-text, .p-menu.custom-stats .p-menu-menu-item-label-text span {
  color: #fff;
  text-transform: none;
  font-weight: bold;
  line-height: 1.5;
}
.p-menu.custom-stats .p-menu-menu-item-label-ico {
  color: #fff;
}
.p-menu.custom-stats .p-menu-menu-item-border {
  display: none;
}
.p-menu.custom-stats .p-menu-menu-item-submenu {
  border: none;
  margin-left: 0;
  padding-left: 15px;
  padding-top: 10px;
}
.p-menu.custom-stats .p-menu-menu-item-submenu-item {
  color: #fff;
  font-weight: normal;
}
.p-menu.custom-stats .p-menu-menu-item-submenu-item::before {
  content: "•";
  margin-right: 5px;
  margin-left: 7px;
  color: transparent;
}
.p-menu.custom-stats .p-menu-menu-item-submenu-item.active::before, .p-menu.custom-stats .p-menu-menu-item-submenu-item:hover::before {
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.p-menu.custom-stats .p-menu-menu-item-submenu-item:last-child {
  padding-bottom: 2px;
}
.p-menu.custom-stats .p-menu-menu-item.active, .p-menu.custom-stats .p-menu-menu-item:hover {
  background-color: rgba(234, 173, 116, 0.6);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.p-menu.custom-stats .p-menu-menu-item.active .p-leftbar-menu-item-label-ico:before, .p-menu.custom-stats .p-menu-menu-item:hover .p-leftbar-menu-item-label-ico:before {
  color: #fff;
}
.p-content {
  height: 100%;
  overflow: auto;
  margin-left: 30px;
  padding-top: 30px;
}
.p-content.stats {
  display: flex;
  margin-left: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1025px) {
  .p-content {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 720px) {
  .p-content {
    padding-top: 10px;
    margin-left: 10px;
  }
}
.p-content-page {
  display: flex;
}
.p-content-page-center {
  -webkit-transition: width 0.4s ease-in-out;
  -moz-transition: width 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  width: calc(100% - 320px);
  margin-right: 40px;
}
@media only screen and (max-width: 720px) {
  .p-content-page-center {
    margin-right: 10px;
  }
}
.p-content-page-center-full {
  width: 100%;
  margin-right: 40px;
}
.p-content-page-center-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}
.p-content-page-center-header-title {
  font-size: 18px;
  font-family: "Visby Bold", sans-serif;
  color: #000;
  margin: 0;
  font-weight: normal;
}
.p-content-page-center-header-buttons {
  display: flex;
  flex-direction: row;
}
.p-content-page-center-header-buttons-item {
  margin-left: 15px;
}
.p-content-page-center-filters {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.p-content-page-center-content {
  margin-top: 30px;
}
.p-content-page-right {
  margin-right: 30px;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
}
.p-content-page-right-title {
  font-size: 18px;
  font-family: "Visby Bold", sans-serif;
  color: #000;
  margin: 0;
  font-weight: normal;
}
.p-content-page-right-banner {
  margin-top: 15px;
  border-radius: 12px;
  padding: 25px 20px;
  background-color: #ebf8fb;
}
.p-content-page-right-banner-item {
  padding: 5px 0;
}
.p-content-page-right-banner-item-nb {
  display: inline-block;
  width: 40px;
  text-align: center;
  font-size: 1.9rem;
  color: #0ea5d4;
  font-family: "Visby Bold", sans-serif;
  margin-right: 15px;
  letter-spacing: -4px;
}
.p-content-page-right-banner-item-txt {
  text-transform: uppercase;
  color: #000;
}
.p-content-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
  color: #8a8a8a;
}
@media only screen and (max-width: 1025px) {
  .p-content-breadcrumb {
    margin-bottom: 5px;
  }
}
.p-content-title {
  font-size: 18px;
  font-family: "Visby Bold", sans-serif;
  color: #000;
  margin: 0;
  font-weight: normal;
}
.p-content-subtitle {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: "Visby Regular", sans-serif;
  font-weight: bold;
  color: #515151;
}
.p-content-subtitle span {
  font-size: 1.2rem;
  font-family: "Visby Regular", sans-serif;
  font-weight: bold;
  color: #515151;
}
.p-phototheque-select {
  display: flex;
  align-items: center;
  height: 40px;
}
.p-phototheque-select-icon {
  display: flex;
}
.p-phototheque-select-icon svg {
  fill: #ec841d;
}
.p-phototheque-item {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 20% !important;
  text-align: center;
}
@media only screen and (max-width: 720px) {
  .p-phototheque-item {
    width: 33% !important;
  }
}
.p-phototheque-item-label {
  width: 95%;
  border-top: none;
}
.p-phototheque-item-label-text {
  padding-right: 10px;
  padding-left: 10px;
  border-left: 3px solid #e2e2e2;
}
.p-phototheque-item-label-title {
  color: black;
  font-size: 1rem;
  text-align: left;
  font-family: "Visby Bold", sans-serif;
  font-weight: bold;
  margin-top: 20px;
}
.p-phototheque-item-label-statement {
  color: #515151;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-align: left;
  margin-top: 10px;
}
.p-phototheque-item-label-date {
  font-weight: bold;
  padding-bottom: 5px;
  color: #515151;
  text-align: left;
}
.p-phototheque-item-container {
  height: 0;
  width: 90%;
  padding-bottom: 90%;
  position: relative;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom: none;
}
.p-phototheque-item-photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.p-phototheque-item-photo-container {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  cursor: pointer;
}
.p-phototheque-item-photo-check {
  position: absolute;
  top: 15px;
  left: 15px;
}
.p-phototheque-item-photo-check-btn {
  background-color: rgba(0, 0, 0, 0.7);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-phototheque-item-photo-check-btn-empty {
  height: 12px;
  width: 12px;
  border: 1px solid #fff;
  border-radius: 15px;
}
.p-phototheque-item-photo-check-btn svg {
  fill: #fff;
}
.p-phototheque-item-photo-star {
  position: absolute;
  top: 15px;
  right: 15px;
}
.p-phototheque-item-photo-star .anticon-star {
  background-color: white;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-phototheque-item-photo-star .anticon-star svg {
  fill: #ec841d !important;
}
.p-phototheque-item-btn {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
  margin: 4px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #5f5f5f;
  font-family: "Visby Medium", sans-serif;
  background-color: #0ea5d4;
  color: #fff;
  margin-top: 10px;
}
.p-stats {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.p-stats > .p-page-content {
  display: none;
}
.p-stats-content {
  width: 100%;
  height: 90%;
  padding-bottom: 20px;
  padding-right: 20px;
}
.p-stats-content .p-content-item {
  border: 1px solid #c8c8c8;
  border-radius: 15px;
  padding: 10px;
}
.p-stats-content .p-page-subtitle {
  font-family: "Visby Heavy", sans-serif;
}
.p-stats-filters {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1025px) {
  .p-stats-filters {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1025px) {
  .p-stats-filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-stats-filters-item {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1025px) {
  .p-stats-filters-item {
    margin-right: 0px;
    margin-left: 0px;
    width: 30% !important;
  }
}
.p-stats-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-stats-indicator-value {
  font-weight: bold;
  color: #ec841d;
  font-size: 1.5rem;
}
.p-stats-indicator-label {
  text-align: center;
}
.p-stats-indicator-period {
  padding: 0px;
  min-width: 250px;
}
.p-stats-home-container {
  height: 32%;
  margin-bottom: 1%;
}
.p-stats-home-item {
  margin-bottom: 0 !important;
}
.p-stats-home-item-title {
  margin-top: 3%;
  font-size: 1.4vh;
  width: 90%;
  text-align: center;
  color: #8a8a8a;
  text-transform: uppercase;
}
.p-stats-home-item-block {
  min-width: 150px;
  margin-right: 1%;
}
.p-stats-dashboard-container-top {
  height: 35%;
  margin-bottom: 1%;
}
.p-stats-dashboard-container-bot {
  height: 64%;
}
.p-stats-dashboard-item {
  margin-bottom: 0 !important;
}
.p-survey-longblock {
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  display: inline-block;
}
.p-survey-longblock:hover {
  border-color: #ec841d;
}
.p-survey-longblock:active {
  border-color: #e56900;
}
.p-survey-longblock.selected {
  border-color: #ec841d;
  background-color: #fff1e3;
}
.p-survey-squareblock {
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  display: inline-block;
  width: 100px;
  height: 100px;
}
.p-survey-squareblock:hover {
  border-color: #ec841d;
}
.p-survey-squareblock:active {
  border-color: #e56900;
}
.p-survey-squareblock.selected {
  border-color: #ec841d;
  background-color: #fff1e3;
}
.p-survey-4 {
  width: 100%;
}
.p-survey-4-scroll {
  overflow-y: scroll;
  width: 100%;
}
.p-survey-4-cols {
  min-width: 200px !important;
  max-width: 200px !important;
  width: 20% !important;
}
.p-survey-4-cols-kpi {
  position: absolute !important;
  background-color: #fff !important;
  z-index: 1 !important;
  border: 1px solid #f0f0f0;
  border-top: 0;
  left: 0;
  height: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}
.p-survey-4-cols-kpi-group {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 2px;
  color: #ec841d;
}
.p-survey-4-cols-kpi-group.group-2 {
  color: #0ea5d4;
}
.p-survey-4-rows {
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
}
.p-survey-setsimulation {
  margin-top: 15px;
  display: flex;
  justify-content: end;
}
.p-survey-btn-steps {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.p-survey-simulation-container {
  /*width: 400px;
  margin-left: $margin * 1px;
  margin-top: 35px;*/
  position: fixed;
  top: 80px;
  right: 30px;
  width: 350px;
  z-index: 1;
  border-radius: 7px;
  border: 4px solid #515151;
}
.p-survey-simulation-container .p-content-item {
  margin-bottom: 0;
}
.p-survey-simulation-position-left {
  left: 30px;
}
.p-survey-simulation-position-right {
  right: 30px;
}
.p-survey-simulation-icon {
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: 15px;
  display: inline-block;
}
.p-survey-simulation-icon-close {
  font-size: 1.1rem;
  color: #e56900;
  font-weight: bold;
}
.p-survey-simulation-ranges-location {
  font-weight: bold;
  color: #ec841d;
}
.p-survey-simulation-phone {
  max-height: 500px;
}
.p-survey-simulation-phone-header {
  display: flex;
  justify-content: space-between;
}
.p-survey-simulation-phone-header .p-page-subtitle {
  margin-bottom: 0;
}
.p-survey-simulation-phone-matrix {
  border-top: 1px solid #ffe1c4;
  overflow-y: auto;
  height: 300px;
  padding-top: 5px;
}
.p-survey-simulation-phone-media {
  height: 468px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-survey-simulation-phone-media-text {
  font-size: 4rem;
  font-weight: bold;
  margin-top: 15px;
}
.p-survey-creation-title {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #b9b9b9;
  padding: 0;
  padding-bottom: 7px;
  outline: none !important;
}
.p-users-client-label {
  line-height: 1.5rem;
}
.p-users-client-icon:before {
  color: #e56900;
  cursor: pointer;
}
.p-users-edit-icon:before {
  color: #e56900;
  cursor: pointer;
  font-size: 1.5rem;
}
.p-calendar-event-ico {
  padding-right: 2px;
  margin-top: -20px;
  display: inline-block;
}
.p-calendar-event-ico:before {
  font-size: 0.8rem;
  color: #e56900;
}
.p-calendar-event-planifie {
  background-color: #daede7 !important;
  border-color: #91ccb8 !important;
  padding: 5px 5px !important;
}
.p-calendar-event-speedy {
  border-left: 5px solid #0166d9 !important;
}
.p-calendar-event-planifie .fc-title, .p-calendar-event-planifie .fc-list-item-title a {
  color: #21a779 !important;
  font-family: "Visby Bold", sans-serif;
}
.p-calendar-event-non-planifie {
  background-color: #edf1fd !important;
  border-color: #a9bceb !important;
  padding: 5px 5px !important;
}
.p-calendar-event-non-planifie .fc-title, .p-calendar-event-non-planifie .fc-list-item-title a {
  color: #4768bb !important;
  font-family: "Visby Bold", sans-serif;
}
.p-calendar-event-visite {
  background-color: #ece6f7 !important;
  border-color: #b7a0eb !important;
  padding: 5px 5px !important;
}
.p-calendar-event-visite .fc-title, .p-calendar-event-visite .fc-list-item-title a {
  color: #8651db !important;
  font-family: "Visby Bold", sans-serif;
}
.p-calendar-event-non-visite {
  background-color: #f9e9e9 !important;
  border-color: #e3baba !important;
  padding: 5px 5px !important;
}
.p-calendar-event-non-visite .fc-title, .p-calendar-event-non-visite .fc-list-item-title a {
  color: #d13d3d !important;
  font-family: "Visby Bold", sans-serif;
}
.p-calendar-event-rdv {
  border-left: 5px solid #efa319 !important;
}
.p-calendar-event-animation {
  border-left: 5px dotted #8651db !important;
}
.p-calendar-event-count {
  display: block;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  border-left: 5px solid #fff;
  margin-bottom: 3px;
  font-size: 0.8rem;
}
.p-calendar-event-count-container {
  padding: 5px;
  padding-top: 15px;
}
.p-calendar-event-count-planifie {
  background-color: #daede7 !important;
  border-color: #91ccb8 !important;
  border-left-color: #21a779 !important;
  color: #21a779 !important;
  font-family: "Visby Medium", sans-serif;
}
.p-calendar-event-count-non-planifie {
  background-color: #edf1fd !important;
  border-color: #a9bceb !important;
  border-left-color: #4768bb !important;
  color: #4768bb !important;
  font-family: "Visby Medium", sans-serif;
}
.p-calendar-event-count-visite {
  background-color: #ece6f7 !important;
  border-color: #b7a0eb !important;
  border-left-color: #8651db !important;
  color: #8651db !important;
  font-family: "Visby Medium", sans-serif;
}
.p-calendar-event-count-non-visite {
  background-color: #f9e9e9 !important;
  border-color: #e3baba !important;
  border-left-color: #d13d3d !important;
  color: #d13d3d !important;
  font-family: "Visby Medium", sans-serif;
}
.p-calendar-event-count-rdv {
  background-color: #fff7e8 !important;
  border-color: #dec697 !important;
  border-left-color: #efa319 !important;
  color: #efa319 !important;
  font-family: "Visby Medium", sans-serif;
}
@media only screen and (max-width: 720px) {
  .p-calendar-map {
    flex-direction: column-reverse;
  }
}
.p-calendar-map-carte {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 720px) {
  .p-calendar-map-carte {
    height: 400px;
  }
}
.p-calendar-map-pdcs {
  width: 400px;
}
@media only screen and (max-width: 720px) {
  .p-calendar-map-pdcs {
    width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .p-calendar-map-pdcs.p-pdg-left-l {
    padding-left: 0px !important;
  }
}
.p-calendar-map-pdcs-title {
  font-family: "Visby Bold", sans-serif;
  color: #000;
  font-size: 16px;
  padding-bottom: 10px;
}
.p-calendar-map-pdcs-nb {
  font-style: italic;
  color: #e56900;
  padding-top: 20px;
  padding-bottom: 10px;
}
.p-calendar-map-pdcs-item {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  padding: 15px;
}
.p-calendar-map-pdcs-item-date {
  font-size: 11px;
  color: #8e8e8e;
  margin-bottom: 5px;
}
.p-calendar-map-pdcs-item-name {
  font-family: "Visby Bold", sans-serif;
  font-size: 14px;
}
.p-calendar-map-pdcs-item:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-color: #ec841d;
  background-color: #fff1e3;
}
.p-visit-detail {
  margin-bottom: 30px;
}
.p-visit-detail-header {
  position: fixed;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  width: calc(100% - 60px);
  background-color: #fff;
  z-index: 1;
  top: 111px;
  padding-top: 30px;
}
.p-visit-detail-location {
  color: #e56900;
  font-family: "Visby Bold", sans-serif;
  font-size: 1.5rem;
}
.p-visit-detail-family {
  font-family: "Visby Bold", sans-serif;
}
.p-pdc-validation, .p-pdc-validation b {
  margin-left: 15px;
  color: #ec841d;
  text-decoration: underline;
  cursor: pointer;
}
.p-pdc-detail-title {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.p-pdc-detail-title-right {
  border-left: 5px solid #f0f0f0;
  padding-left: 15px;
}
.p-pdc-detail-typologie-title {
  font-size: 16px;
  font-weight: bold;
}
.p-pdc-detail-typologie-logo {
  width: 57px;
  height: 57px;
  margin-right: 10px;
}
.p-pdc-detail-typologie-text {
  font-size: 14px;
  height: 57px;
}
.p-pdc-detail-infos {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.p-pdc-detail-infos-text, .p-pdc-detail-infos-text b {
  font-size: 16px;
  line-height: 1.5;
}
.p-pdc-detail-name {
  color: #ec841d;
  font-family: "Visby Heavy", sans-serif;
  font-size: 20px;
  padding-bottom: 10px;
}
.p-pdc-detail-id {
  font-size: 18px;
  font-weight: bold;
}
.p-pdc-detail-address, .p-pdc-detail-address b {
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 18px;
}
.p-pdc-detail-phone, .p-pdc-detail-phone b {
  font-size: 16px;
}
.p-pdc-detail-centrales, .p-pdc-detail-centrales b {
  margin-bottom: 15px;
  font-size: 16px;
}
.p-pdc-detail-photo {
  height: 100%;
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border: 0;
  background-color: #f0f0f0;
}
.p-pdc-detail-sources {
  border-left: 5px solid #f0f0f0;
  padding-left: 15px;
}
.p-pdc-detail-sources-title {
  color: #ec841d;
  font-family: "Visby Bold", sans-serif;
  font-size: 16px;
  padding-bottom: 20px;
}
.p-pdc-detail-last {
  border-left: 5px solid #f0f0f0;
  padding-left: 15px;
}
.p-pdc-detail-last-title {
  color: #ec841d;
  font-family: "Visby Bold", sans-serif;
  font-size: 16px;
  padding-bottom: 20px;
}
.p-landing {
  padding-top: 5px;
  padding-bottom: 5px;
  border-left: 5px solid #e56900;
  padding-left: 15px;
  font-size: 2.5rem;
  font-family: "Visby Regular", sans-serif;
  line-height: 3rem;
}
.p-login {
  height: 100%;
  width: 100%;
  background-color: #f4f2ef;
}
.p-login-item {
  width: 350px;
  height: 350px;
}
.p-login-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}
.p-login-google {
  background-color: #bd4a30 !important;
  border-color: #bd4a30 !important;
  padding: 10px 15px !important;
}

@media only screen and (max-width: 1025px) {
  .p-indicators,
.p-content-page-right {
    display: none;
  }

  .p-content-page-center {
    width: 100%;
  }
}
.p {
  /*&-content-item {
    @include padding-full($padding);
    margin-bottom: ($margin) * 1px;
    background-color: $white;
    border: 1px solid $med-light-grey;
    border-radius: 4px;
    -moz-box-shadow: 7px 7px 8px -9px #dadada;
    -webkit-box-shadow: 7px 7px 8px -9px #dadada;
    -o-box-shadow: 7px 7px 8px -9px #dadada;
    box-shadow: 7px 7px 8px -9px #dadada;
  }*/
  /* -------------- COMPONENTS -------------- */
  /*&-confirm-btn {
    @extend %button;
    background-color: $normal-main;
    border: 1px solid $normal-main;
    color: $white;
    a {
      color: $white;
    }
  }
  &-confirm-btn:active {
    background-color: lighten($normal-main, 3%);
    border-color: lighten($normal-main, 3%);
  }
  &-confirm-btn:after {
    @extend %button-after;
    border-color: $white;
  }
  &-confirm-btn:not(.p-btn-disabled):hover {
    @include transition(all, 0.4, ease-in-out);
    background-color: lighten($normal-main, 4%);
  }
  &-confirm-btn:not(.p-btn-disabled):hover:after {
    @extend %button-hover-after;
    color: $white;
  }
  // Cancel button
  &-cancel-btn {
    @extend %button;
    border: 1px solid $grey-blue;
    color: $grey-blue;
  }
  &-cancel-btn:active {
    color: lighten($grey-blue, 15%);
    border-color: lighten($grey-blue, 15%);
  }
  &-cancel-btn:after {
    @extend %button-after;
    border-color: $grey-blue;
  }
  &-cancel-btn:hover:after {
    @extend %button-hover-after;
    color: $grey-blue;
  }
  // Cutstom button
  &-btn-large {
    @include padding-vertical($padding - 12);
    //height:35px;
  }
  &-btn-disabled {
    cursor: no-drop;
    opacity: 0.65;
  }
  &-btn-delete {
    background-color: #d60031;
    border-color: #d60031;
  }
  &-btn-delete:not(.p-btn-disabled):hover {
    background-color: lighten(#d60031, 2%);
  }*/
}
.p-hidden {
  display: none;
}
.p-no-transition {
  transition: none !important;
}
.p-flex {
  display: flex;
}
.p-flex-1 {
  display: flex;
  flex: 1;
}
.p-flex-col {
  display: flex;
  flex-direction: column;
}
.p-w-1-2 {
  width: 49.5%;
}
.p-w-1-3 {
  width: 33%;
}
.p-w-2-3 {
  width: 66%;
}
.p-w-1-5 {
  width: 19%;
}
.p-w-2-5 {
  width: 39%;
}
.p-w-3-5 {
  width: 60%;
}
.p-w-4-5 {
  width: 80%;
}
.p-w-1-9 {
  width: 11%;
}
.p-w-100 {
  width: 100%;
}
.p-w-50 {
  width: 50%;
}
.p-w-h-100 {
  width: 100%;
  height: 100%;
}
.p-h-100 {
  height: 100%;
}
.p-al-wrap {
  flex-wrap: wrap;
}
.p-al-r-full-center {
  align-items: center;
}
.p-al-c-full-center {
  align-items: center;
}
.p-cursor-pointer {
  cursor: pointer;
}
.p-ft-v {
  font-family: "Visby Regular", sans-serif;
}
.p-scroll-y {
  overflow-y: auto;
  overflow-x: hidden;
}
.p-scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.p-txt-italic {
  font-style: italic;
}
.p-txt-bold {
  font-weight: bold;
}
.p-txt-center {
  text-align: center;
}
.p-txt-ft-s {
  font-size: 0.8rem;
}
.p-txt-up {
  text-transform: uppercase;
}
.p-txt-cap {
  text-transform: capitalize;
}
.p-clr-nm {
  color: #ec841d;
}
.p-clr-dm {
  color: #e56900;
}
.p-clr-lm {
  color: #ffe1c4;
}
.p-clr-lmg {
  color: #f7f1eb;
}
.p-clr-mdg {
  color: #8a8a8a;
}
.p-clr-mg {
  color: #8e8e8e;
}
.p-clr-blck {
  color: #000;
}
.p-clr-red {
  color: #e22222;
}
.p-bg-white {
  background-color: #fff;
}
.p-brd-bot {
  border-bottom: 1px solid #ffe1c4;
}
.p-mrg-full {
  margin: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-full {
    margin: 10px;
  }
}
.p-mrg-ver {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-ver {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.p-mrg-ver-s {
  margin-top: 7.5px;
  margin-bottom: 7.5px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-ver-s {
    margin-top: 2.5px;
    margin-bottom: 2.5px;
  }
}
.p-mrg-hor {
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-hor {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.p-mrg-bot {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-bot {
    margin-bottom: 10px;
  }
}
.p-mrg-bot-s {
  margin-bottom: 7.5px;
}
.p-mrg-bot-l {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-bot-l {
    margin-bottom: 22.5px;
  }
}
.p-mrg-bot-0 {
  margin-bottom: 0;
}
.p-mrg-top {
  margin-top: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-top {
    margin-top: 10px;
  }
}
.p-mrg-top-s {
  margin-top: 7.5px;
}
.p-mrg-top-l {
  margin-top: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-top-l {
    margin-top: 22.5px;
  }
}
.p-mrg-top-0 {
  margin-top: 0;
}
.p-mrg-right {
  margin-right: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-right {
    margin-right: 10px;
  }
}
.p-mrg-right-s {
  margin-right: 7.5px;
}
.p-mrg-right-l {
  margin-right: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-right-l {
    margin-right: 22.5px;
  }
}
.p-mrg-left {
  margin-left: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-left {
    margin-left: 10px;
  }
}
.p-mrg-left-s {
  margin-left: 7.5px;
}
.p-mrg-left-l {
  margin-left: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-mrg-left-l {
    margin-left: 22.5px;
  }
}
.p-pdg-0 {
  padding: 0;
}
.p-pdg-full {
  padding: 15px;
}
.p-pdg-ver {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-ver {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.p-pdg-hor {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-hor {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-pdg-bot {
  padding-bottom: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-bot {
    padding-bottom: 10px;
  }
}
.p-pdg-bot-s {
  padding-bottom: 7.5px;
}
.p-pdg-bot-l {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-bot-l {
    padding-bottom: 22.5px;
  }
}
.p-pdg-top {
  padding-top: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-top {
    padding-top: 10px;
  }
}
.p-pdg-top-s {
  padding-top: 7.5px;
}
.p-pdg-top-l {
  padding-top: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-top-l {
    padding-top: 22.5px;
  }
}
.p-pdg-right {
  padding-right: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-right {
    padding-right: 10px;
  }
}
.p-pdg-right-s {
  padding-right: 7.5px;
}
.p-pdg-right-l {
  padding-right: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-right-l {
    padding-right: 22.5px;
  }
}
.p-pdg-left {
  padding-left: 15px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-left {
    padding-left: 10px;
  }
}
.p-pdg-left-20 {
  padding-left: 20px;
}
.p-pdg-left-s {
  padding-left: 7.5px;
}
.p-pdg-left-l {
  padding-left: 30px;
}
@media only screen and (max-width: 1025px) {
  .p-pdg-left-l {
    padding-left: 22.5px;
  }
}
.p-input-search {
  background-image: url("./../../img/search.svg");
  background-repeat: no-repeat;
  background-position: center right 6px;
  background-size: 13px 13px;
}
.p-modal-scrollcontent {
  padding-right: 7.5px;
  padding-left: 7.5px;
  max-height: 50vh;
  overflow-y: auto;
}
.p-btn-green {
  background-color: #14c48d;
  color: #fff;
}
.p-btn-green a {
  color: #fff;
}
.p-btn-green:not(.p-btn-disabled):hover {
  background-color: #0da475;
}
.p-btn-green.p-btn-disabled {
  cursor: not-allowed;
  background-color: #b2d5ca;
}
.p-btn-green:not(.p-btn-disabled):active {
  background-color: #097553;
}
.p-btn-red {
  background-color: #e22222;
  color: #fff;
}
.p-btn-red a {
  color: #fff;
}
.p-btn-red:not(.p-btn-disabled):hover {
  background-color: #c60b0b;
}
.p-btn-red.p-btn-disabled {
  cursor: not-allowed;
  background-color: #dcabab;
}
.p-btn-red:not(.p-btn-disabled):active {
  background-color: #960808;
}
.p-btn-blue {
  background-color: #0ea5d4;
  color: #fff;
}
.p-btn-blue a {
  color: #fff;
}
.p-btn-blue:not(.p-btn-disabled):hover {
  background-color: #0c8bb3;
}
.p-btn-blue.p-btn-disabled {
  cursor: not-allowed;
  background-color: #ceecf2;
}
.p-btn-blue:not(.p-btn-disabled):active {
  background-color: #0b80a4;
}
.p-btn-grey {
  background-color: #c8c8c8;
  color: #fff;
}
.p-btn-grey a {
  color: #fff;
}
.p-btn-grey:not(.p-btn-disabled):hover {
  background-color: #8e8e8e;
}
.p-btn-grey.p-btn-disabled {
  cursor: not-allowed;
  background-color: #c8c8c8;
  color: #8e8e8e;
}
.p-btn-grey:not(.p-btn-disabled):active {
  background-color: #757575;
}
.p-btn-orange {
  background-color: #ec841d;
  color: #fff;
}
.p-btn-orange a {
  color: #fff;
}
.p-btn-orange:not(.p-btn-disabled):hover {
  background-color: #e56900;
}
.p-btn-orange.p-btn-disabled {
  cursor: not-allowed;
  background-color: #d4aa81;
}
.p-btn-orange:not(.p-btn-disabled):active {
  background-color: #b25200;
}
.p-btn-light-orange {
  background-color: #fff1e3;
  color: #ec841d;
}
.p-btn-light-orange a {
  color: #ec841d;
}
.p-btn-light-orange:not(.p-btn-disabled):hover {
  background-color: #ffe1c4;
}
.p-btn-light-orange.p-btn-disabled {
  cursor: not-allowed;
  background-color: #f7f1eb;
  color: #d7904b;
}
.p-btn-light-orange:not(.p-btn-disabled):active {
  background-color: #ffd4ab;
}
.p-input-text {
  border: 1px solid #8e8e8e;
  font-size: 1rem;
}
.p-input-text:focus {
  outline: 0;
  border-color: #ec841d;
  transition: all 0.6s;
}
.p-search {
  background-image: url("img/search.png");
  background-repeat: no-repeat;
  background-position: center left 15px;
  background-size: 15px 15px;
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
  color: #515151;
  padding-left: 40px;
}
.p-search:hover {
  transition: all 0.6s;
  border-color: #c8c8c8;
}
.p-search:focus {
  outline: 0;
  transition: all 0.6s;
  border-color: #c8c8c8;
  -webkit-box-shadow: 0px 0px 4px 0px #c8c8c8;
  -moz-box-shadow: 0px 0px 4px 0px #c8c8c8;
  box-shadow: 0px 0px 4px 0px #c8c8c8;
}
.p-import-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.p-import-btn {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 5px;
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #515151;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 13px;
  padding: 10px 15px;
  /*&-label {
    font-family: $second-font;
    //font-weight: bold;
    text-transform: uppercase;
    color: $dark-grey;
    &-small {
      font-size: 0.9rem;
    }
    &-large {
      font-size: 1.1rem;
      @media only screen and (max-width: 1025px) {
        font-size: 0.9rem;
      }
    }
  }
  &-value {
    @include padding-horizontal($padding - 10);
    font-weight: bold;
    color: $normal-main;
    &-small {
      font-size: 1.2rem;
    }
    &-large {
      font-size: 1.6rem;
      @media only screen and (max-width: 1025px) {
        font-size: 1.2rem;
      }
    }
  }*/
}
.p-import-btn:hover {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-color: #515151;
}
.p-import-item:last-child {
  margin-right: 0;
}

.ant-calendar-picker-input .anticon svg,
.ant-select .anticon svg {
  fill: #aaa !important;
}

.ant-dropdown-link.ant-dropdown-trigger {
  color: #ec841d !important;
}

.ant-tag {
  padding: 15px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.ant-btn {
  border-color: transparent;
  background-color: #c8c8c8;
  border-radius: 15px !important;
  cursor: pointer !important;
  align-items: center !important;
  height: 34px !important;
  width: fit-content !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.ant-btn-primary {
  border-color: transparent !important;
  background-color: #14c48d !important;
  border-radius: 15px !important;
  cursor: pointer !important;
  align-items: center !important;
  height: 34px !important;
  width: fit-content !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.ant-btn-primary span {
  color: #fff !important;
}

.ant-btn:hover {
  background-color: #8e8e8e !important;
}

.ant-btn-primary:hover,
.ant-btn-background-ghost.ant-btn-primary {
  background-color: #0da475 !important;
}

.ant-btn:focus,
.ant-btn:active,
.ant-btn.active {
  background-color: #8e8e8e !important;
}

.ant-btn-primary:focus,
.ant-btn-primary:active,
.ant-btn-primary.active {
  background-color: #0da475 !important;
}

.ant-btn span,
.ant-btn:hover span,
.ant-btn:focus span,
.ant-btn:active span,
.ant-btn.active span,
.ant-btn-background-ghost.ant-btn-primary span {
  color: #fff !important;
}

.ant-btn:hover,
.ant-btn:focus,
.ant-checkbox-checked::after,
.ant-input-number:hover {
  border-color: transparent !important;
}

.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #ec841d !important;
  border-color: #ec841d !important;
}

.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #ec841d !important;
}

.ant-calendar-picker-input.ant-input {
  padding: 1px 15px !important;
}
@media only screen and (max-width: 720px) {
  .ant-calendar-picker-input.ant-input {
    padding: 1px 10px !important;
  }
}

.ant-calendar-range .ant-calendar-input,
.ant-calendar-range .ant-calendar-time-picker-input {
  padding: 1px 1px !important;
  font-size: 13px !important;
}

.ant-calendar-range-picker-separator {
  padding-top: 9px !important;
  padding-left: 3px !important;
  margin-right: 10px !important;
}

.ant-calendar-range-picker-input {
  text-align: left !important;
}

.ant-select-selection,
.ant-time-picker-input,
.ant-input {
  border-color: transparent !important;
  background-color: #f0f0f0 !important;
  border-radius: 12px !important;
  padding: 1px 5px !important;
  font-size: 13px !important;
}
@media only screen and (max-width: 720px) {
  .ant-select-selection,
.ant-time-picker-input,
.ant-input {
    padding: 0px 5px !important;
    height: 25px !important;
  }
}

.ant-time-picker-input {
  padding-left: 15px !important;
}

@media only screen and (max-width: 720px) {
  .ant-select-selection--multiple {
    min-height: 25px !important;
  }
}

.ant-select-enabled .ant-select-selection__placeholder {
  color: #888888 !important;
}

.ant-select-selection--multiple .ant-select-selection__rendered {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 720px) {
  .ant-select-selection--multiple .ant-select-selection__rendered {
    margin-left: 0px !important;
  }
}

.ant-select-allow-clear .ant-select-selection--multiple .ant-select-selection__rendered {
  margin-right: 15px !important;
}

.ant-select-selection--multiple > ul > li,
.ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  line-height: 28px !important;
  background-color: transparent !important;
  border: none !important;
  margin-top: 0px !important;
}
@media only screen and (max-width: 720px) {
  .ant-select-selection--multiple > ul > li,
.ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
    line-height: 26px !important;
  }
}

.ant-select-selection--multiple .ant-select-selection__choice__content {
  text-decoration: underline !important;
  margin-top: 9px !important;
}
@media only screen and (max-width: 720px) {
  .ant-select-selection--multiple .ant-select-selection__choice__content {
    margin-top: 0px !important;
  }
}

@media only screen and (max-width: 720px) {
  .ant-select-selection__placeholder,
.ant-select-search__field__placeholder {
    top: 39% !important;
  }
}

.ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  margin-left: 5px !important;
}

.ant-select-selection--multiple .ant-select-selection__choice__remove {
  right: 5px !important;
  top: -2px !important;
}

.ant-select-allow-clear .ant-select-selection--single .ant-select-selection-selected-value,
.ant-select-selection-selected-value {
  padding-top: 9px !important;
}
@media only screen and (max-width: 1025px) {
  .ant-select-allow-clear .ant-select-selection--single .ant-select-selection-selected-value,
.ant-select-selection-selected-value {
    padding-top: 6px !important;
  }
}

.ant-select-selection--multiple .ant-select-selection__choice {
  padding-left: 8px !important;
}

.ant-select-dropdown {
  width: 300px !important;
}

.ant-select-dropdown.ant-select-dropdown--multiple.ant-select-dropdown-placement-bottomLeft {
  width: 500px !important;
}

.ant-select-dropdown-menu-item .anticon-check {
  display: none !important;
}

.ant-select-dropdown-menu-item.ant-select-dropdown-menu-item-selected .anticon-check,
.ant-select-dropdown-menu-item.ant-select-dropdown-menu-item-selected:hover .anticon-check {
  display: inline-block !important;
}

.ant-select-selection:hover,
.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  border-color: #c8c8c8 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active,
.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled),
.ant-input:focus,
.ant-input-number:focus,
.ant-input-number-focused,
.ant-time-picker-input:focus {
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
  color: #515151 !important;
  border-color: #c8c8c8 !important;
  -webkit-box-shadow: 0px 0px 4px 0px #f0f0f0 !important;
  -moz-box-shadow: 0px 0px 4px 0px #f0f0f0 !important;
  box-shadow: 0px 0px 4px 0px #f0f0f0 !important;
}

.ant-select-dropdown-menu-item:hover,
.ant-select-dropdown-menu-item-active,
.ant-select-tree li .ant-select-tree-node-content-wrapper:hover,
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #fff1e3 !important;
}

.ant-upload-list-item {
  height: auto !important;
}

.ant-upload-list-item-info {
  padding: 10px !important;
}

.ant-upload-list-item-info .anticon {
  margin-top: 4px !important;
}

.ant-upload-list-item:hover .ant-upload-list-item-info {
  background-color: #fff1e3 !important;
}

.ant-time-picker-panel-select li:hover {
  background-color: #fff1e3 !important;
}

li.ant-time-picker-panel-select-option-selected {
  background-color: #ffe1c4 !important;
}

.ant-calendar-selected-date .ant-calendar-date,
.ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-selected-end-date .ant-calendar-date {
  background: #ec841d !important;
}

.ant-calendar-date:hover,
.ant-calendar-range .ant-calendar-in-range-cell::before {
  background: #fff1e3 !important;
}

.ant-pagination-item {
  line-height: 32px !important;
}

.ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination-next .ant-pagination-item-link::after,
.ant-pagination-prev .ant-pagination-item-link svg,
.ant-pagination-next .ant-pagination-item-link svg {
  padding-top: 9px !important;
}

.ant-pagination-item-link .anticon svg {
  font-size: 22px !important;
}

.ant-pagination-prev.ant-pagination-disabled .ant-pagination-item-link svg,
.ant-pagination-next.ant-pagination-disabled .ant-pagination-item-link svg {
  fill: #ddd !important;
}

.ant-pagination-prev.ant-pagination-disabled:hover .ant-pagination-item-link,
.ant-pagination-next.ant-pagination-disabled:hover .ant-pagination-item-link {
  border-color: #ddd !important;
}

.ant-pagination-item-active:focus,
.ant-pagination-item-active:hover,
.ant-pagination-item-active,
.ant-pagination-item:focus,
.ant-pagination-item:hover {
  border-color: #ec841d !important;
}

.ant-pagination-item-active a,
.ant-pagination-item:focus a,
.ant-pagination-item:hover a {
  color: #ec841d !important;
}

.ant-pagination-prev:focus .ant-pagination-item-link,
.ant-pagination-next:focus .ant-pagination-item-link,
.ant-pagination-prev:hover .ant-pagination-item-link,
.ant-pagination-next:hover .ant-pagination-item-link {
  border-color: #ec841d !important;
  color: #ec841d !important;
}

.ant-table-thead > tr > th,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters {
  background-color: transparent !important;
  border-bottom: 0 !important;
  padding-right: 20px !important;
  padding-left: 10px !important;
}

.ant-table-thead > tr > th > span,
.ant-table-thead > tr > th > div {
  color: #8e8e8e !important;
  font-size: 0.98rem !important;
}

.ant-table-thead > tr > th .ant-table-column-sorters:hover:before {
  background: transparent !important;
  background-color: transparent !important;
}

.ant-table-thead > tr > th .ant-table-column-sorter-up svg path,
.ant-table-thead > tr > th .ant-table-column-sorter-down svg path {
  color: #c8c8c8 !important;
}

.ant-table-tbody > tr > td {
  background-color: transparent !important;
  border: 0 !important;
}

.ant-table-tbody > tr {
  border-top: 1px solid #f7f1eb !important;
}

.ant-table-tbody > tr:last-child {
  border-bottom: 1px solid #f7f1eb !important;
}

.ant-table-tbody > tr:hover,
.ant-table-tbody > tr:hover + tr {
  border-color: transparent !important;
  background-color: transparent !important;
}

.ant-table-tbody > tr:hover > td {
  background-color: #fff1e3 !important;
}

.ant-table-tbody > tr:hover > td:first-child {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.ant-table-tbody > tr:hover > td:last-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.ant-table-tbody > tr:active,
.ant-table-tbody > tr:active + tr {
  border-color: transparent !important;
  background-color: transparent !important;
}

.ant-table-tbody > tr:active > td {
  background-color: #ffe1c4 !important;
}

.ant-table-tbody > tr:active > td:first-child {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.ant-table-tbody > tr:active > td:last-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.ant-table-tbody a {
  color: #ec841d !important;
}

/* vertical */
.ant-steps {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}

.ant-steps-item {
  display: block;
  width: 100%;
  overflow: visible;
  margin-bottom: 25px;
}

.ant-steps-item:last-child {
  margin-bottom: 0;
}

/* end vertical */
.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #98d5e2 !important;
}

.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon {
  color: #98d5e2 !important;
}

.ant-steps-item-wait > .ant-steps-item-content > .ant-steps-item-title,
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title {
  color: #000 !important;
  font-family: "Visby Regular", sans-serif;
  margin-left: 5px;
  font-size: 1.1rem !important;
}

.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title {
  color: #000 !important;
  font-family: "Visby Bold", sans-serif;
  margin-left: 5px;
  font-size: 1.1rem !important;
}

.ant-steps-item-process .ant-steps-item-icon,
.ant-steps-item-finish .ant-steps-item-icon {
  border-color: #0ea5d4 !important;
  background: #0ea5d4 !important;
}

.ant-steps-item-finish .ant-steps-item-icon .anticon svg path {
  fill: #fff !important;
}

.ant-steps-item-title {
  font-size: 1rem !important;
}

.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #0ea5d4 !important;
}

.ant-steps-item-icon > .ant-steps-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex: 1 !important;
  height: 100% !important;
  padding-top: 3px !important;
}

.ant-steps-item-title:after {
  content: "";
  height: 26px;
  width: 1px;
  background: #98d5e2 !important;
  top: 32px;
  left: -30px;
}

.ant-switch-checked {
  background-color: #ec841d !important;
}

.ant-switch:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.ant-tabs-bar {
  margin-bottom: 0 !important;
  border: none !important;
}

.ant-tabs-nav .ant-tabs-tab {
  font-family: "Visby Regular", sans-serif;
  color: #c8c8c8 !important;
  font-size: 1.2rem !important;
}

/*.p-survey-4 .fkjViJ {
  width: 1000px !important;
}*/
.ant-tabs-nav .ant-tabs-tab-active {
  color: #515151 !important;
  font-family: "Visby Bold", sans-serif !important;
}

.ant-tabs-nav .ant-tabs-tab-active:hover {
  color: #515151 !important;
}

.ant-tabs-ink-bar {
  background-color: #e56900 !important;
}

.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane,
.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane {
  border-top: 1px solid #f0f0f0 !important;
}

.ant-tabs-nav .ant-tabs-tab:hover {
  color: #e56900 !important;
}

.ant-modal-header {
  border-bottom: 1px solid #ffe1c4 !important;
  padding-bottom: 6px !important;
}

.ant-modal-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: "Visby Regular", sans-serif;
  font-weight: bold;
  color: #515151;
}

.ant-modal-mask {
  backdrop-filter: blur(2px) !important;
}

/*.ant-modal-body {
  padding-top:0 !important;
  padding-bottom:16px !important;
}*/
.ant-modal-confirm-body .ant-modal-confirm-content {
  margin-left: 0 !important;
}

.ant-modal-confirm-body i.anticon {
  display: none !important;
}

.ant-modal-footer {
  display: flex !important;
  justify-content: center !important;
}

/* SURVEY STEP 4 */
.p-survey-4 .ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane,
.p-survey-4 .ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane {
  width: 100% !important;
  min-width: 100% !important;
}

/* ********* RESPONSIVE ********* */
@media only screen and (max-width: 1025px) {
  .ant-input,
.ant-calendar-range .ant-calendar-input,
.ant-calendar-range .ant-calendar-time-picker-input {
    font-size: 12px !important;
  }
}
.ant-table-thead > tr > th .ant-table-column-sorter-up.on svg,
.ant-table-thead > tr > th .ant-table-column-sorter-down.on svg {
  fill: #ec841d;
}

.ant-spin-text {
  margin-top: 10px;
  color: #e56900;
}

.ant-form-item-control {
  line-height: initial !important;
}

.ant-tooltip-inner {
  padding: 9px 8px !important;
}

.visith-item.active > td {
  background: #fff1e8 !important;
}

.visith-item:hover {
  cursor: pointer !important;
}

.p-visit-detail .ant-collapse-content-box {
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 10px;
}

.p-visit-detail .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  font-family: "Visby Medium", sans-serif;
}

.p-content-page-right-banner .ant-table-tbody > tr {
  border-color: #ceecf2 !important;
}

.p-content-page-right-banner .ant-table-tbody > tr:hover > td,
.p-content-page-right-banner .visith-item.active > td {
  background: #ceecf2 !important;
  border-radius: 0 !important;
}

.p-content-page-right-banner .ant-table-tbody a {
  color: #0ea5d4 !important;
}

.p-phototheque-brands .anticon svg {
  fill: #ff5200 !important;
}

.rbc-event {
  width: calc(100% - 10px) !important;
  opacity: 1 !important;
  background-color: #fff !important;
  filter: opacity(1) !important;
}

.rbc-today {
  background-color: #ffe1c4 !important;
}

.rbc-header {
  font-weight: normal !important;
  font-size: 105% !important;
  padding: 15px !important;
  text-transform: uppercase !important;
}

.rbc-header.rbc-today {
  color: #e56900 !important;
  background-color: #fff !important;
}

.rbc-toolbar {
  margin-bottom: 20px !important;
}

.rbc-toolbar-label h2 {
  color: #515151 !important;
  font-weight: bold !important;
  font-size: 1.2rem;
}

.rbc-toolbar .ant-btn.ant-btn-primary.ant-btn-circle.ant-btn-lg.ant-btn-icon-only {
  background-color: transparent !important;
  color: #515151 !important;
  border: none !important;
  border-color: #515151 !important;
}

.rbc-header + .rbc-header,
.rbc-time-header-content {
  border-left: 1px solid #f7f1eb !important;
}

.rbc-timeslot-group {
  border-bottom: 1px solid #f7f1eb !important;
}

.rbc-time-content {
  border-top: 2px solid #f7f1eb !important;
}

.rbc-time-view {
  border: 1px solid #f7f1eb !important;
}

.rbc-time-content > * + * > * {
  border-left: 1px solid #f7f1eb !important;
}

.rbc-time-column .rbc-timeslot-group {
  align-items: center !important;
  flex-direction: initial !important;
}

.rbc-time-slot .rbc-label {
  font-size: 91% !important;
  color: #e56900 !important;
  font-weight: bold !important;
}

.rbc-time-view .rbc-allday-cell {
  display: none !important;
}

.rbc-header {
  border-bottom: none !important;
}

.rbc-calendar .rbc-event .ant-btn-primary {
  background-color: #fff !important;
}

.rbc-calendar .rbc-toolbar .rbc-btn-group {
  margin-top: 15px !important;
}

/* Buttons */
.fc button {
  border: 1px solid #c8c8c8;
  color: #515151;
  background-color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 34px;
}
.fc button:hover {
  border-color: #515151;
}
.fc button:focus {
  outline: none !important;
}
.fc button.fc-state-default {
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}
.fc button.fc-state-active {
  background-color: #fff1e3;
  color: #e56900;
  border-color: #e56900;
}
.fc button.fc-today-button {
  cursor: no-drop;
  z-index: 6;
}
.fc button.fc-today-button.fc-state-disabled {
  background-color: #f0f0f0;
}
.fc button.fc-today-button.fc-state-disabled:hover {
  border-color: #c8c8c8;
}
.fc button.fc-today-button:not(.fc-state-disabled):hover {
  cursor: pointer;
}
.fc button.fc-today-button:not(.fc-state-disabled):hover:hover {
  border-color: #515151;
}
.fc button.fc-prev-button, .fc button.fc-next-button {
  padding-right: 15px;
  padding-left: 15px;
}
.fc button.fc-prev-button span:after, .fc button.fc-next-button span:after {
  color: #515151;
}
.fc button.fc-prev-button:hover, .fc button.fc-next-button:hover {
  border-color: #515151;
}

.fc button.fc-planifier-button {
  background-color: #14c48d;
  border: 0;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 15px;
  height: 34px;
}
.fc button.fc-planifier-button:hover {
  background-color: #0da475;
}

.fc button.fc-carte-button {
  margin-left: 5px;
  background-color: #14c48d;
  border: 0;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 15px;
  height: 34px;
}
.fc button.fc-carte-button:hover {
  background-color: #0da475;
}

.fc button.fc-vacation-button {
  margin-left: 5px;
  background-color: #14c48d;
  border: 0;
  color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 15px;
  height: 34px;
}
.fc button.fc-vacation-button:hover {
  background-color: #0da475;
}

.fc-state-default.fc-corner-left {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.fc-state-default.fc-corner-right {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #f0f0f0;
}

.fc-day-header {
  padding: 10px !important;
}

.fc-unthemed td.fc-today {
  background-color: #fff9f2;
}

.fc-center {
  padding-top: 0px;
}

.fc-center h2 {
  font-family: "Visby Bold", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

tr td.fc-axis.fc-time.fc-widget-content {
  padding-top: 5px;
  padding-bottom: 5px;
}
tr td.fc-axis.fc-time.fc-widget-content span {
  color: #e56900;
  font-size: 0.8rem;
}

/*tr.fc-minor td.fc-axis.fc-time.fc-widget-content {
  @include padding-vertical(0);
}*/
.fc-ltr .fc-axis {
  text-align: center;
}

.fc-week-number span {
  font-weight: bold;
  color: #8a8a8a;
}

.fc-content-skeleton .fc-week-number span {
  color: #e56900;
  font-weight: normal;
  font-size: 0.8rem;
}

.fc-event .fc-bg,
a.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end.fc-draggable {
  background: transparent !important;
  opacity: 1;
}

.fc-event {
  padding: 0px;
}

.fc-title {
  line-height: 1.2rem;
}

.fc-time-grid-event.fc-short .fc-title {
  line-height: 0.9rem;
}

.fc-toolbar .fc-center {
  margin-top: 7px;
  align-items: center;
  justify-content: center;
}

.p-content-page-center-full .fc-toolbar .fc-center {
  display: flex;
  height: 34px;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 20px;
}

.fc thead tr th span {
  font-weight: normal;
  font-size: 0.9rem;
  font-style: italic;
}

.fc-head-container {
  border-color: transparent !important;
  border-bottom-color: #c8c8c8 !important;
}

.fc-body > tr > .fc-widget-content {
  border-color: transparent;
}

.fc-sun,
.fc-sat,
.fc-ferie {
  background: #fafafa !important;
}

.fc-time-grid-event .fc-time {
  margin-bottom: 5px;
  color: #8a8a8a;
}
.fc-time-grid-event .fc-time span {
  color: #8a8a8a;
  font-size: 0.8rem;
}

.fc-day-grid-event .fc-time {
  color: #8a8a8a;
  font-size: 0.8rem;
}

.fc-basic-view th.fc-week-number {
  padding: 8px 2px;
}

.fc-list-heading {
  display: none;
}

.fc-list-empty-wrap2 {
  position: relative;
}

.fc-unthemed .fc-list-heading td {
  background-color: #fff;
}

.fc-ltr .fc-list-heading-main {
  color: #515151;
}

.fc-unthemed .fc-list-empty {
  background-color: #fff;
  padding: 20px;
}

.fc-list-item-time {
  color: #8a8a8a;
}

.fc-event-dot {
  display: none;
}

.fc-unthemed .fc-list-item:hover td {
  background-color: inherit;
}

/* Responsive */
@media only screen and (max-width: 1330px) {
  .fc .fc-toolbar > * > * {
    float: none !important;
  }

  .fc-toolbar .fc-center {
    width: 100%;
    text-align: center;
  }

  .fc-toolbar .fc-left,
.fc-toolbar .fc-right {
    float: none !important;
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 575px) {
  .fc-button-group {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 566px) {
  .fc .fc-toolbar > * > * {
    margin-left: 0 !important;
  }
}
.stats .filter-btn {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #ec841d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.stats .filter-btn * {
  color: #ffffff;
}
.stats-left-menu {
  background-color: #353535;
  border-radius: 15px;
  color: white;
  padding-top: 20px;
  height: 92%;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 400px;
  margin-bottom: 20px;
}
.stats-left-menu.reduced {
  width: 200px;
}
.stats-left-menu div,
.stats-left-menu span,
.stats-left-menu i {
  color: white;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
           supported by Chrome, Opera and Firefox */
}
.stats-left-menu div:active, .stats-left-menu div:focus,
.stats-left-menu span:active,
.stats-left-menu span:focus,
.stats-left-menu i:active,
.stats-left-menu i:focus {
  background: #1f1f1f !important;
  outline: none !important;
}
.stats-left-menu .ant-menu-sub {
  background-color: transparent;
}
.stats-left-menu .ant-menu-sub div {
  color: white;
}
.stats-left-menu .ant-menu-item {
  color: white;
}
.stats-left-menu .ant-menu-submenu-arrow:after,
.stats-left-menu .ant-menu-submenu-arrow:before {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.65)), to(rgba(255, 255, 255, 0.65))) !important;
}
.stats-left-menu .ant-menu-item {
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 25px !important;
  height: 25px !important;
}
.stats-left-menu .ant-menu-item:active, .stats-left-menu .ant-menu-item:focus {
  background: #1f1f1f !important;
  outline: none !important;
}
.stats-left-menu .ant-menu-item-selected {
  background-color: #1f1f1f !important;
  font-weight: normal;
  font-size: 0.9rem;
}
.stats-left-menu .ant-menu-item-selected:active, .stats-left-menu .ant-menu-item-selected:focus {
  background: #1f1f1f !important;
  outline: none !important;
}
.stats-left-menu .ant-menu-submenu-active,
.stats-left-menu .ant-menu-submenu-title:hover {
  color: white;
}
.stats-left-menu .ant-menu-vertical .ant-menu-item:after,
.stats-left-menu .ant-menu-vertical-left .ant-menu-item:after,
.stats-left-menu .ant-menu-vertical-right .ant-menu-item:after,
.stats-left-menu .ant-menu-inline .ant-menu-item:after {
  border-right: none;
}

.CircularProgressbar {
  width: 100% !important;
  height: 100% !important;
}

.react-pdf__Page__textContent {
  display: none !important;
}

.prepare-h2 {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.preview-formio {
  width: 100%;
  min-height: 600px;
  overflow: auto;
}

.preview-formio * {
  line-height: 2 !important;
}

/*# sourceMappingURL=style.css.map */
