.wmsg {
  --wizi-color: #00919b;
  --wizi-color-dark: #264a4d;
  --wizi-color-light: #ddf7f9;
  --turquoise: #7ae0e5;
  --turquoise-light: #ebfbfb;
  --primary-border: #e7eaf5;
  --secondary-border: #e7eaf5;
  --primary-text-color: #131523;
  --secondary-text-color: #555a5f;
  --third-text-color: #7e84a3;
  --fourth-text-color: #d7dbec;
  --alert-red: #e74c3c;
  --warning-orange: #e67e22;
  --alert-red-light: #fdf1f0;
  --dest-color: #f5f6fa;
  --white: #ffffff;
  --orange: #f1793b;
}

.premium-tooltip-container {
  position: relative;
  display: inline-block;
}

.premium-tooltip {
  visibility: hidden;
  width: 120px;
  background-color: var(--wizi-color);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  line-height: 16px;
}

.premium-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--wizi-color) transparent transparent transparent;
}

.premium-tooltip-container:hover .premium-tooltip {
  visibility: visible;
  opacity: 1;
}

.mimosa-color {
  color: var(--mimosa);
}

.blurred-text {
  filter: blur(3px);
  user-select: none;
}

.wmsg p,
.wmsg span,
.wmsg h1,
.wmsg h2,
.wmsg h3,
.wmsg h4,
.wmsg h5,
.wmsg h6,
.wmsg pre {
  font-family: "Poppins", sans-serif;
}

.wmsg *::-webkit-scrollbar-track {
  background-color: white;
}

.wmsg *::-webkit-scrollbar {
  width: 8px;
  background-color: var(--third-text-color);
}

.wmsg *::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--third-text-color);
}

.wmsg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wmsg_container {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/**
 * Dropdown
 */
.wmsg_dropdown {
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 hsl(0deg 0% 9% / 16%);
  background-color: var(--white);
  z-index: 9;
  position: absolute;
  visibility: hidden;
  overflow: hidden;
}

.wmsg_dropdown_active {
  visibility: visible;
}

.wmsg_messages_header_dropdown {
  top: 57px;
  right: 12px;
}

.wmsg_header_filter_dropdown {
  top: 60px;
  right: 10px;
  padding: 10px 15px;
}

.wmsg_dropdown .wmsg_dropdown_item {
  padding: 15px;
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid var(--primary-border);
}

.wmsg_dropdown .wmsg_dropdown_item:hover {
  background-color: var(--primary-border);
}

/* .wmsg_dropdown li:first-child {
    padding: 20px 20px 10px 20px;
} */

.wmsg_dropdown li:last-child {
  border: none;
}

.wmsg_dropdown_icon {
  display: flex;
  width: 30px;
}

.wmsg_dropdown_icon i {
  margin: auto;
  color: var(--third-text-color);
}

.wmsg_dropdown_text {
  color: var(--primary-text-color);
  padding-left: 6px;
  font-size: 13px;
}

.wsmg_checkbox_container {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 15px 15px 15px 45px;
  cursor: pointer;
  border-bottom: 1px solid var(--primary-border);
}

.wmsg_dropdown_other_category {
  margin-top: 15px;
  border-top: 1px solid var(--primary-border);
}

.wsmg_checkbox_container:hover {
  background-color: var(--primary-border);
}

.wsmg_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.wsmg_checkbox_checkmark {
  position: absolute;
  top: 16px;
  left: 21px;
  height: 18px;
  width: 18px;
  background-color: #eee;
}

.wsmg_checkbox_container input:checked ~ .wsmg_checkbox_checkmark {
  background-color: var(--wizi-color);
  border-radius: 4px;
}

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

.wsmg_checkbox_container input:checked ~ .wsmg_checkbox_checkmark:after {
  display: block;
}

.wsmg_checkbox_container .wsmg_checkbox_checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**
 * Left part
 */
.wmsg_part_left {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 340px;
  background: white;
}

.wmsg_left_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-right: 1px solid var(--primary-border);
}

.wmsg_left_header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex: none;
  width: 100%;
  height: 70px;
  background: transparent;
  border-bottom: 1px solid var(--primary-border);
  justify-content: space-between;
  padding: 0 10px;
}

/* Search */
.wmsg_left_search {
  border: 1px solid var(--secondary-border);
  border-radius: 50px;
  width: 42px;
  height: 42px;
  margin: auto 0;
  display: flex;
  font-size: 18px;
  transition: width 0.3s ease-out;
  padding: 5px 10px;
}

.wmsg_left_search_btn {
  all: unset;
  margin: auto 0;
  color: var(--third-text-color);
  cursor: pointer;
}

.wmsg_left_search_btn:disabled {
  background: transparent;
  color: var(--third-text-color);
}

.wmsg_left_search_btn:disabled:hover {
  background: transparent;
  color: var(--third-text-color);
}

input.wmsg_left_search_input {
  width: 100%;
  height: 100%;
  margin-left: 5px;
}

/* Filtres */
.wmsg_left_header_filter {
  display: flex;
  flex: none;
  width: auto;
  margin: auto 0 auto 5px;
}

.wmsg_left_header_filter_status {
  margin: auto 5px auto 0;
  color: var(--secondary-text-color);
  font-size: 11px;
}

.wmsg_left_header_filter_btn {
  all: unset;
  border: 1px solid var(--secondary-border);
  border-radius: 5px;
  width: 32px;
  height: 32px;
  margin: 0;
  display: flex;
  cursor: pointer;
}

.wmsg_left_header_filter_btn > i {
  margin: auto;
}

.wmsg_list_container {
  overflow: auto;
}

/* Titre des conversations */
.wmsg_list_title {
  position: relative;
  padding: 16px 15px;
}

.wmsg_list_title > h3 {
  color: var(--third-text-color);
  margin: 0 0 0 25px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.wmsg_list_title > i {
  position: absolute;
  color: var(--third-text-color);
  font-size: 16px;
}

/* Liste Conversations */
.wmsg_list_conversations {
  padding-right: 5px;
}

.wmsg_list_conv_container {
  border-bottom: 1px solid var(--primary-border);
  padding: 3px 0;
}

.wmsg_list_conv_one {
  width: 100%;
  height: 84px;
  border-left: 4px solid transparent;
  cursor: pointer;
  display: flex;
  border-radius: 0 5px 5px 0;
}

.wmsg_list_conv_one:hover {
  background: var(--wizi-color-light);
  border-color: var(--wizi-color-light);
}

/* Active */
.wmsg_list_conv_active .wmsg_list_conv_one {
  border-color: var(--turquoise);
  background: var(--turquoise-light);
}

/* New */
.wmsg_list_conv_new .wmsg_list_conv_one {
  border-color: var(--alert-red);
}

.wmsg_list_conv_new .wmsg_list_conv_one:hover {
  background: var(--alert-red-light);
}

/* Conv list User picture */
.wmsg_list_conv_userpicture {
  padding: 8px 12px 0 14px;
}

.wmsg_list_conv_userpicture img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 6px;
}

/* Conv list header */
.wmsg_list_conv_content {
  width: 100%;
}

.wmsg_list_conv_header {
  display: flex;
  margin: 13px 0 0px 0;
}

.wmsg_list_conv_header h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-text-color);
  line-height: 20px;
  max-width: 155px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
  margin-bottom: 0;
}

.wmsg_list_conv_firstname {
  display: inline-block;
}

.wmsg_list_conv_firstname:first-letter {
  text-transform: uppercase;
}

.wmsg_list_conv_name {
  text-transform: uppercase;
}

.wmsg_list_conv_header i {
  padding: 0 4px;
  font-size: 12px;
  margin: auto 0;
  color: var(--third-text-color);
}

.wmsg_list_conv_archived {
  padding: 0 3px;
}

.wmsg_list_conv_archived i {
  padding: 0;
}

.wmsg_list_conv_archived span {
  font-size: 11px;
  color: var(--third-text-color);
}

.wmsg_list_conv_new_marker {
  padding: 0 6px;
  border: 1px solid var(--alert-red);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--alert-red);
  line-height: 13px;
  height: 15px;
  margin: auto 0 auto 5px;
}

.wmsg_list_conv_time {
  margin-left: auto;
  margin-right: 10px;
  font-size: 11px;
  color: var(--third-text-color);
}

.wmsg_list_conv_preview {
  padding-right: 30px;
}

.wmsg_list_conv_preview p {
  color: var(--primary-text-color);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 16px;
  margin: 0;
  word-break: break-all;
}

/* Charger plus btn */
.wmsg_loadmore {
  margin: 10px 0;
  display: flex;
}

.wmsg_loadmore_btn {
  all: unset;
  margin: auto;
  cursor: pointer;
  color: var(--wizi-color);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--wizi-color);
  padding: 5px 10px;
  border-radius: 50px;
}

.wmsg_loadmore_btn:hover {
  color: var(--white);
  border: 1px solid var(--wizi-color);
  background-color: var(--wizi-color);
}

.wmsg_loadmore_btn:focus {
  color: var(--white);
  border: 1px solid var(--wizi-color);
  background-color: var(--wizi-color);
}

/**
 * Middle part
 */
.wmsg_part_middle {
  position: relative;
  height: 100%;
  overflow: hidden;
  flex: 1;
  /*background: aquamarine;*/
}

.wmsg_messages_container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wmsg_messages_main_header {
  display: none;
  height: 65px;
  border-bottom: 1px solid var(--primary-border);
  padding: 0 25px;
  align-items: center;
}

.wmsg_messages_header_back {
  all: unset;
  cursor: pointer;
  margin: 0 25px 0 0;
  font-size: 19px;
  color: var(--third-text-color);
}

.wmsg_messages_header_user {
  display: flex;
  align-items: center;
}

.wmsg_messages_header_picture {
  width: 30px;
  height: 30px;
}

.wmsg_messages_header_picture img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.wmsg_messages_header_container {
  margin-left: 10px;
}

.wmsg_messages_header_name {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--primary-text-color);
}

.wmsg_messages_header_mobilephone p,
.wmsg_messages_header_mobilephone a {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  margin: 0;
  color: var(--orange);
}

.wmsg_messages_header_menu {
  all: unset;
  cursor: pointer;
  margin-left: auto;
  font-size: 17px;
  color: var(--third-text-color);
  /* border: 1px solid #F7F7F5; */
  padding: 6px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wmsg_messages_header_menu span {
  font-size: 11px;
  line-height: 16px;
  margin-top: 3px;
}

.wmsg_messages_header_menu i {
  font-size: 24px;
}

.wmsg_messages_second_header {
  height: 60px;
  padding: 0 12px;
  align-items: center;
  box-shadow: rgba(21, 34, 50, 8%) 0 1px 4px;
}

.wmsg_messages_second_header_container {
  display: flex;
  margin: auto;
  height: 100%;
  align-items: center;
}

.wmsg_messages_second_header_container_max {
  max-width: 1080px;
}

.wmsg_messages_header_flatpicture {
  height: 45px;
  width: 45px;
}

.wmsg_messages_header_flatpicture img {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 4px;
}

.wmsg_messages_header_infos {
  margin-left: 10px;
  min-width: 0;
}

.wmsg_messages_header_flat_title h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wmsg_messages_header_flat_status {
  display: flex;
}

.wmsg_messages_header_flat_status > span {
  font-size: 11px;
  line-height: 16px;
  margin-left: 5px;
}

.wmsg_messages_list {
  height: 100%;
  flex: 1;
  overflow: auto;
}

.wmsg_messages_border {
  width: 100%;
  height: 9px;
  background-color: var(--wizi-color);
}

.wmsg_messages_security_msg {
  margin: 5px 0;
}

.wmsg_messages_security_msg p {
  font-size: 11px;
  text-align: center;
  margin: 0;
  line-height: 17px;
}

.wmsg_messages_security_msg p.wmsg_messages_security_title {
  font-weight: 700;
  color: var(--wizi-color);
}

.wmsg_messages_date {
  margin-top: 25px;
  margin-bottom: 10px;
}

.wmsg_messages_date p {
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  margin: 0;
  color: var(--third-text-color);
}

.wmsg_message {
  display: flex;
  width: 100%;
  max-width: 80%;
  margin-bottom: 12px;
}

.wmsg_message_dest {
  margin-right: auto;
}

.wmsg_message_me {
  margin-left: auto;
  flex-direction: row-reverse;
}

.wmsg_message_pfp {
  margin: auto 10px 0 10px;
}

.wmsg_message_pfp img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.wmsg_message_bubble {
  font-size: 15px;
  line-height: 22px;
  padding: 15px 17px;
  color: var(--primary-text-color);
  word-break: break-all;
}

.wmsg_message_bubble a {
  color: var(--wizi-color);
  text-decoration: underline;
}

.wmsg_message_dest > .wmsg_message_bubble {
  background-color: var(--dest-color);
  border-radius: 8px 8px 8px 0;
}

.wmsg_message_me > .wmsg_message_bubble {
  background-color: var(--turquoise-light);
  border-radius: 8px 8px 0 8px;
}

.wmsg_message_auto {
  margin: 0 80px 12px 80px;
}

.wmsg_message_auto_bubble {
  border: 1px solid var(--primary-border);
  border-radius: 8px;
  padding: 15px 25px;
  max-width: 550px;
  margin: auto;
}

.wmsg_message_auto_bubble > p {
  margin: 0;
  font-size: 11px;
  color: var(--third-text-color);
  text-align: center;
  line-height: 15px;
}

.wmsg_message_auto_bubble > p.wmsg_message_auto_bubble_title {
  color: var(--wizi-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.wmsg_message_auto_bubble > p.wmsg_color-red {
  color: var(--alert-red);
}

.wmsg_user_inputs {
  display: flex;
  flex-direction: column;
  padding: 0 15px 30px 15px;
}

.wmsg_user_cta {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 12px 0 hsl(0deg 0% 9% / 16%);
  margin-bottom: 20px;
}

.wmsg_user_cta_text {
  flex: 1;
}

.wmsg_user_cta_text h3 {
  font-size: 14px;
  color: var(--wizi-color);
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wmsg_user_cta_text p {
  margin: 0;
  font-size: 13px;
  color: var(--third-text-color);
  line-height: 16px;
}

.wmsg_user_cta_actions {
  margin-left: 20px;
}

.wmsg_user_cta_action_btn {
  all: unset;
  background-color: var(--wizi-color);
  color: white;
  padding: 10px 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  display: block;
  min-width: 180px;
  text-align: center;
}

.wmsg_user_cta_action_link {
  display: block;
  color: var(--wizi-blue);
  text-decoration: underline;
}

.wmsg_user_sends {
  display: flex;
}

.wmsg_user_file {
  all: unset;
  margin: auto 10px 0 10px;
  height: 36px;
  min-width: 36px;
  border-radius: 50px;
  background-color: var(--dest-color);
  display: flex;
  cursor: pointer;
}

.wmsg_user_file > i {
  margin: auto;
  color: var(--third-text-color);
}

.wmsg_user_textarea_container {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--fourth-text-color);
  padding: 10px 15px;
}

.wmsg_user_textarea {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
  max-height: 96px;
  overflow: auto;
  font-family: "Poppins", sans-serif;
  word-break: break-all;
}

.wmsg_user_send_btn {
  all: unset;
  margin: auto 10px 0 10px;
  min-width: 40px;
  height: 40px;
  background-color: var(--wizi-color);
  border-radius: 8px;
  color: white;
  /*display: flex;*/
  cursor: pointer;
  text-align: center;
}

.wmsg_user_send_btn > i {
  margin: auto;
  font-size: 16px;
}

/**
 * Right part
 */
.wmsg_part_right {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 240px;
  border-left: 1px solid var(--primary-border);
  background: white;
}

.wmsg_infos {
  padding: 15px;
}

.wmsg_infos_flat {
  border-bottom: 1px solid var(--primary-border);
  padding-bottom: 20px;
}

.wmsg_infos_flat_header {
  height: 85px;
  width: 85px;
  display: flex;
}

.wmsg_infos_flat_header_picture > img {
  height: 85px;
  width: 85px;
  object-fit: cover;
  border-radius: 4px;
}

.wmsg_infos_flat_header_status {
  display: flex;
  margin-top: auto;
  margin-left: 10px;
}

.wmsg_infos_flat_header_status_pastille {
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  margin: auto 0;
  border-radius: 50px;
}

.wmsg_warning {
  background-color: var(--warning-orange);
}

.wmsg_positive {
  background-color: var(--wizi-color);
}

.wmsg_neutral {
  background-color: var(--third-text-color);
}

.wmsg_alert {
  background-color: var(--alert-red);
}

.wmsg_infos_flat_header_status > span {
  font-size: 11px;
  line-height: 16px;
  margin-left: 5px;
}

.wmsg_infos_flat_title {
  margin-top: 10px;
}

.wmsg_infos_flat_title > h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.wmsg_infos_flat_link {
  font-size: 11px;
  line-height: 16px;
  color: var(--secondary-text-color);
}

.wmsg_infos_flat_link:hover {
  text-decoration: underline;
}

.wmsg_infos_user {
  padding: 14px 0;
  border-bottom: 1px solid var(--primary-border);
}

.wmsg_infos_user_profil {
  display: flex;
}

.wmsg_infos_user_picture {
  margin: auto 6px auto 2px;
}

.wmsg_infos_user_picture img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.wmsg_infos_user_infos {
  display: flex;
  flex-direction: column;
}

.wmsg_infos_user_infos h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin: auto 0;
}

.wmsg_infos_user_link {
  font-size: 11px;
  line-height: 16px;
  color: var(--secondary-text-color);
  margin: auto 0;
}

.wmsg_infos_user_link:hover {
  text-decoration: underline;
}

.wmsg_infos_user_badges {
  margin-top: 10px;
}

.wmsg_infos_user_badge {
  display: flex;
  margin-left: 2px;
  margin-bottom: 5px;
}

.wmsg_infos_user_badge > i {
  font-size: 15px;
  color: var(--wizi-color);
  margin-right: 5px;
}

.wmsg_infos_user_badge > p,
.wmsg_infos_user_badge a {
  font-size: 11px;
  color: var(--third-text-color);
  line-height: 16px;
  margin: 0;
}

.wmsg_infos_actions {
  padding: 14px 0;
}

.wmsg_infos_actions_row {
  display: flex;
  justify-content: space-between;
}

.wmsg_infos_action {
  flex: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.wmsg_infos_action_icon {
  font-size: 18px;
  color: var(--fourth-text-color);
  margin: 0 auto 5px;
}

.wmsg_infos_action_text {
  font-size: 9px;
  line-height: 12px;
  font-weight: 500;
  color: var(--third-text-color);
  text-align: center;
}

.wmsg_infos_documents {
  padding: 14px 0;
  border-top: 1px solid var(--primary-border);
}

.wmsg_infos_documents_row {
  display: flex;
  cursor: pointer;
  margin-bottom: 8px;
}

.wmsg_infos_documents_row:hover {
  text-decoration: underline;
}

.wmsg_infos_documents_icon {
  margin: auto 6px auto 0;
  font-size: 17px;
  color: var(--wizi-color);
}

.wmsg_infos_documents_text {
  max-width: 100%;
}

.wmsg_infos_documents_text_title {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: var(--primary-text-color);
  margin: 0;
  display: block;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wmsg_infos_documents_text_subtitle {
  font-size: 9px;
  line-height: 13px;
  color: var(--secondary-text-color);
  margin: 0;
  display: block;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Calculator bids */
.calculator-fee {
  background: var(--wizi-blue);
}

.calculator-one {
  /*height: 600px;*/
  max-width: 568px;
  padding: 50px 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  margin: auto;
}

.calculator-category {
  text-align: center;
  color: var(--mimosa);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.calculator-main-title {
  margin: 0;
  text-align: center;
  color: var(--pure-white);
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
}

.calculator-main-title .calculator_eco_id {
  width: 85px;
  display: inline-block;
}

.calculator-main-subtitle {
  text-align: center;
  color: var(--pure-white);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.calculator-meter {
  margin: 5px 0;
  text-align: center;
  color: var(--mimosa);
  font-weight: 600;
  font-size: 55px;
  line-height: 65px;
}

.calculator-meter #calculator_meter {
  display: inline-block;
  width: 50px;
  line-height: 1.2;
}

.calculator-meter span.calculator-meters {
  font-size: 18px;
  font-weight: 400;
}

.calculator-meter sup {
  vertical-align: super;
  font-size: smaller;
}

.calculator-results {
  margin-top: 40px;
  border-top: 1px solid var(--turquoise);
  border-bottom: 1px solid var(--turquoise);
  padding: 10px 0;
}

.calculator-results-flex {
  display: flex;
}

.calculator-results-one:nth-child(1) {
  border-right: 1px solid var(--turquoise);
}

.calculator-range-minmax {
  display: flex;
  justify-content: space-between;
}

.calculator-range-minmax-one {
}

.calculator-range-minmax-one .calculator-range-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--pure-white);
}

.calculator-range-minmax-one p {
  font-size: 16px;
  font-weight: 400;
  color: var(--pure-white);
  text-align: center;
}

.calculator-results-one {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.calculator-results-one img {
  margin: auto;
  display: block;
}

.calculator-results-title {
  text-align: center;
  font-size: 40px;
  color: var(--mimosa);
}

.calculator-results-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--pure-white);
  line-height: 24px;
  font-weight: 300;
}

.calculator-result-title {
  height: 33px;
  display: flex;
}

.calculator-result-title p {
  margin: auto;
}

.calculator-prices {
  margin: 10px 0;
}

.calculator-prices .calculator_eco_id {
  display: inline-block;
  width: 165px;
}

.calculator-prices span.calculator-euro {
  font-size: 55px;
  font-weight: 300;
}

/* 
 * Tickets
 */
.wizi-tickets {
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 2px 8px #eaeaea; */
  border: 1px solid #eaeaea;
  border-radius: 7px;
  width: 100%;
  height: 100%;
  padding: 30px 0;
}

.wizi-tickets_header {
  padding: 0 30px 20px;
  display: flex;
}

.wizi-tickets_title {
  flex: 1;
  display: flex;
}

.wizi-tickets_title_img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
}

.wizi-tickets_title_h3 {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  margin-bottom: 7px;
  align-self: center;
}

.wizi-tickets_title_p {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  margin: 0;
}

.wizi-tickets_create {
  align-self: center;
}

.wizi-tickets_create button {
  padding: 0 25px;
  margin: 0;
}

.wizi-tickets_date {
  align-self: center;
}

.wizi-tickets_date p {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  margin: 0;
  line-height: 18px;
}

.wizi-tickets__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #eaeaea;
}

.wizi-tickets__list_item {
  display: flex;
  padding: 10px 30px;
  border-bottom: 1px solid #eaeaea;
  cursor: pointer;
  gap: 5px;
}

.wizi-tickets__list_item:hover {
  background: #eaeaea;
}

.wizi-tickets__list_item__cell {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wizi-tickets__list_item__cell__title {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.wizi-tickets__list_item__cell__title_open {
  color: var(--wizi-color);
}

.wizi-tickets__list_item__cell__title_closed {
  color: var(--alert-red);
}

.wizi-tickets__list_item__cell__subtitle {
  font-weight: 300;
  font-size: 13px;
  color: #555;
}

.wizi-tickets__empty {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.wizi-tickets__empty_p {
  color: #555;
  margin: 0;
}

.wizi-tickets-reply__container {
  width: 100%;
  margin: auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.wizi-tickets-reply {
  padding: 20px 0;
}

.wizi-tickets-reply-input {
  padding: 30px 0;
}

.wizi-tickets-reply .wizi-tickets_header {
  padding: 0 30px 20px;
}

.wizi-tickets-reply .wizi-tickets_title_h3 {
  font-size: 15px;
  margin: 0;
}

.wizi-tickets-reply__text-container {
  border-top: 1px solid #eaeaea;
  padding: 20px 30px 0 30px;
}

.wizi-tickets-reply__text-container pre {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 24px;
}

.wizi-tickets-reply__textarea {
  padding: 0 30px;
}

.wizi-tickets-reply__button {
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.wizi-tickets__files {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.wizi-tickets__files i {
  font-size: 16px;
  color: #555;
}

.wizi-tickets__file-name {
  color: #666;
}

.wizi-tickets__files-link {
  color: #00919b;
  text-decoration: underline;
  cursor: pointer;
}

.wizi-tickets__files-link .wizi-tickets__file-name {
  color: #00919b;
}

.wizi-tickets__files-link i {
  color: #00919b;
}

.wizi-tickets__addfiles {
  all: unset;
  color: #00919b;
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .wmsg_user_cta {
    flex-direction: column;
  }
}

@media screen and (max-width: 980px) {
  .wmsg {
    height: calc(var(--vh, 1vh) * 100 - 80px);
  }

  .wmsg_part_right {
    /* display: none; */
    position: absolute;
    height: 100%;
    right: -240px;
    top: 65px;
    transition: right 0.1s ease-out;
    box-shadow: 0 1px 4px 0 hsl(0deg 0% 9% / 16%);
  }

  .wmsg_part_right_open {
    right: 0;
  }

  .wmsg_part_left {
    width: 300px;
  }

  .wmsg_messages_main_header {
    display: flex;
  }

  .wmsg_messages_header_back {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .wmsg_part_left {
    width: 100%;
  }

  .wmsg_content_on_conversation_open {
    margin-top: 0;
  }

  .wmsg_height_on_conversation_open {
    height: calc(var(--vh, 1vh) * 100);
  }

  .wmsg_hide_on_conversation_open {
    display: none;
  }

  .wmsg_conversation_open {
    display: none;
  }

  .wmsg_user_cta_actions {
    margin-top: 5px;
  }

  .wmsg_user_cta_text p {
    font-size: 12px;
  }

  .wmsg_messages_main_header {
    display: flex;
  }

  .wmsg_message_pfp img {
    display: none;
  }

  .wmsg_message_auto {
    margin: 0 40px 12px 40px;
  }

  .wmsg_messages_header_back {
    display: flex;
  }

  .wizi-tickets {
  }

  .wizi-tickets_header {
    padding: 0 10px 20px;
  }

  .wizi-tickets__list_item {
    padding: 10px;
    gap: 10px;
  }

  .wizi-tickets__list_item__cell-no {
    display: none;
  }
}
