:root {
  --primary-font-family: "Inter", sans-serif;
  --bg--gray-1: #191919;
  --bg--gray-2: #232323;
  --bg--gray-3: #A1A1A6;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --red-color: #e72a3d;
  --dark-blue: #0071e3;
  --blue: #298cff;
}

.button-republik {
  color: var(--dark-blue);
  padding: 10px 30px;
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  font-weight: var(--font-medium);
  cursor: pointer;
  text-decoration: none;
  height: 40px;
  border-radius: 20px;
  transition: all 0.2s ease-in;
  background: none;
}
.button-republik:hover {
  background-color: var(--blue);
  color: #fff;
}
.button-republik:active {
  background-color: var(--dark-blue);
  color: #fff;
}
.button-republik[disabled] {
  color: #a1a1a6;
  background-color: #191919;
}

select.select_dc {
  display: none;
}

.custom-select_dc {
  position: relative;
  cursor: pointer;
  width: 80%;
}
.custom-select_dc .selected-option {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 12px;
  border-radius: 15px;
  border: 1px solid #707070;
  padding: 5px 10px;
}
.custom-select_dc .selected-option:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  top: 7px;
  right: 12px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
}
.custom-select_dc .options {
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 80px;
  overflow-y: auto;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 5;
  border-radius: 6px;
  border: 1px solid #707070;
  display: none;
  background-color: #000000;
  font-size: 12px;
  margin-top: 5px;
}
.custom-select_dc .options.show {
  display: block;
}
.custom-select_dc .options::-webkit-scrollbar {
  width: 3px;
}
.custom-select_dc .options::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.custom-select_dc .options::-webkit-scrollbar-track {
  background: none;
}
.custom-select_dc .options li {
  padding: 5px 10px;
  cursor: pointer;
}
.custom-select_dc .options li:hover {
  background-color: #2b2f31;
}
.custom-select_dc .options li.selected {
  background-color: #2b2f31;
}

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

body {
  font-family: var(--primary-font-family);
  font-weight: var(--font-regular);
  font-size: 14px;
  color: #fff;
  background-color: #000;
}

img {
  max-width: 100%;
}

p {
  font-size: 12px;
  color: #fff;
  font-weight: var(--font-regular);
}

textarea {
  font-family: var(--primary-font-family);
}

.f_s_16 {
  font-size: 16px;
}

a {
  color: var(--blue);
}

.width_100 {
  width: 100% !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.row .col_6 {
  width: calc(50% - 5px);
}
@media screen and (max-width: 1378px) {
  .row .col_6 {
    width: 100%;
  }
}

.justify-content-center {
  justify-content: center !important;
}

.text-align-center {
  text-align: center !important;
}

.max_width_1500 {
  max-width: 1500px;
}

.no_border {
  border: none !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-b-10 {
  margin-bottom: 10px;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.text_upper {
  text-transform: uppercase;
}

.height-vh {
  height: calc(100vh - 200px);
}
@media screen and (max-width: 1700px) {
  .height-vh {
    height: inherit;
  }
}

.center-flex {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.scroll_vertical_wrapper::-webkit-scrollbar {
  width: 3px;
}
.scroll_vertical_wrapper::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.scroll_vertical_wrapper::-webkit-scrollbar-track {
  background: none;
}

.main_header_wrapper {
  padding: 30px 45px 0 45px;
}
.main_header_wrapper .header_content {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 25px;
}
.main_header_wrapper .header_content .brand img {
  width: 230px;
  height: 60px;
}
.main_header_wrapper .header_content .user_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.main_header_wrapper .header_content .user_nav .name_user {
  font-size: 13px;
  color: #fff;
}
.main_header_wrapper .header_content .user_nav .name_user span {
  color: #8D989F;
}
@media (max-width: 768px) {
  .main_header_wrapper .header_content .user_nav .name_user {
    display: none;
  }
}
.main_header_wrapper .header_content .user_nav .pic_user {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 3px;
}
.main_header_wrapper .header_content .user_nav .pic_user img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.footer {
  margin: 0 50px;
  padding: 50px 50px 20px 50px;
  border-top: 1px solid #fff;
}
.footer a {
  color: #A1A1A6;
}

.republik_select {
  border-radius: 15px;
  border: 1px solid #707070;
  padding: 0 10px;
  font-size: 12px;
  color: #fff;
  background: none;
}

.check-area {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #A1A1A6;
}
.check-area.active {
  color: #fff;
}

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

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid var(--dark-blue);
}

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

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

.check-area .checkmark:after {
  left: 4px;
  top: 1px;
  width: 2px;
  height: 6px;
  border: solid var(--dark-blue);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.republik_table_wrapper table {
  font-size: 12px;
  border-collapse: collapse;
  width: 100%;
}
.republik_table_wrapper table tr th {
  font-size: 10px;
  color: #A1A1A6;
  text-align: left;
  padding: 10px;
  text-transform: uppercase;
}
.republik_table_wrapper table tr th:first-child {
  padding: 10px 0;
}
.republik_table_wrapper table tr td {
  padding: 10px;
  border-bottom: 1px solid #707070;
}
.republik_table_wrapper table tr td:first-child {
  color: var(--red-color);
  padding: 5px 0;
}
.republik_table_wrapper table tr td.active {
  border-right: 3px solid var(--red-color);
}
.republik_table_wrapper table tr a {
  color: #298CFF;
}
.republik_table_wrapper table tr span.users {
  color: #298CFF;
  margin-right: 20px;
}
.republik_table_wrapper table tr span.users a {
  text-decoration: none;
  margin: 0 5px;
}
.republik_table_wrapper table tr .list_rdv {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--red-color);
  margin-top: 5px;
}

/* The container-radio */
.container-radio {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  font-size: 12px;
  color: #A1A1A6;
}

.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark-radio {
  position: absolute;
  top: 2px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid var(--dark-blue);
}

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

.container-radio input:checked ~ span {
  color: rgb(255, 255, 255);
}

.container-radio input:checked ~ .checkmark-radio:after {
  display: block;
}

.container-radio .checkmark-radio:after {
  left: 4px;
  top: 1px;
  width: 2px;
  height: 6px;
  border: solid var(--dark-blue);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.row_hidden {
  color: #000;
  border-top: none !important;
}

.republik_notification_wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  background: #232323;
  border-radius: 20px;
}
.republik_notification_wrapper .notification_content {
  display: flex;
  align-items: center;
  gap: 5px;
}
.republik_notification_wrapper .notification_content .icon_wrapper {
  display: flex;
  align-items: center;
}
.republik_notification_wrapper .notification_content p {
  color: var(--red-color);
}

.main_content_wrapper {
  padding: 30px 45px;
  display: flex;
}
.main_content_wrapper .sidebar_nav {
  width: 280px;
  padding-left: 40px;
  padding-right: 40px;
  height: calc(100vh - 200px);
  overflow-y: auto;
}
.main_content_wrapper .sidebar_nav::-webkit-scrollbar {
  width: 4px;
}
.main_content_wrapper .sidebar_nav::-webkit-scrollbar-thumb {
  background: var(--red-color);
}
.main_content_wrapper .sidebar_nav::-webkit-scrollbar-track {
  background: none;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li {
  font-weight: var(--font-semi-bold);
  list-style: none;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li a {
  color: #fff;
  list-style: none;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li a:hover {
  color: var(--red-color) !important;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li .submenu {
  padding-left: 15px;
  margin-top: 10px;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li .submenu li {
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: var(--font-medium);
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu li .submenu .submenu .submenu a {
  color: #97969B;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu .active a {
  color: var(--red-color) !important;
  text-transform: uppercase;
}
.main_content_wrapper .sidebar_nav .navbar ul.nav-menu .active::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: var(--red-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  margin-left: -15px;
}
.main_content_wrapper .content_wrapper {
  width: calc(100% - 280px);
  border-left: 1px solid #fff;
  padding-left: 40px;
}

.head_page_wrapper {
  margin: 30px 0 60px;
  display: flex;
  justify-content: space-between;
}
.head_page_wrapper .title h1 {
  font-size: 30px;
  font-weight: var(--font-semi-bold);
}
.head_page_wrapper .title .sub_title {
  color: #A1A1A6;
  font-size: 12px;
  font-weight: var(--font-medium);
  margin-top: 10px;
  display: block;
}
.head_page_wrapper .page_title_details a {
  display: block;
  color: var(--blue);
  margin-bottom: 5px;
  font-size: 12px;
  text-align: right;
}

.main_container_workshop {
  display: flex;
  gap: 20px;
}

.main_filter_wrapper_sidebar {
  width: 260px;
}
.main_filter_wrapper_sidebar > .title {
  margin-bottom: 20px;
  display: flex;
  width: 260px;
  justify-content: space-between;
  height: 24px;
  align-items: center;
  justify-content: space-between;
}
.main_filter_wrapper_sidebar > .title button {
  background: none;
  border: none;
  cursor: pointer;
}
.main_filter_wrapper_sidebar .widget {
  background: #333;
  padding: 10px;
  color: #fff;
  width: 260px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.main_filter_wrapper_sidebar .widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.main_filter_wrapper_sidebar .widget .widget-header .widget-title {
  font-size: 14px;
}
.main_filter_wrapper_sidebar .widget .widget-header .close-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.main_filter_wrapper_sidebar .widget .widget-header .close-button:hover svg path {
  fill: var(--red-color);
}
.main_filter_wrapper_sidebar .widget .widget-header .close-button:hover #Ellipse_151 {
  stroke: var(--red-color);
}
.main_filter_wrapper_sidebar .widget .search-input {
  padding: 5px 15px;
  width: 100%;
  border: none;
  border-radius: 20px;
  height: 30px;
  background: #191919;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 12px;
}
.main_filter_wrapper_sidebar .widget .options-list {
  height: 80px;
  overflow-y: auto;
}
.main_filter_wrapper_sidebar .widget .options-list.auto-height-wrapper {
  height: auto;
  overflow: inherit;
}
.main_filter_wrapper_sidebar .widget .options-list label {
  display: block;
  font-size: 12px;
}
.main_filter_wrapper_sidebar .widget .options-list::-webkit-scrollbar {
  width: 3px;
}
.main_filter_wrapper_sidebar .widget .options-list::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.main_filter_wrapper_sidebar .widget .options-list::-webkit-scrollbar-track {
  background: none;
}
.main_filter_wrapper_sidebar .widget .toggle-list {
  border-bottom: 1px solid #4e4e4e;
  margin-bottom: 10px;
}
.main_filter_wrapper_sidebar .widget .toggle-list:last-child {
  border-bottom: none;
}
.main_filter_wrapper_sidebar .widget .toggle-list .header a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: #A1A1A6;
  font-size: 12px;
  text-decoration: none;
}
.main_filter_wrapper_sidebar .widget .toggle-list .content {
  display: none;
}
.main_filter_wrapper_sidebar .widget .toggle-list.active .arrow {
  transform: rotate(180deg);
}
.main_filter_wrapper_sidebar .widget .toggle-list.active .arrow svg path {
  stroke: var(--red-color);
}
.main_filter_wrapper_sidebar .widget .toggle-list.active .content {
  display: block;
}

.search_filter_wrapper {
  margin-bottom: 40px;
}
.search_filter_wrapper .search_wrapper {
  margin-bottom: 20px;
}
.search_filter_wrapper .search_wrapper .search_label {
  margin-bottom: 10px;
}
.search_filter_wrapper .search_wrapper .search_label a {
  text-decoration: none;
  color: #fff;
}
.search_filter_wrapper .search_wrapper input[type=search] {
  background-color: #000;
  border: 1px solid #707070;
  color: #fff;
  padding: 5px 15px;
  width: 400px;
  border-radius: 20px;
}
.search_filter_wrapper .search_wrapper input[type=search]::placeholder {
  color: #fff;
}
.search_filter_wrapper .filter_wrapper {
  margin-bottom: 20px;
}
.search_filter_wrapper .filter_wrapper ul {
  list-style: none;
  display: flex;
  margin-left: 20px;
  flex-wrap: wrap;
  margin: 0;
  gap: 20px 0;
}
.search_filter_wrapper .filter_wrapper ul li {
  position: relative;
}
.search_filter_wrapper .filter_wrapper ul li a {
  text-decoration: none;
  color: #fff;
  padding: 5px 30px;
  border-bottom: 1px solid var(--bg--gray-3);
}
.search_filter_wrapper .filter_wrapper ul li.active a {
  color: var(--red-color);
  border-bottom: 1px solid var(--red-color);
}
.search_filter_wrapper .result_wrapper {
  display: flex;
  justify-content: space-between;
}
.search_filter_wrapper .result_wrapper .details_wrapper {
  color: #a1a1a6;
  font-weight: var(--font-regular);
}
.search_filter_wrapper .result_wrapper .details_wrapper span {
  display: block;
  margin-bottom: 5px;
}
.search_filter_wrapper .result_wrapper .sort_wrapper {
  width: 200px;
  display: flex;
  justify-content: end;
}

.main_container_workshop .head_container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.main_container_workshop .head_container h4 {
  font-weight: var(--font-regular);
  min-width: fit-content;
}
.main_container_workshop .head_container:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #48484A;
}
.main_container_workshop .content_wrapper_workshop {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.main_container_workshop .section_block_workshop {
  margin-bottom: 30px;
}
.main_container_workshop .main_content_workshop {
  width: 100%;
  transition: width 0.5s ease-in-out;
}
.main_container_workshop .main_filter_wrapper_sidebar {
  width: 0;
  overflow: hidden;
  transition: width 0.5s ease-in-out;
}
.main_container_workshop.visible .btn_filter_wrapper_sidebar {
  opacity: 0;
  visibility: hidden;
}
.main_container_workshop.visible .main_filter_wrapper_sidebar {
  width: 280px;
}
.main_container_workshop.visible .main_content_workshop {
  width: calc(100% - 280px);
}

.workshop_card {
  background-color: #232323;
  padding: 15px;
  display: flex;
  border-radius: 8px;
  gap: 10px;
  width: calc(33.3333333333% - 10px);
  min-width: 480px;
}
.workshop_card .left_side_card {
  border-right: 1px solid #3a3a3a;
  padding-right: 10px;
  width: 40%;
}
.workshop_card .right_side_card {
  width: 60%;
}
.workshop_card .head {
  font-size: 12px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 15px;
}
.workshop_card .head span {
  display: block;
}
.workshop_card .head .small {
  font-size: 10px;
  font-weight: var(--font-medium);
}
.workshop_card .list_participants .participant_item {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  align-items: center;
}
.workshop_card .list_participants .participant_item .info h4 {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
}
.workshop_card .list_participants .participant_item .info span {
  display: block;
  color: #ABABAB;
  font-weight: var(--font-regular);
}
.workshop_card .list_participants .participant_item .info span.small {
  font-size: 11px;
}
.workshop_card .list_participants .participant_item .thumb {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 3px;
  overflow: hidden;
}
.workshop_card .list_participants .participant_item .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.workshop_card .content_card {
  margin-bottom: 20px;
}
.workshop_card .content_card p {
  color: #ABABAB;
  font-weight: var(--font-regular);
  font-size: 12px;
}
.workshop_card .actions_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.workshop_card .actions_wrapper .button_wrapper {
  position: relative;
}
.workshop_card .actions_wrapper button {
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 6px;
  background: #0071E3;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.workshop_card .actions_wrapper button.planified {
  background: #2FB42F;
  color: #fff;
}
.workshop_card .actions_wrapper button.selected {
  color: #EDD11C;
  background: #191919;
}
.workshop_card .actions_wrapper .active svg {
  transform: rotate(180deg);
}
.workshop_card .actions_wrapper .cancel_action {
  position: absolute;
  background: #191919;
  width: 100%;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top: 1px solid #3a3a3a;
  margin-top: -2px;
}
.workshop_card .actions_wrapper .cancel_action a {
  color: var(--red-color);
  text-decoration: none;
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 7px 15px;
}
.workshop_card .actions_wrapper .note {
  display: block;
}
.workshop_card .note {
  color: #ABABAB;
  font-weight: var(--font-regular);
  font-size: 12px;
  text-align: center;
  display: block;
}

.section_block_cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.card_participant_item {
  position: relative;
  background-color: #232323;
  border-radius: 8px;
  width: 192px;
  height: 292px;
  padding: 10px;
  padding-bottom: 40px;
}
.card_participant_item .head_card {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.card_participant_item .head_card h4 {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card_participant_item .head_card span {
  font-size: 12px;
  color: #A1A1A6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card_participant_item .info a:hover svg path {
  fill: var(--red-color);
}
.card_participant_item .info a:hover #Ellipse_151 {
  stroke: var(--red-color);
}
.card_participant_item .thumbnails_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.card_participant_item .thumbnails_wrapper .thumb_wrap {
  width: 54px;
  height: 54px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid #4e5058;
  margin-bottom: 15px;
}
.card_participant_item .thumbnails_wrapper .thumb_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_participant_item .footer_card {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
.card_participant_item .footer_card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: #ABABAB;
}
.card_participant_item .footer_card a:hover {
  color: var(--red-color);
}
.card_participant_item .footer_card a:hover svg path {
  fill: var(--red-color);
}
.card_participant_item .actions_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.card_participant_item .actions_wrapper .button_wrapper {
  position: relative;
  width: 174px;
}
.card_participant_item .actions_wrapper button {
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 6px;
  background: #0071E3;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  height: 36px;
}
.card_participant_item .actions_wrapper button.planified {
  background: #2FB42F;
  color: #fff;
}
.card_participant_item .actions_wrapper button.selected {
  color: #EDD11C;
  background: #191919;
}
.card_participant_item .actions_wrapper button.btn-planned {
  background-color: #2FB42F;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
}
.card_participant_item .actions_wrapper button.btn-planned > svg {
  display: none;
}
.card_participant_item .actions_wrapper button.btn-planned.selected {
  background: #191919;
  color: #2EB532;
}
.card_participant_item .actions_wrapper button.btn-planned.selected > svg {
  display: block;
}
.card_participant_item .actions_wrapper button.btn-accepted > svg {
  display: none;
}
.card_participant_item .actions_wrapper button.btn-accepted.selected {
  background: #191919;
  color: #2EB532;
}
.card_participant_item .actions_wrapper button.btn-accepted.selected > svg {
  display: block;
}
.card_participant_item .actions_wrapper button.btn-rejected {
  background: #191919;
  color: var(--red-color);
}
.card_participant_item .actions_wrapper button.btn-send {
  justify-content: center;
}
.card_participant_item .actions_wrapper .active svg {
  transform: rotate(180deg);
}
.card_participant_item .actions_wrapper .list_actions {
  position: absolute;
  background: #191919;
  width: 100%;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-top: -2px;
  z-index: 9;
}
.card_participant_item .actions_wrapper .list_actions ul {
  list-style: none;
}
.card_participant_item .actions_wrapper .list_actions ul li {
  border-top: 1px solid #3a3a3a;
}
.card_participant_item .actions_wrapper .list_actions ul li a {
  text-decoration: none;
  padding: 10px 15px;
  font-size: 12px;
  display: block;
  color: #0478FF;
}
.card_participant_item .actions_wrapper .list_actions .cancel_action a {
  color: #EDD11C;
}
.card_participant_item .actions_wrapper .list_actions .reject_action a {
  color: var(--red-color);
}
.card_participant_item .actions_wrapper .list_actions .accept_action a {
  color: #2EB532;
}
.card_participant_item .actions_wrapper .note {
  display: block;
}
.card_participant_item .actions_ext {
  color: #A1A1A6;
  font-size: 12px;
}
.card_participant_item .actions_ext span.note {
  display: block;
  text-align: center;
}
.card_participant_item .actions_ext .check-area {
  padding-left: 15px;
}
.card_participant_item .actions_ext ul {
  list-style: none;
}
.card_participant_item .actions_ext ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3a3a3a;
}
.card_participant_item .actions_ext ul li:last-child {
  border: none;
  padding: 0;
}

.popup_message_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
}
.popup_message_overlay:before {
  content: "";
  display: block;
  background-color: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.9;
}

.popup_message_wrapper {
  position: absolute;
  border: 1px solid #707070;
  background: #000;
  top: 60px;
  border-radius: 15px;
  padding: 15px;
  width: 680px;
  padding-top: 60px;
  right: 50%;
  transform: translateX(50%);
  height: calc(100vh - 120px);
}
.popup_message_wrapper > a.close-button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.popup_message_wrapper > a.close-button svg {
  width: 34px;
}
.popup_message_wrapper .notes_message {
  padding: 15px;
  font-size: 12px;
  border: 1px solid #707070;
  border-radius: 8px;
  margin-right: 60px;
}
.popup_message_wrapper .notes_message::-webkit-scrollbar {
  width: 3px;
}
.popup_message_wrapper .notes_message::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.popup_message_wrapper .notes_message::-webkit-scrollbar-track {
  background: none;
}
.popup_message_wrapper .popup_message_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-right: 15px;
}
.popup_message_wrapper .popup_message_content::-webkit-scrollbar {
  width: 3px;
}
.popup_message_wrapper .popup_message_content::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.popup_message_wrapper .popup_message_content::-webkit-scrollbar-track {
  background: none;
}
.popup_message_wrapper .form_message {
  border: 1px solid #707070;
  border-radius: 8px;
  margin-left: 60px;
}
.popup_message_wrapper textarea {
  width: 100%;
  background: none;
  height: 140px;
  padding: 8px;
  border-radius: 10px;
  color: #fff;
  resize: none;
  border: none;
  font-family: var(--primary-font-family);
  font-weight: var(--font-regular);
  font-size: 12px;
}
.popup_message_wrapper .actions_message_wrapper {
  border-top: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: end;
}
.popup_message_wrapper .actions_message_wrapper button {
  background: none;
  border: none;
  border-left: 1px solid #707070;
  padding: 5px;
  cursor: pointer;
  height: 24px;
}
.popup_message_wrapper .infos_wrapper .thumbnails_wrapper {
  display: flex;
  justify-content: inherit;
  align-items: center;
  gap: 10px;
}
.popup_message_wrapper .infos_wrapper .thumbnails_wrapper .thumb_wrap {
  border: none;
}
.popup_message_wrapper .details_wrapper h4 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: var(--font-semi-bold);
}
.popup_message_wrapper .details_wrapper span {
  display: block;
  font-size: 12px;
  font-weight: var(--font-regular);
}
.popup_message_wrapper .details_wrapper .gray_txt {
  color: #ABABAB;
}
.popup_message_wrapper .row_content {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.popup_message_wrapper .row_content + .row_content {
  margin-top: 20px;
}
.popup_message_wrapper .row_content .col_6 {
  width: calc(50% - 10px);
}
.popup_message_wrapper .row_content .col_4 {
  width: calc(33.3333333333% - 10px);
}
.popup_message_wrapper .row_content .col_8 {
  width: calc(66.6666666667% - 10px);
}
.popup_message_wrapper .adds_content {
  margin-top: 15px;
  padding: 15px 0 10px 0;
  border-top: 1px solid #707070;
  height: auto;
  width: 100%;
  flex-grow: 1;
}
.popup_message_wrapper .adds_content::-webkit-scrollbar {
  width: 3px;
}
.popup_message_wrapper .adds_content::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.popup_message_wrapper .adds_content::-webkit-scrollbar-track {
  background: none;
}
.popup_message_wrapper .adds_content h5 {
  font-size: 16px;
  color: var(--red-color);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
}
.popup_message_wrapper .adds_content p {
  font-size: 12px;
  margin-bottom: 15px;
}
.popup_message_wrapper .adds_content .tags_list {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.popup_message_wrapper .adds_content .tags_list li {
  font-size: 12px;
  color: #CCCCCC;
  font-weight: var(--font-medium);
  padding: 2px 10px;
  background-color: #3F4447;
  border-radius: 15px;
}
.popup_message_wrapper .action_wrapper {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.nav_tab_wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 20px;
}
.nav_tab_wrapper ul li {
  position: relative;
}
.nav_tab_wrapper ul li a {
  text-decoration: none;
  color: #fff;
  padding: 5px 30px;
  border-bottom: 1px solid var(--bg--gray-3);
  display: inline-block;
}
.nav_tab_wrapper ul li.active a {
  color: var(--red-color);
  border-bottom: 1px solid var(--red-color);
}

@media screen and (max-width: 1700px) {
  .workshop_card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1378px) {
  .workshop_card {
    width: 100%;
  }
}
.events_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.events_wrapper .event_card {
  width: 320px;
}
.events_wrapper .event_card .thumbnail_wrapper {
  width: 100%;
  height: 185px;
  border-radius: 10px;
  overflow: hidden;
}
.events_wrapper .event_card .thumbnail_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.events_wrapper .event_card .content_card {
  margin-top: 10px;
  text-align: center;
}
.events_wrapper .event_card .content_card .headline_2 {
  font-size: 14px;
  font-weight: var(--font-medium);
  color: #A1A1A6;
  margin-bottom: 10px;
  display: block;
}
.events_wrapper .event_card .content_card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 10px;
}
.events_wrapper .event_card .content_card .details_days {
  font-size: 14px;
  font-weight: var(--font-medium);
  color: #A1A1A6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.events_wrapper .event_card .content_card .details_days .day_item span {
  display: block;
}
.events_wrapper .event_card .content_card a.permalink {
  text-align: center;
  color: #0478FF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.events_wrapper .event_card .content_card a.permalink svg path {
  stroke: #0478FF;
}
.events_wrapper .event_card .content_card a.permalink svg line {
  stroke: #0478FF;
}

.details_profile_wrapper {
  width: 100%;
}

.profile_wrapper {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--bg--gray-3);
}
.profile_wrapper .head_p {
  font-size: 18px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 15px;
}
.profile_wrapper .content_p {
  display: flex;
  gap: 0 100px;
}
.profile_wrapper .content_p .photo_profile_wrapper .thumb_wrapper {
  width: 160px;
  height: 160px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid #4e5058;
}
.profile_wrapper .content_p .photo_profile_wrapper .thumb_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile_wrapper .content_p .photo_profile_wrapper .add_photo {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.profile_wrapper .content_p .radio_section_wrapper .radio_g_label {
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #A1A1A6;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.profile_wrapper .content_p .radio_section_wrapper .row_radios {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}
.profile_wrapper .row_profile {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
}
.profile_wrapper .row_profile .col_profile {
  width: 100%;
}
.profile_wrapper .row_profile .col_profile .row_profile {
  gap: 0 30px;
}
.profile_wrapper .row_profile .col_profile .row_profile .col_profile {
  width: calc(100% - 360px - 15px);
  max-width: 500px;
}
@media screen and (max-width: 1360px) {
  .profile_wrapper .row_profile .col_profile .row_profile .col_profile {
    width: 100%;
  }
}
.profile_wrapper .row_profile .col_profile .row_profile .col_profile:first-child {
  width: 360px;
}
.profile_wrapper .field_wrapper {
  margin-bottom: 10px;
}
.profile_wrapper textarea,
.profile_wrapper input[type=text],
.profile_wrapper input[type=email],
.profile_wrapper input[type=tel] {
  width: 320px;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
  text-transform: uppercase;
}
.profile_wrapper textarea + a,
.profile_wrapper input[type=text] + a,
.profile_wrapper input[type=email] + a,
.profile_wrapper input[type=tel] + a {
  margin-left: 10px;
}
.profile_wrapper textarea.active,
.profile_wrapper input[type=text].active,
.profile_wrapper input[type=email].active,
.profile_wrapper input[type=tel].active {
  background-color: #9D9CA2;
}
.profile_wrapper textarea {
  resize: none;
  height: 160px;
  padding: 10px;
  border-radius: 10px;
}
.profile_wrapper span.small {
  color: #A1A1A6;
  font-size: 10px;
  display: block;
}
.profile_wrapper a {
  color: #298CFF;
  font-size: 12px;
  font-weight: var(--font-medium);
  display: inline-block;
}
.profile_wrapper .action_profile {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}
.profile_wrapper .action_profile .btn_save {
  text-transform: uppercase;
  display: block;
  width: fit-content;
}
.profile_wrapper .custom-select_dc {
  width: 320px;
}
.profile_wrapper .custom-select_dc .selected-option {
  border: none;
  text-transform: uppercase;
  background-color: #9D9CA2;
}
.profile_wrapper .custom-select_dc .default {
  background-color: var(--bg--gray-1);
}

.main_popin_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
}
.main_popin_wrapper:before {
  content: "";
  display: block;
  background-color: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0.9;
}
.main_popin_wrapper .main_popin_container {
  position: absolute;
  border: 1px solid #707070;
  background: #000;
  top: 50%;
  border-radius: 15px;
  padding: 15px;
  width: 100%;
  max-width: 800px;
  padding-top: 60px;
  right: 50%;
  transform: translate(50%, -50%);
}
.main_popin_wrapper .main_popin_container > a.close-button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.main_popin_wrapper .main_popin_content {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.main_popin_wrapper .main_popin_content::-webkit-scrollbar {
  width: 3px;
}
.main_popin_wrapper .main_popin_content::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.main_popin_wrapper .main_popin_content::-webkit-scrollbar-track {
  background: none;
}

.user_availability_wrapper {
  padding-right: 15px;
}
.user_availability_wrapper .head_title_wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.user_availability_wrapper .head_title_wrapper a {
  text-decoration: none;
  color: var(--red-color);
}

.user_availability_content_wrapper .info_user_wrapper .info_user_content {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .thumb_wrapper .thumb {
  width: 82px;
  min-width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 3px;
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .info_details {
  margin-top: 10px;
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .info_details ul {
  list-style: none;
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .info_details ul li {
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .info_details .details h4 {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 5px;
}
.user_availability_content_wrapper .info_user_wrapper .info_user_content .info_details .details span {
  font-size: 12px;
  color: #A1A1A6;
  display: block;
  margin-bottom: 5px;
}
.user_availability_content_wrapper .timing_wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
.user_availability_content_wrapper .timing_wrapper .timing {
  display: flex;
  gap: 10px;
}
.user_availability_content_wrapper .timing_wrapper .notes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--red-color);
}
.user_availability_content_wrapper .timing_wrapper .notes .icon_warning {
  width: 20px;
  height: 20px;
  border: 1px solid red;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.user_availability_content_wrapper .timing_wrapper input[type=text] {
  width: 80px;
  text-align: center;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
  height: 28px;
}
.user_availability_content_wrapper .table_content_schedule_wrapper {
  margin-top: 20px;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul {
  list-style: none;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li {
  display: flex;
  border-bottom: 1px solid #707070;
  padding: 10px;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li .time {
  width: 80px;
  min-width: 80px;
  text-align: center;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li .status {
  width: 100%;
  display: flex;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li .status span {
  display: block;
  padding: 5px 15px;
  border-radius: 20px;
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li .status span.unavailable {
  background-color: var(--red-color);
}
.user_availability_content_wrapper .table_content_schedule_wrapper ul li .status span.busy {
  background-color: orange;
}
.user_availability_content_wrapper .fieldset_submit_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.all_republik_brand {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 30px;
}
.all_republik_brand .brand_item_wrapper .thumb {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/bubble.svg);
  margin-bottom: 20px;
}
.all_republik_brand .brand_item_wrapper .permalink {
  text-align: center;
}
.all_republik_brand .brand_item_wrapper .permalink a {
  text-align: center;
  color: #0478FF;
  text-decoration: none;
}
.all_republik_brand .brand_item_wrapper .permalink a svg {
  display: block;
  margin: auto;
}

.home_connexion_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.home_connexion_wrapper .cnx_form_wrapper {
  padding-right: 40px;
}
@media (max-width: 1080px) {
  .home_connexion_wrapper .cnx_form_wrapper {
    width: calc(50% - 15px);
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .home_connexion_wrapper .cnx_form_wrapper {
    width: 100%;
  }
}
.home_connexion_wrapper .main_wrapper_cnx {
  width: calc(100% - 480px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding-left: 40px;
  padding-top: 60px;
}
@media (max-width: 1080px) {
  .home_connexion_wrapper .main_wrapper_cnx {
    width: calc(50% - 15px);
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .home_connexion_wrapper .main_wrapper_cnx {
    width: 100%;
    padding-top: 0;
  }
}
.home_connexion_wrapper .main_wrapper_cnx .title_wrapper {
  max-width: 580px;
}
@media (max-width: 768px) {
  .home_connexion_wrapper .main_wrapper_cnx .title_wrapper {
    max-width: inherit;
    margin-bottom: 20px;
  }
}
.home_connexion_wrapper .main_wrapper_cnx .title_wrapper .sub_title {
  font-size: 16px;
  color: var(--red-color);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.home_connexion_wrapper .main_wrapper_cnx .title_wrapper h2 {
  font-size: 60px;
  font-weight: var(--font-semi-bold);
}
@media (max-width: 1080px) {
  .home_connexion_wrapper .main_wrapper_cnx .title_wrapper h2 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .home_connexion_wrapper .main_wrapper_cnx .title_wrapper h2 {
    font-size: 26px;
  }
}
.home_connexion_wrapper .main_brand_wrapper {
  display: flex;
  gap: 10px 60px;
}
@media (max-width: 1080px) {
  .home_connexion_wrapper .main_brand_wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .home_connexion_wrapper .main_brand_wrapper {
    display: none;
  }
}
.home_connexion_wrapper .main_brand_wrapper .main_brand_republik {
  border-right: 1px solid #666669;
  padding-right: 30px;
  min-width: 200px;
}
@media (max-width: 1080px) {
  .home_connexion_wrapper .main_brand_wrapper .main_brand_republik {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #666669;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.home_connexion_wrapper .main_brand_wrapper .republik_brands {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.home_connexion_wrapper .main_brand_wrapper .republik_brands .brand_item_wrapper {
  height: 45px;
}
.home_connexion_wrapper .main_brand_wrapper .republik_brands .brand_item_wrapper img {
  height: 55px;
}

.cnx_page {
  background-image: url(../img/bg_cnx.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.republik_form_cnx {
  width: 420px;
  background-color: #232323;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 1080px) {
  .republik_form_cnx {
    width: 100%;
  }
}
.republik_form_cnx .head_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.republik_form_cnx .head_title h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.republik_form_cnx input[type=text],
.republik_form_cnx input[type=email],
.republik_form_cnx input[type=password],
.republik_form_cnx input[type=tel] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 10px;
}
.republik_form_cnx input[type=submit] {
  margin: 5px auto 0;
  display: block;
  padding: 7px 30px;
  height: inherit;
}
.republik_form_cnx .form_submit_btn {
  margin: 5px auto 0;
  display: block;
  padding: 7px 30px;
  height: inherit;
}
.republik_form_cnx a.forget_password_permlaink {
  display: block;
  font-size: 11px;
  color: #ABABAB;
  text-align: center;
  margin-top: 5px;
}
.republik_form_cnx .choices_wrapper {
  display: flex;
  gap: 0 15px;
}

.login_wrapper + .register_wrapper {
  margin-top: 30px;
}

.register_rules {
  font-size: 12px;
  list-style: none;
  margin: 5px 0 20px 20px;
}
.register_rules li {
  margin-bottom: 2px;
}

.inscription_form_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .inscription_form_wrapper {
    flex-direction: column-reverse;
  }
}
.inscription_form_wrapper .inscription_form_col {
  width: calc(50% - 10px);
  padding-right: 20px;
}
@media screen and (max-width: 1440px) {
  .inscription_form_wrapper .inscription_form_col {
    width: 100%;
    padding-right: 0;
    border-right: none !important;
    max-width: 600px;
  }
}
.inscription_form_wrapper .inscription_form_col:first-child {
  border-right: 1px solid #707070;
}

.inscription_main_content .section_wrapper {
  margin-bottom: 20px;
}
.inscription_main_content .section_wrapper .content_p input[type=text] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
}

.intro_details {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.intro_details .thumb {
  border-radius: 3px;
  overflow: hidden;
}
.intro_details .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.intro_details .permalink {
  color: #298CFF;
  text-decoration: none;
  text-align: center;
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
.intro_details .content .g_details .title {
  font-size: 16px;
}
.intro_details .content .g_details > span {
  display: block;
  font-size: 12px;
}
.intro_details .content .g_details .txt_g {
  font-size: 12px;
  color: #A1A1A6;
}
.intro_details .content .g_details > p {
  font-size: 16px;
}
.intro_details .content .g_details > p .title_g {
  font-size: 14px;
  color: #A1A1A6;
}
.intro_details .content .g_details a {
  color: #298CFF;
  text-decoration: none;
}
.intro_details .content .g_details + .g_details {
  margin-top: 20px;
}

.inscription_form_wrapper .inscription_form_col .section_wrapper .title_section {
  font-size: 18px;
  color: var(--red-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 15px;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription {
  display: flex;
  gap: 20px;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription .thumb_wrapper .thumb {
  width: 94px;
  height: 94px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription .thumb_wrapper .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription .form_fields textarea {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 10px;
  height: 160px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 5px;
  resize: none;
}
.inscription_form_wrapper .inscription_form_col .section_wrapper .about_inscription .form_fields input[type=text] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 15px;
}
.inscription_form_wrapper .sub_group {
  padding-left: 20px;
}
.inscription_form_wrapper .check-area {
  padding-left: 20px;
}

.btn_decide {
  display: block;
  width: fit-content;
  text-transform: uppercase;
  margin: 30px 0 0 auto;
}

.title_small_wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.title_small_wrapper h4 {
  font-size: 16px;
  font-weight: var(--font-regular);
}

.inscription_instructions_wrapper h2.title {
  font-size: 16px;
  color: var(--red-color);
  font-weight: var(--font-medium);
  margin-bottom: 20px;
}
.inscription_instructions_wrapper h3 {
  font-size: 14px;
  color: var(--red-color);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.inscription_instructions_wrapper p {
  font-size: 12px;
  color: #fff;
  font-weight: var(--font-regular);
  margin-bottom: 20px;
}
.inscription_instructions_wrapper p.text_small {
  color: #656565;
  font-weight: var(--font-semi-bold);
}
.inscription_instructions_wrapper a {
  color: #BEBEBE;
}

.check_inscription_wrapper {
  display: flex;
  justify-content: end;
  margin-top: 60px;
}

.list_inscription_table_wrapper .row .col-sm-12 {
  width: 100%;
}
.list_inscription_table_wrapper table#sheets_table {
  border-radius: 5px;
}
.list_inscription_table_wrapper table#sheets_table th {
  padding: 10px 5px;
  border-bottom: 1px solid #707070;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--font-medium);
  color: #A1A1A6;
  text-align: left;
  cursor: pointer;
}
.list_inscription_table_wrapper table#sheets_table th:last-child {
  border-right: none;
}
.list_inscription_table_wrapper table#sheets_table td {
  font-size: 12px;
  padding: 10px 5px;
  border-bottom: 1px solid #707070;
}
.list_inscription_table_wrapper table#sheets_table td:last-child {
  border-right: none;
}
.list_inscription_table_wrapper table#sheets_table .th-sm .txt-th {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list_inscription_table_wrapper table#sheets_table .th-sm .txt-th:before {
  content: "";
  display: block;
  width: 12px;
  min-width: 12px;
  height: 13px;
  background-image: url(../img/sort.svg);
  background-repeat: no-repeat;
}
.list_inscription_table_wrapper table#sheets_table .th-sm.sorting_asc {
  color: var(--red-color);
}
.list_inscription_table_wrapper table#sheets_table .th-sm.sorting_asc .txt-th:before {
  background-image: url(../img/sort_active.svg);
}
.list_inscription_table_wrapper table#sheets_table .thumb_profile {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  overflow: hidden;
}
.list_inscription_table_wrapper table#sheets_table .thumb_profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_inscription_table_wrapper table#sheets_table .company_profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list_inscription_table_wrapper table#sheets_table .company_profile .company_thumb_profile {
  width: 100px;
  border-radius: 3px;
  overflow: hidden;
}
.list_inscription_table_wrapper table#sheets_table .company_profile .company_thumb_profile img {
  width: 100%;
}
.list_inscription_table_wrapper table#sheets_table .company_profile .function {
  display: block;
  font-weight: var(--font-semi-bold);
}
.list_inscription_table_wrapper table#sheets_table .company_profile .company {
  display: block;
  font-weight: var(--font-regular);
  color: #A1A1A6;
}

.head_agenda {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.agenda_content_wrapper {
  margin-bottom: 60px;
}

.agenda_main_wrapper .nav_tab_wrapper ul li a {
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #A1A1A6;
}
.agenda_main_wrapper .nav_tab_wrapper ul li.active a {
  color: var(--red-color);
}

.retail_profile_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 60px;
}
@media screen and (max-width: 1260px) {
  .retail_profile_wrapper {
    display: block;
  }
  .retail_profile_wrapper .retail_company_wrapper {
    width: 100% !important;
    padding-right: 0 !important;
    border: none !important;
  }
  .retail_profile_wrapper .participants_company_wrapper {
    width: 100% !important;
    padding-left: 0 !important;
  }
}
.retail_profile_wrapper .retail_company_wrapper {
  width: calc(60% - 10px);
  border-right: 1px solid var(--bg--gray-3);
  padding-right: 20px;
}
.retail_profile_wrapper .participants_company_wrapper {
  width: calc(40% - 10px);
  padding-left: 20px;
}
.retail_profile_wrapper .section {
  margin-bottom: 30px;
}
.retail_profile_wrapper .head_p h4 {
  font-size: 16px;
  color: var(--red-color);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
}
.retail_profile_wrapper .details_company_wrapper {
  display: flex;
  gap: 20px;
}
.retail_profile_wrapper .photo_profile_wrapper {
  width: 160px;
}
.retail_profile_wrapper .photo_profile_wrapper .thumb_wrapper {
  width: 160px;
  height: 160px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid #4e5058;
}
.retail_profile_wrapper .photo_profile_wrapper .thumb_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.retail_profile_wrapper .description_w {
  width: 100%;
}
.retail_profile_wrapper .row_input {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.retail_profile_wrapper textarea,
.retail_profile_wrapper input[type=text],
.retail_profile_wrapper input[type=email],
.retail_profile_wrapper input[type=tel] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
}
.retail_profile_wrapper textarea + a,
.retail_profile_wrapper input[type=text] + a,
.retail_profile_wrapper input[type=email] + a,
.retail_profile_wrapper input[type=tel] + a {
  margin-left: 10px;
}
.retail_profile_wrapper textarea.active,
.retail_profile_wrapper input[type=text].active,
.retail_profile_wrapper input[type=email].active,
.retail_profile_wrapper input[type=tel].active {
  background-color: #9D9CA2;
}
.retail_profile_wrapper textarea {
  resize: none;
  height: 160px;
  padding: 10px;
  border-radius: 10px;
}
.retail_profile_wrapper .list_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 15px;
}
.retail_profile_wrapper .list_tags li {
  font-size: 12px;
  color: #CCCCCC;
  font-weight: var(--font-medium);
  padding: 5px 10px;
  background-color: #3F4447;
  border-radius: 15px;
  display: flex;
  gap: 10px;
}
.retail_profile_wrapper .list_tags li a {
  text-decoration: none;
  color: #CCCCCC;
  font-family: Arial, Helvetica, sans-serif;
}
.retail_profile_wrapper .list_participants .participant_item {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
.retail_profile_wrapper .list_participants .participant_item .thumb_wrapper .thumb {
  width: 54px;
  min-width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 3px;
}
.retail_profile_wrapper .list_participants .participant_item .details_wrapper {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.retail_profile_wrapper .list_links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.popin_info_participant {
  display: none;
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #707070;
  background: #000;
  border-radius: 15px;
  padding: 20px 15px 15px;
  z-index: 2;
  transform: translateY(-50%);
}
.popin_info_participant a.close {
  position: absolute;
  top: 10px;
  right: 15px;
  text-decoration: none;
  color: #707070;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
.popin_info_participant .list_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
.popin_info_participant .list_actions svg {
  width: 15px;
}
.popin_info_participant .row_participants {
  display: flex;
  gap: 20px;
}
.popin_info_participant .row_participants .thumb_wrapper .thumb {
  width: 80px;
  height: 80px;
}
.popin_info_participant .row_participants .info_details {
  margin-top: 10px;
}
.popin_info_participant .row_participants .info_details ul {
  list-style: none;
}
.popin_info_participant .row_participants .info_details ul li {
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
}
.popin_info_participant .row_participants .info_details .details h4 {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 5px;
}
.popin_info_participant .row_participants .info_details .details span {
  font-size: 12px;
  color: #A1A1A6;
  display: block;
  margin-bottom: 5px;
}
.popin_info_participant a.button-republik {
  display: block;
  margin: 20px auto 0;
  width: fit-content;
}
.popin_info_participant.fixed_height {
  height: 215px;
}
.popin_info_participant.fixed_height h4, .popin_info_participant.fixed_height span {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp_profile_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.sp_profile_wrapper .sidebar_sp_profile {
  width: 330px;
  padding-right: 30px;
  border-right: 1px solid #707070;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .thumb_wrapper {
  width: 300px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .thumb_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .info_wrap {
  margin-top: 15px;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .info_wrap > span {
  display: block;
  font-size: 18px;
  font-weight: var(--font-medium);
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .info_wrap a {
  color: var(--red-color);
  font-size: 12px;
  font-weight: var(--font-medium);
  margin-top: 5px;
  display: block;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_info .actions_wrapper a {
  display: block;
  width: fit-content;
  margin-top: 15px;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_details ul {
  margin: 0;
  padding: 0;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_details ul li {
  list-style: none;
  border-bottom: 1px solid #707070;
  padding: 10px 0;
  font-size: 14px;
  font-weight: var(--font-regular);
  color: #A1A1A6;
}
.sp_profile_wrapper .sidebar_sp_profile .sp_profile_details ul li .strong_txt {
  color: #fff;
}
.sp_profile_wrapper .content_sp_profile {
  width: calc(100% - 380px);
}
.sp_profile_wrapper .content_sp_profile .thumb_video_wrapper {
  position: relative;
}
.sp_profile_wrapper .content_sp_profile .thumb_video_wrapper .thumb_wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
}
.sp_profile_wrapper .content_sp_profile .thumb_video_wrapper .thumb_wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.sp_profile_wrapper .content_sp_profile .thumb_video_wrapper .thumb_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sp_profile_wrapper .content_sp_profile .thumb_video_wrapper .play_btn {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -40px;
  margin-right: -40px;
}
.sp_profile_wrapper .content_sp_profile .content {
  margin-top: 30px;
}
.sp_profile_wrapper .content_sp_profile .content h2 {
  font-size: 30px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 5px;
}
.sp_profile_wrapper .content_sp_profile .content span {
  color: #A1A1A6;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: var(--font-medium);
  margin-bottom: 5px;
  display: block;
}
.sp_profile_wrapper .content_sp_profile .content p {
  font-size: 12px;
  font-weight: var(--font-medium);
}

.quiz_participant_wrapper {
  display: flex;
  gap: 20px;
}
.quiz_participant_wrapper .section_title {
  font-size: 18px;
  color: var(--red-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 15px;
}
.quiz_participant_wrapper .participant_wrapper {
  width: 35%;
  padding-right: 30px;
  max-width: 400px;
}
.quiz_participant_wrapper .participant_wrapper .participant_details {
  display: flex;
  gap: 10px;
}
.quiz_participant_wrapper .participant_wrapper .participant_details .participant_thumb {
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 3px;
  overflow: hidden;
}
.quiz_participant_wrapper .participant_wrapper .participant_details .participant_thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.quiz_participant_wrapper .participant_wrapper .participant_details .participant_info h5 {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 5px;
}
.quiz_participant_wrapper .participant_wrapper .participant_details .participant_info span {
  display: block;
  color: #A1A1A6;
  margin-top: 5px;
}
.quiz_participant_wrapper .quiz_wrapper {
  width: 65%;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper {
  margin-bottom: 30px;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper .title {
  font-size: 14px;
  font-weight: var(--font-semi-bold);
  margin-bottom: 10px;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper .title .required {
  color: var(--red-color);
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper p {
  margin-bottom: 10px;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper textarea {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 10px;
  height: 160px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 5px;
  resize: none;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .fieldset_wrapper input[type=submit] {
  padding: 10px 50px;
}
.quiz_participant_wrapper .quiz_wrapper .quiz_content .permalink_conditions {
  color: #A1A1A6;
}

.contact_form_wrapper {
  margin-top: 30px;
}
.contact_form_wrapper .fields_wrapper_cols {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 1260px) {
  .contact_form_wrapper .fields_wrapper_cols {
    flex-wrap: wrap;
  }
}
.contact_form_wrapper .fields_wrapper_cols .fieldset_wrapper {
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 1260px) {
  .contact_form_wrapper .fields_wrapper_cols .fieldset_wrapper {
    width: 100%;
  }
}
.contact_form_wrapper .fieldset_wrapper {
  margin-bottom: 15px;
}
.contact_form_wrapper .custom-select_dc {
  width: 100%;
  height: 28px;
}
.contact_form_wrapper textarea,
.contact_form_wrapper input[type=email],
.contact_form_wrapper input[type=text] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 15px;
  height: 28px;
}
.contact_form_wrapper textarea {
  resize: none;
  height: 200px;
  padding: 15px;
  font-size: 12px;
}
.contact_form_wrapper .fieldset_submit_wrapper {
  display: flex;
  justify-content: end;
}

.popup_main_wrapper {
  position: relative;
  border: 1px solid #707070;
  background: #000;
  border-radius: 15px;
  padding: 64px 20px 20px;
}
.popup_main_wrapper a.close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.popup_main_wrapper .nav_tab_wrapper {
  margin-bottom: 30px;
}
.popup_main_wrapper .title_small_wrapper {
  margin-bottom: 60px;
}

.catalog_table_wrapper .table_row_head {
  display: flex;
  justify-content: space-between;
}
.catalog_table_wrapper .show_wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
.catalog_table_wrapper .label {
  color: var(--red-color);
}
.catalog_table_wrapper .custom-select_dc {
  width: 60px;
}
.catalog_table_wrapper input[type=search] {
  width: 380px;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
  margin-bottom: 15px;
  height: 28px;
}
.catalog_table_wrapper .row .col-sm-12 {
  width: 100%;
}
.catalog_table_wrapper table#sheets_table {
  border: 1px solid #707070;
  border-radius: 5px;
}
.catalog_table_wrapper table#sheets_table th {
  padding: 10px 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--font-medium);
  color: #A1A1A6;
  text-align: left;
  border-right: 1px solid #707070;
  cursor: pointer;
}
.catalog_table_wrapper table#sheets_table th:last-child {
  border-right: none;
}
.catalog_table_wrapper table#sheets_table td {
  font-size: 12px;
  padding: 10px 5px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  vertical-align: top;
}
.catalog_table_wrapper table#sheets_table td:last-child {
  border-right: none;
}
.catalog_table_wrapper table#sheets_table tr:last-child td {
  border-bottom: none;
}
.catalog_table_wrapper table#sheets_table .th-sm .txt-th {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog_table_wrapper table#sheets_table .th-sm .txt-th:after {
  content: "";
  display: block;
  width: 12px;
  min-width: 12px;
  height: 13px;
  background-image: url(../img/sort.svg);
  background-repeat: no-repeat;
}
.catalog_table_wrapper table#sheets_table .th-sm.sorting_asc {
  color: var(--red-color);
}
.catalog_table_wrapper table#sheets_table .th-sm.sorting_asc .txt-th:after {
  background-image: url(../img/sort_active.svg);
}
.catalog_table_wrapper table#sheets_table .votes_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.table_scroll tbody {
  display: block;
  max-height: 600px; /* Set the maximum height you want */
  overflow-y: auto;
  margin-right: -10px;
  padding-right: 10px;
}
.table_scroll tbody::-webkit-scrollbar {
  width: 3px;
}
.table_scroll tbody::-webkit-scrollbar-thumb {
  background: #8D989F;
  border-radius: 5px;
}
.table_scroll tbody::-webkit-scrollbar-track {
  background: none;
}
.table_scroll tbody tr, .table_scroll thead tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.pagination_wrapper {
  display: flex;
  justify-content: end;
  justify-content: space-between;
  padding: 30px 0;
}
.pagination_wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pagination_wrapper ul li.active a {
  color: var(--red-color);
}
.pagination_wrapper ul li a {
  color: #fff;
  text-decoration: none;
}
.pagination_wrapper ul li a:hover {
  color: var(--red-color);
}

.wysiwyg_republik {
  margin-top: 30px;
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 5px;
}

.tox .tox-menubar,
.tox .tox-sidebar,
.tox .tox-statusbar,
.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
  background: #000 !important;
}

.tox .tox-menubar {
  border-bottom: 2px solid #707070;
}

.tox-toolbar-overlord {
  border-bottom: 1px solid #707070 !important;
}

.wysiwyg_republik html * {
  background: #000 !important;
}

.tox-statusbar__text-container {
  display: none !important;
}

.details_company_wrapper {
  display: flex;
  gap: 20px;
}
.details_company_wrapper .photo_profile_wrapper {
  width: 160px;
}
.details_company_wrapper .photo_profile_wrapper .thumb_wrapper {
  width: 160px;
  height: 160px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid #4e5058;
}
.details_company_wrapper .photo_profile_wrapper .thumb_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details_company_wrapper .list_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
.details_company_wrapper .list_actions svg {
  width: 15px;
}
.details_company_wrapper .description_w {
  width: 100%;
}
.details_company_wrapper .row_input {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.details_company_wrapper textarea,
.details_company_wrapper input[type=text],
.details_company_wrapper input[type=email],
.details_company_wrapper input[type=tel] {
  width: 100%;
  background-color: var(--bg--gray-1);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #fff;
}
.details_company_wrapper textarea + a,
.details_company_wrapper input[type=text] + a,
.details_company_wrapper input[type=email] + a,
.details_company_wrapper input[type=tel] + a {
  margin-left: 10px;
}
.details_company_wrapper textarea.active,
.details_company_wrapper input[type=text].active,
.details_company_wrapper input[type=email].active,
.details_company_wrapper input[type=tel].active {
  background-color: #9D9CA2;
}
.details_company_wrapper textarea {
  resize: none;
  height: 160px;
  padding: 10px;
  border-radius: 10px;
}

.list_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 15px;
}
.list_tags li {
  font-size: 12px;
  color: #CCCCCC;
  font-weight: var(--font-medium);
  padding: 5px 10px;
  background-color: #3F4447;
  border-radius: 15px;
  display: flex;
  gap: 10px;
}
.list_tags li a {
  text-decoration: none;
  color: #CCCCCC;
  font-family: Arial, Helvetica, sans-serif;
}

.list_participants .participant_item {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
.list_participants .participant_item .thumb_wrapper .thumb {
  width: 54px;
  min-width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 3px;
}
.list_participants .participant_item .details_wrapper {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.note-editor.note-frame .note-editing-area .note-editable {
  color: #fff !important;
}

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