select.select_dc {
  display: none;
}

.custom-select_dc {
  position: relative;
  height: 40px;
  background-color: #fff;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}
.custom-select_dc .selected-option {
  position: relative;
  padding: 7px 25px 7px 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  height: 40px;
  background: #FFF7F2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-select_dc .selected-option:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  top: 18px;
  right: 8px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
}
.custom-select_dc .options {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #ffffff;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 5;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
  box-shadow: 1px 2px 13px -5px rgba(156, 156, 156, 0.75);
  -webkit-box-shadow: 1px 2px 13px -5px rgba(156, 156, 156, 0.75);
  -moz-box-shadow: 1px 2px 13px -5px rgba(156, 156, 156, 0.75);
  width: calc(100% + 2px);
  display: none;
}
.custom-select_dc .options.show {
  display: block;
}
.custom-select_dc .options li {
  padding: 10px;
  cursor: pointer;
}
.custom-select_dc .options li:hover {
  background-color: #fbfbfb;
}
.custom-select_dc .options li.selected {
  background-color: #fbfbfb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  white-space: normal;
}

body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #000;
  background-image: url(../img/background.png);
}

.container {
  width: 1366px;
  margin: auto;
  padding: 0 30px;
}

.content_page_wrapper {
  position: relative;
  margin: 40px 0;
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin: 20px 0;
}

.check-area {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #070707;
  height: 20px;
  width: 20px;
}

.check-area input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid #F1A27F;
  border-radius: 4px;
  background-color: #fff;
}

.check-area input:checked ~ .checkmark {
  background-color: #FF4905;
  border: 2px solid #FF4905;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-area input:checked ~ .checkmark:after {
  display: block;
}

.check-area .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mainHeader {
  margin: 20px 0;
}
.mainHeader .mainHeader_content {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 64px;
}
.mainHeader .mainHeader_content .logo_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 300px;
}
.mainHeader .mainHeader_content .logo_wrapper img {
  width: 180px;
}
.mainHeader .mainHeader_content .title_page_wrapper {
  text-align: center;
  padding: 10px 300px;
}
.mainHeader .mainHeader_content .title_page_wrapper .headline__1 {
  font-size: 27px;
  font-weight: 600;
  color: #32435C;
}
.mainHeader .mainHeader_content .title_page_wrapper .headline__2 {
  font-size: 14px;
  font-weight: 600;
  color: #ED5F11;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.mainHeader .mainHeader_content .user_nav_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mainHeader .mainHeader_content .user_nav_wrapper .user_nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mainHeader .mainHeader_content .user_nav_wrapper .user_nav .profile_pic {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #F7E1E1;
}
.mainHeader .mainHeader_content .user_nav_wrapper .user_nav .profile_pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* DROPDOWN*/
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px 10px 0;
}
.dropdown-btn span {
  display: block;
}
.dropdown-btn span.function {
  color: #6F6F6F;
  margin-top: 5px;
}
.dropdown-btn .icon_wrap {
  position: absolute;
  top: 10px;
  right: 0;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  visibility: hidden;
  padding: 8px;
  background-color: #fff;
}

.dropdown.active .dropdown-content {
  visibility: visible;
  box-shadow: 0px 1px 40px -8px #baafba;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}
.dropdown.active .dropdown-content a {
  text-decoration: none;
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.dropdown.active .dropdown-content a:last-child {
  margin-bottom: 0;
}
.dropdown.active .icon_wrap {
  transform: rotate(180deg);
  top: 13px;
}

.main_board_wrapper {
  width: 1080px;
  margin: auto;
}
.main_board_wrapper .main_stats_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 60px;
}
.main_board_wrapper .main_stats_wrapper .widget_wrapper {
  text-align: center;
}
.main_board_wrapper .main_stats_wrapper .widget_wrapper .main_title_widget {
  font-size: 27px;
  color: #E86012;
  font-weight: 600;
  margin-top: 20px;
}
.main_board_wrapper .main_stats_wrapper .widget_wrapper .sub_title_widget {
  font-size: 14px;
  color: #919191;
  font-weight: 600;
}
.main_board_wrapper .main_stats_wrapper span.separator {
  width: 1px;
  height: 40px;
  background-color: #C6C6C6;
}
.main_board_wrapper .main_shortcuts_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px 25px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut {
  width: calc(25% - 25px);
  height: 230px;
  padding: 15px 30px;
  border: 1px solid #E86012;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  background-color: #FFFAFA;
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut .icon_wrapper {
  background-color: #fff;
  width: 106px;
  height: 106px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut h3.title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut span.link {
  font-size: 14px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut:hover h3.title {
  transform: translateX(5px);
}
.main_board_wrapper .main_shortcuts_wrapper .widget_shortcut:hover span.link {
  transform: translateX(5px);
}

/* ANIMATION ICONS*/
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(249, 223, 240);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(249, 223, 240);
  }
}
.facture-1 {
  -webkit-animation: animate-svg-fill-1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
.facture-2 {
  -webkit-animation: animate-svg-fill-2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
.facture-3 {
  -webkit-animation: animate-svg-fill-3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(213, 54, 123);
  }
}
.facture-4 {
  -webkit-animation: animate-svg-fill-4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-ca--1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(197, 208, 255);
  }
}
@keyframes animate-svg-fill-ca--1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(197, 208, 255);
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-ca--1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-ca--1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-ca--2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(117, 163, 250);
  }
}
@keyframes animate-svg-fill-ca--2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(117, 163, 250);
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-fill-ca--2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-ca--2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-ca--3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(117, 163, 250);
  }
}
@keyframes animate-svg-fill-ca--3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(117, 163, 250);
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-fill-ca--3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-ca--3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-ca--4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(44, 87, 255);
  }
}
@keyframes animate-svg-fill-ca--4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(44, 87, 255);
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-fill-ca--4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-ca--4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-ca--5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(44, 87, 255);
  }
}
@keyframes animate-svg-fill-ca--5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(44, 87, 255);
  }
}
.svg-elem-5 {
  -webkit-animation: animate-svg-fill-ca--5 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
  animation: animate-svg-fill-ca--5 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}

@-webkit-keyframes animate-svg-fill-devi1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(201, 243, 196);
  }
}
@keyframes animate-svg-fill-devi1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(201, 243, 196);
  }
}
.dv-1 {
  -webkit-animation: animate-svg-fill-devi1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-devi1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-devi2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(56, 171, 71);
  }
}
@keyframes animate-svg-fill-devi2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(56, 171, 71);
  }
}
.dv-2 {
  -webkit-animation: animate-svg-fill-devi2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-devi2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-devi3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(56, 171, 71);
  }
}
@keyframes animate-svg-fill-devi3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(56, 171, 71);
  }
}
.dv-3 {
  -webkit-animation: animate-svg-fill-devi3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
  animation: animate-svg-fill-devi3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}

@-webkit-keyframes animate-svg-fill-brn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(141, 198, 200);
  }
}
@keyframes animate-svg-fill-brn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(141, 198, 200);
  }
}
.borne-1 {
  -webkit-animation: animate-svg-fill-brn1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-brn1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-brn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(7, 210, 230);
  }
}
@keyframes animate-svg-fill-brn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(7, 210, 230);
  }
}
.borne-2 {
  -webkit-animation: animate-svg-fill-brn2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-brn2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-brn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(141, 198, 200);
  }
}
@keyframes animate-svg-fill-brn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(141, 198, 200);
  }
}
.borne-3 {
  -webkit-animation: animate-svg-fill-brn3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-brn3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-prz1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(231, 38, 71);
  }
}
@keyframes animate-svg-fill-prz1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(231, 38, 71);
  }
}
.prez-1 {
  -webkit-animation: animate-svg-fill-prz1 0.2s ease-in 0.2s both;
  animation: animate-svg-fill-prz1 0.2s ease-in 0.2s both;
}

@-webkit-keyframes animate-svg-fill-prz2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
@keyframes animate-svg-fill-prz2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
.prez-2 {
  -webkit-animation: animate-svg-fill-prz2 0.2s ease-in 0.3s both;
  animation: animate-svg-fill-prz2 0.2s ease-in 0.3s both;
}

@-webkit-keyframes animate-svg-fill-prz3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
@keyframes animate-svg-fill-prz3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
.prez-3 {
  -webkit-animation: animate-svg-fill-prz3 0.2s ease-in 0.4s both;
  animation: animate-svg-fill-prz3 0.2s ease-in 0.4s both;
}

@-webkit-keyframes animate-svg-fill-prz4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
@keyframes animate-svg-fill-prz4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
.prez-4 {
  -webkit-animation: animate-svg-fill-prz4 0.2s ease-in 0.5s both;
  animation: animate-svg-fill-prz4 0.2s ease-in 0.5s both;
}

@-webkit-keyframes animate-svg-fill-prz5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
@keyframes animate-svg-fill-prz5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(239, 22, 29);
  }
}
.prez-5 {
  -webkit-animation: animate-svg-fill-prz5 0.2s ease-in 0.6s both;
  animation: animate-svg-fill-prz5 0.2s ease-in 0.6s both;
}

@-webkit-keyframes animate-svg-fill-cd1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 220, 197);
  }
}
@keyframes animate-svg-fill-cd1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 220, 197);
  }
}
.cld-1 {
  -webkit-animation: animate-svg-fill-cd1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-cd1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-cd2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(237, 112, 29);
  }
}
@keyframes animate-svg-fill-cd2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(237, 112, 29);
  }
}
.cld-2 {
  -webkit-animation: animate-svg-fill-cd2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-cd2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-prj1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(236, 192, 66);
  }
}
@keyframes animate-svg-fill-prj1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(236, 192, 66);
  }
}
.projet-1 {
  -webkit-animation: animate-svg-fill-prj1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-prj1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-prj2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 207, 125);
  }
}
@keyframes animate-svg-fill-prj2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 207, 125);
  }
}
.projet-2 {
  -webkit-animation: animate-svg-fill-prj2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-prj2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-prj3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 198, 29);
  }
}
@keyframes animate-svg-fill-prj3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 198, 29);
  }
}
.projet-3 {
  -webkit-animation: animate-svg-fill-prj3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-prj3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-prj4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-prj4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.projet-4 {
  -webkit-animation: animate-svg-fill-prj4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-prj4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-clt1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(215, 159, 247);
  }
}
@keyframes animate-svg-fill-clt1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(215, 159, 247);
  }
}
.client-1 {
  -webkit-animation: animate-svg-fill-clt1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-clt1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-clt2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(156, 17, 237);
  }
}
@keyframes animate-svg-fill-clt2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(156, 17, 237);
  }
}
.client-2 {
  -webkit-animation: animate-svg-fill-clt2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-clt2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-clt3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 76, 234);
  }
}
@keyframes animate-svg-fill-clt3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 76, 234);
  }
}
.client-3 {
  -webkit-animation: animate-svg-fill-clt3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-clt3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-clt4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 76, 234);
  }
}
@keyframes animate-svg-fill-clt4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(176, 76, 234);
  }
}
.client-4 {
  -webkit-animation: animate-svg-fill-clt4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-clt4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-bn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(204, 223, 33);
  }
}
@keyframes animate-svg-fill-bn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(204, 223, 33);
  }
}
.banque-1 {
  -webkit-animation: animate-svg-fill-bn1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
  animation: animate-svg-fill-bn1 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-bn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(224, 244, 50);
  }
}
@keyframes animate-svg-fill-bn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(224, 244, 50);
  }
}
.banque-2 {
  -webkit-animation: animate-svg-fill-bn2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
  animation: animate-svg-fill-bn2 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-bn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(224, 244, 50);
  }
}
@keyframes animate-svg-fill-bn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(224, 244, 50);
  }
}
.banque-3 {
  -webkit-animation: animate-svg-fill-bn3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-fill-bn3 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(204, 223, 33);
  }
}
@keyframes animate-svg-fill-bn4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(204, 223, 33);
  }
}
.banque-4 {
  -webkit-animation: animate-svg-fill-bn4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
  animation: animate-svg-fill-bn4 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

@-webkit-keyframes animate-svg-fill-mn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 203, 0);
  }
}
@keyframes animate-svg-fill-mn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 203, 0);
  }
}
.monday-1 {
  -webkit-animation: animate-svg-fill-mn1 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
  animation: animate-svg-fill-mn1 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-mn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 61, 87);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 61, 87);
  }
}
.monday-2 {
  -webkit-animation: animate-svg-fill-mn2 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
  animation: animate-svg-fill-mn2 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-mn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 214, 71);
  }
}
@keyframes animate-svg-fill-mn3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 214, 71);
  }
}
.monday-3 {
  -webkit-animation: animate-svg-fill-mn3 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
  animation: animate-svg-fill-mn3 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-my1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 204, 0);
  }
}
@keyframes animate-svg-fill-my1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 204, 0);
  }
}
.mytime-1 {
  -webkit-animation: animate-svg-fill-my1 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
  animation: animate-svg-fill-my1 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-my2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 202, 114);
  }
}
@keyframes animate-svg-fill-my2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 202, 114);
  }
}
.mytime-2 {
  -webkit-animation: animate-svg-fill-my2 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
  animation: animate-svg-fill-my2 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

@-webkit-keyframes animate-svg-fill-my3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 202, 114);
  }
}
@keyframes animate-svg-fill-my3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 202, 114);
  }
}
.mytime-3 {
  -webkit-animation: animate-svg-fill-my3 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
  animation: animate-svg-fill-my3 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
}

@-webkit-keyframes animate-svg-fill-spn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(96, 0, 215);
  }
}
@keyframes animate-svg-fill-spn1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(96, 0, 215);
  }
}
.spen-1 {
  -webkit-animation: animate-svg-fill-spn1 0.2s cubic-bezier(1, 0, 0, 1) 0.2s both;
  animation: animate-svg-fill-spn1 0.2s cubic-bezier(1, 0, 0, 1) 0.2s both;
}

@-webkit-keyframes animate-svg-fill-spn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(96, 0, 215);
  }
}
@keyframes animate-svg-fill-spn2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(96, 0, 215);
  }
}
.spen-2 {
  -webkit-animation: animate-svg-fill-spn2 0.2s cubic-bezier(1, 0, 0, 1) 0.3s both;
  animation: animate-svg-fill-spn2 0.2s cubic-bezier(1, 0, 0, 1) 0.3s both;
}

.widget_facture.active .facture-1 {
  animation: animate-svg-fill-facture1-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_facture.active .facture-2 {
  animation: animate-svg-fill-facture2-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

.widget_facture.active .facture-3 {
  animation: animate-svg-fill-facture3-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_facture.active .facture-4 {
  animation: animate-svg-fill-facture4-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

.widget_ca.active .svg-elem-1 {
  animation: animate-svg-fill-ca--hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_ca.active .svg-elem-2 {
  animation: animate-svg-fill-ca--hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

.widget_ca.active .svg-elem-3 {
  animation: animate-svg-fill-ca--hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_ca.active .svg-elem-4 {
  animation: animate-svg-fill-ca--hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

.widget_ca.active .svg-elem-5 {
  animation: animate-svg-fill-ca--hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}

.widget_devis.active .dv-1 {
  animation: animate-svg-fill-devi1-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_devis.active .dv-2 {
  animation: animate-svg-fill-devi2-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_devis.active .dv-3 {
  animation: animate-svg-fill-devi3-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}

.widget_client.active .client-1 {
  animation: animate-svg-fill-client-1-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_client.active .client-2 {
  animation: animate-svg-fill-client-2-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_client.active .client-3 {
  animation: animate-svg-fill-client-3-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
}

.widget_client.active .client-4 {
  animation: animate-svg-fill-client-4-hover 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

.widget_projets.active .projet-1 {
  animation: animate-svg-fill-projet-1-hover 0.2s ease-in 0.2s both;
}

.widget_projets.active .projet-2 {
  animation: animate-svg-fill-projet-2-hover 0.2s ease-in 0.4s both;
}

.widget_projets.active .projet-3 {
  animation: animate-svg-fill-projet-3-hover 0.2s ease-in 0.6s both;
}

.widget_projets.active .projet-4 {
  animation: animate-svg-fill-projet-4-hover 0.2s ease-in 0.8s both;
}

.widget_prestations.active .prez-1 {
  animation: animate-svg-fill-prez-1-hover 0.2s ease-in 0.2s both;
}

.widget_prestations.active .prez-2 {
  animation: animate-svg-fill-prez-2-hover 0.2s ease-in 0.3s both;
}

.widget_prestations.active .prez-3 {
  animation: animate-svg-fill-prez-3-hover 0.2s ease-in 0.4s both;
}

.widget_prestations.active .prez-4 {
  animation: animate-svg-fill-prez-4-hover 0.2s ease-in 0.5s both;
}

.widget_prestations.active .prez-5 {
  animation: animate-svg-fill-prez-5-hover 0.2s ease-in 0.6s both;
}

.widget_bornes.active .borne-1 {
  animation: animate-svg-fill-brn1-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_bornes.active .borne-2 {
  animation: animate-svg-fill-brn2-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

.widget_bornes.active .borne-3 {
  animation: animate-svg-fill-brn3-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_cloud.active .cld-1 {
  animation: animate-svg-fill-cld1-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_cloud.active .cld-2 {
  animation: animate-svg-fill-cld2-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_banque.active .banque-1 {
  animation: animate-svg-fill-bn1-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s both;
}

.widget_banque.active .banque-2 {
  animation: animate-svg-fill-bn2-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
}

.widget_banque.active .banque-3 {
  animation: animate-svg-fill-bn3-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.widget_banque.active .banque-4 {
  animation: animate-svg-fill-bn4-active 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}

.widget_monday.active .monday-1 {
  animation: animate-svg-fill-mn1-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
}

.widget_monday.active .monday-2 {
  animation: animate-svg-fill-mn2-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

.widget_monday.active .monday-3 {
  animation: animate-svg-fill-mn3-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
}

.widget_mytimework.active .mytime-1 {
  animation: animate-svg-fill-my1-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s both;
}

.widget_mytimework.active .mytime-2 {
  animation: animate-svg-fill-my2-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s both;
}

.widget_mytimework.active .mytime-3 {
  animation: animate-svg-fill-my3-active 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s both;
}

.widget_spendesk.active .spen-1 {
  animation: animate-svg-fill-spn1-active 0.2s cubic-bezier(1, 0, 0, 1) 0.2s both;
}

.widget_spendesk.active .spen-2 {
  animation: animate-svg-fill-spn2-active 0.2s cubic-bezier(1, 0, 0, 1) 0.3s both;
}

.main_sheets_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EEBA98;
  margin-bottom: 25px;
}
.main_sheets_header .menu_sheets_wrapper a {
  padding: 15px 20px;
  color: #919191;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.main_sheets_header .menu_sheets_wrapper a.current {
  color: #E86012;
}
.main_sheets_header .menu_sheets_wrapper a.current:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #E86012;
  bottom: -1px;
  left: 0;
}
.main_sheets_header .actions_wrapper {
  display: flex;
  justify-content: space-around;
}
.main_sheets_header .actions_wrapper .export_btn_wrapper .dropdown-content {
  border-radius: 6px;
  background: #eb8046;
}
.main_sheets_header .actions_wrapper .export_btn_wrapper .dropdown-content a {
  color: #fff;
}
.main_sheets_header .actions_wrapper .export_btn_wrapper .dropdown.active .icon_wrap {
  top: 15px;
}
.main_sheets_header .actions_wrapper .export_btn_wrapper .dropdown-btn {
  background-color: #E86012;
  display: flex;
  padding: 5px 30px 5px 10px;
  color: #fff;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
}
.main_sheets_header .actions_wrapper .export_btn_wrapper .dropdown-btn .icon_wrap {
  top: 12px;
  right: 10px;
}

.content_sheets_wrapper {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.content_sheets_wrapper .filter_wrapper {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content_sheets_wrapper .filter_wrapper .label_filter {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter input[type=text] {
  font-family: "Inter", sans-serif;
  background: #FFF7F2;
  border-radius: 6px;
  height: 40px;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  width: 160px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter .custom-select_dc {
  font-size: 12px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter.filter_months .custom-select_dc .options {
  width: 100px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter.filter_months .custom-select_dc {
  width: 100px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter.filter_years .custom-select_dc {
  width: 60px;
}
.content_sheets_wrapper .filter_wrapper .filter_flields_wrapper .filter.filter_date .custom-select_dc {
  width: 120px;
}

.content_table_wrap .row {
  display: flex;
}
.content_table_wrap .row:nth-child(odd) {
  background-color: #f7f6f6;
}
.content_table_wrap .row.head_row {
  background-color: #FFF7F2;
  border-top: 1px solid #FFD4BA;
  border-bottom: 1px solid #FFD4BA;
  font-size: 11px;
  color: #FF4905;
  font-weight: 600;
  text-transform: uppercase;
}
.content_table_wrap .row.head_row .cell {
  border-bottom: none;
  font-size: 11px;
  display: flex;
  align-items: center;
}
.content_table_wrap .row.last_row .cell {
  border-right: none;
  font-weight: 600;
}
.content_table_wrap .row .cell {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  border-bottom: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
}
.content_table_wrap .row > *:nth-child(1) {
  width: 40px;
}
.content_table_wrap .row > *:nth-child(2) {
  width: 50px;
}
.content_table_wrap .row > *:nth-child(3) {
  width: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.content_table_wrap .row > *:nth-child(4) {
  width: 100px;
}
.content_table_wrap .row > *:nth-child(5) {
  width: 90px;
}
.content_table_wrap .row > *:nth-child(6) {
  width: 145px;
  font-size: 11px;
}
.content_table_wrap .row > *:nth-child(7) {
  width: 160px;
}
.content_table_wrap .row > *:nth-child(8) {
  width: 120px;
}
.content_table_wrap .row > *:nth-child(9) {
  width: 90px;
}
.content_table_wrap .row > *:nth-child(10) {
  width: 90px;
}
.content_table_wrap .row > *:nth-child(11) {
  width: 60px;
}
.content_table_wrap .row > *:nth-child(12) {
  width: 74px;
}
.content_table_wrap .row > *:nth-child(13) {
  width: 80px;
}
.content_table_wrap .row > *:nth-child(14) {
  width: 94px;
}
.content_table_wrap .row > *:nth-child(15) {
  width: 60px;
  border-right: none;
}

.sheet_pagination {
  background-color: #FFF7F2;
  padding: 15px 30px;
  display: flex;
  justify-content: end;
}
.sheet_pagination .pagination_content {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.sheet_pagination .pagination_content a.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet_pagination .pagination_content span {
  font-weight: 600;
}

.product_brand_wrapper {
  padding: 15px 10px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.product_brand_wrapper .title__brand {
  font-family: "Quicksand", "Inter", sans-serif;
  font-size: 22px;
  color: #FF4905;
}
.product_brand_wrapper .img__brand img {
  width: 68px;
}

.sheet_tracking .row > *:nth-child(1) {
  width: 40px;
}
.sheet_tracking .row > *:nth-child(2) {
  width: 205px;
}
.sheet_tracking .row > *:nth-child(3) {
  width: 200px;
}
.sheet_tracking .row > *:nth-child(4) {
  width: 90px;
}
.sheet_tracking .row > *:nth-child(5) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(6) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(7) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(8) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(9) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(10) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(11) {
  width: 100px;
}
.sheet_tracking .row > *:nth-child(12) {
  width: 100px;
}
.sheet_tracking .sheet_pagination {
  background-color: #fff;
}

.sheet_wfo_wws .product_brand_wrapper .title__brand {
  color: #C9428A;
}
.sheet_wfo_wws .content_table_wrap .row.head_row {
  color: #C9428A;
  background-color: #FFF8FC;
  border-top: 1px solid #F99BCD;
  border-bottom: 1px solid #F99BCD;
}
.sheet_wfo_wws .checkmark {
  border: 2px solid #C9428A;
}
.sheet_wfo_wws .check-area input:checked ~ .checkmark {
  background-color: #C9428A;
  border: 2px solid #C9428A;
}
.sheet_wfo_wws .pagination_content a.nav svg path {
  fill: #C9428A;
}

.sheet_wts .product_brand_wrapper .title__brand {
  color: #3CB1C4;
}
.sheet_wts .content_table_wrap .row.head_row {
  color: #3CB1C4;
  background-color: #F1FCFF;
  border-top: 1px solid #3CB1C4;
  border-bottom: 1px solid #3CB1C4;
}
.sheet_wts .checkmark {
  border: 2px solid #3CB1C4;
}
.sheet_wts .check-area input:checked ~ .checkmark {
  background-color: #3CB1C4;
  border: 2px solid #3CB1C4;
}
.sheet_wts .pagination_content a.nav svg path {
  fill: #3CB1C4;
}

.sheet_we .product_brand_wrapper .title__brand {
  color: #E95B00;
}
.sheet_we .content_table_wrap .row.head_row {
  color: #E95B00;
  background-color: #FFF7F1;
  border-top: 1px solid #E95B00;
  border-bottom: 1px solid #E95B00;
}
.sheet_we .checkmark {
  border: 2px solid #E95B00;
}
.sheet_we .check-area input:checked ~ .checkmark {
  background-color: #E95B00;
  border: 2px solid #E95B00;
}
.sheet_we .pagination_content a.nav svg path {
  fill: #E95B00;
}

.sheet_bb .product_brand_wrapper .title__brand {
  color: #000;
}
.sheet_bb .content_table_wrap .row.head_row {
  color: #000;
  background-color: #FFFEF1;
  border-top: 1px solid #FFC527;
  border-bottom: 1px solid #FFC527;
}
.sheet_bb .checkmark {
  border: 2px solid #000;
}
.sheet_bb .check-area input:checked ~ .checkmark {
  background-color: #000;
  border: 2px solid #000;
}
.sheet_bb .pagination_content a.nav svg path {
  fill: #000;
}

.sheet_wwp .product_brand_wrapper .title__brand {
  color: #8B4090;
}
.sheet_wwp .content_table_wrap .row.head_row {
  color: #8B4090;
  background-color: #FEEFFF;
  border-top: 1px solid #8B4090;
  border-bottom: 1px solid #8B4090;
}
.sheet_wwp .checkmark {
  border: 2px solid #8B4090;
}
.sheet_wwp .check-area input:checked ~ .checkmark {
  background-color: #8B4090;
  border: 2px solid #8B4090;
}
.sheet_wwp .pagination_content a.nav svg path {
  fill: #8B4090;
}

.sheet_mail .product_brand_wrapper .title__brand {
  color: #905B40;
}
.sheet_mail .content_table_wrap .row.head_row {
  color: #905B40;
  background-color: #FFF8F5;
  border-top: 1px solid #905B40;
  border-bottom: 1px solid #905B40;
}
.sheet_mail .checkmark {
  border: 2px solid #905B40;
}
.sheet_mail .check-area input:checked ~ .checkmark {
  background-color: #905B40;
  border: 2px solid #905B40;
}
.sheet_mail .pagination_content a.nav svg path {
  fill: #905B40;
}

.sheet_form .product_brand_wrapper .title__brand {
  color: #444AF9;
}
.sheet_form .content_table_wrap .row.head_row {
  color: #444AF9;
  background-color: #F5F5FF;
  border-top: 1px solid #444AF9;
  border-bottom: 1px solid #444AF9;
}
.sheet_form .checkmark {
  border: 2px solid #444AF9;
}
.sheet_form .check-area input:checked ~ .checkmark {
  background-color: #444AF9;
  border: 2px solid #444AF9;
}
.sheet_form .pagination_content a.nav svg path {
  fill: #444AF9;
}

.sheet_rh .product_brand_wrapper .title__brand {
  color: #25AA5E;
}
.sheet_rh .content_table_wrap .row.head_row {
  color: #25AA5E;
  background-color: #F6FFF5;
  border-top: 1px solid #25AA5E;
  border-bottom: 1px solid #25AA5E;
}
.sheet_rh .checkmark {
  border: 2px solid #25AA5E;
}
.sheet_rh .check-area input:checked ~ .checkmark {
  background-color: #25AA5E;
  border: 2px solid #25AA5E;
}
.sheet_rh .pagination_content a.nav svg path {
  fill: #25AA5E;
}/*# sourceMappingURL=style.css.map */