:root {
  --workspace-color: #f7c906;
  --yellow-2: #f7de03;
  --perview-btn: #D8A549;
  --perview-bg: #F8F1E4;
  --font-family: "sofia-pro" !important;
  --font-family-3: "sofia-pro" !important;
  --font-family-2: "Kyrie Serif" !important;
}

/* =================================
Base style files
===================================*/
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: var(--yellow-2);
}

::selection {
  color: #fff;
  background: var(--yellow-2);
}

.ws_container_full {
  padding: 0px 10px;
  width: 100%;
}
.ws_container {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1035px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .ws_container {
    padding: 0px 50px;
  }
}
@media only screen and (max-width: 620px) {
  .ws_container {
    padding: 0px 25px;
  }
}
.ws_container_max {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.ws_content {
  min-height: 100vh;
  background-color: #f9f9f9;
  padding-top: 84px;
  padding-left: 230px;
}
@media only screen and (max-width: 1024px) {
  .ws_content {
    padding-left: 0;
  }
}
.ws_content_full {
  padding-left: 0;
}
@media (max-width: 991px) {
  .ws_content_full {
    padding-top: 143px;
  }
}
.ws_content_white {
  background-color: #ffffff;
}
.ws_content_wrapper {
  padding: 30px 42px;
}
@media only screen and (max-width: 1280px) {
  .ws_content_wrapper {
    padding: 30px 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .ws_content_wrapper {
    padding: 30px 35px;
  }
}
@media only screen and (max-width: 620px) {
  .ws_content_wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .ws_content_wrapper {
    padding: 25px;
  }
}
@media only screen and (max-width: 320px) {
  .ws_content_wrapper {
    padding: 25px 20px;
  }
}
.ws_content.admin {
  padding-top: 124px;
}
.ws_content_document {
  padding-top: 60px;
}
.ws_content_document.admin {
  padding-top: 100px;
}
.ws_content_area {
  padding-right: 382px;
}
@media (max-width: 1024px) {
  .ws_content_area {
    padding-right: 0px;
  }
}
.ws_content_area:not(.has_sidebar) {
  padding-right: 0px;
}
.ws_content_sidebar {
  background-color: #fff !important;
  height: 100vh !important;
  max-width: 382px;
  padding-top: 84px;
  position: fixed;
  left: auto;
  right: 0px;
  top: 0px;
  z-index: 1091 !important;
  width: 100%;
  white-space: nowrap;
  display: block !important;
  transition: right 0.3s ease;
}
.ws_content_sidebar::after {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: -1;
}
@media (max-width: 1024px) {
  .ws_content_sidebar::after {
    display: block;
  }
}
.ws_content_sidebar::before {
  content: "";
  position: fixed;
  width: 0%;
  height: 100%;
  background: #000;
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
  right: 0;
  z-index: -2;
}
@media (max-width: 1024px) {
  .ws_content_sidebar::before {
    display: block;
  }
}
@media (max-width: 1024px) {
  .ws_content_sidebar {
    right: -322px;
    max-width: 320px;
  }
}
@media (max-width: 920px) {
  .ws_content_sidebar {
    padding-top: 143px;
  }
}
@media (max-width: 1024px) {
  .ws_content_sidebar.show {
    right: 0px;
  }
}
.ws_content_sidebar.show::before {
  width: 100%;
  opacity: 0.25;
}
.ws_content_sidebar > form {
  display: block;
  height: 100%;
}
.ws_content_sidebar .sidebar_header {
  border-bottom: 1px solid #f6f6f6;
  padding: 19px 25px;
}
@media (max-width: 1024px) {
  .ws_content_sidebar .sidebar_header {
    padding: 12px 15px;
  }
}
.ws_content_sidebar .sidebar_header .menu_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ws_content_sidebar .sidebar_header .menu_item {
  padding: 0px 10px;
}
@media (max-width: 1024px) {
  .ws_content_sidebar .sidebar_header .menu_item {
    padding: 0px 5px;
  }
}
.ws_content_sidebar .sidebar_header .menu_link {
  font-size: 16px;
  padding: 10px;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .ws_content_sidebar .sidebar_header .menu_link {
    font-size: 14px;
  }
}
.ws_content_sidebar .sidebar_header .menu_link.active {
  color: #000000;
}
.ws_content_sidebar .sidebar_body {
  height: calc(100% - 80px);
}
.ws_action_button {
  padding-left: 20px;
}
.ws_right_cta {
  position: unset;
  display: block !important;
  overflow: unset;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta {
    position: fixed;
    top: 84px;
    right: -320px;
    left: auto;
    max-width: 320px;
    width: 100%;
    padding: 30px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: block !important;
    background: unset !important;
    background-color: #f9f9f9 !important;
    background-image: url("/imgs/cross.svg") !important;
    background-position: 88% 25px !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s linear;
  }
}
.ws_right_cta::before {
  content: "";
  display: block;
  width: 0%;
  height: calc(100% - 84px);
  position: fixed;
  left: 0px;
  top: 84px;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta.show {
    right: 0px;
  }
}
.ws_right_cta.show::before {
  width: 100%;
}
.ws_right_cta_action {
  display: none;
  align-items: center;
  margin-left: 15px;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta_action {
    display: flex;
  }
}
@media only screen and (max-width: 800px) {
  .ws_right_cta_action {
    margin-left: 0px;
  }
}

.action_sidebar,
.lead_actions {
  position: sticky;
  top: 110px;
}
@media only screen and (max-width: 800px) {
  .action_sidebar,
  .lead_actions {
    position: relative;
    margin-top: 120px;
    top: 0px;
  }
}
.action_sidebar .ws_btn,
.lead_actions .ws_btn {
  margin-bottom: 18px;
}
.action_sidebar .ws_btn:last-child,
.lead_actions .ws_btn:last-child {
  margin-bottom: 0px;
}

.flex_between {
  justify-content: space-between;
}

.flex_center {
  justify-content: center;
}

.flex_align_center {
  align-items: center;
}

.flex_align_end {
  align-items: flex-end;
}

.flex_end {
  justify-content: flex-end !important;
}

.flex_start {
  justify-content: flex-start !important;
}

.space_between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_items_start {
  align-items: flex-start;
}

.align_items_end {
  align-items: flex-end;
}

.align_items_center {
  align-items: center;
}

.justify_content_start {
  justify-content: flex-start;
}

.justify_content_end {
  justify-content: flex-end;
}

.justify_content_center {
  justify-content: center;
}

.element_left {
  margin-left: 0;
  margin-right: auto;
}

.direction-row {
  flex-direction: row;
}

.direction-row-reverse {
  flex-direction: row-reverse;
}

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

.direction-column-reverse {
  flex-direction: column-reverse;
}

.ws .text_center {
  text-align: center;
}
.ws .text_left {
  text-align: left;
}
.ws .text_right {
  text-align: right;
}
.ws_row {
  display: flex;
  flex-wrap: wrap;
}
.ws_gutter {
  margin-left: -17px;
  margin-right: -17px;
}
.ws_gutter > [class^=ws_col] {
  padding: 0px 17px;
}
.ws_gutter_2 {
  margin-left: -15px;
  margin-right: -15px;
}
.ws_gutter_2 > [class^=ws_col] {
  padding: 0px 15px;
}
.ws_gutter_3 {
  margin-left: -18px;
  margin-right: -18px;
}
@media only screen and (max-width: 1366px) {
  .ws_gutter_3 {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.ws_gutter_3 > [class^=ws_col] {
  padding: 0px 18px;
}
@media only screen and (max-width: 1366px) {
  .ws_gutter_3 > [class^=ws_col] {
    padding: 0px 10px;
  }
}
.ws_gutter_4 {
  margin-left: -9px;
  margin-right: -9px;
}
.ws_gutter_4 > [class^=ws_col] {
  padding: 0px 9px;
}
.ws_gutter_5 {
  margin-left: -10px;
  margin-right: -10px;
}
.ws_gutter_5 > [class^=ws_col] {
  padding: 0px 10px;
}
.ws_gutter_6 {
  margin-left: -5px;
  margin-right: -5px;
}
.ws_gutter_6 > [class^=ws_col] {
  padding: 0px 5px;
}
.ws_m_a_0 {
  margin: 0 !important;
}
.ws_m_b_0 {
  margin-bottom: 0 !important;
}
.ws_m_l_0 {
  margin-left: 0px !important;
}
.ws_m_t_0 {
  margin-top: 0 !important;
}
.ws_p_a_0 {
  padding: 0px !important;
}
.ws_p_t_0 {
  padding-top: 0px !important;
}
.ws_p_b_0 {
  padding-bottom: 0px !important;
}
.ws_p_l_0 {
  padding-left: 0px !important;
}
@media only screen and (min-width: 1366px) {
  .ws_p_l_35 {
    padding-left: 35px !important;
  }
}
@media only screen and (min-width: 1366px) {
  .ws_p_r_35 {
    padding-right: 35px !important;
  }
}
.ws_p_r_0 {
  padding-right: 0px !important;
}
.ws_xxl_hide {
  display: none;
}
.ws_xxl_show {
  display: block;
}
.ws_ml_hide {
  display: none;
}
.ws_ml_show {
  display: block;
}
.ws_xl_hide {
  display: none;
}
.ws_xl_show {
  display: block;
}
.ws_lg_hide {
  display: none;
}
.ws_lg_show {
  display: block;
}
.ws_md_hide {
  display: none;
}
.ws_md_show {
  display: block;
}
.ws_cd_800_hide {
  display: none;
}
.ws_cd_800_show {
  display: block;
}
.ws_sm_hide {
  display: none;
}
.ws_sm_show {
  display: block;
}
.ws_xs_hide {
  display: none;
}
.ws_xs_show {
  display: block;
}
.ws_xxs_hide {
  display: none;
}
.ws_xxs_show {
  display: block;
}
@media (max-width: 1440px) {
  .ws_ml_hide {
    display: none;
  }
  .ws_ml_show {
    display: block;
  }
}
@media (max-width: 1366px) {
  .ws_xl_hide {
    display: none;
  }
  .ws_xl_show {
    display: block;
  }
}
@media (max-width: 1024px) {
  .ws_lg_hide {
    display: none;
  }
  .ws_lg_show {
    display: block;
  }
}
@media (max-width: 980px) {
  .ws_md_hide {
    display: none;
  }
  .ws_md_show {
    display: block;
  }
}
@media (max-width: 800px) {
  .ws_cd_800_hide {
    display: none;
  }
  .ws_cd_800_show {
    display: block;
  }
}
@media (max-width: 768px) {
  .ws_sm_hide {
    display: none;
  }
  .ws_sm_show {
    display: block;
  }
}
@media (max-width: 575px) {
  .ws_xs_hide {
    display: none;
  }
  .ws_xs_show {
    display: block;
  }
}
@media (max-width: 480px) {
  .ws_xxs_hide {
    display: none;
  }
  .ws_xxs_show {
    display: block;
  }
}
.ws_col_xxl_hide {
  display: none !important;
  padding: 0px !important;
}
.ws_col_xxl_show {
  display: block !important;
  padding: 0px !important;
}
.ws_col_xxl_auto {
  flex: 0 0 auto;
  width: auto;
}
.ws_col_xxl_flex {
  flex: 1 1 auto;
  width: 0px;
  max-width: 100%;
}
.ws_col_xxl_flex_1 {
  flex: 1 0;
  width: 0px;
  max-width: 100%;
}
.ws_col_xxl_62 {
  flex: 0 0 62%;
  max-width: 62%;
}
.ws_col_xxl_70 {
  flex: 0 0 70%;
  max-width: 70%;
}
.ws_col_xxl_38 {
  flex: 0 0 38%;
  max-width: 38%;
}
.ws_col_xxl_30 {
  flex: 0 0 30%;
  max-width: 30%;
}
.ws_col_xxl_20 {
  flex: 0 0 20%;
  max-width: 20%;
}
.ws_col_xxl_order_1 {
  order: 1;
}
.ws_col_xxl_order_2 {
  order: 2;
}
.ws_col_xxl_order_3 {
  order: 3;
}
.ws_col_xxl_order_4 {
  order: 4;
}
.ws_col_xxl_order_5 {
  order: 5;
}
.ws_col_xxl_order_6 {
  order: 6;
}
.ws_col_xxl_order_7 {
  order: 7;
}
.ws_col_xxl_order_8 {
  order: 8;
}
.ws_col_xxl_order_9 {
  order: 9;
}
.ws_col_xxl_order_10 {
  order: 10;
}
.ws_col_xxl_order_11 {
  order: 11;
}
.ws_col_xxl_order_12 {
  order: 12;
}
.ws_col_xxl_12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.ws_col_xxl_11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.ws_col_xxl_10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.ws_col_xxl_9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.ws_col_xxl_8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.ws_col_xxl_7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.ws_col_xxl_6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.ws_col_xxl_5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.ws_col_xxl_4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.ws_col_xxl_3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.ws_col_xxl_2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.ws_col_xxl_1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
@media (max-width: 1440px) {
  .ws_col_ml_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1366px) {
  .ws_col_xl_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1024px) {
  .ws_col_lg_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 980px) {
  .ws_col_md_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 800px) {
  .ws_col_cd_800_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 768px) {
  .ws_col_sm_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 575px) {
  .ws_col_xs_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 480px) {
  .ws_col_xxs_20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1440px) {
  .ws_col_ml_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_ml_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_ml_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_ml_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_ml_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_ml_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_ml_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_ml_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_ml_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_ml_order_1 {
    order: 1;
  }
  .ws_col_ml_order_2 {
    order: 2;
  }
  .ws_col_ml_order_3 {
    order: 3;
  }
  .ws_col_ml_order_4 {
    order: 4;
  }
  .ws_col_ml_order_5 {
    order: 5;
  }
  .ws_col_ml_order_6 {
    order: 6;
  }
  .ws_col_ml_order_7 {
    order: 7;
  }
  .ws_col_ml_order_8 {
    order: 8;
  }
  .ws_col_ml_order_9 {
    order: 9;
  }
  .ws_col_ml_order_10 {
    order: 10;
  }
  .ws_col_ml_order_11 {
    order: 11;
  }
  .ws_col_ml_order_12 {
    order: 12;
  }
  .ws_col_ml_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_ml_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_ml_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_ml_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_ml_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_ml_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_ml_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_ml_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_ml_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_ml_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_ml_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_ml_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 1366px) {
  .ws_col_xl_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_xl_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_xl_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_xl_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xl_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xl_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_xl_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_xl_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_xl_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_xl_order_1 {
    order: 1;
  }
  .ws_col_xl_order_2 {
    order: 2;
  }
  .ws_col_xl_order_3 {
    order: 3;
  }
  .ws_col_xl_order_4 {
    order: 4;
  }
  .ws_col_xl_order_5 {
    order: 5;
  }
  .ws_col_xl_order_6 {
    order: 6;
  }
  .ws_col_xl_order_7 {
    order: 7;
  }
  .ws_col_xl_order_8 {
    order: 8;
  }
  .ws_col_xl_order_9 {
    order: 9;
  }
  .ws_col_xl_order_10 {
    order: 10;
  }
  .ws_col_xl_order_11 {
    order: 11;
  }
  .ws_col_xl_order_12 {
    order: 12;
  }
  .ws_col_xl_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_xl_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_xl_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_xl_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_xl_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_xl_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_xl_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_xl_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_xl_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_xl_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_xl_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_xl_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 1024px) {
  .ws_col_lg_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_lg_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_lg_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_lg_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_lg_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_lg_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_lg_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_lg_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_lg_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_lg_order_1 {
    order: 1;
  }
  .ws_col_lg_order_2 {
    order: 2;
  }
  .ws_col_lg_order_3 {
    order: 3;
  }
  .ws_col_lg_order_4 {
    order: 4;
  }
  .ws_col_lg_order_5 {
    order: 5;
  }
  .ws_col_lg_order_6 {
    order: 6;
  }
  .ws_col_lg_order_7 {
    order: 7;
  }
  .ws_col_lg_order_8 {
    order: 8;
  }
  .ws_col_lg_order_9 {
    order: 9;
  }
  .ws_col_lg_order_10 {
    order: 10;
  }
  .ws_col_lg_order_11 {
    order: 11;
  }
  .ws_col_lg_order_12 {
    order: 12;
  }
  .ws_col_lg_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_lg_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_lg_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_lg_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_lg_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_lg_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_lg_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_lg_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_lg_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_lg_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_lg_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_lg_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 980px) {
  .ws_col_md_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_md_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_md_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_md_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_md_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_md_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_md_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_md_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_md_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_md_order_1 {
    order: 1;
  }
  .ws_col_md_order_2 {
    order: 2;
  }
  .ws_col_md_order_3 {
    order: 3;
  }
  .ws_col_md_order_4 {
    order: 4;
  }
  .ws_col_md_order_5 {
    order: 5;
  }
  .ws_col_md_order_6 {
    order: 6;
  }
  .ws_col_md_order_7 {
    order: 7;
  }
  .ws_col_md_order_8 {
    order: 8;
  }
  .ws_col_md_order_9 {
    order: 9;
  }
  .ws_col_md_order_10 {
    order: 10;
  }
  .ws_col_md_order_11 {
    order: 11;
  }
  .ws_col_md_order_12 {
    order: 12;
  }
  .ws_col_md_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_md_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_md_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_md_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_md_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_md_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_md_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_md_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_md_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_md_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_md_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_md_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 800px) {
  .ws_col_cd_800_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_cd_800_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_cd_800_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_cd_800_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_cd_800_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_cd_800_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_cd_800_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_cd_800_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_cd_800_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_cd_800_order_1 {
    order: 1;
  }
  .ws_col_cd_800_order_2 {
    order: 2;
  }
  .ws_col_cd_800_order_3 {
    order: 3;
  }
  .ws_col_cd_800_order_4 {
    order: 4;
  }
  .ws_col_cd_800_order_5 {
    order: 5;
  }
  .ws_col_cd_800_order_6 {
    order: 6;
  }
  .ws_col_cd_800_order_7 {
    order: 7;
  }
  .ws_col_cd_800_order_8 {
    order: 8;
  }
  .ws_col_cd_800_order_9 {
    order: 9;
  }
  .ws_col_cd_800_order_10 {
    order: 10;
  }
  .ws_col_cd_800_order_11 {
    order: 11;
  }
  .ws_col_cd_800_order_12 {
    order: 12;
  }
  .ws_col_cd_800_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_cd_800_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_cd_800_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_cd_800_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_cd_800_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_cd_800_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_cd_800_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_cd_800_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_cd_800_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_cd_800_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_cd_800_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_cd_800_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 768px) {
  .ws_col_sm_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_sm_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_sm_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_sm_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_sm_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_sm_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_sm_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_sm_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_sm_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_sm_order_1 {
    order: 1;
  }
  .ws_col_sm_order_2 {
    order: 2;
  }
  .ws_col_sm_order_3 {
    order: 3;
  }
  .ws_col_sm_order_4 {
    order: 4;
  }
  .ws_col_sm_order_5 {
    order: 5;
  }
  .ws_col_sm_order_6 {
    order: 6;
  }
  .ws_col_sm_order_7 {
    order: 7;
  }
  .ws_col_sm_order_8 {
    order: 8;
  }
  .ws_col_sm_order_9 {
    order: 9;
  }
  .ws_col_sm_order_10 {
    order: 10;
  }
  .ws_col_sm_order_11 {
    order: 11;
  }
  .ws_col_sm_order_12 {
    order: 12;
  }
  .ws_col_sm_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_sm_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_sm_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_sm_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_sm_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_sm_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_sm_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_sm_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_sm_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_sm_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_sm_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_sm_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 575px) {
  .ws_col_xs_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_xs_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_xs_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_xs_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xs_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xs_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_xs_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_xs_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_xs_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_xs_order_1 {
    order: 1;
  }
  .ws_col_xs_order_2 {
    order: 2;
  }
  .ws_col_xs_order_3 {
    order: 3;
  }
  .ws_col_xs_order_4 {
    order: 4;
  }
  .ws_col_xs_order_5 {
    order: 5;
  }
  .ws_col_xs_order_6 {
    order: 6;
  }
  .ws_col_xs_order_7 {
    order: 7;
  }
  .ws_col_xs_order_8 {
    order: 8;
  }
  .ws_col_xs_order_9 {
    order: 9;
  }
  .ws_col_xs_order_10 {
    order: 10;
  }
  .ws_col_xs_order_11 {
    order: 11;
  }
  .ws_col_xs_order_12 {
    order: 12;
  }
  .ws_col_xs_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_xs_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_xs_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_xs_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_xs_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_xs_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_xs_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_xs_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_xs_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_xs_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_xs_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_xs_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (max-width: 480px) {
  .ws_col_xxs_hide {
    display: none !important;
    padding: 0px !important;
  }
  .ws_col_xxs_show {
    display: block !important;
    padding: 0px !important;
  }
  .ws_col_xxs_auto {
    flex: 0 0 auto;
    width: auto;
  }
  .ws_col_xxs_flex {
    flex: 1 1 auto;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xxs_flex_1 {
    flex: 1 0;
    width: 0px;
    max-width: 100%;
  }
  .ws_col_xxs_62 {
    flex: 0 0 62%;
    max-width: 62%;
  }
  .ws_col_xxs_70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .ws_col_xxs_38 {
    flex: 0 0 38%;
    max-width: 38%;
  }
  .ws_col_xxs_30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ws_col_xxs_order_1 {
    order: 1;
  }
  .ws_col_xxs_order_2 {
    order: 2;
  }
  .ws_col_xxs_order_3 {
    order: 3;
  }
  .ws_col_xxs_order_4 {
    order: 4;
  }
  .ws_col_xxs_order_5 {
    order: 5;
  }
  .ws_col_xxs_order_6 {
    order: 6;
  }
  .ws_col_xxs_order_7 {
    order: 7;
  }
  .ws_col_xxs_order_8 {
    order: 8;
  }
  .ws_col_xxs_order_9 {
    order: 9;
  }
  .ws_col_xxs_order_10 {
    order: 10;
  }
  .ws_col_xxs_order_11 {
    order: 11;
  }
  .ws_col_xxs_order_12 {
    order: 12;
  }
  .ws_col_xxs_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ws_col_xxs_11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ws_col_xxs_10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ws_col_xxs_9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ws_col_xxs_8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ws_col_xxs_7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ws_col_xxs_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ws_col_xxs_5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ws_col_xxs_4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ws_col_xxs_3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ws_col_xxs_2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ws_col_xxs_1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: var(--yellow-2);
}

::selection {
  color: #fff;
  background: var(--yellow-2);
}

button,
input {
  font-family: var(--font-family);
  font-style: normal;
}

.ws_container_full {
  padding: 0px 10px;
  width: 100%;
}
.ws_container {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1035px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .ws_container {
    padding: 0px 50px;
  }
}
@media only screen and (max-width: 620px) {
  .ws_container {
    padding: 0px 25px;
  }
}

.meeting .header {
  padding-top: 73px;
  padding-bottom: 40px;
  text-align: center;
}
.meeting .header .brand_icon .company_logo {
  max-width: 184px;
  max-height: 56px;
}

.meeting .footer {
  padding-top: 40px;
  padding-bottom: 47px;
}
.meeting .footer p {
  text-align: center;
  color: #999999;
  font-size: 14px;
}
.meeting .footer p a {
  display: inline-block;
  transform: translate(0px, 3px);
}
/* =================================
Default Components Styles files
===================================*/
.ws_card {
  padding: 45px 50px 45px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 34px;
  display: block;
  text-decoration: none;
  height: calc(100% - 34px);
  position: relative;
}
@media only screen and (max-width: 1560px) {
  .ws_card {
    padding: 45px 50px;
  }
}
@media only screen and (max-width: 1440px) {
  .ws_card {
    padding: 35px 45px;
  }
}
@media only screen and (max-width: 1170px) {
  .ws_card {
    padding: 30px 35px;
  }
}
@media only screen and (max-width: 768px) {
  .ws_card {
    padding: 35px 30px;
    margin-bottom: 25px;
    height: calc(100% - 25px);
  }
}
@media only screen and (max-width: 475px) {
  .ws_card {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 575px) {
  .ws_card {
    height: auto;
  }
}
.ws_card h4 {
  font-size: 20px;
  line-height: 31px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1366px) {
  .ws_card h4 {
    line-height: 28px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .ws_card h4 {
    font-size: 17px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 320px) {
  .ws_card h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.ws_card_details h4 {
  padding-right: 40px;
}
@media (max-width: 768.75px) {
  .ws_card_details h4 {
    padding-right: 0px;
  }
}
.ws_card p.sub {
  margin-bottom: 22px;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  font-weight: 400;
}
.ws_card p.referral_sub, .ws_card p.email_sub, .ws_card p.notification_sub {
  margin-bottom: 26px;
}
.ws_card_header.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ws_card_header.mb-40 {
    margin-bottom: 20px;
  }
}
.ws_card_header.mb-40 h4 {
  margin-bottom: 0;
}
.ws_card_header .float_button {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
@media only screen and (max-width: 800px) {
  .ws_card_header .float_button {
    top: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .ws_card_header .float_button {
    top: 10px;
    right: 10px;
  }
}
.ws_card_header .header_action > :last-child {
  margin-right: 0;
}
.ws_card_header .header_action > * {
  margin-right: 15px;
}
.ws_card_body {
  margin-bottom: 21px;
}
.ws_card_body p {
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  margin-bottom: 18px;
}
.ws_card_body .form_group {
  flex-wrap: wrap;
}
.ws_card_body .form_group label.error {
  flex: 0 0 100%;
  margin-top: 5px;
}
.ws_card_body .form_group .custom-inputfile {
  position: relative;
  display: block;
  width: 100%;
}
.ws_card_body .form_group .custom-inputfile svg {
  position: absolute;
  top: 11px;
  left: 17px;
  color: #bdbdbd;
  width: 20px;
  height: 20px;
}
.ws_card_body .form_group .custom-inputfile input[type=file] {
  opacity: 0;
  z-index: 9;
}
.ws_card_body .form_group .custom-inputfile .csv-format {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 15px;
}
.ws_card_body .form_group .custom-inputfile .attach-csv {
  width: 100%;
  border: 1px dashed #999999;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  position: absolute;
  top: 0px;
  z-index: 0;
  pointer-events: none;
  border-radius: 3px;
}
.ws_card_body .form_group .custom-inputfile .attach-csv span {
  color: #999999;
  font-size: 15px;
  line-height: normal;
}
.ws_card_body .form_group .ws-sumbitgroup {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ws_card_body .form_group .ws-sumbitgroup .ws-coonectgmail {
  width: 100%;
  position: relative;
  margin: 0 0 16px;
}
.ws_card_body .form_group .ws-sumbitgroup .ws-coonectgmail .fixed-input {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
}
.ws_card_body .form_group .ws-sumbitgroup .ws-coonectgmail label.error {
  position: relative;
}
.ws_card_body .form_group .ws-sumbitgroup .ws-coonectgmail .name-field {
  padding-right: 250px;
}
.ws_card_body .form_group .ws-sumbitgroup .ws_updatebtn .ws_btn {
  width: 120px;
  margin-left: 0px;
  padding: 0;
}
.ws_card_body .form_group .ws-sumbitgroup .ws_updatebtn .ws_btn svg {
  width: 20px;
  height: 20px;
  margin: 0;
}
.ws_card_body .form_action .ws_btn {
  min-width: 205px;
  margin: 0 auto;
  width: auto;
}
.ws_card_body_action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ws_card_body_action .ws_btn {
  min-width: 205px;
  width: auto;
}
.ws_card_action {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 17px;
}
.ws_card_action .ws_btn {
  min-width: 140px;
  width: auto;
  margin-left: 16px;
}
.ws_card_action .ws_btn:first-child {
  margin-left: 0px;
}
@media only screen and (max-width: 475px) {
  .ws_card_action .ws_btn {
    min-width: 120px;
    margin-bottom: 10px;
  }
}
.ws_card_action.save_next .ws_btn {
  min-width: 175px;
}
@media (max-width: 475px) {
  .ws_card_action.save_next .ws_btn {
    min-width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.ws_card_action.save_next #tooltip:hover .tooltiptext {
  visibility: hidden;
}
.ws_card_action.save_next #tooltip:hover .ws_btn.disabled + .tooltiptext {
  visibility: visible;
}
.ws_card_controls .ws_card_body {
  padding-bottom: 31px;
  margin-bottom: 42px;
}
@media only screen and (max-width: 575px) {
  .ws_card_controls .ws_card_body {
    margin-bottom: 60px;
  }
}
.ws_card_controls .ws_card_body p:last-of-type {
  margin-bottom: 0px !important;
}
.ws_card_controls .form_action {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 0px 60px 60px;
  margin-top: 0px !important;
  z-index: 1;
}
@media only screen and (max-width: 1366px) {
  .ws_card_controls .form_action {
    padding: 0px 50px 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .ws_card_controls .form_action {
    padding: 0px 40px 35px;
  }
}
.ws_card_2 {
  padding: 35px 45px 35px;
}
@media only screen and (max-width: 475px) {
  .ws_card_2 {
    padding: 30px;
  }
}
.ws_card_full_body {
  padding: 45px 35px;
}
.ws_card_content {
  margin-top: 26px;
}
.ws_card_auto {
  height: auto;
}
.ws_card_auto .ws_card_body {
  margin-bottom: 0px;
  margin-top: 36px;
}
.ws_card_auto .ws_card_body.half_space {
  margin-top: 15px;
}
@media only screen and (max-width: 1366px) {
  .ws_card_auto .ws_card_body {
    margin-top: 25px;
  }
}
.ws_card_auto_2 .ws_card_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ws_card_auto_2 .ws_card_body {
  margin-top: 20px;
}
.ws_card.email_card .plan_type {
  margin-bottom: 32px;
}
.ws_card.email_card .plan_type .ws_btn {
  font-size: 16px;
}
.ws_card.notification_preferences .accordion_header button {
  padding: 0px;
}
.ws_card.notification_preferences .accordion_header button h4 {
  margin-bottom: 0px;
  line-height: normal;
}
.ws_card.notification_preferences .ws_card_body {
  padding-top: 35px;
  min-height: auto;
}
.ws_card_active_lead {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
}
.ws_card_active_lead .active_lead {
  text-align: center;
  max-width: 290px;
}
.ws_card_active_lead .active_lead h4 {
  margin-bottom: 12px;
}
.ws_card_active_lead .active_lead p {
  margin-bottom: 22px;
}
.ws_card_active_lead .active_lead .ws_btn {
  font-weight: 400;
  max-width: 236px;
  margin: 0 auto;
}
.ws_card_no {
  padding: 0px !important;
  box-shadow: none;
  background: transparent;
  margin: 0px;
}
.ws_card_3 {
  padding: 0px;
}
.ws_card_3 .ws_card_header {
  padding: 40px 50px;
}
@media only screen and (max-width: 420px) {
  .ws_card_3 .ws_card_header {
    padding: 20px 25px;
  }
}
.ws_card_3 .ws_card_body {
  padding: 40px 50px;
  margin-top: 0px;
  background-color: #F7F7F7;
  min-height: 612px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 420px) {
  .ws_card_3 .ws_card_body {
    padding: 20px 25px;
  }
}
.ws_card_view_template .ws_card_header {
  margin-bottom: 40px;
  padding: 0;
}
.ws_card_view_template .ws_card_body {
  background-color: #ffffff;
}
.ws_card_form {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  padding: 50px 100px;
}
@media only screen and (max-width: 575px) {
  .ws_card_form {
    padding: 0px;
  }
}
.ws_card_form .form_group .form-control {
  background: transparent;
}
.ws_card_form .ws .form_check, .ws_card_form .ws .form_radio {
  display: inline-flex;
}
.ws_card_form .ws .form_check input[type=radio],
.ws_card_form .ws .form_check input[type=checkbox], .ws_card_form .ws .form_radio input[type=radio],
.ws_card_form .ws .form_radio input[type=checkbox] {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.ws_card_form .ws .form_check input[type=radio] + label,
.ws_card_form .ws .form_check input[type=checkbox] + label, .ws_card_form .ws .form_radio input[type=radio] + label,
.ws_card_form .ws .form_radio input[type=checkbox] + label {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.ws_card_form .ws .form_check input[type=radio] + label .checkbox,
.ws_card_form .ws .form_check input[type=checkbox] + label .checkbox, .ws_card_form .ws .form_radio input[type=radio] + label .checkbox,
.ws_card_form .ws .form_radio input[type=checkbox] + label .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 17px;
  height: 17px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.ws_card_form .ws .form_check input[type=radio] + label .checkbox svg,
.ws_card_form .ws .form_check input[type=checkbox] + label .checkbox svg, .ws_card_form .ws .form_radio input[type=radio] + label .checkbox svg,
.ws_card_form .ws .form_radio input[type=checkbox] + label .checkbox svg {
  width: 75%;
  height: 75%;
  display: block;
  stroke: #000;
  opacity: 0;
  transition: all 0.3s ease;
}
.ws_card_form .ws .form_check input[type=radio]:checked + label .checkbox,
.ws_card_form .ws .form_check input[type=checkbox]:checked + label .checkbox, .ws_card_form .ws .form_radio input[type=radio]:checked + label .checkbox,
.ws_card_form .ws .form_radio input[type=checkbox]:checked + label .checkbox {
  border-color: #f7de03;
  background-color: #f7de03;
}
.ws_card_form .ws .form_check input[type=radio]:checked + label .checkbox svg,
.ws_card_form .ws .form_check input[type=checkbox]:checked + label .checkbox svg, .ws_card_form .ws .form_radio input[type=radio]:checked + label .checkbox svg,
.ws_card_form .ws .form_radio input[type=checkbox]:checked + label .checkbox svg {
  opacity: 1;
}
.ws_card_full {
  padding: 0px;
}
.ws_card_full .ws_card_header {
  padding: 57px 60px 60px;
}
@media only screen and (max-width: 768px) {
  .ws_card_full .ws_card_header {
    padding: 35px 35px 20px;
  }
}
.ws_card_full .ws_card_body {
  margin-top: 0px;
}
.ws_card_4 .ws_card_body {
  padding: 0px;
  justify-content: flex-start;
  align-items: flex-start;
}
.ws_card_4 .ws_card_body .contract-content {
  overflow: auto;
  width: 100%;
  background-color: #fff;
}
.ws_card_5 {
  padding: 30px;
}
.ws_card_border {
  background-color: transparent;
  border: 1px dashed #BDBDBD;
  box-shadow: none;
}
.ws_card_top_action {
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 1;
}
.ws_card_top_action .ws_btn,
.ws_card_top_action a {
  display: block;
  margin-bottom: 0px;
}
.ws_card_top_action .ws_btn svg,
.ws_card_top_action a svg {
  display: block;
  margin-bottom: 0px;
}
.ws_card_header .header_action select {
  min-width: 170px;
  border-color: #000;
  text-align: center;
  color: #000;
  border-radius: 42px;
}
.ws_card_header .header_action select.select-align {
  text-align: left;
}
.ws_card_header .header_action select.border-none {
  border: none;
}
@media only screen and (max-width: 420px) {
  .ws_card_header .form_group {
    margin-top: 20px;
  }
}
.ws_card_referral .spacer {
  height: 80px;
}
.ws_card_referral.referral_data .referral_sub {
  min-height: 60px;
}
.ws_card_referral.referral_data .ws_card_body h2 {
  font-weight: 400;
  font-family: var(--font-family-2);
  font-size: 64px;
  line-height: 69px;
}
@media only screen and (max-width: 475px) {
  .ws_card_referral.referral_data .ws_card_body h2 {
    font-size: 54px;
    line-height: 59px;
  }
}
@media only screen and (max-width: 1170px) {
  .ws_card_referral .ws_form_col_6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.ws_card.ui_kit {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.ws_card.ui_kit .half {
  width: 50%;
}
.ws_card.ui_kit .image {
  flex: 0 0 auto;
  width: auto;
  padding-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws_card.ui_kit .image img {
  max-width: 100%;
}
.ws_card.ui_kit .content {
  flex: 1 0;
  max-width: 100%;
  padding-left: 60px;
}
@media only screen and (max-width: 1280px) {
  .ws_card.ui_kit .content {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1170px) {
  .ws_card.ui_kit .content {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 420px) {
  .ws_card.ui_kit .content {
    flex: 0 0 100%;
    padding-left: 0px;
    padding-top: 25px;
  }
}
.ws_card.ui_kit .content p {
  margin-bottom: 23px !important;
}
.ws_card.ui_kit .content .ws_btn {
  width: auto;
  min-width: 150px;
  display: inline-flex;
}
.ws_card.ui_kit .hide {
  overflow: hidden;
}

.download_action {
  text-align: left;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 50px;
}
.download_action .ws_btn {
  display: inline-flex;
}
.download_action .download_view .logo {
  margin-top: 25px;
  margin-bottom: 35px;
}
.download_action .download_view .logo img {
  max-width: 180px;
  max-height: 80px;
}
.download_action .download_view .title h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: var(--font-family-2);
}
.download_action .download_view .title p {
  margin-bottom: 0px;
  font-size: 12px;
}
.download_action .download_view .action_btn {
  margin-top: 25px;
}

.ws_color_link {
  color: var(--yellow-2);
  text-decoration: underline;
}
.ws_color_link.blue {
  color: #102fea;
}
.ws_btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: auto;
  min-height: 50px;
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #000000;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}
@media only screen and (max-width: 1366px) {
  .ws_btn {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 475px) {
  .ws_btn {
    padding: 0px 15px;
    font-size: 14px;
  }
}
.ws_btn .plane,
.ws_btn .hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.ws_btn .plane {
  position: unset;
}
.ws_btn .plane svg {
  color: currentColor;
}
.ws_btn .plane .path path {
  fill: currentColor;
  stroke-width: 0px;
  stroke: transparent;
}
.ws_btn .hover {
  top: 100%;
  color: #fff;
}
.ws_btn .hover .path path {
  fill: currentColor;
  stroke-width: 0px;
  stroke: transparent;
}
.ws_btn .copy_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  position: absolute;
}
.ws_btn svg,
.ws_btn img {
  height: 16px;
  width: 16px;
  margin-left: 10px;
}
.ws_btn svg.keyboard,
.ws_btn img.keyboard {
  stroke: none;
}
.ws_btn.active, .ws_btn:hover {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
}
.ws_btn.active svg, .ws_btn:hover svg {
  color: #fff;
}
.ws_btn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
}
.ws_btn:hover svg {
  color: #fff;
}
.ws_btn_rounded {
  border-radius: 10px;
}
.ws_btn-lg {
  min-height: 60px;
}
.ws_btn.copied .hover,
.ws_btn.copied .plane {
  opacity: 0;
  transform: scale(0);
}
.ws_btn.copied .copy_box {
  opacity: 1;
  transform: scale(1);
}
.ws_btn_sm {
  min-height: 42px;
}
.ws_btn_xs {
  min-height: 36px;
}
.ws_btn_xxs {
  min-height: 30px;
}
.ws_btn_xxs_2 {
  font-size: 14px;
  padding: 0px 15px;
}
.ws_btn_black {
  background-color: #000000;
  color: #ffffff;
}
.ws_btn_black svg {
  color: currentColor;
}
.ws_btn_yellow {
  background-color: var(--yellow-2);
  color: #fff;
  border: none;
}
.ws_btn_plane {
  background-color: transparent;
  color: #999999;
}
.ws_btn_plane:hover {
  cursor: pointer;
  background-color: #000000;
  color: #fff;
}
.ws_btn_transparent {
  background-color: transparent;
  color: #000000;
  border: none;
  padding: 0px;
  font-size: 14px;
  min-width: unset !important;
}
.ws_btn_transparent svg {
  color: var(--yellow-2);
}
.ws_btn_transparent .hover {
  color: #000000;
}
.ws_btn_transparent:hover {
  background-color: transparent;
  transform: translateY(-4px);
  box-shadow: none;
  color: #000000;
}
.ws_btn_transparent:hover svg {
  color: var(--yellow-2);
}
.ws_btn_transparent.ws_icon_black svg {
  color: #000;
}
.ws_btn_transparent_grey {
  color: #999999;
}
.ws_btn_transparent_grey svg {
  color: inherit !important;
  margin-bottom: -1px;
}
.ws_btn_transparent_grey_big {
  font-size: 16px;
}
.ws_btn_transparent_grey_big svg {
  width: 18px;
  height: 18px;
  margin-bottom: -1px;
}
.ws_btn_transparent_grey:hover {
  transform: unset;
  color: #000000;
}
.ws_btn_auto {
  width: auto;
  min-width: 88px;
}
.ws_btn_200 {
  min-width: 200px;
}
.ws_btn_left {
  text-align: left;
}
.ws_btn_border {
  border-radius: 3px;
  border: 1px solid #e0e0e0;
}
.ws_btn_border:hover {
  border-color: var(--yellow-2);
}
.ws_btn_icon {
  height: 30px;
  width: 30px;
  min-height: unset;
  padding: 0;
  color: #999999;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.ws_btn_icon.active, .ws_btn_icon:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_left svg,
.ws_btn_icon_left img {
  margin-left: 0px;
  margin-right: 10px;
}
.ws_btn_icon_left svg.zoom,
.ws_btn_icon_left img.zoom {
  width: auto;
  height: 24px;
}
.ws_btn_icon_left svg.feather-check,
.ws_btn_icon_left img.feather-check {
  margin-left: 10px;
  margin-right: 0px;
}
.ws_btn_icon svg,
.ws_btn_icon img {
  margin-left: 0px;
  transition: all 0.3s ease;
}
.ws_btn_icon:hover {
  background-color: transparent !important;
  color: var(--workspace-color);
}
.ws_btn_icon:hover svg {
  color: inherit;
}
.ws_btn_icon_black {
  background-color: #000000;
}
.ws_btn_icon_black.active, .ws_btn_icon_black:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_black svg {
  color: #fff;
}
.ws_btn_icon_black:hover {
  background-color: #000000 !important;
}
.ws_btn_icon_black:hover svg {
  color: #fff !important;
}
.ws_btn_icon_lg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  min-height: 42px;
}
.ws_btn_icon_lg.active, .ws_btn_icon_lg:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_xl {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  min-height: 60px;
}
.ws_btn_icon_xl.active, .ws_btn_icon_xl:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_xl svg {
  width: 20px;
  height: 20px;
}
.ws_btn_icon_md {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  min-height: 32px;
}
.ws_btn_icon_md.active, .ws_btn_icon_md:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_md svg {
  width: 20px;
  height: 20px;
}
.ws_btn_icon_color.active, .ws_btn_icon_color:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_color svg {
  color: var(--workspace-color);
}
.ws_btn_icon_color .plane svg {
  color: var(--workspace-color);
}
.ws_btn_icon_color:hover svg {
  color: #000000;
}
.ws_btn_icon_big {
  width: 42px;
  height: 42px;
}
.ws_btn_icon_big.active, .ws_btn_icon_big:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_icon_big svg {
  width: 24px;
  height: 24px;
}
.ws_btn_icon_big_2 svg {
  width: 20px;
  height: 20px;
}
.ws_btn_select {
  border: none;
}
.ws_btn_select input[type=radio] {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.ws_btn_select input[type=radio] + label {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
}
.ws_btn_select input[type=radio] + label.active, .ws_btn_select input[type=radio] + label:hover {
  transform: unset;
  box-shadow: none;
}
.ws_btn_select input[type=radio] + label .unchecked,
.ws_btn_select input[type=radio] + label .checked {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.ws_btn_select input[type=radio] + label .unchecked {
  top: 0;
}
.ws_btn_select input[type=radio] + label .checked {
  top: 100%;
}
.ws_btn_select input[type=radio] + label .checked svg {
  display: block;
  color: var(--yellow-2);
}
.ws_btn_select input[type=radio]:checked + label {
  background-color: #000000;
  color: #fff;
}
.ws_btn_select input[type=radio]:checked + label .unchecked {
  top: -100%;
}
.ws_btn_select input[type=radio]:checked + label .checked {
  top: 0;
}
.ws_btn_select input[type=radio]:checked + label.ws_btn_plane span {
  color: var(--workspace-color);
}
.ws_btn_select_2 input[type=radio] + label {
  position: relative;
  font-size: 14px !important;
}
@media only screen and (max-width: 1559px) {
  .ws_btn_select_2 input[type=radio] + label {
    padding: 0px 15px;
  }
}
@media only screen and (max-width: 575px) {
  .ws_btn_select_2 input[type=radio] + label {
    padding: 0px 10px;
  }
}
.ws_btn_select_2 input[type=radio] + label svg {
  position: absolute;
  top: calc(50% - 7px);
  right: 30px;
  opacity: 0;
  display: none;
}
@media only screen and (max-width: 1559px) {
  .ws_btn_select_2 input[type=radio] + label svg {
    right: 20px;
  }
}
.ws_btn_select_2 input[type=radio]:checked + label {
  background-color: #000000;
  color: #fff;
  padding: 0px 20px;
}
@media only screen and (max-width: 1559px) {
  .ws_btn_select_2 input[type=radio]:checked + label {
    padding: 0px 20px;
  }
}
.ws_btn_select_2 input[type=radio]:checked + label svg {
  opacity: 1;
  color: var(--yellow-2);
}
.ws_btn_big {
  min-height: 70px;
  padding: 0px 40px;
  justify-content: flex-start;
  font-size: 13px;
  border-radius: 10px;
  font-weight: 400;
  border: none;
}
@media only screen and (max-width: 1560px) {
  .ws_btn_big {
    padding: 0px 30px;
  }
}
@media only screen and (max-width: 1440px) {
  .ws_btn_big {
    padding: 0px 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .ws_btn_big {
    padding: 0px 20px;
  }
}
.ws_btn_big svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-left: 0px;
}
.ws_btn_big svg.flip-x {
  transform: rotateY(180deg);
}
.ws_btn_big svg.feather-arrow-right, .ws_btn_big svg.feather-chevron-down {
  margin-left: auto;
  margin-right: 0px;
  width: 16px;
  height: 16px;
}
.ws_btn_big svg.purposal path {
  stroke: none;
  fill: var(--yellow-2);
}
.ws_btn_grey {
  border: none;
  background-color: #f7f7f7;
}
.ws_btn_white {
  background-color: #fff;
  color: #000000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.ws_btn_white svg {
  color: var(--yellow-2) !important;
}
.ws_btn_white svg.purposal path, .ws_btn_white svg.proposal path {
  stroke: none;
  fill: var(--yellow-2) !important;
}
.ws_btn_white:hover {
  background-color: #fff;
  color: #000000;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.12);
}
.ws_btn.pile {
  border-radius: 50px;
}
.ws_btn.pile_small {
  min-height: 30px;
  font-size: 11px;
  line-height: 20px;
}
.ws_btn_inline {
  display: inline-flex;
}
.ws_btn.ws_btn_width_auto {
  width: auto;
}
.ws_btn_group .ml_0 {
  margin-left: 0 !important;
}
.ws_btn_group .ws_btn {
  margin-left: 16px;
}
.ws_btn_group .ws_btn:first-child {
  margin-left: 0;
}
.ws_btn_group .ws_btn_icon {
  margin-left: 16px;
}
.ws_btn_group .ws_btn_icon:first-child {
  margin-left: 0;
}

.recurring_invoice {
  padding: 4px 15px 7px;
  text-align: center;
}

.ws_status {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.ws_status .status_btn {
  min-width: 84px;
  height: 24px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  text-decoration: none;
  font-size: 11px;
  line-height: 20px;
}
.ws_status .status_btn svg {
  width: 14px;
  height: 14px;
  margin-left: 5px;
}
.ws_status .status_btn.new, .ws_status .status_btn.outstanding, .ws_status .status_btn.active, .ws_status .status_btn.proposal, .ws_status .status_btn.client, .ws_status .status_btn.referral, .ws_status .status_btn.video {
  background: var(--workspace-color);
  color: #ffffff;
}
.ws_status .status_btn.grey.proposal {
  background: #E0E0E0;
  color: #000000;
}
.ws_status .status_btn.pending {
  background: #a7a7a7;
  color: #ffffff;
}
.ws_status .status_btn.client {
  background: #505050;
  color: #ffffff;
}
.ws_status .status_btn.followup, .ws_status .status_btn.documents, .ws_status .status_btn.inactive, .ws_status .status_btn.contract, .ws_status .status_btn.documents, .ws_status .status_btn.paid {
  background: #F7F7F7;
  color: #000000;
}
.ws_status .status_btn.light_grey_other {
  background: #F7F7F7;
  color: #333333;
}
.ws_status .status_btn.consultation, .ws_status .status_btn.form, .ws_status .status_btn.new_form, .ws_status .status_btn.scheduled {
  background: #999999;
  color: #ffffff;
}
.ws_status .status_btn.archived_black {
  background: #000000;
  color: #ffffff;
}
.ws_status .status_btn.archived, .ws_status .status_btn.archive, .ws_status .status_btn.expired, .ws_status .status_btn.past_due, .ws_status .status_btn.sent {
  background: #4f4f4f;
  color: #ffffff;
}
.ws_status .status_btn.converted {
  background: #e3e3e3;
  color: #4f4f4f;
}
.ws_status .status_btn.other, .ws_status .status_btn.meetings, .ws_status .status_btn.complete, .ws_status .status_btn.meetings, .ws_status .status_btn.rejected, .ws_status .status_btn.declined, .ws_status .status_btn.overdue, .ws_status .status_btn.voided {
  background: #bdbdbd;
  color: #ffffff;
}
.ws_status .status_btn.projects, .ws_status .status_btn.accepted, .ws_status .status_btn.signed, .ws_status .status_btn.submitted, .ws_status .status_btn.viewed, .ws_status .status_btn.invoice, .ws_status .status_btn.lead, .ws_status .status_btn.projects, .ws_status .status_btn.trial, .ws_status .status_btn.received, .ws_status .status_btn.phone {
  background: #E0E0E0;
  color: #000000;
}

.ws_status {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.ws ul.status_list {
  list-style-type: none;
  margin-bottom: 33px;
  padding: 0;
}
.ws ul.status_list li {
  padding-left: 23px;
  margin-bottom: 13px;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
}
.ws ul.status_list li:last-child {
  margin-bottom: 0;
}
.ws ul.status_list li svg {
  color: var(--yellow-2);
}
.ws ul.status_list li svg.feather-check {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}
.ws ul.status_list li svg.feather-calendar {
  width: 14px;
  height: 14px;
}
.ws ul.status_list li #tooltip {
  margin-bottom: -3px;
  margin-left: 5px;
}
.ws ul.status_list li #tooltip svg {
  color: var(--yellow-2);
}
.ws ul.status_list li #tooltip .tooltiptext {
  padding: 7px 15px;
  width: 265px;
}
.ws ul.status_list li #tooltip .tooltiptext p {
  text-align: center;
}
.ws ul.status_list li.checked {
  color: #000000;
  display: flex;
  align-items: center;
}
.ws ul.status_list li.checked > svg {
  transform: translate(0px, -50%);
}
.ws ul.status_list li.checked svg {
  opacity: 1;
}
.ws ul.status_list li.checked .ws_btn {
  display: inline-flex;
}
.ws ul.status_list_2 li svg {
  position: unset;
  margin-bottom: 9px;
}

.ws_form {
  margin: 50px 0px 90px;
}
@media only screen and (max-width: 620px) {
  .ws_form {
    margin-top: 0;
  }
}
.ws_form_header {
  margin-bottom: 40px;
}
.ws_form_header .form_icon {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  margin: 0 auto 35px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--yellow-2);
}
.ws_form_header .form_icon img {
  display: block;
  margin: 0 auto;
}
.ws_form_header h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 41px;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 620px) {
  .ws_form_header h2 {
    font-size: 34px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 320px) {
  .ws_form_header h2 {
    font-size: 30px;
  }
}
.ws_form_header h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 39px;
  color: #999999;
  text-align: center;
}
@media only screen and (max-width: 620px) {
  .ws_form_header h4 {
    font-size: 20px;
    line-height: 41px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 320px) {
  .ws_form_header h4 {
    font-size: 18px;
    line-height: 34px;
  }
}
.ws_form_body_small {
  width: 100%;
  max-width: 492px;
  margin: 0 auto;
}
.ws_form_row {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 620px) {
  .ws_form_row {
    margin-left: -3px;
    margin-right: -3px;
  }
}
.ws_form_space_between {
  justify-content: space-between;
}
.ws_form_col_12 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_12 {
    padding: 0 3px;
  }
}
.ws_form_col_11 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_11 {
    padding: 0 3px;
  }
}
.ws_form_col_10 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_10 {
    padding: 0 3px;
  }
}
.ws_form_col_9 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_9 {
    padding: 0 3px;
  }
}
.ws_form_col_8 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_8 {
    padding: 0 3px;
  }
}
.ws_form_col_7 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_7 {
    padding: 0 3px;
  }
}
.ws_form_col_6 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_6 {
    padding: 0 3px;
  }
}
.ws_form_col_5 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_5 {
    padding: 0 3px;
  }
}
.ws_form_col_4 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_4 {
    padding: 0 3px;
  }
}
.ws_form_col_3 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_3 {
    padding: 0 3px;
  }
}
.ws_form_col_2 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_2 {
    padding: 0 3px;
  }
}
.ws_form_col_1 {
  padding: 0 10px;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_1 {
    padding: 0 3px;
  }
}
.ws_form_col_12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.ws_form_col_10 {
  flex: 0 0 83.3%;
  max-width: 83.3%;
}
.ws_form_col_9 {
  flex: 0 0 74.97%;
  max-width: 74.97%;
}
.ws_form_col_8 {
  flex: 0 0 66.64%;
  max-width: 66.64%;
}
.ws_form_col_6 {
  flex: 0 0 50%;
  max-width: 50%;
}
@media only screen and (max-width: 620px) {
  .ws_form_col_6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ws_form_col_5 {
  flex: 0 0 41.66%;
  max-width: 41.66%;
}
.ws_form_col_4 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.ws_form_col_3 {
  flex: 0 0 24.99%;
  max-width: 24.99%;
}
.ws_form_col_2 {
  flex: 0 0 16.66%;
  max-width: 16.66%;
}
.ws_form_col_1 {
  flex: 0 0 8.33%;
  max-width: 8.33%;
}
.ws_form .alert {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  border-radius: 3px;
  border: 1px solid transparent;
}
.ws_form .alert strong {
  font-weight: 100;
}
.ws_form .alert .alert-success {
  color: #4e864d;
  background: #b6e2a8;
  border-color: #94c593;
}

.form_group {
  margin-bottom: 21px;
}
.form_group label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 11px;
  display: block;
}
@media only screen and (max-width: 1280px) {
  .form_group label {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
  }
}
.form_group label.with_check {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 620px) {
  .form_group label.with_check {
    align-items: flex-start;
    flex-wrap: nowrap;
    padding-right: 36px;
  }
}
.form_group label.with_check .form_check {
  margin-left: 15px;
}
.form_group label.with_check.required .form_check {
  margin-left: 50px;
}
.form_group label.with_check.required .form_check .check_label {
  font-size: 12px;
}
.form_group label.label_btn {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.form_group label.label_btn .ws_btn {
  min-height: unset;
  height: unset;
  font-size: 16px;
  width: 20px;
}
.form_group label.template-name {
  font-weight: 600;
  word-break: break-all;
}
.form_group .label-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.form_group .label-group label {
  margin-bottom: 0;
}
.form_group .label-group .label-actions {
  margin-right: 0;
  margin-left: auto;
}
.form_group .label-group .label-actions .button-reset {
  width: 16px;
  height: 16px;
  color: #bdbdbd;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
}
.form_group .label-group .label-actions .button-reset svg {
  display: block;
}
.form_group .help_text {
  font-size: 14px;
  color: #999;
}
.form_group canvas#sig-canvas {
  border-radius: 0px;
}
.form_group .tool_tip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.form_group .tool_tip label {
  flex: 1 1 auto;
  max-width: 100%;
}
.form_group .tool_tip #tooltip {
  flex: 0 0 auto;
  width: auto;
}
.form_group .tool_tip #tooltip svg {
  display: block;
}
.form_group .with_button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_group .with_button .label_btn {
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  min-height: 25px;
  max-width: 145px;
  padding: 0px;
}
@media only screen and (max-width: 380px) {
  .form_group .with_button .label_btn {
    margin-bottom: 10px;
  }
}
.form_group .currencyinput {
  position: relative;
}
.form_group .currencyinput .icon {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 13px;
}
.form_group .currencyinput input {
  padding-left: 45px !important;
}
.form_group .currencyinput input.error {
  border-color: red;
}
.form_group .chosen-container .chosen-single,
.form_group .chosen-container.chosen-container-multi .chosen-choices,
.form_group .select2-container--default .select2-selection,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field,
.form_group .vsb-main button,
.form_group .form_control,
.form_group input[type=color],
.form_group input[type=date],
.form_group input[type=datetime-local],
.form_group input[type=email],
.form_group input[type=file],
.form_group input[type=image],
.form_group input[type=month],
.form_group input[type=number],
.form_group input[type=password],
.form_group input[type=search],
.form_group input[type=tel],
.form_group input[type=text],
.form_group input[type=time],
.form_group input[type=url],
.form_group input[type=week],
.form_group input[type=search],
.form_group textarea,
.form_group select {
  font-family: var(--font-family);
  padding: 9px 15px 9px 15px;
  min-height: 42px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  display: block;
  width: 100%;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 0px rgba(247, 222, 3, 0.05);
  resize: none;
}
@media only screen and (max-width: 620px) {
  .form_group .chosen-container .chosen-single,
  .form_group .chosen-container.chosen-container-multi .chosen-choices,
  .form_group .select2-container--default .select2-selection,
  .form_group .select2-container--default .select2-search--dropdown .select2-search__field,
  .form_group .vsb-main button,
  .form_group .form_control,
  .form_group input[type=color],
  .form_group input[type=date],
  .form_group input[type=datetime-local],
  .form_group input[type=email],
  .form_group input[type=file],
  .form_group input[type=image],
  .form_group input[type=month],
  .form_group input[type=number],
  .form_group input[type=password],
  .form_group input[type=search],
  .form_group input[type=tel],
  .form_group input[type=text],
  .form_group input[type=time],
  .form_group input[type=url],
  .form_group input[type=week],
  .form_group input[type=search],
  .form_group textarea,
  .form_group select {
    padding: 10px 10px 10px 13px;
  }
}
.form_group .chosen-container .chosen-single::-moz-placeholder, .form_group .chosen-container.chosen-container-multi .chosen-choices::-moz-placeholder, .form_group .select2-container--default .select2-selection::-moz-placeholder, .form_group .select2-container--default .select2-search--dropdown .select2-search__field::-moz-placeholder, .form_group .vsb-main button::-moz-placeholder, .form_group .form_control::-moz-placeholder, .form_group input[type=color]::-moz-placeholder, .form_group input[type=date]::-moz-placeholder, .form_group input[type=datetime-local]::-moz-placeholder, .form_group input[type=email]::-moz-placeholder, .form_group input[type=file]::-moz-placeholder, .form_group input[type=image]::-moz-placeholder, .form_group input[type=month]::-moz-placeholder, .form_group input[type=number]::-moz-placeholder, .form_group input[type=password]::-moz-placeholder, .form_group input[type=search]::-moz-placeholder, .form_group input[type=tel]::-moz-placeholder, .form_group input[type=text]::-moz-placeholder, .form_group input[type=time]::-moz-placeholder, .form_group input[type=url]::-moz-placeholder, .form_group input[type=week]::-moz-placeholder, .form_group input[type=search]::-moz-placeholder, .form_group textarea::-moz-placeholder, .form_group select::-moz-placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single::placeholder,
.form_group .chosen-container.chosen-container-multi .chosen-choices::placeholder,
.form_group .select2-container--default .select2-selection::placeholder,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field::placeholder,
.form_group .vsb-main button::placeholder,
.form_group .form_control::placeholder,
.form_group input[type=color]::placeholder,
.form_group input[type=date]::placeholder,
.form_group input[type=datetime-local]::placeholder,
.form_group input[type=email]::placeholder,
.form_group input[type=file]::placeholder,
.form_group input[type=image]::placeholder,
.form_group input[type=month]::placeholder,
.form_group input[type=number]::placeholder,
.form_group input[type=password]::placeholder,
.form_group input[type=search]::placeholder,
.form_group input[type=tel]::placeholder,
.form_group input[type=text]::placeholder,
.form_group input[type=time]::placeholder,
.form_group input[type=url]::placeholder,
.form_group input[type=week]::placeholder,
.form_group input[type=search]::placeholder,
.form_group textarea::placeholder,
.form_group select::placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single::-webkit-input-placeholder,
.form_group .chosen-container.chosen-container-multi .chosen-choices::-webkit-input-placeholder,
.form_group .select2-container--default .select2-selection::-webkit-input-placeholder,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-input-placeholder,
.form_group .vsb-main button::-webkit-input-placeholder,
.form_group .form_control::-webkit-input-placeholder,
.form_group input[type=color]::-webkit-input-placeholder,
.form_group input[type=date]::-webkit-input-placeholder,
.form_group input[type=datetime-local]::-webkit-input-placeholder,
.form_group input[type=email]::-webkit-input-placeholder,
.form_group input[type=file]::-webkit-input-placeholder,
.form_group input[type=image]::-webkit-input-placeholder,
.form_group input[type=month]::-webkit-input-placeholder,
.form_group input[type=number]::-webkit-input-placeholder,
.form_group input[type=password]::-webkit-input-placeholder,
.form_group input[type=search]::-webkit-input-placeholder,
.form_group input[type=tel]::-webkit-input-placeholder,
.form_group input[type=text]::-webkit-input-placeholder,
.form_group input[type=time]::-webkit-input-placeholder,
.form_group input[type=url]::-webkit-input-placeholder,
.form_group input[type=week]::-webkit-input-placeholder,
.form_group input[type=search]::-webkit-input-placeholder,
.form_group textarea::-webkit-input-placeholder,
.form_group select::-webkit-input-placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single::-moz-input-placeholder,
.form_group .chosen-container.chosen-container-multi .chosen-choices::-moz-input-placeholder,
.form_group .select2-container--default .select2-selection::-moz-input-placeholder,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field::-moz-input-placeholder,
.form_group .vsb-main button::-moz-input-placeholder,
.form_group .form_control::-moz-input-placeholder,
.form_group input[type=color]::-moz-input-placeholder,
.form_group input[type=date]::-moz-input-placeholder,
.form_group input[type=datetime-local]::-moz-input-placeholder,
.form_group input[type=email]::-moz-input-placeholder,
.form_group input[type=file]::-moz-input-placeholder,
.form_group input[type=image]::-moz-input-placeholder,
.form_group input[type=month]::-moz-input-placeholder,
.form_group input[type=number]::-moz-input-placeholder,
.form_group input[type=password]::-moz-input-placeholder,
.form_group input[type=search]::-moz-input-placeholder,
.form_group input[type=tel]::-moz-input-placeholder,
.form_group input[type=text]::-moz-input-placeholder,
.form_group input[type=time]::-moz-input-placeholder,
.form_group input[type=url]::-moz-input-placeholder,
.form_group input[type=week]::-moz-input-placeholder,
.form_group input[type=search]::-moz-input-placeholder,
.form_group textarea::-moz-input-placeholder,
.form_group select::-moz-input-placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single::-ms-input-placeholder,
.form_group .chosen-container.chosen-container-multi .chosen-choices::-ms-input-placeholder,
.form_group .select2-container--default .select2-selection::-ms-input-placeholder,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field::-ms-input-placeholder,
.form_group .vsb-main button::-ms-input-placeholder,
.form_group .form_control::-ms-input-placeholder,
.form_group input[type=color]::-ms-input-placeholder,
.form_group input[type=date]::-ms-input-placeholder,
.form_group input[type=datetime-local]::-ms-input-placeholder,
.form_group input[type=email]::-ms-input-placeholder,
.form_group input[type=file]::-ms-input-placeholder,
.form_group input[type=image]::-ms-input-placeholder,
.form_group input[type=month]::-ms-input-placeholder,
.form_group input[type=number]::-ms-input-placeholder,
.form_group input[type=password]::-ms-input-placeholder,
.form_group input[type=search]::-ms-input-placeholder,
.form_group input[type=tel]::-ms-input-placeholder,
.form_group input[type=text]::-ms-input-placeholder,
.form_group input[type=time]::-ms-input-placeholder,
.form_group input[type=url]::-ms-input-placeholder,
.form_group input[type=week]::-ms-input-placeholder,
.form_group input[type=search]::-ms-input-placeholder,
.form_group textarea::-ms-input-placeholder,
.form_group select::-ms-input-placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single::-o-input-placeholder,
.form_group .chosen-container.chosen-container-multi .chosen-choices::-o-input-placeholder,
.form_group .select2-container--default .select2-selection::-o-input-placeholder,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field::-o-input-placeholder,
.form_group .vsb-main button::-o-input-placeholder,
.form_group .form_control::-o-input-placeholder,
.form_group input[type=color]::-o-input-placeholder,
.form_group input[type=date]::-o-input-placeholder,
.form_group input[type=datetime-local]::-o-input-placeholder,
.form_group input[type=email]::-o-input-placeholder,
.form_group input[type=file]::-o-input-placeholder,
.form_group input[type=image]::-o-input-placeholder,
.form_group input[type=month]::-o-input-placeholder,
.form_group input[type=number]::-o-input-placeholder,
.form_group input[type=password]::-o-input-placeholder,
.form_group input[type=search]::-o-input-placeholder,
.form_group input[type=tel]::-o-input-placeholder,
.form_group input[type=text]::-o-input-placeholder,
.form_group input[type=time]::-o-input-placeholder,
.form_group input[type=url]::-o-input-placeholder,
.form_group input[type=week]::-o-input-placeholder,
.form_group input[type=search]::-o-input-placeholder,
.form_group textarea::-o-input-placeholder,
.form_group select::-o-input-placeholder {
  color: #999999;
}
.form_group .chosen-container .chosen-single:focus,
.form_group .chosen-container.chosen-container-multi .chosen-choices:focus,
.form_group .select2-container--default .select2-selection:focus,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field:focus,
.form_group .vsb-main button:focus,
.form_group .form_control:focus,
.form_group input[type=color]:focus,
.form_group input[type=date]:focus,
.form_group input[type=datetime-local]:focus,
.form_group input[type=email]:focus,
.form_group input[type=file]:focus,
.form_group input[type=image]:focus,
.form_group input[type=month]:focus,
.form_group input[type=number]:focus,
.form_group input[type=password]:focus,
.form_group input[type=search]:focus,
.form_group input[type=tel]:focus,
.form_group input[type=text]:focus,
.form_group input[type=time]:focus,
.form_group input[type=url]:focus,
.form_group input[type=week]:focus,
.form_group input[type=search]:focus,
.form_group textarea:focus,
.form_group select:focus {
  border-color: var(--workspace-color);
}
.form_group .chosen-container .chosen-single:disabled,
.form_group .chosen-container.chosen-container-multi .chosen-choices:disabled,
.form_group .select2-container--default .select2-selection:disabled,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field:disabled,
.form_group .vsb-main button:disabled,
.form_group .form_control:disabled,
.form_group input[type=color]:disabled,
.form_group input[type=date]:disabled,
.form_group input[type=datetime-local]:disabled,
.form_group input[type=email]:disabled,
.form_group input[type=file]:disabled,
.form_group input[type=image]:disabled,
.form_group input[type=month]:disabled,
.form_group input[type=number]:disabled,
.form_group input[type=password]:disabled,
.form_group input[type=search]:disabled,
.form_group input[type=tel]:disabled,
.form_group input[type=text]:disabled,
.form_group input[type=time]:disabled,
.form_group input[type=url]:disabled,
.form_group input[type=week]:disabled,
.form_group input[type=search]:disabled,
.form_group textarea:disabled,
.form_group select:disabled {
  background-color: #F7F7F7;
  border-color: #E0E0E0;
}
.form_group .chosen-container .chosen-single.round,
.form_group .chosen-container.chosen-container-multi .chosen-choices.round,
.form_group .select2-container--default .select2-selection.round,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field.round,
.form_group .vsb-main button.round,
.form_group .form_control.round,
.form_group input[type=color].round,
.form_group input[type=date].round,
.form_group input[type=datetime-local].round,
.form_group input[type=email].round,
.form_group input[type=file].round,
.form_group input[type=image].round,
.form_group input[type=month].round,
.form_group input[type=number].round,
.form_group input[type=password].round,
.form_group input[type=search].round,
.form_group input[type=tel].round,
.form_group input[type=text].round,
.form_group input[type=time].round,
.form_group input[type=url].round,
.form_group input[type=week].round,
.form_group input[type=search].round,
.form_group textarea.round,
.form_group select.round {
  border-radius: 50px;
}
.form_group .chosen-container .chosen-single.transparent,
.form_group .chosen-container.chosen-container-multi .chosen-choices.transparent,
.form_group .select2-container--default .select2-selection.transparent,
.form_group .select2-container--default .select2-search--dropdown .select2-search__field.transparent,
.form_group .vsb-main button.transparent,
.form_group .form_control.transparent,
.form_group input[type=color].transparent,
.form_group input[type=date].transparent,
.form_group input[type=datetime-local].transparent,
.form_group input[type=email].transparent,
.form_group input[type=file].transparent,
.form_group input[type=image].transparent,
.form_group input[type=month].transparent,
.form_group input[type=number].transparent,
.form_group input[type=password].transparent,
.form_group input[type=search].transparent,
.form_group input[type=tel].transparent,
.form_group input[type=text].transparent,
.form_group input[type=time].transparent,
.form_group input[type=url].transparent,
.form_group input[type=week].transparent,
.form_group input[type=search].transparent,
.form_group textarea.transparent,
.form_group select.transparent {
  background-color: transparent;
}
.form_group .input-group-prepend {
  position: relative;
}
.form_group .input-group-prepend input {
  padding-left: 75px;
}
.form_group .input-group-text {
  position: absolute;
  top: 1px;
  left: 1px;
  height: 40px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: #f7f7f7;
  border-radius: 3px;
  color: #999999;
}
.form_group input[type=range] {
  width: 100%;
}
.form_group .input_color {
  position: relative;
}
.form_group .input_color label {
  margin-top: 0px;
  margin-bottom: 23px;
  font-family: var(--font-family);
  padding: 0px 17px 0px 0px;
  height: 42px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  display: block;
  width: 100%;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 0px rgba(247, 222, 3, 0.05);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form_group .input_color label .color_box {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 3px 0px 0px 3px;
  background: #D3972A;
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  border: 1px solid transparent;
}
.form_group .input_color label p {
  margin-bottom: 0;
  flex: 1 0;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 0;
  margin-right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid #e0e0e0;
}
.form_group .input_color label svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow-2);
}
.form_group .input_color input {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.form_group .input_color input:focus + label {
  border-color: var(--workspace-color);
  box-shadow: 0px 8px 15px rgba(247, 222, 3, 0.05);
}
.form_group .input_color input:disabled + label {
  background-color: #F7F7F7;
  border-color: #E0E0E0;
}
.form_group .input_color_2 label .color_box {
  width: 30px;
  height: 30px;
  margin: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.form_group .input_color_2 label p {
  border-left: 0px;
  padding-left: 6px;
}
.form_group .ui-slider.ui-widget-content {
  border: none;
  background: transparent;
  position: relative;
}
.form_group .ui-slider.ui-widget-content::after {
  content: "";
  display: block;
  width: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  height: 1px;
  background-color: #000000;
  z-index: 1;
  position: absolute;
}
.form_group .ui-slider .ui-widget-header {
  background: transparent;
}
.form_group .ui-slider .ui-slider-handle {
  width: 18px;
  height: 18px;
  border: 1px solid #000000;
  background: #ffffff;
  border-radius: 50%;
}
.form_group .ui-slider.ui-slider-horizontal .ui-slider-handle {
  margin-left: 0;
  top: -0.1em;
}
.form_group .chosen-container.chosen-container-multi {
  height: auto;
}
.form_group .chosen-container.chosen-container-multi .chosen-choices {
  display: flex;
  flex-wrap: wrap;
  overflow: unset;
  box-shadow: none !important;
  background: transparent;
}
.form_group .chosen-container.chosen-container-multi .chosen-choices .search-choice {
  margin: 0px 0px 5px;
  background: transparent;
}
.form_group .chosen-container.chosen-container-multi .chosen-choices .search-choice .search-choice-close:before {
  content: "X";
  font-size: 10px;
}
.form_group .chosen-container.chosen-container-multi .chosen-choices .search-field {
  flex: 0 0 100%;
  max-width: 100%;
}
.form_group .chosen-container.chosen-container-multi .chosen-choices .search-field input {
  min-height: auto;
  height: 100%;
  width: 100% !important;
  margin: 0px;
}
.form_group .chosen-container.chosen-container-multi .chosen-results li :hover {
  background: #e0e0e0;
}
.form_group .chosen-container.chosen-container-multi .chosen-results li.highlighted {
  color: #000000;
  background-color: #e0e0e0;
  background-image: none;
}
.form_group .chosen-container.chosen-container-multi .chosen-results li.highlighted :hover {
  background-color: #e0e0e0;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul {
  padding: 0px;
  white-space: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul li.select2-selection__choice {
  white-space: nowrap;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 24px;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 5px;
  padding: 5px 10px;
  float: none;
  order: 1;
  display: inline-block;
  border-radius: 25px;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul li.select2-selection__choice .select2-selection__choice__remove {
  font-size: 26px;
  width: 10px;
  height: 10px;
  line-height: 0;
  transform: translateY(2px);
  margin-right: 5px;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul li.select2-search {
  float: none;
  display: block;
  width: 100%;
  margin-bottom: 5px;
  flex: 0 0 100%;
  max-width: 100%;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul li.select2-search .select2-search__field {
  width: 100% !important;
  min-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.form_group .select2-container--default .select2-selection.select2-selection--multiple ul li.select2-search .select2-search__field:focus {
  border-color: var(--yellow-2) !important;
}
.form_group .select2-container--default .select2-selection .select2-selection__arrow {
  display: none;
}
.form_group .select2-container--focus .select2-selection.select2-selection--multiple, .form_group .select2-container--focus .select2-selection.select2-selection--single {
  border-color: var(--yellow-2);
}
.form_group .select2-container {
  width: 100% !important;
}
.form_group .form_control {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: normal;
}
.form_group .form_control.no_arrow {
  background-image: none !important;
}
.form_group .form_control svg {
  width: 16px;
  height: 16px;
  color: var(--yellow-2);
  margin-right: 10px;
}
.form_group .form_control svg.path path {
  fill: var(--yellow-2);
  stroke-width: 0px;
  stroke: transparent;
}
.form_group .vsb-main {
  display: block;
}
.form_group .vsb-main button {
  min-width: auto !important;
  max-width: unset !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 3px !important;
}
.form_group .vsb-main button .caret {
  display: none;
}
.form_group .vsb-main .vsb-menu {
  width: 100%;
}
.form_group .vsb-main .vsb-menu ul {
  padding-bottom: 10px;
  padding-top: 10px;
  margin-top: 0px;
  white-space: normal;
}
.form_group .vsb-main .vsb-menu ul .vsb-js-search-zone {
  padding: 0px;
}
.form_group .vsb-main .vsb-menu ul .vsb-js-search-zone input {
  min-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.form_group .vsb-main .vsb-menu ul li {
  display: block;
  position: relative;
  font-size: 13px;
  word-break: break-word;
}
.form_group .vsb-main .vsb-menu ul li:hover {
  background: transparent;
}
.form_group .vsb-main .vsb-menu ul li::before, .form_group .vsb-main .vsb-menu ul li::after {
  float: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  position: absolute;
}
.form_group .vsb-main .vsb-menu ul li::before {
  position: absolute;
  top: 5px;
  left: 5px;
}
.form_group .vsb-main .vsb-menu ul li::after {
  height: 7px;
  width: 3px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  top: 7px;
  left: 10px;
}
.form_group .vsb-main .vsb-js-search-zone {
  position: unset;
  width: 100%;
}
.form_group .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding: 0px;
  color: #000000;
}
.form_group select,
.form_group .form_control, .form_group.time_zone .chosen-container .chosen-single,
.form_group .vsb-main button,
.form_group .select2-container--default .select2-selection--single {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  background-image: url("/imgs/icons/chevron-down.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px top 9px !important;
  background-size: 24px !important;
  padding-right: 45px;
}
.form_group .error_msg,
.form_group label.error,
.form_group .invalid-feedback {
  font-size: 14px;
  font-weight: 400;
  color: #ff0000;
  margin-top: 5px;
  margin-bottom: 0;
}
.form_group .error_msg strong,
.form_group label.error strong,
.form_group .invalid-feedback strong {
  font-weight: 400;
}
.form_group label.success {
  font-size: 14px;
  font-weight: 400;
  color: #155724;
  margin-top: 5px;
  margin-bottom: 0;
}
.form_group_btn {
  display: flex;
  justify-content: flex-start;
}
.form_group_btn.wrap {
  flex-wrap: wrap;
}
.form_group_btn.wrap textarea {
  flex: 1 0;
  width: 0px;
}
.form_group_btn.wrap label.error {
  order: 1;
  flex: 0 0 100%;
  width: 0;
}
@media only screen and (max-width: 480px) {
  .form_group_btn {
    flex-wrap: wrap;
  }
}
.form_group_btn input {
  flex: 1 1 auto;
  max-width: 100%;
  border-right-width: 0px !important;
  border-radius: 3px 0px 0px 3px;
  margin-right: -20px;
  padding-right: 40px !important;
}
@media only screen and (max-width: 480px) {
  .form_group_btn input {
    border-right-width: 1px !important;
    border-radius: 3px;
    padding-right: 21px !important;
  }
}
.form_group_btn.with-border {
  flex-wrap: wrap;
}
.form_group_btn.with-border .form_control {
  flex: 1 0;
  border-right-width: 1px !important;
  margin-right: 0px;
}
.form_group_btn.with-border label {
  order: 1;
}
.form_group_btn.remove_field .new_control {
  border-right-width: 1px !important;
}
.form_group_btn .social_sharing {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 0px 13px;
  margin-right: -20px;
  padding-right: 45px;
}
@media only screen and (max-width: 480px) {
  .form_group_btn .social_sharing {
    order: 1;
    border: none;
    margin-top: 15px;
  }
}
.form_group_btn .social_sharing ul {
  padding-top: 0px;
  display: flex;
  align-items: center;
  height: 100%;
}
.form_group_btn .social_sharing ul li:last-child {
  margin-right: 0px;
}
.form_group_btn .social_sharing ul li a {
  display: block;
}
.form_group_btn .social_sharing ul li svg {
  display: block;
}
.form_group_btn .ws_btn {
  max-width: 168px;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .form_group_btn .ws_btn {
    margin-top: 15px;
  }
}
.form_group_input {
  display: flex;
}
.form_group_input input[type=date] {
  border-radius: 3px 0px 0px 3px;
  flex: 1 1 auto;
}
.form_group_input input[type=time] {
  border-radius: 0px 3px 3px 0px;
  margin-left: -1px;
  flex: 1 1 auto;
  max-width: 127px;
}
.form_group.time_zone .chosen-container {
  width: 100% !important;
  height: 42px;
  position: relative;
}
.form_group.time_zone .chosen-container .chosen-single {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px 30px 10px 17px;
  font-size: 12px;
  font-weight: 400;
}
.form_group.time_zone .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  list-style-type: none;
  z-index: 9;
}
.form_group.time_zone .chosen-container .chosen-drop .chosen-search {
  padding: 10px;
}
.form_group.time_zone .chosen-container .chosen-drop .chosen-search input {
  height: 30px;
  min-height: auto;
  padding: 5px 17px;
  background: none;
}
.form_group.time_zone .chosen-container .chosen-drop ul {
  padding: 10px 0px;
  max-height: 300px;
  overflow-y: auto;
}
.form_group.time_zone .chosen-container .chosen-drop ul li {
  font-size: 12px;
  padding: 6px 20px;
  margin-bottom: 3px;
  cursor: pointer;
}
.form_group.time_zone .chosen-container .chosen-drop ul li:hover {
  background: #f1f1f1;
  color: #000;
}
.form_group label.ws_btn {
  display: flex;
  margin-bottom: 0px;
}
.form_group label.ws_btn:hover {
  color: #fff;
}
.form_group.sprate {
  margin-bottom: 35px;
}
.form_group .password {
  position: relative;
}
.form_group .password_action {
  position: absolute;
  top: 50%;
  right: 16px;
  display: flex;
  align-item: center;
  justify-content: flex-end;
  transform: translate(0px, -50%);
}
.form_group .password_action button {
  background-color: transparent;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
}
.form_group .password_action button:last-child {
  margin-right: 0px;
}
.form_group .password_action button .hide {
  display: none;
}
.form_group .password_action svg {
  width: 14px;
  height: 14px;
  display: block;
}
.form_group .password_action #tooltip svg {
  stroke: unset;
  width: 14px;
  height: 14px;
}
.form_group .input_group {
  display: flex;
}
.form_group .input_group select {
  width: 125px;
  border-radius: 3px 0px 0px 3px;
  border-right: none;
}
.form_group .input_group select.selection-2 {
  width: 150px;
}
.form_group .input_group input {
  border-radius: 0px 3px 3px 0px;
}
.form_group .plan_type .ws_btn_select_2 .ws_btn_sm {
  min-height: 34px;
}
.form_group .toggle_container .toggle-btn {
  display: inline-flex;
}
.form_group.payment-date {
  display: flex;
  flex-wrap: wrap;
}
.form_group.payment-date label {
  width: 100%;
}
.form_group.payment-date label.error {
  order: 1;
}
.form_group.payment-date input.error {
  border-color: red;
}
.form_group.payment-date input:not(.error) + label.error {
  display: none;
}
.form_group.payment-date input#date_paid.error + label.error + #time_paid.error + label.error {
  display: none !important;
}
.form_group.payment-date input[type=date] {
  width: 55%;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form_group.payment-date input[type=time] {
  width: 45%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form_group_button .ws_btn {
  width: 100%;
  border-radius: 3px;
}
.form_group_button .ws_btn:hover {
  transform: unset;
}
.form_group_button textarea + .ws_btn {
  border-radius: 0 0 3px 3px;
}
.form_action {
  margin-top: 41px;
}
@media only screen and (max-width: 320px) {
  .form_action {
    margin-top: 30px;
  }
}
.form_action.two_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
.form_action.two_btn .ws_btn {
  flex: 1 1 auto;
  width: 100%;
  margin: 0px 10px;
  font-size: 16px;
}
.form_action.two_btn .ws_btn img {
  margin-right: 10px;
}
.form_action_2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 420px) {
  .form_action_2 > div {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 420px) {
  .form_action_2 {
    justify-content: center;
  }
}
.form_action.button_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
.form_action.button_group .ws_btn {
  margin: 0px 10px;
  flex: 1 1 0;
  width: auto;
  min-width: unset;
}
.form_action.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.form_action p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-top: 25px;
}
.form_action p br {
  display: none;
}
@media only screen and (max-width: 620px) {
  .form_action p br {
    display: inline;
  }
}
.form_caption {
  box-sizing: border-box;
  margin-top: 37px;
}
@media only screen and (max-width: 620px) {
  .form_caption {
    padding: 28px 30px;
  }
}
.form_caption p {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}
.form_caption p .ws_line_link {
  color: #999999;
}
@media only screen and (max-width: 320px) {
  .form_caption p br {
    display: none;
  }
}
.form_caption_header {
  padding-bottom: 24px;
  border-bottom: 1px solid #BDBDBD;
}
@media only screen and (max-width: 575px) {
  .form_caption_header {
    border: none;
  }
}
.form_caption_body {
  padding-top: 42px;
}
@media only screen and (max-width: 575px) {
  .form_caption_body {
    padding-top: 30px;
  }
}
.form_section {
  margin-bottom: 91px;
}
.form_section .section_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 58px;
}
.form_section .section_header.top {
  margin-top: 45px;
}
@media only screen and (max-width: 620px) {
  .form_section .section_header.top {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 620px) {
  .form_section .section_header {
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
}
.form_section .section_header h2 {
  font-size: 46px;
  line-height: 41px;
  font-weight: 400;
  color: #000000;
  margin-right: 42px;
  font-family: var(--font-family-2);
}
@media only screen and (max-width: 620px) {
  .form_section .section_header h2 {
    font-size: 32px;
    margin-right: 0;
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 320px) {
  .form_section .section_header h2 {
    font-size: 28px;
  }
}
.form_section .section_body .payment_card_row {
  margin-bottom: 33px;
}
.form_section .section_body .promo_code_row .ws_btn {
  margin-top: 20px;
  width: 100%;
}
.form_section .section_body .promo_caption {
  padding: 36px 57px 43px;
}
@media only screen and (max-width: 320px) {
  .form_section .section_body .promo_caption h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .form_section .section_body .promo_caption .title {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.form_section .section_body .promo_caption .title h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 41px;
  margin-left: 26px;
  font-family: var(--font-family-2);
}
@media only screen and (max-width: 575px) {
  .form_section .section_body .promo_caption .title h2 {
    font-size: 36px;
    text-align: center;
    border-bottom: 1px solid #BDBDBD;
    padding-bottom: 24px;
  }
}
.form_section .section_body .promo_caption .title h2.old {
  text-decoration-line: line-through;
}
.form_section .section_body .promo_caption .price {
  display: flex;
  align-items: flex-end;
}
.form_section .section_body .promo_caption .price svg {
  stroke: var(--workspace-color);
  stroke-width: 3px;
  width: 33px;
  height: 33px;
}
.form_section .section_body .promo_caption .info ul {
  list-style-type: none;
}
.form_section .section_body .promo_caption .info ul li {
  display: block;
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
}
@media only screen and (max-width: 575px) {
  .form_section .section_body .promo_caption .info ul li {
    font-size: 16px;
    line-height: 28px;
  }
}
.form_section .section_body .promo_caption .info ul li svg {
  height: 16px;
  width: 16px;
  stroke: var(--workspace-color);
  margin-right: 10px;
}
.form_section .section_body .promo_caption .info ul li.align-check {
  position: relative;
  padding-left: 26px;
  padding-right: 26px;
}
@media only screen and (max-width: 768px) {
  .form_section .section_body .promo_caption .info ul li.align-check br {
    display: none;
  }
}
.form_section .section_body .promo_caption .info ul li.align-check svg {
  position: absolute;
  left: 0px;
  top: 8px;
  margin-right: 0;
}
.form_section .section_body .promo_caption .action {
  flex: 1 1 auto;
  max-width: 538px;
  margin-left: 35px;
}
.form_section .section_body .promo_row {
  display: flex;
  justify-content: flex-end;
}
.form_section .section_body .promo_saprate {
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .form_section .section_body .promo_saprate {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.form_section .section_body .promo_h_center {
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .form_section .section_body .promo_h_center {
    align-items: flex-start;
  }
}
.form_section .section_note {
  margin-top: 28px;
}
.form_section .section_note p {
  font-size: 16px;
  line-height: 160%;
  color: #999999;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.form_section .section_footer {
  margin-top: 45px;
}
.form_section .section_footer p {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  font-weight: 400;
}

.form_group.float-field {
  padding-top: 20px;
  position: relative;
}
.form_group.float-field .form-control {
  min-height: 44px;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid #BDBDBD;
  padding: 10px 0px !important;
  --color: transparent;
}
.form_group.float-field .form-control::-webkit-input-placeholder {
  color: var(--color);
}
.form_group.float-field .form-control::-moz-input-placeholder {
  color: var(--color);
}
.form_group.float-field .form-control::-ms-input-placeholder {
  color: var(--color);
}
.form_group.float-field .form-control::-o-input-placeholder {
  color: var(--color);
}
.form_group.float-field .form-control:-webkit-autofill, .form_group.float-field .form-control:-webkit-autofill:hover, .form_group.float-field .form-control:-webkit-autofill:focus {
  border-color: #000000;
  -webkit-box-shadow: 0 0 0px 40rem white inset;
}
.form_group.float-field .form-control:-webkit-autofill + .float-label, .form_group.float-field .form-control:-webkit-autofill:hover + .float-label, .form_group.float-field .form-control:-webkit-autofill:focus + .float-label {
  top: 0;
}
.form_group.float-field .form-control:not(:-moz-placeholder-shown) + .float-label {
  top: 0px;
  min-height: 1px;
}
.form_group.float-field .form-control:focus + .float-label, .form_group.float-field .form-control:not(:placeholder-shown) + .float-label, .form_group.float-field .form-control.active:focus + .float-label, .form_group.float-field .form-control.active + .float-label {
  top: 0px;
  min-height: 1px;
}
.form_group.float-field .form-control:disabled {
  border-color: #BDBDBD;
  background: transparent;
}
.form_group.float-field .form-control:disabled + .float-label {
  color: #BDBDBD;
}
.form_group.float-field.active {
  top: 0px;
  min-height: 1px;
}
.form_group.float-field .with_button {
  position: absolute;
  top: 20px;
  min-height: 44px;
  right: 0px;
  width: auto;
  display: inline-flex;
  align-items: center;
  z-index: 9;
}
.form_group.float-field.forgot-field .form-control {
  padding-right: 70px;
}
.form_group.float-field .float-label {
  margin-bottom: 0px;
  min-height: 44px;
  position: absolute;
  width: 100%;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s linear;
}

.select2-container .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: var(--yellow-2);
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 12px;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option--highlighted {
  background-color: var(--yellow-2);
}

.ws_spce_bt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ws_vali-posit {
  position: relative;
}
.ws_vali-posit .form_group_btn label.error {
  position: absolute;
  bottom: -20px;
}

.flex_order {
  display: flex;
  flex-direction: column;
}
.flex_order .error {
  order: 1;
}

.form_radio {
  display: inline-flex;
  margin-right: 30px;
  position: relative;
}
.form_radio:last-child {
  margin-right: 0px;
}
.form_radio input[type=radio] {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.form_radio input[type=radio] + label {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 1px;
}
.form_radio input[type=radio] + label .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 17px;
  height: 17px;
  background: #f7f7f7;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  border-radius: 50%;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.form_radio input[type=radio] + label .checkbox_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
  transition: all 0.3s ease;
  border-color: transparent !important;
  color: #999999 !important;
  position: relative;
}
.form_radio input[type=radio] + label .checkbox_2 svg.bg-star {
  width: 100% !important;
  height: 100% !important;
  color: currentColor !important;
}
.form_radio input[type=radio] + label .checkbox_2 svg.feather-check {
  width: 50%;
  height: 50%;
  display: block;
  stroke: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff !important;
  stroke: currentColor;
  transition: all 0.3s ease;
  stroke-width: 4px;
}
.form_radio input[type=radio] + label .checkbox_2:hover {
  color: var(--yellow-2) !important;
}
.form_radio input[type=radio] + label .checkbox_2:hover svg {
  opacity: 1;
}
.form_radio input[type=radio] + label .checkbox span.dot {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background-color: #4f4f4f;
  opacity: 0;
  transition: all 0.4s ease;
}
.form_radio input[type=radio] + label .checkbox span.white {
  background-color: #ffffff;
}
.form_radio input[type=radio] + label .check_label {
  line-height: normal;
}
.form_radio input[type=radio]:checked + label .checkbox {
  border-color: var(--yellow-2);
  background-color: var(--yellow-2);
}
.form_radio input[type=radio]:checked + label .checkbox span.dot {
  opacity: 1;
}
.form_radio input[type=radio]:checked + label .checkbox_2 {
  border-color: transparent;
  background-color: transparent;
  color: var(--yellow-2);
}

.ws_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 999999999;
  display: none;
  top: 0px;
  left: 0px;
}
.ws_loader .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws_loader .spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--yellow-2);
  border-right-color: transparent;
  border-bottom: 0px;
  transition: 0.5s ease-in-out;
  transform: rotate(0deg);
  animation: spining 0.3s infinite linear;
}
.ws_loader .spinner_box {
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 10px;
  background-color: transparent;
}
.ws_loader.show_loader {
  display: block !important;
}

@keyframes spining {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* =================================
Meeting Module Styles files
===================================*/
/* =================================
Modal Styles files
===================================*/
.modal .modal-lg-big {
  max-width: 1020px;
  width: 90%;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow-2);
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
}
.close svg {
  stroke-width: 3px;
  width: 18px;
  height: 18px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  opacity: 1;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open,
.modal-stay {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1900;
  display: none;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0);
  padding-right: 0px !important;
  transition: background-color 0.3s ease;
}
.modal.show {
  background: rgba(0, 0, 0, 0.5);
}

.modal-open .modal,
.modal-stay .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 3px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1089;
  background-color: #000;
  display: none !important;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 55px 0px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
@media only screen and (max-width: 980px) {
  .modal-header {
    padding: 30px 30px 0px;
  }
}
@media only screen and (max-width: 475px) {
  .modal-header {
    padding: 30px 25px 0px;
  }
}

.modal-header .close {
  padding: 10px;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 31px 55px 52px;
}
@media only screen and (max-width: 980px) {
  .modal-body {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 475px) {
  .modal-body {
    padding: 30px 25px 35px;
  }
}
.modal-body p.hint {
  font-size: 13px;
  margin-top: 5px;
  color: #808080;
}
.modal-body .invite_data p {
  font-size: 14px;
}
.modal-body .invite_data .caption {
  margin-bottom: 25px;
}
.modal-body .invite_data .addon_price {
  min-height: 42px;
  align-items: center;
  font-size: 20px;
}
.modal-body .invite_data .addon_price span {
  font-size: 14px;
}
.modal-body .invite_data .note_text {
  margin-top: 20px;
}
.modal-body .invite_data .msg {
  margin-bottom: 21px;
}
.modal-body .form_action {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-body .form_action .ws_btn {
  min-width: 140px;
}
.modal-body .caption_text p {
  font-size: 14px;
  color: #000000;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  padding: 0px 55px 55px;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.delete_confirmation .modal-body .ws_confirm {
  padding: 0;
}
.delete_confirmation .modal-body .ws_confirm .form_group.check_space {
  margin-top: 15px;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.ws_modal_action {
  display: flex;
  margin-top: 17px;
  text-align: center;
}
@media (max-width: 767px) {
  .ws_modal_action {
    flex-wrap: wrap;
  }
}
.ws_modal_action .ws_btn {
  min-width: 140px;
  width: auto;
  width: auto;
  max-width: unset;
  display: inline-flex;
  margin-left: 20px;
}
.ws_modal_action .ws_btn:first-child {
  margin-left: 0px;
  margin-right: 0px;
}
.ws_modal_action .ws_btn.auto {
  margin: 0 auto;
}
@media (max-width: 399px) {
  .ws_modal_action .ws_btn {
    min-width: 100%;
    margin-bottom: 15px;
  }
}
.ws_modal_action_2 {
  justify-content: space-between;
}
.ws_modal_action_2 .btn_group {
  display: flex;
  flex-wrap: wrap;
}
.ws_modal_action_2 .ws_btn {
  min-width: auto;
}
.ws_modal_action_2 .ws_btn_transparent {
  border-radius: 0px;
}
.ws_modal_action_2 .ws_btn_transparent .plane {
  padding: 0px;
}
.ws_modal_action_reoccuring #tooltip:hover .tooltiptext {
  visibility: hidden;
}
.ws_modal_action_reoccuring #tooltip:hover .ws_btn.disabled + .tooltiptext {
  visibility: visible;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 500px;
    width: 80%;
  }
}
@media (min-width: 768px) {
  .modal-xl {
    max-width: 700px;
  }
  .modal-md {
    max-width: 700px;
  }
  .modal-lg {
    max-width: 750px;
  }
  .modal-sm {
    max-width: 600px;
  }
}
@media (min-width: 980px) {
  .modal-xl {
    max-width: 900px;
  }
  .modal-md {
    max-width: 756px;
  }
  .modal-sm {
    max-width: 600px;
  }
}
@media (min-width: 1170px) {
  .modal-xl {
    max-width: 1000px;
  }
  .modal-md {
    max-width: 756px;
  }
  .modal-sm {
    max-width: 600px;
  }
}
@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1170px;
  }
  .modal-lg {
    max-width: 900px;
  }
  .modal-md {
    max-width: 756px;
  }
  .modal-sm {
    max-width: 600px;
  }
}
.currency_value .modal-body .modal-currency-images {
  float: left;
  width: 50%;
  text-align: center;
}

.currency_value .modal-body .currency-text-block {
  float: left;
  width: 50%;
  padding-left: 40px;
}

.currency_value .modal-body .modal-currency-images img.fit {
  width: 100%;
}

.currency_value .modal-body .modal-currency-images img.image-group {
  width: 100%;
  margin-top: -7px;
  position: relative;
  z-index: 1;
}

.currency-text-block .currency-heading {
  font-size: 20px;
  line-height: 31px;
  color: #000000;
  margin-bottom: 20px;
}

.currency-text p {
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.currency-text-block form .form_action {
  justify-content: flex-start;
  margin-top: 30px;
}

.currency-text-block form .label-txt {
  font-size: 14px;
  line-height: 20px;
}

.currency-text-block form select {
  width: 100%;
  height: 42px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fff;
  background-image: none !important;
  padding-left: 15px;
  color: #999999;
  font-size: 12px;
  cursor: pointer;
}

.currency-text-block form .currency-select-block::before {
  content: "";
  position: absolute;
  right: 20px;
  border: 1px solid #bdbdbd;
  width: 5px;
  height: 5px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translateY(-50%);
  top: 47%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.currency-text-block form .currency-select-block {
  position: relative;
  width: 139px;
  height: 42px;
}

/* Workspace Modal */
.manage_lifetime .modal-content {
  border-radius: 10px;
}
.manage_lifetime .modal-body {
  padding: 65px 54px;
}

.lifetime-block {
  display: flex;
  flex-wrap: wrap;
}
.lifetime-block .lifetime-images {
  width: 42%;
}
@media only screen and (max-width: 767px) {
  .lifetime-block .lifetime-images {
    width: 100%;
  }
}
.lifetime-block .lifetime-images .image_wrap {
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .lifetime-block .lifetime-images .image_wrap {
    justify-content: center;
  }
}
.lifetime-block .lifetime-text-block {
  width: 58%;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .lifetime-block .lifetime-text-block {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
}
.lifetime-block .lifetime-text-block .currency-text p {
  font-weight: 400;
  margin-bottom: 28px;
}
.lifetime-block .lifetime-text-block h3.currency-heading {
  margin-bottom: 20px;
  font-family: Kyrie serif;
  font-size: 26px;
  line-height: 35px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .lifetime-block .lifetime-text-block h3.currency-heading {
    text-align: center;
  }
}
.lifetime-block .lifetime-text-block .ws_btn_black {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .lifetime-block .lifetime-text-block .ws_btn_black {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .currency_value .modal-body .currency-text-block {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .currency_value .modal-body .modal-currency-images {
    width: 100%;
  }
  .currency_value .modal-body .currency-text-block br {
    display: none;
  }
  .lifetime-block {
    flex-wrap: wrap;
  }
}
.trial_expire_popup .modal-header {
  position: relative;
}
.trial_expire_popup .modal-header .close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 999999;
}
.trial_expire_popup .modal-content {
  border-radius: 10px;
}
.trial_expire_popup .currency-text-block .currency-heading {
  margin-top: 27px;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}
.trial_expire_popup .currency-text-block .ws_btn {
  display: inline-flex;
  margin-top: 15px;
}

.edit_scheudule_date .unavailable {
  display: block;
  border: 1px dashed #D1D3D9;
  font-size: 16px;
  padding: 17px 0px;
  text-align: center;
  font-weight: 400;
}
.edit_scheudule_date .unavailable p {
  margin-bottom: 0px;
  color: #A8ADB8;
}
.edit_scheudule_date .action_button_wrap {
  margin-bottom: 15px;
}

.gmail_popup .modal-body .image_wrap img {
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid #dfdfdf;
}
.gmail_popup .modal-body .content_wrap p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 21px;
}
.modal.meeting_description .modal-body p {
  white-space: pre-line;
  word-break: break-word;
  font-size: 14px;
}

.modal-content .select2-container .select2-dropdown .select2-results .select2-results__options {
  max-height: 170px;
}

.modal.preview .modal-content .modal-body .perview_card {
  margin: 0 auto;
}

.modal.refer_earn .modal-header .close {
  color: var(--yellow-2);
}
.modal.refer_earn .modal-body {
  padding-top: 10px;
}
.modal.refer_earn .modal-body .form_group_btn .ws_btn {
  min-width: 150px;
  max-width: 150px;
}

.ws_right_cta {
  position: unset;
  display: block !important;
  overflow: unset;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta {
    position: fixed;
    top: 84px;
    right: -320px;
    left: auto;
    max-width: 320px;
    width: 100%;
    padding: 30px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: block !important;
    background: unset !important;
    background-color: #f9f9f9 !important;
    background-image: url("/imgs/cross.svg") !important;
    background-position: 88% 25px !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s linear;
  }
}
.ws_right_cta::before {
  content: "";
  display: block;
  width: 0%;
  height: calc(100% - 84px);
  position: fixed;
  left: 0px;
  top: 84px;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta.show {
    right: 0px;
  }
}
.ws_right_cta.show::before {
  width: 100%;
}
.ws_right_cta_action {
  display: none;
  align-items: center;
  margin-left: 15px;
}
@media only screen and (max-width: 800px) {
  .ws_right_cta_action {
    display: flex;
  }
}
@media only screen and (max-width: 800px) {
  .ws_right_cta_action {
    margin-left: 0px;
  }
}

#builder_announcement {
  overflow: auto;
}
#builder_announcement .modal-content {
  border-radius: 10px;
}
#builder_announcement .modal-content .close {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 42px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #000000;
}
#builder_announcement .modal-content h2 {
  margin-bottom: 10px;
  font-size: 28px;
}
#builder_announcement .modal-content p {
  margin-bottom: 15px;
}
#builder_announcement .modal-content p:last-child {
  margin-bottom: 0px;
}
#builder_announcement .modal-body {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 30px;
}
#builder_announcement .modal-body .confetti-div {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
  z-index: -1;
  overflow: hidden;
}
#builder_announcement .modal-body .confetti-div canvas {
  width: 150% !important;
  height: 150% !important;
}
#builder_announcement .modal-body .background-images {
  position: absolute;
  width: 100%;
  bottom: -170px;
  left: 0;
  z-index: -1;
  opacity: 0.75;
}
#builder_announcement .modal-body .anon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#builder_announcement .modal-body .anon-title h2 {
  margin: 0px 20px;
}
#builder_announcement .modal-body .anon-title img {
  width: 40px;
}
#builder_announcement .modal-body .anon-title img:last-child {
  transform: rotateY(180deg);
}
#builder_announcement .modal-body .action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#builder_announcement .modal-body .action .dropdown-menu {
  min-width: 190px;
}
#builder_announcement .modal-body .action .dropdown a {
  padding-bottom: 5px;
}
#builder_announcement .modal-picture {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
#builder_announcement .modal-picture img {
  display: block;
}

/* =================================
Moduler Styles
===================================*/
.grid {
  display: grid;
}

.inline-flex {
  display: inline-flex;
}

.direction-row {
  flex-direction: row;
}
.direction-row-reverse {
  flex-direction: row-reverse;
}
.direction_column {
  flex-direction: column;
}
.direction_column-reverse {
  flex-direction: column-reverse;
}

.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1800px) {
  .flex-xxl {
    display: flex;
  }
  .flex-wrap-xxl {
    flex-wrap: wrap;
  }
}
@media (max-width: 1600px) {
  .flex-xl {
    display: flex;
  }
  .flex-wrap-xl {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .flex-lg {
    display: flex;
  }
  .flex-wrap-lg {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .flex-md {
    display: flex;
  }
  .flex-wrap-md {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .flex-sm {
    display: flex;
  }
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .flex-xs {
    display: flex;
  }
  .flex-wrap-xs {
    flex-wrap: wrap;
  }
}
@media (max-width: 375px) {
  .flex-xxs {
    display: flex;
  }
  .flex-wrap-xxs {
    flex-wrap: wrap;
  }
}

.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-around {
  justify-content: space-around;
}
@media (max-width: 1800px) {
  .justify-between-xxl {
    justify-content: space-between;
  }
  .justify-center-xxl {
    justify-content: center;
  }
  .justify-start-xxl {
    justify-content: flex-start;
  }
  .justify-end-xxl {
    justify-content: flex-end;
  }
  .justify-around-xxl {
    justify-content: space-around;
  }
}
@media (max-width: 1600px) {
  .justify-between-xl {
    justify-content: space-between;
  }
  .justify-center-xl {
    justify-content: center;
  }
  .justify-start-xl {
    justify-content: flex-start;
  }
  .justify-end-xl {
    justify-content: flex-end;
  }
  .justify-around-xl {
    justify-content: space-around;
  }
}
@media (max-width: 1200px) {
  .justify-between-lg {
    justify-content: space-between;
  }
  .justify-center-lg {
    justify-content: center;
  }
  .justify-start-lg {
    justify-content: flex-start;
  }
  .justify-end-lg {
    justify-content: flex-end;
  }
  .justify-around-lg {
    justify-content: space-around;
  }
}
@media (max-width: 1024px) {
  .justify-between-md {
    justify-content: space-between;
  }
  .justify-center-md {
    justify-content: center;
  }
  .justify-start-md {
    justify-content: flex-start;
  }
  .justify-end-md {
    justify-content: flex-end;
  }
  .justify-around-md {
    justify-content: space-around;
  }
}
@media (max-width: 800px) {
  .justify-between-sm {
    justify-content: space-between;
  }
  .justify-center-sm {
    justify-content: center;
  }
  .justify-start-sm {
    justify-content: flex-start;
  }
  .justify-end-sm {
    justify-content: flex-end;
  }
  .justify-around-sm {
    justify-content: space-around;
  }
}
@media (max-width: 600px) {
  .justify-between-xs {
    justify-content: space-between;
  }
  .justify-center-xs {
    justify-content: center;
  }
  .justify-start-xs {
    justify-content: flex-start;
  }
  .justify-end-xs {
    justify-content: flex-end;
  }
  .justify-around-xs {
    justify-content: space-around;
  }
}
@media (max-width: 375px) {
  .justify-between-xxs {
    justify-content: space-between;
  }
  .justify-center-xxs {
    justify-content: center;
  }
  .justify-start-xxs {
    justify-content: flex-start;
  }
  .justify-end-xxs {
    justify-content: flex-end;
  }
  .justify-around-xxs {
    justify-content: space-around;
  }
}

.align-between {
  align-items: space-between;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-around {
  align-items: space-around;
}
@media (max-width: 1800px) {
  .align-between-xxl {
    align-items: space-between;
  }
  .align-center-xxl {
    align-items: center;
  }
  .align-start-xxl {
    align-items: flex-start;
  }
  .align-end-xxl {
    align-items: flex-end;
  }
  .align-around-xxl {
    align-items: space-around;
  }
}
@media (max-width: 1600px) {
  .align-between-xl {
    align-items: space-between;
  }
  .align-center-xl {
    align-items: center;
  }
  .align-start-xl {
    align-items: flex-start;
  }
  .align-end-xl {
    align-items: flex-end;
  }
  .align-around-xl {
    align-items: space-around;
  }
}
@media (max-width: 1200px) {
  .align-between-lg {
    align-items: space-between;
  }
  .align-center-lg {
    align-items: center;
  }
  .align-start-lg {
    align-items: flex-start;
  }
  .align-end-lg {
    align-items: flex-end;
  }
  .align-around-lg {
    align-items: space-around;
  }
}
@media (max-width: 1024px) {
  .align-between-md {
    align-items: space-between;
  }
  .align-center-md {
    align-items: center;
  }
  .align-start-md {
    align-items: flex-start;
  }
  .align-end-md {
    align-items: flex-end;
  }
  .align-around-md {
    align-items: space-around;
  }
}
@media (max-width: 800px) {
  .align-between-sm {
    align-items: space-between;
  }
  .align-center-sm {
    align-items: center;
  }
  .align-start-sm {
    align-items: flex-start;
  }
  .align-end-sm {
    align-items: flex-end;
  }
  .align-around-sm {
    align-items: space-around;
  }
}
@media (max-width: 600px) {
  .align-between-xs {
    align-items: space-between;
  }
  .align-center-xs {
    align-items: center;
  }
  .align-start-xs {
    align-items: flex-start;
  }
  .align-end-xs {
    align-items: flex-end;
  }
  .align-around-xs {
    align-items: space-around;
  }
}
@media (max-width: 375px) {
  .align-between-xxs {
    align-items: space-between;
  }
  .align-center-xxs {
    align-items: center;
  }
  .align-start-xxs {
    align-items: flex-start;
  }
  .align-end-xxs {
    align-items: flex-end;
  }
  .align-around-xxs {
    align-items: space-around;
  }
}

.ws_status .status_btn {
  min-width: 90px;
  height: 24px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  position: relative;
  z-index: 2;
}
.ws_status .status_btn svg {
  width: 14px;
  height: 14px;
  margin-left: 5px;
}
.ws_status .dropdown-menu {
  z-index: 3;
  min-width: 156px;
  padding: 27px 25px;
  right: 0px;
  left: auto !important;
}
.ws_status .dropdown-menu ul li {
  margin-bottom: 10px;
}
.ws_status .dropdown-menu ul li:last-child {
  margin-bottom: 0px;
}
.ws_status .dropdown-menu ul li .status_btn, .ws_status .dropdown-menu ul li {
  width: 100%;
}
.ws_status .dropdown-menu ul li .status_btn {
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}
.ws_status.lead_status .new {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.lead_status .followup {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.lead_status .proposal {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.lead_status .consultation {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.lead_status .converted {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.lead_status .pending {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.lead_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.client_status .active {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.client_status .inactive {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.client_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.client_status .archive {
  background: #000000;
  color: #ffffff;
}
.ws_status.project_status .active {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.project_status .inactive {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.project_status .complete {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.project_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.document_status .proposal {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.document_status .contract {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .invoice {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .form {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .new_form {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .overdue {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.document_status .signed {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .accepted {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .submitted {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .created {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .received {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .sent {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .viewed {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .paid {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .declined {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .scheduled {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .outstanding {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .complete {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .completed {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.document_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.meeting_status .upcoming {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.meeting_status .past {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.schedule_status .video {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.team_status .admin {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.team_status .manager {
  background: #e0e0e0;
  color: #333333;
}
.ws_status.team_status .member {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_status.contact_status .client {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.contact_status .lead {
  background: #e0e0e0;
  color: #000000;
}
.ws_status.contact_status .other {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.contact_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.contact_status .archive {
  background: #000000;
  color: #ffffff;
}
.ws_status.email_status .leads {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.email_status .clients {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_status.email_status .documents {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.email_status .projects {
  background: #e0e0e0;
  color: #333333;
}
.ws_status.email_status .meetings {
  background: #bdbdbd;
  color: #ffffff;
}
.ws_status.template_status .default {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.single_document_status .created {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.single_document_status .sent {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.single_document_status .viewed {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.single_document_status .accepted {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.automation_status .active {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.automation_status .inactive {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.automation_status .archived {
  background: #000000;
  color: #ffffff;
}
.ws_status.automation_status .archive {
  background: #000000;
  color: #ffffff;
}
.ws_status.invoice_status .outstanding {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_status.invoice_status .overdue {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_status.invoice_status .paid {
  background: #f7f7f7;
  color: #333333;
}
.ws_status.invoice_status .archived {
  background: #e0e0e0;
  color: #333333;
}

.ws_filter_dropdown {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  border-radius: 0px 25px 25px 0px;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  cursor: pointer;
}
.ws_filter_dropdown padding {
  top: 0;
  bottom: 0;
  left: 15px;
  right: 35px;
}
.ws_filter_dropdown::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  position: absolute;
  top: 50px;
  right: 35px;
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  transform: rotate(-135deg);
  transition: all 0.3s ease;
}
.ws_filter_dropdown::after {
  content: "";
  border-width: 1px;
  border-color: #000;
  right: 10px;
  width: 8px;
  height: 8px;
  top: 45%;
}
.ws_filter_dropdown.open::before {
  opacity: 1;
  visibility: visible;
}
.ws_filter_dropdown ul.list {
  right: 0px;
  left: auto;
  padding: 30px 46px;
  margin-top: 20px;
  max-height: 275px;
  overflow-y: auto !important;
  text-align: center;
}
@media (max-width: 767px) {
  .ws_filter_dropdown ul.list {
    margin-top: 18px;
  }
}
.ws_filter_dropdown ul.list li {
  display: flex;
  width: 100%;
  margin-right: 0px;
  text-align: center;
  min-width: 100px;
  min-height: 24px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 14px;
  font-weight: 400 !important;
  position: relative;
}
.ws_filter_dropdown ul.list li:last-child {
  margin-bottom: 0px;
}
@media (max-width: 1024px) {
  .ws_filter_dropdown ul.list li {
    min-width: 65px;
  }
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.new, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=new] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.followup, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=followup] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.proposal, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=proposal] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.consultation, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=consultation] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.converted, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=converted] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.pending, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=pending] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.lead_filter .ws_filter_dropdown ul li.archived, .ws_filter.lead_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.client_filter .ws_filter_dropdown ul li.active, .ws_filter.client_filter .ws_filter_dropdown ul li[data-value=active] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.client_filter .ws_filter_dropdown ul li.inactive, .ws_filter.client_filter .ws_filter_dropdown ul li[data-value=inactive] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.client_filter .ws_filter_dropdown ul li.archived, .ws_filter.client_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.client_filter .ws_filter_dropdown ul li.archive, .ws_filter.client_filter .ws_filter_dropdown ul li[data-value=archive] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.project_filter .ws_filter_dropdown ul li.active, .ws_filter.project_filter .ws_filter_dropdown ul li[data-value=active] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.project_filter .ws_filter_dropdown ul li.inactive, .ws_filter.project_filter .ws_filter_dropdown ul li[data-value=inactive] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.project_filter .ws_filter_dropdown ul li.complete, .ws_filter.project_filter .ws_filter_dropdown ul li[data-value=complete] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.project_filter .ws_filter_dropdown ul li.archived, .ws_filter.project_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.proposal, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=proposal] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.contract, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=contract] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.invoice, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=invoice] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.form, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=form] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.new_form, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=new_form] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.overdue, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=overdue] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.signed, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=signed] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.accepted, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=accepted] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.submitted, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=submitted] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.created, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=created] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.received, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=received] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.sent, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=sent] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.viewed, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=viewed] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.paid, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=paid] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.declined, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=declined] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.scheduled, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=scheduled] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.outstanding, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=outstanding] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.complete, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=complete] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.completed, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=completed] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.document_filter .ws_filter_dropdown ul li.archived, .ws_filter.document_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.meeting_filter .ws_filter_dropdown ul li.upcoming, .ws_filter.meeting_filter .ws_filter_dropdown ul li[data-value=upcoming] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.meeting_filter .ws_filter_dropdown ul li.past, .ws_filter.meeting_filter .ws_filter_dropdown ul li[data-value=past] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.schedule_filter .ws_filter_dropdown ul li.video, .ws_filter.schedule_filter .ws_filter_dropdown ul li[data-value=video] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.team_filter .ws_filter_dropdown ul li.admin, .ws_filter.team_filter .ws_filter_dropdown ul li[data-value=admin] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.team_filter .ws_filter_dropdown ul li.manager, .ws_filter.team_filter .ws_filter_dropdown ul li[data-value=manager] {
  background: #e0e0e0;
  color: #333333;
}
.ws_filter.team_filter .ws_filter_dropdown ul li.member, .ws_filter.team_filter .ws_filter_dropdown ul li[data-value=member] {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_filter.contact_filter .ws_filter_dropdown ul li.client, .ws_filter.contact_filter .ws_filter_dropdown ul li[data-value=client] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.contact_filter .ws_filter_dropdown ul li.lead, .ws_filter.contact_filter .ws_filter_dropdown ul li[data-value=lead] {
  background: #e0e0e0;
  color: #000000;
}
.ws_filter.contact_filter .ws_filter_dropdown ul li.other, .ws_filter.contact_filter .ws_filter_dropdown ul li[data-value=other] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.contact_filter .ws_filter_dropdown ul li.archived, .ws_filter.contact_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.contact_filter .ws_filter_dropdown ul li.archive, .ws_filter.contact_filter .ws_filter_dropdown ul li[data-value=archive] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.email_filter .ws_filter_dropdown ul li.leads, .ws_filter.email_filter .ws_filter_dropdown ul li[data-value=leads] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.email_filter .ws_filter_dropdown ul li.clients, .ws_filter.email_filter .ws_filter_dropdown ul li[data-value=clients] {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_filter.email_filter .ws_filter_dropdown ul li.documents, .ws_filter.email_filter .ws_filter_dropdown ul li[data-value=documents] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.email_filter .ws_filter_dropdown ul li.projects, .ws_filter.email_filter .ws_filter_dropdown ul li[data-value=projects] {
  background: #e0e0e0;
  color: #333333;
}
.ws_filter.email_filter .ws_filter_dropdown ul li.meetings, .ws_filter.email_filter .ws_filter_dropdown ul li[data-value=meetings] {
  background: #bdbdbd;
  color: #ffffff;
}
.ws_filter.template_filter .ws_filter_dropdown ul li.default, .ws_filter.template_filter .ws_filter_dropdown ul li[data-value=default] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.single_document_filter .ws_filter_dropdown ul li.created, .ws_filter.single_document_filter .ws_filter_dropdown ul li[data-value=created] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.single_document_filter .ws_filter_dropdown ul li.sent, .ws_filter.single_document_filter .ws_filter_dropdown ul li[data-value=sent] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.single_document_filter .ws_filter_dropdown ul li.viewed, .ws_filter.single_document_filter .ws_filter_dropdown ul li[data-value=viewed] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.single_document_filter .ws_filter_dropdown ul li.accepted, .ws_filter.single_document_filter .ws_filter_dropdown ul li[data-value=accepted] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.automation_filter .ws_filter_dropdown ul li.active, .ws_filter.automation_filter .ws_filter_dropdown ul li[data-value=active] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.automation_filter .ws_filter_dropdown ul li.inactive, .ws_filter.automation_filter .ws_filter_dropdown ul li[data-value=inactive] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.automation_filter .ws_filter_dropdown ul li.archived, .ws_filter.automation_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.automation_filter .ws_filter_dropdown ul li.archive, .ws_filter.automation_filter .ws_filter_dropdown ul li[data-value=archive] {
  background: #000000;
  color: #ffffff;
}
.ws_filter.invoice_filter .ws_filter_dropdown ul li.outstanding, .ws_filter.invoice_filter .ws_filter_dropdown ul li[data-value=outstanding] {
  background: var(--yellow-2);
  color: #ffffff;
}
.ws_filter.invoice_filter .ws_filter_dropdown ul li.overdue, .ws_filter.invoice_filter .ws_filter_dropdown ul li[data-value=overdue] {
  background: #4F4F4F;
  color: #ffffff;
}
.ws_filter.invoice_filter .ws_filter_dropdown ul li.paid, .ws_filter.invoice_filter .ws_filter_dropdown ul li[data-value=paid] {
  background: #f7f7f7;
  color: #333333;
}
.ws_filter.invoice_filter .ws_filter_dropdown ul li.archived, .ws_filter.invoice_filter .ws_filter_dropdown ul li[data-value=archived] {
  background: #e0e0e0;
  color: #333333;
}

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