@charset "UTF-8";

@font-face {
  font-family: "Circular-Pro-Bold";
  src: url("../fonts/lineto-circular-pro-bold.eot");
  src: url("../fonts/lineto-circular-pro-bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lineto-circular-pro-bold.woff") format("woff"),
    url("../fonts/lineto-circular-pro-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Circular-Pro-Medium";
  src: url("../fonts/lineto-circular-pro-medium.eot");
  src: url("../fonts/lineto-circular-pro-medium.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lineto-circular-pro-medium.woff") format("woff"),
    url("../fonts/lineto-circular-pro-medium.woff2") format("woff2");

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Circular-Pro-Book";
  src: url("../fonts/lineto-circular-pro-book.eot");
  src: url("../fonts/lineto-circular-pro-book.ttf") format("truetype");
  src: url("../fonts/lineto-circular-pro-book.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/lineto-circular-pro-book.woff") format("woff"),
    url("../fonts/lineto-circular-pro-book.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue.woff2") format("woff2"),
    url("../fonts/HelveticaNeue.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #60545c;
  line-height: inherit;
  font-family: "Circular-Pro-Book";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px grey; */
  background: #f9f9f9;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d8d5d6;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d8d5d6;
}

img {
  max-width: 100%;
}

a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: #60545c;
}

a:hover {
  color: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

.site-wrap {
  position: relative;
}

.header-wrap nav {
  background-color: #ffffff;
  padding: 16px 18px 16px 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgb(216, 213, 214);
}

.header-thankyou nav {
  padding: 16px 18px 16px 16px;
  align-items: center;
  overflow: hidden;
}

.nav-switcher-link {
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  margin: 0 auto;
  background-image: url(../images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 8px;
}

.nav-switcher-link.no-arrow {
  background-image: none;
}

.nav-switcher-link span {
  display: inline-block;
  padding: 0 27px 0 0;
}

.main-nav-holder {
  transition: 0.2s;
  background: #39747e;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  width: 259px;
  z-index: 3;
}

.close-nav {
  padding: 26px 25px 0 16px;
}

.close-nav label {
  margin: 0;
  float: right;
}

.main-nav {
  bottom: 0;
  display: block;
  left: 0;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 80px;
}

.main-nav > li img {
  margin: -4px 8px 0 0;
}

.main-nav > li {
  margin: 0;
  position: relative;
}

.main-nav > li > a,
.main-nav > li > a:link,
.main-nav > li > a:visited {
  display: block;
  padding: 15px 24px;
  font-size: 15px;
  line-height: 25px;
  color: #b4d6e1;
}

.main-nav > li > a:hover,
.main-nav > li > a:link:hover,
.main-nav > li > a:visited:hover {
  background: #004e5b;
  color: #39747e;
}

.main-nav > li.has-submenu > label {
  color: #b4d6e1;
  cursor: pointer;
  display: block;
  padding: 15px 24px;
  line-height: 25px;
  font-size: 15px;
  position: relative;
  margin: 0;
}

.submenu > li.active > a,
.submenu > li.active > a:link,
.submenu > li.active > a:visited,
.submenu > li.active > label {
  color: #fff;
  background-color: #00424c;
}

.submenu {
  padding: 0;
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
  transform: translateY(-5rem);
  white-space: nowrap;
  background-color: #004e5b;
  display: block;
  height: 0;
  position: static;
}

.submenu > li {
  position: relative;
}

.submenu > li > a,
.submenu > li > a:link,
.submenu > li > a:visited {
  color: #b4d6e1;
  display: block;
  padding: 19px 51px;
}

.submenu > li > a:hover {
  color: #fff;
  background-color: #00424c;
}

.submenu > li::after {
  content: "|";
  position: absolute;
  top: 0.7rem;
  right: -0.3rem;
}

.submenu > li:last-of-type::after {
  display: none;
}

.check-toggle {
  display: none;
}

.main-nav > li.has-submenu .check-toggle:checked ~ label {
  background: #004e5b;
  color: #39747e;
  border-left: 2px solid #39747e;
}

.check-toggle:checked ~ .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  border-left: 2px solid #39747e;
}

.hamburger-menu,
.menu-overlay {
  display: block;
}

.menu-overlay {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  transition: 0.2s;
  transform: translateX(30%);
  visibility: hidden;
  top: 0;
  z-index: 2;
}

.hamburger-menu {
  background-image: url(../images/hamburger-menu.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  width: 24px;
  padding: 0;
  margin: 0;
}

.submenu li::after {
  display: none;
}

.check-toggle:checked ~ .main-nav-holder {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.check-toggle:checked ~ .menu-overlay {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.check-toggle:checked ~ .submenu {
  height: auto;
}

.site-top-wrap {
  /* padding: 17px 8px 17px; */
  padding: 0px 24px;
  height: 56px;
  text-align: right;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  width: 100%;
}

.si-btn-primary {
  background: #004e5b;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  padding: 17px 17px;
  outline: none;
  border: none;
}

.si-filter {
  float: left;
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  font-weight: 400;
  background-image: url(../images/icon-arrow-down-blck.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding: 0 0 0 34px;
  margin: 0;
  font-family: "Circular-Pro-Book";
}

.si-filter span:after {
  content: url(../images/icon-filter-default.svg);
  /* content: url(../images/icon-filter-hover.svg); */
  position: absolute;
  top: 3px;
  left: -23px;
}
.filterselecticon span:after {
  content: url(../images/icon-filter-hover.svg);
  position: absolute;
  top: 3px;
  left: -23px;
}
.si-filter span {
  display: inline-block;
  vertical-align: middle;
  padding: 1px 17px 1px 8px;
  position: relative;
}

.si-filter:hover {
  color: #39747e;
  background-image: url(../images/icon-arrow-down-teal.svg);
}

.activeClick {
  color: #39747e;
  background-image: url(../images/icon-arrow-down-teal.svg);
}

.si-filter:hover span:after {
  content: url(../images/icon-filter-hover.svg);
}

.si-filter-wrap.selected .si-filter {
  color: #39747e;
  background-image: url(../images/icon-arrow-down-teal.svg);
}

.si-filter-wrap.selected .si-filter span:after {
  content: url(../images/icon-filter-hover.svg);
}

.filter-wrap {
  display: none;
}

.si-btn-close {
  position: absolute;
  right: 16px;
}

.si-filter-wrap.selected .filter-wrap {
  display: block;
  position: absolute;
  top: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0;
}

.gray-bar {
  background-color: #f9f9f9;
  border-top: 1px solid #eceaeb;
  border-bottom: 1px solid #eceaeb;
  padding: 11px 16px 10px;
  position: relative;
}

.white-bar {
  background-color: #fff;
  border-bottom: 1px solid #eceaeb;
  padding: 15px 16px 15px;
}

.white-bar .control {
  margin: 3px 0 0 0;
}

.volunteers-name {
  font-size: 15px;
  line-height: 32px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 0 10px;
  /* color: #60545c; */
  font-weight: 450;
  font-family: "Circular-Pro-Book";
  /* cursor: pointer */
}

.volunteers-name:hover {
  color: #3B2F33;
  cursor: pointer;
}

.control {
  position: relative;
  display: block;
  cursor: pointer;
  margin-top: 10px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control__indicator2 {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}
.control__indicator3 {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
  border-radius: 50%;
}
.control__indicator_segment {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control__indicator1 {
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control:hover input ~ .control__indicator1,
.control input:focus ~ .control__indicator1 {
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control input:checked ~ .control__indicator1 {
  background: #60545c;
  border: 1px solid #60545c;
}

.control:hover input:not([disabled]):checked ~ .control__indicator1,
.control input:checked:focus ~ .control__indicator1 {
  background: #60545c;
  border: 1px solid #60545c;
}

.control input:disabled ~ .control__indicator1 {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

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

.control input:checked ~ .control__indicator1:after {
  display: block;
}

.control--checkbox .control__indicator1:after {
  top: 3px;
  left: 5px;
  width: 4px;
  height: 7px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.control:hover input ~ .control__indicator2,
.control:hover
  input
  ~ .control__indicator3
  .control
  input:focus
  ~ .control__indicator2,
.control:hover input ~ .control__indicator3,
.control input:focus ~ .control__indicator3,
.control:hover input ~ .control__indicator2_segment,
.control input:focus ~ .control__indicator2_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control input:checked ~ .control__indicator2,
.control input:checked ~ .control__indicator3,
.control input:checked ~ .control__indicator2_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control:hover input:not([disabled]):checked ~ .control__indicator2,
.control input:checked:focus ~ .control__indicator2,
.control:hover input:not([disabled]):checked ~ .control__indicator3,
.control input:checked:focus ~ .control__indicator3,
.control:hover input:not([disabled]):checked ~ .control__indicator2_segment,
.control input:checked:focus ~ .control__indicator2_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control input:disabled ~ .control__indicator2 {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}
.control input:disabled ~ .control__indicator3 {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control input:disabled ~ .control__indicator3 {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control__indicator3 {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
  border-radius: 50%;
}
.control__indicator3:after {
  position: absolute;
  display: none;
  content: "";
}
.control input:disabled ~ .control__indicator2_segment {
  background: #ffffff;
  border: 1px solid #39747e;
}

.control__indicator2:after {
  position: absolute;
  display: none;
  content: "";
}
.control__indicator3:after {
  position: absolute;
  display: none;
  content: "";
}
.control__indicator2_segment:after {
  position: absolute;
  display: none;
  content: "";
}

.control input:checked ~ .control__indicator2:after {
  display: block;
}
.control input:checked ~ .control__indicator3:after {
  display: block;
}
.control input:checked ~ .control__indicator2_segment:after {
  display: block;
}
.control__indicator3:after {
  position: absolute;
  display: none;
  content: "";
}

.control--checkbox .control__indicator2:after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
}
.control--checkbox .control__indicator3:after {
  top: 3px;
  left: 2px;
  width: 12px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
}
.control--checkbox .control__indicator2_segment:after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator,
.control:hover input ~ .control__indicator_segment,
.control input:focus ~ .control__indicator_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control input:checked ~ .control__indicator,
.control input:checked ~ .control__indicator_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator,
.control:hover input:not([disabled]):checked ~ .control__indicator_segment,
.control input:checked:focus ~ .control__indicator_segment {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control input:disabled ~ .control__indicator {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control input:disabled ~ .control__indicator_segment {
  background: #ffffff;
  border: 1px solid #39747e;
}

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

.control input:checked ~ .control__indicator:after {
  display: block;
}
.control input:checked ~ .control__indicator_segment:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  top: 2px;
  left: 5px;
  width: 12px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
}
.control--checkbox .control__indicator_segment:after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
}

.checkbox_enabled {
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.checkbox_enabled1 {
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control:hover input ~ .checkbox_enabled,
.control input:focus ~ .checkbox_enabled {
  background: #ffffff;
  border: 1px solid #d8d5d6;
}
.control:hover input ~ .checkbox_enabled1,
.control input:focus ~ .checkbox_enabled1 {
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control input:checked ~ .checkbox_enabled {
  background: #ffffff;
  border: 1px solid #60545c;
}
.control input:checked ~ .checkbox_enabled_event {
  border: 1px solid #60545c !important;
}
.control input:checked ~ .checkbox_enabled1 {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control:hover input:not([disabled]):checked ~ .checkbox_enabled,
.control input:checked:focus ~ .checkbox_enabled {
  background: #ffffff;
  border: 1px solid #60545c;
}
.control:hover input:not([disabled]):checked ~ .checkbox_enabled1,
.control input:checked:focus ~ .checkbox_enabled1 {
  background: #ffffff;
  border: 1px solid #60545c;
}

.control input:disabled ~ .checkbox_enabled {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

.control input:disabled ~ .checkbox_enabled1 {
  pointer-events: none;
  opacity: 0.6;
  background: #ffffff;
  border: 1px solid #d8d5d6;
}

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

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

.control input:checked ~ .checkbox_enabled:after {
  display: block;
}

.control input:checked ~ .checkbox_enabled1:after {
  display: block;
}

.control--checkbox .checkbox_enabled:after {
  top: 2px;
  left: 2px;
  width: 11px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
  background-repeat: no-repeat;
}

.control--checkbox .checkbox_enabled_event:after {
  top: 0px;
  left: 1.5px;
  width: 11px;
  height: 11px;
  background-image: url(../images/eventRight.svg);
}

.control--checkbox .checkbox_enabled1:after {
  top: 2px;
  left: 2px;
  width: 11px;
  height: 10px;
  background-image: url(../images/CheckMark.svg);
  background-repeat: no-repeat;
}

.control.control--checkbox--new .checkbox_enabled:after {
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background-image: url(../images/vectorRight.svg) !important;
}

.control.control--checkbox--new .checkbox_enabled1:after {
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background-image: url(../images/vectorRight.svg) !important;
}

.si-count {
  font-size: 18px;
  color: #a0989d;
  line-height: 26px;
}

.si-count.arrow {
  background-image: url(../images/icon-arrow-down-blck.svg);
  background-repeat: no-repeat;
  padding: 0 20px 0 0;
  background-position: center right;
}

.volunteers-list-wrap {
  clear: both;
  position: relative;
  background-color: #f9f7f5;
}

.volunteers-list-wrapp {
  clear: both;
  position: relative;
  background-color: #f9f7f5;
  top: 52px;
  width: 102%;
  right: 15px;
}

.volunteers-list-wrapp-ckeck {
  clear: both;
  /* position: absolute; */
  background-color: #f9f7f5;
  margin-top: 102px;
  margin-left: 10px;
  width: 100%;
  /* left: 5px; */
}

.volunteers-list-wrap .col-1,
.volunteers-list-wrap .col-3,
.volunteers-list-wrap .col-8 {
  padding: 0;
}

.volunteers-list-wrap .col-3 {
  flex: 0 0 16%;
  max-width: 16%;
}

.volunteers-avatar {
  margin-left: 13px;
  margin-top: 1px;
}
.volunteers_avatar_highlight {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.2s ease;
}
.background_tab{
  padding: 0px 5px 5px 5px;
  border-radius: 8px;
  background: transparent;
}
.background_tab_hover{
  padding: 0px 5px 5px 5px;
  border-radius: 8px;
  background:#DCEEEE;
}
.volunteers_avatar_highlight.is-active {
  /* background-color: #FFFFFF; */
  /* border: 1px solid #E6C7BE; */
  /* padding: 1px; */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.2s ease;
}
.pagination-wrap {
  position: fixed;
  min-width: 190px;
  bottom: 0;
  z-index: 10;
  box-shadow: 8px -8px 20px rgba(5, 9, 47, 0.1);
  background-color: #fff;
}

.pagination-wrap-mob {
  position: fixed;
  min-width: 190px;
  bottom: 60px;
  background-color: #fff;
}
.text_highlight{
  color:#60545C !important;
}
.text_highlight:hover{
  color:#58A6A6 !important;
}
.pw-link {
  background-image: url(../images/icon-pages.svg);
  width: 24px;
  height: 24px;
  float: left;
  background-color: #F0EDEB;
  padding: 25px 28px;
  background-repeat: no-repeat;
  background-position: center;
}

.pw-link:hover,
.pw-link.active {
  background-image: url(../images/icon-pages-hover.svg);
}

.pw-link-wrap {
  float: left;
  margin: 0;
  background-color: #fff;
}

.pw-link-wrap li {
  display: inline-block;
  vertical-align: top;
  min-width: 64px;
  /* padding: 5px; */
  position: relative;
}

.pw-link-wrap li:first-child:before {
  right: -6px;
}

.pw-link-wrap li:last-child:before {
  display: none;
}

.pw-link-wrap li:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(5, 9, 47, 0.1);
  position: absolute;
  right: 0;
  top: 0;
}

.pw-link-wrap li span {
  color: #60545c;
  font-size: 15px;
  display: block;
  text-align: center;
  line-height: 49px;
  font-family: "Circular-Pro-Book";
}

.pw-link-wrap li.active span {
  color: #58A6A6;
}

.pw-link-wrap li span:hover {
  color: #58A6A6;
}

.pw-prev-link {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  margin: 0 auto;
}

.pw-link-wrap .pw-prev {
  padding: 19px 0 16px;
  width: 32px;
  text-align: center;
  cursor: pointer;
}

.pw-link-wrap .pw-next-link {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  transform: rotate(540deg);
  margin: 0 auto;
}

.pw-prev-link1 {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  margin: 0 auto;
}

.pw-next-link1 {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  transform: rotate(540deg);
  margin: 0 auto;
}
.pw-next-link1:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(360deg);
}

.pw-prev-link1:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(540deg);
}

.pw-link-wrap .pw-prev-link:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(540deg);
}

.pw-link-wrap .pw-next-link:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(360deg);
}

.pw-link-wrap .pw-next {
  padding: 19px 0 16px;
  width: 32px;
  border-right: none;
  cursor: pointer;
}

.site-filter-top {
  padding: 20px 16px 17px;
  display: flex;
  box-shadow: inset 0px -1px 0px #eceaeb;
}

.si-clear {
  font-size: 18px;
  color: #60545c;
  line-height: 21px;
}

.si-clear:hover {
  color: #60545c;
}

.si-filter-text {
  color: #39747e;
  font-size: 18px;
  line-height: 21px;
  margin: 0 auto;
}

.si-filter-text:hover {
  color: #39747e;
}

.pw-prev-link1 {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  margin: 0 auto;
}

.pw-next-link1 {
  background-image: url(../images/pagination-left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 8px;
  height: 14px;
  transform: rotate(540deg);
  margin: 0 auto;
}
.pw-next-link1:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(360deg);
}

.pw-prev-link1:hover {
  background-image: url(../images/pagination-right-hover.svg);
  transform: rotate(540deg);
}

.si-filter-three .fliter-link {
  background: #fff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 11px 20px 11px 16px;
  font-size: 18px;
  font-family: "Circular-Pro-Bold";
  line-height: 32px;
  color: #60545c;
  display: inline-block;
  vertical-align: top;
}

.fliter-link {
  background: #f7f7f7;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 11px 20px 11px 16px;
  font-size: 18px;
  font-family: "Circular-Pro-Bold";
  line-height: 32px;
  color: #60545c;
  display: inline-block;
  vertical-align: top;
}

.fliter-link:hover {
  color: #60545c;
}

.fliter-link b {
  font-family: "Circular-Pro-book";
  font-weight: 450;
}

.fliter-link span {
  font-family: "Circular-Pro-book";
  background-image: url(../images/icon-arrow-left.svg);
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  vertical-align: top;
  padding: 0 66px 0 0;
}

.si-filter-one,
.si-filter-three {
  margin: 16px 16px 15px;
}

.filter-delete {
  display: inline-block;
  vertical-align: top;
  margin: 16px 0 0 12px;
}

.si-select-wrap {
  text-align: center;
  margin: 0 0 16px 0;
  position: relative;
}

.si-filter-two {
  padding: 0 16px 50px;
}

.si-filter-two .fliter-link span {
  padding: 0 50px 0 0;
}

.wrap-and-select {
  display: none;
}

.si-select-wrap a {
  font-size: 15px;
  color: #60545c;
}

.si-select-wrap ul {
  background: #ffffff;
  box-shadow: 0px 1px 10px rgba(96, 84, 92, 0.2),
    4px 4px 20px rgba(73, 76, 84, 0.1);
  border-radius: 4px;
  position: absolute;
  width: 158px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -9px;
  padding: 0 0 22px 0;
}

.si-select-wrap ul li {
  padding: 24px 0 3px;
}

.si-select-wrap ul li:hover {
  color: #39747e;
}

.si-select-wrap ul li.active {
  color: #39747e;
}

.si-filter-btn {
  box-shadow: inset 0px 1px 0px #eceaeb;
}

.desktop {
  display: none;
}

.si-filter-btn a {
  color: #004e5b;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  display: block;
  padding: 31px 0 32px 0;
}

.si-edit-wrap .fliter-link {
  width: 100%;
  position: relative;
}

.si-edit-wrap .fliter-link:before {
  content: "";
  background-image: url(../images/icon-down.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.si-applied-radio [type="radio"]:checked,
.si-applied-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.si-applied-radio [type="radio"]:checked + label,
.si-applied-radio [type="radio"]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  line-height: 21px;
  display: inline-block;
  color: #60545c;
  font-size: 18px;
  margin: 0;
  padding: 2px 0 0 32px;
}

.si-applied-radio [type="radio"]:checked + label:before,
.si-applied-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.si-applied-radio [type="radio"]:checked + label:after,
.si-applied-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #39747e;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.si-applied-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.si-applied-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.si-applied-radio [type="radio"]:checked + label:before {
  border: 1px solid #39747e;
}

.si-select-name {
  font-size: 18px;
  color: #60545c;
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  padding: 16px 16px 16px 16px;
  border-radius: 4px;
}

.si-edit-wrap .si-filter-one {
  margin-bottom: 26px;
}

.si-applied-filter {
  padding: 0 16px;
}

.si-applied-radio {
  margin: 24px 0 0 0;
}

.si-applied-radio p {
  margin: 0 16px 26px;
}

.si-applied-radio .group {
  margin: 0 0px 26px;
}
/* -8px 11px 0px 0px */
.si-applied-radio .group2 {
  margin: -8px 11px 0px 0px;
}
.si-applied-radio .group1 {
  margin: -8px 0px 0px;
}
.si-applied-bottom {
  position: relative;
  padding: 20px 0 0 0;
  border-top: 1px solid #d8d5d6;
}

.expand-page-navigation {
  background: #F0EDEB;
  border: 1px solid #d8d5d6;
  box-sizing: border-box;
  box-shadow: -8px 8px 20px rgba(5, 9, 47, 0.06);
  border-radius: 4px;
  width: 140px;
  position: fixed;
  bottom: 50px;
  padding: 0 0 0 36px;
  max-height: 245px;
  overflow: auto;
  display: none;
}

.expand-page-navigation ul {
  margin: 0;
  font-family: "Circular-Pro-Book";
}

.expand-page-navigation li {
  margin: 18px 0;
  font-family: "Circular-Pro-Book";
}

.expand-page-navigation li a {
  color: #60545c;
  font-size: 15px;
  line-height: 18px;
  font-family: "Circular-Pro-Book";
}

.expand-page-navigation li:hover a,
.expand-page-navigation li.active a {
  color: #60545C;
  background:#F7F4F1;
  position: relative;
}

.expand-page-navigation li:hover a:after,
.expand-page-navigation li.active a:after {
  content: "";
  background-image: url(../images/checkicon.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 14px;
  display: inline-block;
  left: -23px;
  position: absolute;
  top: 5px;
}

.btn-select {
  background: #ffffff;
  box-shadow: 0px 1px 10px rgba(96, 84, 92, 0.2),
    4px 4px 20px rgba(73, 76, 84, 0.1);
  border-radius: 4px;
  width: 158px;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
  z-index: 1;
}

.btn-select ul {
  margin: 0;
  padding: 0 0 10px;
}

.btn-select li {
  padding: 15px 0 15px;
}

.btn-select li a {
  font-size: 18px;
  color: #60545c;
}

.btn-select li:hover a {
  color: #39747e;
}

.btn-select li:hover {
  background: #f0f7f9;
}

.selected-filter-wrap {
  padding: 16px 16px 17px;
  position: absolute;
  width: 100%;
  left: 0;
  top: -58px;
  background-color: #fff;
  display: none;
}

.sfw-left,
.sfw-right {
  display: inline-block;
  vertical-align: top;
  width: 49.1%;
}

.sfw-right {
  text-align: right;
}

.selected-text {
  color: #60545c;
  font-size: 18px;
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  margin: 1px 0 0 30px;
}

.padding-left {
  padding: 22px 16px 0;
}

.icon-tag {
  margin: 0 18px 0 20px;
}

.white-bar:hover {
  background-color: #f7f7f7;
}

.select-count-filter {
  background: #ffffff;
  border: 1px solid #eceaeb;
  box-sizing: border-box;
  box-shadow: 8px 8px 20px rgba(96, 84, 92, 0.1);
  border-radius: 4px;
  z-index: 1;
  top: 38px;
  position: absolute;
  left: 54px;
  display: none;
}

.select-count-filter ul {
  margin: 0;
  padding: 5px 0;
}

.select-count-filter li {
  font-size: 15px;
  color: #60545c;
  line-height: 21px;
  padding: 11px 16px;
}

.select-count-filter li:hover {
  background: #F7F4F1;
  cursor: pointer;
  color: #60545C;
}

.kebab-menu-wrap {
  background: #ffffff;
  box-shadow: 0px 1px 10px rgba(96, 84, 92, 0.2),
    4px 4px 20px rgba(73, 76, 84, 0.1);
  border-radius: 4px;
  width: 221px;
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 5px;
}

.kebab-menu-wrap ul {
  padding: 12px 0 12px 0;
  margin: 0;
}

.kebab-menu-wrap li.delete-icon {
  background-image: url(../images/icon-delete.svg);
  background-repeat: no-repeat;
  background-position: 30px 9px;
}

.kebab-menu-wrap li.move-icon {
  background-image: url(../images/icon-move-to-active.svg);
  background-repeat: no-repeat;
  background-position: 30px 9px;
}

.kebab-menu-wrap li {
  padding: 10px 0 10px 65px;
  color: #60545c;
  font-size: 18px;
}

.kebab-menu-wrap li.delete-icon:hover {
  background-image: url(../images/icon-delete-inactive.svg);
}

.kebab-menu-wrap li.move-icon:hover {
  background-image: url(../images/icon-move-to-inactive.svg);
}

.kebab-menu-wrap li:hover {
  background-color: #f0f7f9;
  color: #39747e;
}

.kebab-menu-wrap li a:hover {
  background-color: #f0f7f9;
  color: #39747e;
}

.add-form-wrap {
  padding: 0px 16px;
}

.add-form-control {
  margin-bottom: 25px;
}

.form-text {
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
}
.form-text:focus{
  border: 1px solid #60545c !important;
}
.addtimeoff .form-text {
  padding: 11px 16px 12px 16px;
}

.addtimeoff .control__indicator {
  top: 5px;
}

.addtimeoff .avi-time-wrap-lable.control {
  margin: 10px 0 5px 0;
  color: #60545c;
}

.form-text1 {
  background: #ffffff;
  border: 1px solid red;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  margin: 4px 0 0 0;
}

.form-text:focus {
  border: 1px solid #b3adb1;
  box-shadow: none;
}

.cir-pro-family {
  font-family: "Circular-Pro-Book" !important;
}

.form-title {
  font-size: 11px;
  color: #80767d;
  margin: 4px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}
.form-title-form {
  font-size: 11px;
  color: #80767d;
  margin: -15px 0 0 2px;
  display: block;
  text-align: right;
  text-transform: uppercase;
}

.form-title-form-error {
  font-size: 11px;
  color: #d32f2f;
  margin: -15px 0 0 2px;
  display: block;
  text-align: right;
  text-transform: uppercase;
}

.form-title-add-modal {
  font-size: 11px;
  color: #80767d;
  margin: -30px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}

.form-title1 {
  font-size: 11px;
  color: red;
  margin: 4px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}

.form-title1-inactive {
  font-size: 11px;
  color: red;
  margin: -30px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
}

.add-form-check {
  border-top: 1px solid #eceaeb;
  padding-top: 25px;
  padding-bottom: 25px;
}

.add-form-check label {
  font-size: 15px;
  color: #60545c;
  line-height: 18px;
  text-align: justify;
}
.gradient {
  margin-left: "-19%";
}
.addformCheckEvent {
  font-size: 15px;
  color: #60545c;
  line-height: 18px;
}
.addformCheck {
  font-size: 15px;
  color: #60545c;
  line-height: 18px;
  text-align: justify;
}
.addformChecklabel {
  font-size: 15px;
  color: #60545c;
  line-height: 18px;
}

.add-form-check span {
  padding-left: 35px;
  display: inline-block;
  padding-top: 5px;
}
.addformCheckspan-down{
   padding-left: 10px;
  display: inline-block;
  padding-top: 5px;
  font-family: "Circular-Pro-Book";
}

.upgrade-text{
  font-size: 12px;
  font-family: "Circular-Pro-Book";
  color: #3B2F33;
  background: #84B89B;
  font-weight: 600;
  width: 56%;
  border-radius: 5px;
  padding-left: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.addformCheckspan {
  padding-left: 25px;
  display: inline-block;
  padding-top: 5px;
  font-family: "Circular-Pro-Book";
}
.addformCheckspanedit {
  padding-left: 25px;
  display: inline-block;
  padding-top: 3px;
  font-family: "Circular-Pro-Book";
}

.add-btn {
  border: 1px solid #527865;
  width: 220px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  padding: 4%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-schedule {
  border: 1px solid #527865;
  width: 180px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  padding: 2%;
  height: 41px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-email-template {
  border: 1px solid #527865;
  width: 180px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  height: 41px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-create-new {
  border: 1px solid #527865;
  width: 180px;
  background: #527865;
  font-size: 15px;
  border-radius: 4px;
  padding: 4%;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-position {
  border: 1px solid #527865;
  width: 150px;
  background: #527865;
  font-size: 18px !important;
  border-radius: 4px;
  padding: 4%;
  font-size: 15px !important;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-send {
  border: 1px solid #527865;
  width: 220px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  padding: 3%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-multiple {
  border: 1px solid #527865;
  width: 215px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  padding: 4%;
  height: 41px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-copy {
  border: 1px solid #527865;
  width: 180px;
  background: #527865;
  border-radius: 4px;
  padding: 4%;
  height: 41px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  justify-content: center;
  align-content: center;
}
.add-btn-copy:hover {
  background: #5E8973;  
}
.add-btn-save-new {
  border: 1px solid #527865;
  width: 180px;
  background: #527865;
  border-radius: 4px;
  padding: 3%;
  height: 41px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  justify-content: center;
  align-content: center;
}
.add-btn-save-new:hover {
  background: #5E8973;  
}
.add-btn-event {
  border: 1px solid #527865;
  width: 220px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  padding: 4%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-save {
  border: 1px solid #527865;
  width: 200px;
  background: #527865;
  font-size: 15px;
  border-radius: 4px;
  padding: 4%;
  height: 41px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  align-items: center;
  justify-content: center;
}
.disable-button-save {
 border: 1px solid #d8d5d6;
  width: 200px;
  background: #d8d5d6;
  font-size: 15px;
  border-radius: 4px;
  padding: 4%;
  height: 41px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  align-items: center;
  justify-content: center;
}
.disable-button-save-2 {
 border: 1px solid #d8d5d6;
  width: 180px;
  background: #d8d5d6;
  font-size: 15px;
  border-radius: 4px;
  height: 41px;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  align-items: center;
  justify-content: center;
}
.create-one-btn{
  cursor: pointer;
  color: #60545c;
}
.create-one-btn:hover {
  color: #58a6a6;
}
.add-btn-msg-next {
  border: 1px solid #527865;
  width: 220px;
  background: #527865;
  font-size: 15px !important;
  border-radius: 4px;
  width:"100%";
  padding: 2%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn:disabled {
  opacity: 0.4;
}
.add-btn-hub-details {
  border: 1px solid #60545c;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  /* padding: 12px 0; */
  font-size: 18px;
  line-height: 27px;
  width: 180px;
  height: 40px;
  font-weight: 400;
  color: #60545c;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}

.add-btn-delete-event {
  border: 1px solid #8B2F31;
  width: 180px;
  height: 41px;
  background: #8B2F31;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 27px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.add-btn-delete-event:hover{
  background: #A94446;
  border: 1px solid #A94446;
}
.add-btn-hub {
  border: 1px solid #ffffff;
  width: 70%;
  background: #ffffff;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #004e5b;
  display: block;
  text-align: center;
  margin-top: 15px;
  font-family: "Circular-Pro-Book";
}

.secondary-btn {
  border: 1px solid #39747e;
  width: 100%;
  background: transparent;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 450;
  line-height: 27px;
  color: #39747e;
  margin-bottom: 15px;
  font-family: "Circular-Pro-Book";
}
.secondary-btn-copy-cancel{
  border: 1px solid #60545c;
  width: 180px;
  background: transparent;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 15px;
  height: 40px;
  font-weight: 450;
  line-height: 27px;
  color: #60545c;
  margin-bottom: 15px;
  font-family: "Circular-Pro-Book";
  display: flex;
  justify-content: center;
  align-items: center;
}
.secondary-btn-assign-cancel{
    border: 1px solid #60545c;
  width: 180px;
  background: transparent;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 15px;
height: 41px;
  font-weight: 450;
  line-height: 27px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
  display: flex;
  justify-content: center;
  align-items: center;
}
.secondary-btn-cancel {
  border: 1px solid #60545c;
  width: 100%;
  background: transparent;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 450;
  line-height: 27px;
  color: #60545c;
  margin-bottom: 15px;
  font-family: "Circular-Pro-Book";
}
.secondary-btn-event {
  border: 1px solid #60545C;
  width: 100%;
  background: transparent;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 15px;
  height: 40px;
  width: 180px;
  font-weight: 450;
  line-height: 27px;
  color: #60545C;
  margin-bottom: 15px;
  font-family: "Circular-Pro-Book";
}

.cancel-btn {
  border: 1px solid #39747e;
  width: 100%;
  background: transparent;
  border-radius: 4px;
  padding: 13px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: #39747e;
  margin-bottom: 15px;
  font-family: "Circular-Pro-Book";
}

.add-btn:hover {
  background: #5E8973;
  min-width: 64px;
}
.add-btn-email-template:hover {
  background: #5E8973;
  min-width: 64px;
}
.add-btn-create-new:hover {
  background: #5E8973;
  min-width: 64px;
}
.wrapper {
  display: inline-block;
  position: relative;
}

.btnimg {
  /* background:red; */
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 1;
  line-height: 100%;
  text-align: center;
}

.files {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.error.form-text,
.move-control .error.form-text {
  border: 1px solid #d9402c;
}

.error.form-title,
.move-control .error.text-count {
  color: #d9402c;
}

.select-bulk-tag [type="radio"]:checked,
.select-bulk-tag [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.select-bulk-tag [type="radio"]:checked + label,
.select-bulk-tag [type="radio"]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  line-height: 21px;
  display: inline-block;
  color: #60545c;
  font-size: 18px;
  margin: 0;
  padding: 2px 0 0 32px;
}

.select-bulk-tag [type="radio"]:checked + label:before,
.select-bulk-tag [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.select-bulk-tag [type="radio"]:checked + label:after,
.select-bulk-tag[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #39747e;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.select-bulk-tag [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.bulk-tag-wrap {
  padding: 0;
}

.select-bulk-tag [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.select-bulk-tag [type="radio"]:checked + label:before {
  border: 1px solid #39747e;
}

.select-bulk-tag p:last-child {
  margin: 0;
}

.bulk-search-box {
  margin: 30px 16px 50px;
  position: relative;
}

.bulk-search-box .add-form-control {
  margin: 0;
}

.select-bulk-tag p {
  margin: 0 20px 0 0;
  display: inline-block;
  vertical-align: top;
}

.bulk-search-box .form-text {
  background-image: url(../images/icon-search.svg);
  background-repeat: no-repeat;
  padding-left: 50px;
  background-position: 20px 18px;
}

.bulk-search-list ul {
  margin: 0 0 0px 0;
}

.bulk-search-list ul li {
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  padding: 10px 26px;
  cursor: pointer;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.bulk-search-list ul li a {
  color: #60545c;
}

.bulk-search-list ul li a:hover {
  color: #39747e;
}

.bulk-search-list ul li:hover {
  /* color: #39747e; */
  background-color: #F7F4F1;
}

.bulk-search-list ul li.active {
  /* color: #39747e; */
  background-color: #F7F4F1;
  /* background-image: url(../images/icon-tick.svg); */
  background-repeat: no-repeat;
  background-position: right center;
}

.bulk-search-list p {
  color: #39747e;
  font-size: 18px;
  line-height: 21px;
  background-image: url(../images/icon-tag-blue.svg);
  background-repeat: no-repeat;
  padding: 0 0 20px 27px;
  background-position: 0 3px;
}

.untag-result-list ul {
  margin: 0;
}

.volunteers-container {
  display: none;
}

.untag-result-list li {
  //border: 1px solid #004e5b;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  vertical-align: top;
  width: auto !important;
  padding: 10px 40px 10px 35px;
  margin-bottom: 20px;
  text-align: center;
  color: #004e5b;
  font-family: "Circular-Pro-Book";
  font-weight: 450;
  font-size: 15px;
  line-height: 21px;
  //background-image: url(../images/icon-tag-teal.svg);
  background-position: 10px 12px;
  background-repeat: no-repeat;
}

.untag-result-list {
  margin-bottom: 50px;
}

.untag-result-list li img {
  width: 14px;
  height: 14px;
  margin: -2px 0 0 7px;
}

.untag-link {
  font-size: 15px;
  color: #39747e;
}

.untag-link:hover {
  color: #39747e;
}

.view-text p {
  color: #60545c;
  font-size: 15px;
  line-height: 19px;
  border-bottom: 1px solid #eceaeb;
  margin-bottom: 0;
  padding: 20px 0;
}

.view-wrap {
  padding: 0 16px;
}

.list-volunteers-remove {
  padding: 10px 0 20px;
}

.list-volunteers-remove p {
  margin: 0;
}

.list-volunteers-remove span {
  color: #39747e;
  font-size: 15px;
  line-height: 21px;
}

.list-volunteers-remove span.expand-list {
  display: block;
  color: #a0989d;
}

.sr-list {
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  appearance: none;
  padding: 20px;
  width: 100%;
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  background-image: url(../images/icon-arrow-down.png);
  background-repeat: no-repeat;
  background-position: right center;
  font-family: "Circular-Pro-Book";
}

.sr-list option {
  font-family: "Circular-Pro-Book";
  font-size: 18px;
  color: #60545c;
}

.move-control {
  margin: 16px 0 50px 0;
}

.move-control .form-text {
  border: 1px solid #39747e;
}

.text-count {
  font-size: 15px;
  color: #80767d;
  margin: 5px 0 0 0;
}

.change-save-wrap {
  background-color: #82cf72;
  padding: 16px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.change-save-wrap p img {
  margin: -2px 10px 0 0;
}

.change-save-wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  color: #60545c;
}

.fliter-search {
  padding-bottom: 25px;
}

.country-list {
  margin-top: 30px;
}

.country-list label span {
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  padding: 4px 0 4px 33px;
  display: inline-block;
  vertical-align: top;
}

.country-list label {
  margin: 0 0 20px 0;
}

.unselect.control--checkbox .control__indicator::after {
  top: 10px;
  left: 8px;
  width: 7px;
  border: solid #fff 1px;
  transform: rotate(0deg);
  height: auto;
}

.cal-list .date .form-text {
  background-image: url(../images/icon-calendar.svg);
  background-repeat: no-repeat;
  background-position: 17px center;
  padding: 16px 16px 16px 50px;
}

.datepicker-months td span {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  border: 1px solid #d8d5d6;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  padding: 35px;
  margin: 5px;
  font-size: 18px;
}

.datepicker-months td span:hover,
.datepicker-months td span.active {
  border: 1px solid #39747e;
  background: #f0f7f9;
}

.datepicker {
  top: -11px !important;
  left: -15px !important;
  padding: 25px;
  margin: 0;
  border: 0;
  width: 100%;
  max-width: 100%;
}

.datepicker table {
  width: 100%;
}

.datepicker-days .prev {
  background-image: url(../images/cal-prev-icon.svg);
  background-repeat: no-repeat;
  font-size: 0;
  background-position: center;
}

.datepicker-days .next {
  background-image: url(../images/cal-next-icon.svg);
  background-repeat: no-repeat;
  font-size: 0;
  background-position: center;
}

.datepicker-switch {
  font-size: 18px;
  font-weight: 400;
  color: #60545c;
  text-align: center;
}

.date-holder + .date-holder {
  margin-left: 16px;
}

.custom-date-picker-root {
  height: 48px;
  border: 1px solid #b3adb1;
  border-radius: 4px;
  margin: 13.5px 0;
  width: 100%;
}

.custom-date-picker-root .MuiInput-root {
  height: 100%;
  padding-left: 1rem;
}

.custom-date-picker-root .MuiInputBase-input {
  display: flex;
}

.MuiInputBase-input {
  padding: 10px !important;
  height: 29px !important;
}

.custom-date-picker-root .MuiInput-underline:before {
  border-bottom: none;
}

.dow {
  font-size: 15px;
  color: #39747e;
  font-weight: 450;
  text-align: center;
  padding: 15px;
}

.day {
  font-weight: 450;
  font-size: 18px;
  color: #60545c;
  text-align: center;
  padding: 10px;
  position: relative;
}

.day.active {
  color: #fff;
}

.day:hover:after {
  background-color: #f7f7f7;
  border-radius: 50%;
  content: "";
  height: 35px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 3px;
  margin: 0 auto;
}

.day.active:after {
  background-color: #39747e;
  border-radius: 50%;
  content: "";
  height: 35px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 3px;
  margin: 0 auto;
}

.site-wrap.overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.week-list {
  border-top: 1px solid #d8d5d6;
  padding: 20px 0 100px 0;
}

.week-list label span {
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  padding: 4px 0 4px 33px;
  display: inline-block;
  vertical-align: top;
}

.time-wrap {
  margin-bottom: 30px;
}

.timeframe {
  width: 40%;
  display: inline-block;
}

.time-spacer {
  display: inline-block;
  margin: 0 10px;
}

.timeframe input {
  border: 1px solid #b3adb1;
}

.hrs-control .form-title {
  display: inline-block;
  text-transform: none;
  vertical-align: top;
  margin: 26px 0 0 2px;
}

.hrs-control .form-text {
  display: inline-block;
  vertical-align: top;
  appearance: none;
  width: 95%;
}

.pink-error {
  background: #ffe6e8;
  border: 1px solid #d9402c;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 11px 20px 11px 16px;
  line-height: 32px;
  color: #d9402c;
}

.company-dir-search {
  padding: 0 16px;
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
}

.company-dir-search a {
  position: absolute;
  right: 40px;
  top: 16px;
}

.company-dir-search .form-text {
  margin: 0;
  background-image: url(../images/icon-search.svg);
  background-repeat: no-repeat;
  background-position: 25px center;
  padding-left: 60px;
  border: 1px solid #39747e;
}

.search-box {
  background: #ffffff;
  border: 1px solid #eceaeb;
  box-sizing: border-box;
  box-shadow: 8px 8px 20px rgba(96, 84, 92, 0.1);
  border-radius: 4px;
  position: absolute;
  width: 100%;
  top: 60px;
}

.search-box ul li {
  font-size: 15px;
  line-height: 18px;
  color: #60545c;
  font-family: "Circular-Pro-Bold";
  padding: 10px 16px;
}

.search-box ul li:hover {
  background: #f9f9f9;
}

.search-box ul li.active {
  background: #f0f7f9;
  color: #39747e;
}

.inactive-top {
  padding: 0 0 27px;
}

.company-dir-search .add-form-control {
  margin: 0;
}

.volunteers-profile {
  display: flex;
  padding: 20px 24px 32px 24px;
  /* padding: 16px 16px 19px 16px; */
  /* background-color: #e8f3f7; */
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 7;
  align-items: center;
  /* box-shadow: #eceaeb; */
  border-bottom: 1px solid #eceaeb;
}

.profile-details h5 {
  font-size: 18px;
  line-height: 32px;
  width: 120px;
  overflow: hidden;
  color: #39747e;
  margin: 1px 76px 3px 0;
  text-transform: capitalize;
  font-family: "Circular-Pro-Book";
}

.volunteers-profile .vp-link {
  margin: -57px 0 0 3px;
  width: 20px;
  height: 20px;
}

.profile-details h6 {
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  margin: 0;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.profile-details a {
  color: #60545c;
  font-size: 13px;
  line-height: 26px;
}

.profile-details a img {
  margin: 0 8px 0 0;
}

.profile-pic {
  padding: 5px 15px;
  margin: 2px 0 0 17px;
}

.profile-details {
  padding: 0;
}

.vp-link {
  margin: 5px 0 0 0;
  display: inline-block;
  vertical-align: top;
}

.vp-left {
  /*background-color: #dbf1f5;*/
  background-color: #39747e;
  padding: 0;
  text-align: center;
  position: fixed;
  z-index: 1;
  width: 48px;
  /* height: 100%; */
  top: 141px;
}

.vp-left li {
  padding: 16px 0;
}

.vp-left .nav-tabs .nav-item.show .nav-link,
.vp-left .nav-tabs .nav-link.active {
  /* background-color: #004e5b; */
  background-color: #EDD5CC !important;
}

.vp-left .nav-tabs .nav-item.show .nav-link img,
.vp-left .nav-tabs .nav-link img {
  /* filter: brightness(0) invert(1); */
  filter: brightness(0) saturate(100%) invert(16%) sepia(14%) saturate(531%)
    hue-rotate(292deg) brightness(95%) contrast(89%);
}

.vp-left li:hover {
  background-color: #eabbb5;
}

.vp-left li:hover img {
  /* filter: brightness(0) invert(1); */
  filter: brightness(0) saturate(100%) invert(16%) sepia(14%) saturate(531%)
    hue-rotate(292deg) brightness(95%) contrast(89%);
}

.vp-left-drawer {
  /*background-color: #dbf1f5;*/
  background-color: #ffffff;
  padding: 0;
  text-align: center;
  /* border: 1px solid #eceaeb; */
  border-radius: 28px 0px 0px 28px;
  position: fixed;
  z-index: 1;
  width: 38px;
  height: 56px;
  /* height: 100%; */
  top: 400px;
}
.vp-left-drawer-open {
  /*background-color: #dbf1f5;*/
  background-color: #ffffff;
  padding: 0;
  text-align: center;
  /* border: 1px solid #eceaeb; */
  border-radius: 28px 0px 0px 28px;
  position: fixed;
  z-index: 1;
  width: 75px;
  height: 56px;
  /* height: 100%; */
  top: 400px;
}

.vp-left-drawer li {
  padding: 2px 0;
}
.vp-left-drawer-open li {
  padding: 2px 0;
}

.vp-left-drawer .nav-tabs .nav-item.show .nav-link,
.vp-left-drawer .nav-tabs .nav-link.active {
  background-color: #004e5b;
}
.vp-left-drawer-open .nav-tabs .nav-item.show .nav-link,
.vp-left-drawer-open .nav-tabs .nav-link.active {
  background-color: #004e5b;
}

.vp-right-drawer {
  /* padding-top: 20px; */
  /* padding-left: 0; */
  padding-right: 0;
  margin-left: 50px;
  /* margin-top: 127px; */
  width: 390px;
}
.flex-align-center-hub {
  margin-bottom: 8px;
}
.flex-align-center-hub-card {
  margin-left: 5%;
  display: flex;
}
.addFieldMission-hub {
  margin-bottom: 8px;
}
.addFieldMission-hub-deleteIcon {
  /* display: flex; */
  float: right;
  /* padding-top: 15px; */
}
.addFieldMission-hub-dragIcon {
  position: relative;
  top: 160px;
}
.addFieldMission-hub-dragIcon {
  position: relative;
  top: 160px;
}
.powered-hub {
  padding-top: 2px;
  color: #3b2f33 !important;
}
.hub-header-container {
  margin: 15px;
}

.hub-header-main {
  display: flex;
  align-items: center;
}
.hub-header-login {
  color: "#fffff";
  font-size: 15px;
  font-family: Circular-Pro-Book;
  font-weight: 450;
  /* margin-left: 25%; */
  cursor: pointer;
}

.hub-header-Shift-card-main {
  color: "#60545C";
  font-size: 18px;
  font-family: Circular-Pro-Book;
  font-weight: 450;
  line-height: 29.45px;
  /* margin-left: 25%; */
  cursor: pointer;
}

.opportunity_button_sign {
  height: 40px;
  border-radius: 4px;
  color: #ffffff;
  /* border: #f48707; */
  /* background-color: #f48707; */
  width: 130px;
}

.opportunity_button_confirmed {
  height: 40px;
  border-radius: 4px;
  color: #f48707;
  border: 1px solid #f48707;
  background-color: #ffffff;
  width: 130px;
}

.hub-header-join {
  color: #60545c;
  font-size: 15px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
  /* margin-left: 25%; */
  margin-left: 20px;
  cursor: pointer;
  background-color: white;
  height: 48px;
  width: 130px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 4px;
}
.hub-header-line {
  margin-top: 6px;
}

.hub-header-about {
  color: #80767d;
  font-size: 18px;
  font-family: "Circular-pro-Book" !important;
  font-weight: 450;
  cursor: pointer;
}
/* .hub-header-about:hover {
  color: #80767d !important;
} */
.hub-footer-about {
  color: #80767d;
  font-size: 16px;
  font-family: "Circular-pro-Book" !important;
  font-weight: 450;
  cursor: pointer;
}
.hub-footer-about:hover {
  color: #004e5b !important;
}
.hub-header-opportunities {
  color: #80767d;
  font-size: 18px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
  /* margin-left: 10%;   */
  cursor: pointer;
}

/* .hub-header-opportunities:hover {
  color: #80767d !important;
} */
.hub-header-resources {
  color: #80767d;
  font-size: 18px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
  /* margin-left: 25%; */
  cursor: pointer;
}
/* .hub-header-resources:hover {
  color: #80767d !important;
} */
.hub-slate-plushub {
  margin-right: 0px;
  align-self: flex-start;
  gap: 8px;
  cursor: pointer;
}
.hub-subtext-editable {
  gap: 8px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 32%;
}

.hub-header-mainline {
  display: flex;
  align-items: center;
}
.hub-header-mainline-public {
  display: flex;
  align-items: center;
  height: 48px;
  justify-content: flex-end;
  padding: 0px 20px 0px 0px;
}
.hub-subtext-editable-main {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 21px;
}
.hub-subtext-editable-margin {
  margin-top: 14px;
}
.hub-subtext-editable-join-div {
  margin-top: 15px;
  font-size: 21px;
  color: #60545c;
  height: 48px;
  width: 240px;
}
.hub-subtext-editable-join-button {
  /* color: white !important; */
  text-transform: capitalize;
  height: 44px;
  width: 236px;
  margin-top: 1px;
  margin-left: 0px;
  margin-bottom: 1px;
  margin-right: 0px;
}
.hub-gradient-main-container {
  margin-top: 7px;
}
.hub-gradient-main-display {
  display: flex;
}
.hub-gradient-main-span {
  color: #004e4b;
  font-size: 18px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
  cursor: pointer;
}
.hub-gradient-span {
  color: #60545c;
  font-size: 18px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
}
.hub-gradient-scale-main {
  color: #80767d;
  font-size: 18px;
  font-family: "Circular-Pro-Book" !important;
  font-weight: 450;
  cursor: pointer;
  display: flex;
  gap: 20px;
}
.hub-gradient-scale {
  color: #60545c;
  margin-top: 5px;
  font-size: 18px;
}
.gradient-upload-button {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 15px;
  max-width: 40%;
  padding-left: 0px;
  padding-right: 0px;
  background-color: #ffffff;
}
.gradient-upload-label {
  width: 100%;
  margin-bottom: 0px;
}
.gradient-upload-savebutton {
  /* height: 40px; */
  font-size: 15px;
  width: 350px;
  max-width: 40%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 0px;
  padding-left: 0px;
}

.add-edit-btn {
  border: 1px solid #60545C;
  color: #60545C !important;
  font-family: "Circular-Pro-Book";
  border-radius: 4px;
}

.gradient-upload-editbutton {
  height: 41px;
  font-size: 15px;
  width: 180px;
  max-width: 40%;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 0px;
  padding-left: 0px;
  color: #ffffff;
  font-size: 15px !important;
}

.vp-right {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 50px;
  margin-top: 127px;
  width: 390px;
}

.vp-right h2 {
  font-size: 21px;
  line-height: 29px;
  color: #60545c;
  padding: 0 16px;
  font-weight: 450;
  font-family: "Circular-Pro-Book";
}

.untag-result-list h3 {
  color: #004e5b;
  font-size: 18px;
  line-height: 27px;
  font-weight: 450;
  font-family: "Circular-Pro-Book";
}

.vp-right .untag-result-list li {
  padding: 10px 10px 10px 28px;
  font-size: 15px;
  color: #297f8e;
}

.vp-right .untag-result-list {
  margin-bottom: 30px;
  /* border-bottom: 1px solid #eceaeb; */
  padding: 0 16px 30px;
}

.vp-right .untag-result-list2 {
  /* margin-bottom: 30px; */
  /* border-bottom: 1px solid #eceaeb; */
  padding: 0px 0px 8px 24px;
}

.vpi-top {
  display: flex;
  position: relative;
  margin-bottom: 20px;
  color: #39747e;
}

.vpi-top a {
  position: absolute;
  right: 16px;
  top: 0;
  font-size: 18px;
  line-height: 27px;
  border: 1px solid #004e5b;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.vpi-top h2 {
  color: #004e5b;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.vpi-middle {
  display: flex;
  padding: 0 16px;
  margin-bottom: 20px;
  gap: 20px;
}

.vpi-middle h3 {
  font-size: 15px;
  font-family: "Circular-Pro-Book";
  margin: 0;
  color: #60545c;
  font-weight: 400;
}

.vpi-middle span {
  font-size: 11px;
  text-transform: uppercase;
  color: #80767d;
  font-weight: 400;
  font-weight: 400;
}

.vpim-one {
  width: 50%;
  cursor: pointer;
}

.vpi-bottom {
  padding: 0;
  margin-bottom: 20px;
}

.vpi-bottom h3 a {
  /* color: #5198b2; */
  color: #60545c;
}

.vpi-bottom h3 {
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
  margin: 0;
}

.vpi-bottom span {
  font-size: 11px;
  text-transform: uppercase;
  color: #80767d;
}

.vpi-bottom-wrap {
  margin-bottom: 30px;
  /* border-bottom: 1px solid #eceaeb; */
  padding: 0 16px 30px;
}

.vp-availability {
  margin-bottom: 30px;
  /* border-bottom: 1px solid #eceaeb; */
  padding: 0 16px 30px;
}

.vp-time-off {
  margin-bottom: 30px;
  padding: 0 16px 30px;
}

.vp-time-off h2 {
  font-family: "Circular-Pro-Book";
  color: #004e5b;
  font-size: 18px;
  line-height: 27px;
  padding: 0;
}

.vp-time-off h3 {
  color: #60545c;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin: 0;
  line-height: 22px;
}

.profiletimeoff p {
  color: #a0989d;
}

.vp-time-off .row {
  border-bottom: 1px solid #eceaeb;
  /* margin-left: 0; */
  margin-right: 0;
  padding-top: 12px;
  padding-bottom: 8px;
  margin-bottom: 0;
  font-size: 15px;
  /* margin-bottom: 20px; */
  position: relative;
}

.vp-time-off h4 {
  font-family: "Circular-Pro-Book";
  color: #60545c;
  font-size: 15px;
  line-height: 21px;
  margin: 0;
  font-weight: 400;
}

.vp-availability h2 {
  font-family: "Circular-Pro-Book";
  color: #004e5b;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  padding: 0;
}

.vp-availability .row {
  font-family: "Circular-Pro-Book";
  font-size: 15px;
  margin-bottom: 15px;
  color: #60545c;
  font-weight: 400;
}

.vp-availability .row .col-7 {
  padding-left: 30px;
}

.vp-info-edit .date .form-text {
  background-image: url(../images/icon-calendar.svg);
  background-repeat: no-repeat;
  background-position: 17px center;
  padding: 16px 16px 16px 50px;
}

/* ===== Horizontal Rule ===== */
.rule {
  margin: 10px 0;
  border: none;
  height: 1.5px;
  background-image: linear-gradient(left, #f0f0f0, #c9bbae, #f0f0f0);
}

/* ===== Select Box ===== */
.sel {
  font-size: 15px;
  display: inline-block;
  margin: 0;
  width: 100%;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  color: #60545c;
}

.sel::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon-arrow-down-blck.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 7px;
  right: 15px;
  top: 25px;
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-size: 15px;
  line-height: 21px;
  color: #b3adb1;
  padding: 0.2em 0.5em;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  content: attr(data-placeholder);
  visibility: hidden;
  position: absolute;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  /* height: 225px; */
  /* 305px; */
  overflow: auto;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}

.sel__box__options {
  display: list-item;
  font-size: 15px;
  color: #b3adb1;
  padding: 0.5em 1em;
  user-select: none;
  font-family: "Circular-Pro-Book";
}

.sel__box__options.selected::after {
  display: inline;
}

.sel__box__options:hover {
  background-color: #ebedef;
}

.sel--black-panther {
  z-index: 3;
}

/* ----- Select Box Superman ----- */
.sel--superman {
  /* display: none;
     */
  z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.vp-date .date .form-text {
  background-image: url(../images/icon-calendar.svg);
  background-repeat: no-repeat;
  background-position: 17px center;
  padding: 16px 16px 16px 50px;
}

.vpi-top a.vp-done {
  background-color: #39747e;
  color: #fff;
}

.vp-info-edit,
.vp-address-edit,
.social-links,
.vp-date,
.vp-blog,
.vp-refernce,
/* .vp-skills, */
.vp-textarea {
  margin: 0 16px 25px;
  border-bottom: 1px solid #eceaeb;
}

.vp-date span {
  padding: 6px 0 0 40px;
  display: inline-block;
  vertical-align: middle;
}

.bold-red {
  color: #eb5757;
  font-size: 18px;
  line-height: 21px;
}

.cool-blue {
  color: #2090a4;
  font-size: 18px;
  padding: 620px 10px 0 32px;
}

.avi-edit-wrap .sel__placeholder {
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
}

.avi-edit-wrap .sel__box__options {
  font-size: 18px;
  line-height: 21px;
}

.avi-edit-wrap {
  position: relative;
  z-index: 99;
}

.avi-time-wrap .sel__placeholder {
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  padding: 0.2em 0.5em 0.2em 26px;
}

.avi-time-wrap .sel__box__options {
  font-size: 18px;
  line-height: 21px;
}

.avi-time-wrap .sel {
  background-image: url(../images/icon-timeimg.svg);
  background-repeat: no-repeat;
  background-position: 11px center;
}

.avi-time-wrap.light-color .sel__placeholder {
  color: #b3adb1;
}

.btn-wrap {
  padding: 0 16px;
}

.bulk-search-box.search-country-wrap {
  margin: 30px 0 50px;
}

.avi-btn-wrap a {
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  display: block;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
}

.avi-btn-wrap a.teal-border-btn {
  color: #39747e;
  border: 1px solid #58a6a6;
}

.avi-btn-wrap a.teal-bg-btn {
  color: #fff;
  border: 1px solid #fff;
  background-color: #58a6a6;
}

.avi-btn-wrap a.green-bg-btn {
  color: #fff;
  border: 1px solid #527865;
  background-color: #527865;
}

/* .volunteers-profile.newClass {
  box-shadow: 0px 2px 2px rgba(4, 34, 49, 0.1),
    0px 4px 20px rgba(4, 34, 49, 0.12);
} */

.warning-popup {
  text-align: center;
}

.warning-popup .modal-header {
  text-align: center;
  color: #d9402c;
  font-size: 27px;
  line-height: 38px;
  display: block;
  border: none;
  padding: 35px 16px 20px;
}

.warning-popup button.close {
  position: absolute;
  right: 16px;
  top: 6px;
  font-size: 39px;
  display: none;
}

.warning-popup .avi-btn-wrap {
  text-align: left;
}

.warning-popup .avi-btn-wrap a {
  vertical-align: initial;
  display: inline-block;
}

.warning-popup .avi-btn-wrap a.teal-border-btn {
  padding: 9px 0;
  width: 48%;
  margin-right: 10px;
}

.warning-popup .add-btn.red-bg-btn {
  width: 100%;
}

.warning-popup .red-bg-btn {
  padding: 11px 0;
  width: 48%;
}

.warning-popup .modal-body {
  padding: 0 30px 30px;
}

.warning-popup .modal-body p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
}

.red-bg-btn {
  background: #d9402c;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}

.note-wrapper {
  padding: 6px 16px 6px 13px;
}

textarea.textarae-control {
  resize: none;
  padding: 14px 17px;
  min-height: 104px;
  font-size: 15px;
  border: 1px solid #b3adb1;
}

.add-note-wrap {
  display: flex;
  margin-bottom: 23px;
}

.note-wrapper h2 {
  padding: 0 0 8px 0;
}

.note-wrapper p {
  margin: 0;
  color: #a0989d;
  font-size: 15px;
  line-height: 21px;
  text-align: center;
}

.add-note-wrap a {
  display: inline-block;
  vertical-align: top;
}

.note-text-wrap .add-note-wrap {
  margin-bottom: 15px;
}

.note-form {
  border-bottom: 1px solid #eceaeb;
  margin-bottom: 22px;
}

.note-form .add-form-control {
  margin: 0 0 24px 0;
}

.flag-note {
  color: #39747e;
  font-size: 15px;
  line-height: 21px;
  background-image: url(../images/icon-make-important-white.svg);
  background-repeat: no-repeat;
  padding: 0 0 0 25px;
  margin: 7px 0 0 0;
  width: 46%;
  background-position: 0px 1px;
  font-family: "Circular-Pro-Book";
}

.flag-note:hover {
  color: #004e5b;
}

.flag-note.flag-red {
  color: #d9402c;
  background-image: url(../images/icon-make-important.svg);
  background-position: 0px 4px;
}

.cross-browser-width-fill {
  width: 100%;
  width: -webkit-fill-available;
  width: -moz-available;
  width: -ms-fill-available;
  width: fill-available;
  width: stretch;
}

@media only screen and (min-width: 768px) {
  /* Your desktop styles go here */
  .cross-browser-width-fill {
    width: 330px;
  }
}

.btn-teal-bg {
  text-align: center;
  background: #527865;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 7px 0 6px;
  width: 35%;
  color: #fff;
  font-weight: 450;
  font-family: "Circular-Pro-Book";

}    
.btn-teal-bg:hover{
  background: #5E8973;
}  
 


.note-text-wrap {
  margin-bottom: 10px;
  border-bottom: 1px solid #eceaeb;
  padding-bottom: 20px;
}

.note-text-wrap:last-child {
  border: none;
}

.flag-delete {
  text-align: right;
  width: 54%;
}

.note-info {
  text-align: left;
}

.note-wrapper p.post {
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 450;
  font-family: "Circular-Pro-Book";
}

.note-wrapper p.post-author,
.note-wrapper p.post-date {
  color: #80767d;
  text-align: left;
  font-size: 13px;
  line-height: 19px;
  font-weight: 450;
  font-family: "Circular-Pro-Book";
}

.btn-select.pending-select {
  width: 228px;
  z-index: 5;
}

.btn-select li a.active-link {
  color: #39747e;
}

.btn-select li a.inactive-link {
  color: #bfbbbe;
}

.textarae-control::-webkit-input-placeholder {
  color: #b3adb1;
}

.textarae-control::-moz-placeholder {
  color: #b3adb1;
}

.textarae-control:-ms-input-placeholder {
  color: #b3adb1;
}

.textarae-control:-moz-placeholder {
  color: #b3adb1;
}

textarea.textarae-control:focus {
  box-shadow: none;
  border: 1px solid #60545c;
}

textarea.textarae-control:hover {
  box-shadow: none;
  border: 1px solid #60545c;
}

.note-wrapper h2.note-heading {
  padding: 20px 0 8px 0;
}

.si-btn-primary.btn-invite {
  padding: 16px 62px;
}

.icon-active {
  margin: 0 15px 0 0;
}

.company-profile .vp-link {
  margin: -34px 0 0 2px;
}

.company-profile .profile-details {
  padding: 8px 0 0 50px;
}

.volunteers-profile.company-profile {
  padding: 16px 16px 23px 16px;
}

.company-wrap {
  padding: 120px 0 0 0;
}

.company-heading {
  border-bottom: 1px solid #eceaeb;
  padding-bottom: 15px;
}

.company-heading h2 {
  font-size: 24px;
  line-height: 34px;
  padding: 0 16px 0 16px;
}

.company-wrap .vpi-top {
  padding: 0 16px;
  margin-top: 39px;
  margin-bottom: 13px;
}

.company-wrap .vpi-top a {
  padding: 6px 23px 5px;
  top: -8px;
}

.company-wrap .vpi-bottom h3 {
  font-weight: 500;
  font-family: "Circular-Pro-Book";
  margin-bottom: 5px;
}

.company-wrap .vpi-bottom {
  margin-bottom: 24px;
}

.company-wrap .vpi-bottom a {
  color: #5198b2;
}

hr {
  border-bottom: 1px solid #eceaeb;
}

.blue-btn {
  background-color: #39747e;
}

.volunteers-list-edit h2 {
  font-size: 18px;
  line-height: 24px;
  color: #39747e;
  margin-bottom: 20px;
}

.vl-wrap .col-6 span {
  color: #60545c;
  font-size: 15px;
  line-height: 21px;
}

.vlw-right {
  text-align: right;
}

.vl-btn {
  border: 1px solid #5198b2;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  padding: 6px 16px;
  margin-left: 12px;
}

.vl-wrap .row {
  margin-bottom: 15px;
}

.show-row {
  display: inline-block;
  color: #39747e;
  font-size: 18px;
  font-family: "Circular-Pro-Medium";
  margin-bottom: 20px;
}

.home .profile-info {
  display: block;
}

.profile-info {
  display: block;
  float: right;
  background-image: url(../images/down-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: right center;
  /* padding: 0 26px 0 0; */
}

.profile-info.active {
  width: 279px;
  /* padding: 0 26px 0 0; */
}

.profile-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.main-heading {
  display: none;
}

/* .swticher-icon {
	display: none;
} */
.search-container {
  display: none;
}

/* #vl-table {
  display: none;
} */

.chat-box {
  display: none;
}

.selected-tab {
  display: none;
}

.free-popup {
  display: block;
}

.free-popup .modal-dialog {
  max-width: 608px;
  margin: 0 auto;
}

.free-popup .modal-header {
  display: block;
  padding: 40px 40px 0;
  border: none;
}

.free-popup .modal-header h4 {
  text-align: center;
  font-size: 27px;
  line-height: 38px;
  color: #39747e;
}

.free-popup .modal-header .close {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 40px;
}

.free-popup .modal-body {
  padding: 0 40px 40px;
}

.free-popup .modal-body h2 {
  font-size: 18px;
  color: #60545c;
  line-height: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #39747e;
  margin-bottom: 11px;
}

.free-popup .modal-body h2 span {
  background-color: #eceaeb;
}

.btn-wrap-popup {
  text-align: right;
  border-top: 1px solid #eceaeb;
  padding-top: 15px;
}

.free-popup.modal {
  position: initial;
  top: initial;
}

.btn-wrap-popup a {
  background: #39747e;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  padding: 16px 0;
  width: 252px;
  display: inline-block;
  text-align: center;
}

.pop-condition .control__indicator {
  width: 16px;
  height: 16px;
}

.pop-condition .control--checkbox .control__indicator::after {
  top: 3px;
  left: 4px;
}

.pop-condition span {
  padding: 0 0 0 29px;
}

.pop-condition {
  margin-bottom: 14px;
  padding-left: 16px;
}

#add-wrap {
  opacity: 0;
  height: 0;
}

.bulk-search-list {
  /* margin-top: 20px; */
  text-align: left;
  /* padding: 0 16px; */
}

.setting-tab {
  padding: 0;
}

.setting-tab .nav-tabs {
  border: none;
}

.setting-tab .nav-tabs .nav-link {
  border: none;
  font-size: 18px;
  line-height: 27px;
  padding: 14px 25px 14px 25px;
  border-bottom: 1px solid #eceaeb;
}

.setting-tab .nav-tabs .nav-link:hover {
  color: #39747e;
}

.setting-tab .nav-tabs .nav-item.show .nav-link,
.setting-tab .nav-tabs .nav-link.active {
  border-bottom: none;
  color: #39747e;
  position: relative;
}

.setting-tab .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  background: #39747e;
  width: 66%;
  margin: 0 auto;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
}

.setting-tab .tab-content {
  padding: 25px;
}

.setting-tab .tab-content h3 {
  font-size: 18px;
  line-height: 38px;
  color: #60545c;
  margin-bottom: 0;
  padding-left: 0;
}

.st-tab ul {
  margin: 0;
  border-bottom: 1px solid #eceaeb;
}

.st-tab ul li {
  display: inline-block;
  padding: 10px 0;
  font-size: 18px;
  line-height: 27px;
  width: 30%;
}

.setting-tab .tab-content .is-heading {
  margin-bottom: 10px;
  margin-top: 10px;
}

.st-list {
  margin: 0;
}

.st-list label {
  margin-bottom: 12px !important;
}

.si-applied-top.si-applied-radio p {
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
}

.inactive-txt {
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #b3adb1;
  font-size: 15px;
  width: 54px;
  margin: 0 5px;
}

.database-move {
  max-width: 1000px;
}

.setting-tab .tab-content .database-move h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.dm-list {
  margin: 0;
}

.dm-list li {
  border: 1px solid #d8d5d6;
  padding: 10px 16px 10px 16px;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 10px;
  position: relative;
}

.database-row ul li {
  background-color: #f3f2f3;
  background-image: url(../images/icon-drag-drop-gray.svg);
  background-repeat: no-repeat;
  background-position: 8px center;
  padding: 10px 16px 10px 30px;
}

.database-row ul li.active {
  background-color: #fff;
  background-image: url(../images/icon-drag-drop.svg);
}

.active-row ul li:hover {
  background-color: #fff;
  background-image: url(../images/icon-drag-drop.svg);
  background-position: 8px center;
  padding: 10px 16px 10px 30px;
  background-repeat: no-repeat;
}

.active-row ul li.active {
  background-position: 8px center;
  padding: 10px 16px 10px 30px;
  background-repeat: no-repeat;
  background-image: url(../images/icon-drag-drop.svg);
}

.active-row ul li.active .list-icon-wrap {
  opacity: 1;
}

.active-row ul li.selected {
  border: 1px solid #b4d6e1;
  background-color: #f0f7f9;
  background-image: url(../images/icon-drag-drop.svg);
  background-position: 8px center;
  padding: 10px 16px 10px 30px;
  background-repeat: no-repeat;
}

.active-row ul li.selected .list-icon-wrap {
  opacity: 1;
}

.active-row ul li:hover .list-icon-wrap {
  opacity: 1;
}

.list-icon-wrap {
  position: absolute;
  right: 9px;
  top: 6px;
  opacity: 0;
}

.list-icon-wrap a {
  display: inline-block;
  margin: 0 5px;
}

.dm-info {
  border: 1px dotted #b8bece;
  padding: 16px 48px;
}

.dm-info p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: #60545c;
}

.btn-add-field {
  background: #39747e;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  line-height: 27px;

  padding: 6px 20px;
  display: none;
}

.btn-add-field:hover {
  background: #d8d5d6;
}

.tooltip {
  position: absolute;
  display: inline-block;
  opacity: 1;
  color: #ffffff;
  font-size: 18px;
  line-height: 27px;
  font-family: "Circular-Pro-Book";
  right: 111px;
  z-index: 0;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 100%;
  background-color: #fff;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 47px;
  left: 0;
  margin-left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border: 2px solid #d8d5d6;
}

.tooltip .tooltiptext p {
  font-size: 13px;
  line-height: 17px;
  color: #60545c;
  padding: 10px;
}

.tooltip .tooltiptext a {
  background: #39747e;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  width: 93%;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 42%;
  background-image: url(../images/tooltip.png);
  background-repeat: no-repeat;
  width: 27px;
  height: 17px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.add-popup.select-popup .modal-dialog {
  width: 600px;
}

.add-popup.select-popup .modal-header {
  border: none;
}

.add-popup.select-popup .modal-body {
  padding: 40px;
}

.select-list li {
  font-size: 15px;
  line-height: 140%;
  padding: 10px 16px;
  position: relative;
}

.select-list li:hover {
  background: #f9f9f9;
  color: #39747e;
}

.select-list li.selected {
  color: #39747e;
}

.select-list li.selected:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-tick.svg);
  right: 0;
  top: 9px;
  width: 22px;
  height: 16px;
}

.pop-btn .teal-border-btn {
  color: #39747e;
  border: 1px solid #39747e;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  display: block;
  padding: 10px;
  text-align: center;
}

.free-popup p {
  text-align: center;
  margin: 12px 0;
}

.free-popup .input-group.date.add-form-control {
  margin: 0;
}

.free-popup .input-group.date.add-form-control .form-text {
  width: 50%;
  opacity: 0.5;
}

.custom-label {
  padding: 5px 0 0 32px;
  margin: 20px 0;
}

.custom-label span img {
  margin: 0 0 0 10px;
}

.free-popup.pro-popup .modal-body h2 span {
  background-color: #f0f7f9;
  display: block;
}

.free-popup p.edit-currency {
  color: #39747e;
  text-align: left;
}

.edit-currency img {
  margin: -4px 7px 0 0;
}

.add-choice-link {
  color: #39747e;
  font-size: 18px;
  line-height: 150%;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn-wrapper span {
  color: #d8d5d6;
  font-size: 18px;
  margin-left: 15px;
}

.btn {
  border: 1px solid #eceaeb;
  color: #d8d5d6;
  background-color: white;
  padding: 12px 55px;
  border-radius: 4px;
  font-size: 18px;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.vl-pending-header {
  display: none;
}

.si-applied-filter.cal-filter .bulk-search-box.search-country-wrap {
  margin: 30px 0 50px;
}

.sfw-left .si-btn-close {
  position: absolute;
  right: auto;
}

/*Signup page*/
.sw-content {
  max-width: 608px;
  width: 100%;
  margin: 10% auto;
  text-align: center;
}

.sw-content.grid {
  display: grid;
  place-content: center;
  min-height: 100vh;
  margin: 0 auto;
}

.sw-content h1 {
  font-size: 30px;
  line-height: 35px;
  color: #60545c;
  font-weight: 400;
  margin-bottom: 35px;
}

.sw-content .form-group {
  margin: 0 0 30px;
}

.sw-content .form-group .input-text {
  border: 1px solid #d8d5d6;
  display: block;
  font-size: 18px;
  letter-spacing: 0.1px;
  color: #60545c;
  font-weight: 400;
  padding: 11px 15px;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  outline: none;
  background-color: #fff;
}

.sw-content .form-group .input-error {
  border: 1px solid rgb(232, 78, 78);
  color: rgb(232, 78, 78);
  font-weight: 400;
  outline: none;
  background-color: #fff;
}

.sw-content .form-group img {
  cursor: pointer;
  width: 20px;
  right: 12px;
  top: 12px;
}
.adm-title {
  font-size: 45px;
}
.adm-term-text {
  cursor: "pointer";
}
.sw-content .form-group .eye {
  cursor: pointer;
  position: absolute;
  width: 20px;
  right: 12px;
  top: 12px;
}

.sw-content .input-label-txt {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  color: #80767d;
  padding-top: 5px;
}

.sw-content .input-btn {
  border: 1px solid #d8d5d6;
  display: block;
  font-size: 18px;
  letter-spacing: 0.1px;
  color: #60545c;
  font-weight: 400;
  padding: 11px 0;
  border-radius: 4px;
}

.input-submit {
  border: none;
  background-color: #39747e;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  padding: 12px 0;
  width: 100%;
}

.input-submit-email {
  border: none;
  background-color: #527865;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  padding: 12px 0;
  width: 100%;
}
.input-submit-email:hover {
  border: none;
  background-color: #5E8973;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  padding: 12px 0;
  width: 100%;
}
.sw-content .input-btn:hover {
  border: 1px solid #60545C;
  background-color: #F7F4F1;
  color: #60545C;
  cursor: pointer;
}

.sw-content .or-text:before {
  content: "";
  position: absolute;
  width: 47%;
  height: 1px;
  background-color: #d8d5d6;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sw-content .or-text:after {
  content: "";
  position: absolute;
  width: 47%;
  height: 1px;
  background-color: #d8d5d6;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sw-content .or-text {
  margin: 0 0 30px;
  position: relative;
  color: #60545c;
  font-size: 15px;
  letter-spacing: 0.1px;
  line-height: 21px;
}

.eamil-sent-text {
  font-size: 21px;
  letter-spacing: 0.1px;
  line-height: 30px;
}

.eamil-sent-text span {
  display: block;
}

.eamil-sent-text span a {
  color: #0a4f70;
}

.eamil-sent-text span a:hover {
  color: #0a4f70;
  text-decoration: underline;
}
.already-acc-sign-in-text{
  color:#60545C !important;
  cursor: pointer !important;
}
.already-acc-sign-in-text:hover{
  color:#58A6A6 !important;
  cursor: pointer !important;
}

.already-acc-sign-in-text-create{
  color:#527865 !important;
  cursor: pointer !important;
}
.already-acc-sign-in-text-create:hover{
  color:#5E8973 !important;
  cursor: pointer !important;
}

.sw-content .already-acc {
  color: #60545c;
  margin: 0 0 60px;
  font-size: 18px;
  letter-spacing: 0.1px;
  line-height: 27px;
}
.sw-content .already-acc-confirmed {
  color: #60545c;
  margin: 0 0 38px;
  font-size: 18px;
  letter-spacing: 0.1px;
  line-height: 27px;
  margin-top: 4%;
}
.sw-content .already-acc-confirmed-text {
  color: #527865;
  cursor: pointer;
}
.sw-content .already-acc-confirmed-text:hover {
  color: #5E8973;
  cursor: pointer;
}

.already-acc.confirm-text {
  margin: 0px 0 20px 0;
}

.sw-content .terms-text {
  font-size: 15px;
  letter-spacing: 0.1px;
  line-height: 21px;
  color: #60545c;
  border-top: 1px solid #d8d5d6;
  padding-top: 15px;
}

.sw-content .terms-text a {
  color: #0a4f70;
  cursor: pointer;
}
.for-cursor {
  cursor: pointer;
}
.sw-content .terms-text a:hover {
  color: #0a4f70;
  text-decoration: underline;
  cursor: pointer;
}

.sw-content .already-acc a {
  color: #60545C;
  cursor: pointer;
}

.sw-content .already-acc a:hover {
  color: #60545C;
  /* text-decoration: underline; */
}

.sw-content .input-btn img {
  display: inline-block;
  vertical-align: top;
}

.sw-content .input-btn span {
  padding: 0 0 0 10px;
  display: inline-block;
  vertical-align: middle;
}

.step-form .modal-wrap {
  margin: 10px auto;
}

.step-form .title {
  /* margin-bottom: 30px; */
  color: #39747e;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 1px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eceaeb;
}

.step-form .title1 {
  /* margin-bottom: 30px; */
  color: #39747e;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 1px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eceaeb;
  text-align: center;
  padding-top: 24px;
}

.step-form .title4 {
  /* margin-bottom: 30px; */
  color: #39747e;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceaeb;
}

.step-form .description {
  color: #60545c;
  margin-bottom: 20px;
  /* margin-top: 156px; */
  margin-top: 30px;
  font-size: 45px;
  line-height: 59px;
}

.step-form .modal-body {
  background: white;
  padding: 0;
  margin-bottom: 20px;
  display: none;
  box-sizing: border-box;
  width: 100%;
}

.step-form input[type="text"],
.step-form input[type="email"] {
  padding: 14px 20px;
  border: 1px solid #b3adb1;
  border-radius: 4px;
  display: block;
  width: 45%;
  margin-bottom: 4px;
  box-sizing: border-box;
  outline: none;
}

.step-form .button,
.step-form .button-alt {
  padding: 12px 101px;
  border-radius: 4px;
  background: #58a6a6;
  color: white;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 27px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #58a6a6;
}

.step-form .create-org {
  padding: 12px 42px;
  border-radius: 4px;
  background: #39747e;
  color: white;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 27px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #39747e;
}

.button:hover {
  background: #39747e;
  border: 1px solid #39747e;
}

.button.rerun-button,
.rerun-button.rerun-button {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  box-shadow: 0px 10px 15px -6px rgba(0, 0, 0, 0.2);
  display: none;
}

.modal-body.is-showing {
  display: block;
}

.step-form .form-group {
  margin-bottom: 16px;
  /* margin-bottom: 32px; */
}

.step-form .button-wrap {
  padding: 20px 0;
  border-top: 1px solid #eceaeb;
  /* margin-top: 110px; */
  margin-top: 25px;
}

.step-form .form-group p {
  font-size: 15px;
  color: #a0989d;
}

.step-form label {
  font-size: 27px;
  line-height: 38px;
  color: #60545c;
  margin-bottom: 16px;
}

.step-form .step-2 {
  max-width: 980px;
}

.step-form .step-2 .col-md-6 {
  margin-bottom: 25px;
}

.select-category {
  border: none;
  padding: 14px 24px 14px 24px;
  border-radius: 4px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  width: 100%;
  text-align: left;
  color: #60545c;
}

.step-form .button-alt {
  background-color: transparent;
  border: 1px solid #39747e;
  color: #39747e;
  width: 292px;
  text-align: center;
  margin-right: 25px;
}

.select-category:hover,
.select-category.active {
  background-color: #e0eff4;
  border: 1px solid #39747e;
  color: #39747e;
}

.step-form .step-3 {
  max-width: 980px;
}

.step-form .select-box .form-text {
  background-image: url(../images/icon-search.svg);
  background-repeat: no-repeat;

  background-position: 20px 18px;
  background-color: #ffffff;

  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px 16px 16px 50px;
  width: 100%;
  outline: none;
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  max-width: 608px;
}

.step-form .add-form-control {
  position: relative;
  max-width: 608px;
}

.step-form .add-form-control::before {
  content: "";
  background-image: url(../images/icon-down.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.step-form .add-tag li {
  border: 1px solid #d8d5d6;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  vertical-align: top;
  padding: 10px 45px 10px 20px;

  text-align: center;
  color: #5198b2;
  position: relative;
  font-size: 18px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.step-form .add-tag li:after {
  content: "";
  background-image: url(../images/plus-icon.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.step-form .focus-tag li {
  border: 1px solid #5198b2;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  vertical-align: top;
  padding: 7px 45px 10px 20px;

  text-align: center;
  color: #5198b2;
  position: relative;
  font-size: 18px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.step-form .focus-tag li:after {
  content: "";
  background-image: url(../images/close-icon.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.add-focus-select {
  margin: 30px 0;
}

.add-focus-select h2 {
  font-size: 27px;
  line-height: 38px;
  color: #60545c;
  /* padding-bottom: 15px; */
}

.select-wrap {
  margin: 0 auto;
  text-align: center;
  border: 1px solid #d8d5d6;
  padding: 24px;
  border-radius: 5px;
  margin-bottom: 25px;
  cursor: pointer;
  width: 210px;
  height: 206px;
}

.select-wrap:hover,
.select-wrap.active {
  border: 1px solid #39747e;
  background: #f7fbfc;
}

/* .step-3 .col-md-3 {
  display: flex;
} */
.modal-body.modal-body-step-5 {
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
}

.select-wrap span {
  font-size: 18px;
  color: #60545c;
  padding: 24px 0 0 0;
  display: block;
}

.step-form .error input[type="text"] {
  border: 1px solid #d9402c;
  color: #d9402c;
}

.step-form .error span {
  color: #d9402c;
  font-size: 11px;
  display: block;
  text-transform: uppercase;
  padding: 6px 0 10px;
}

.step-form .bk-to-db {
  padding: 12px 42px;
  border-radius: 4px;
  background: #39747e;
  color: white;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 27px;
  display: inline-block;
  cursor: pointer;
  width: 608px;
  border: 1px solid #39747e;
  text-align: center;
}

.profile-info span {
  font-size: 15px;
  margin: 0 12px 0 12px;
  color: #60545c;
  text-transform: capitalize;
  font-family: "Circular-Pro-Book";
}

.profile-info {
  cursor: pointer;
  position: relative;
  /* top: 4px; */
}

.profile-info a {
  color: #60545c;
  font-size: 15px;
  text-align: left;
  /* width: 40px; */
  height: 40px;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.profile-info a:hover {
  color: #60545c;
}

.profile-info.active::after {
  content: "";
  position: absolute;
  width: 108%;
  height: 56px;
  background: #f9f7f5;
  border: 1px solid #d8d5d6;
  box-sizing: border-box;
  border-radius: 0px 0px 4px 4px;
  /* right: -23px; */
  top: -12px;
  z-index: -1;
}

.profile-info span {
  display: none;
}

.profile-info.active span {
  /* display: inline-block; */
  display: flex;
}

.profile-dropdown {
  position: absolute;
  right: 0;
  width: 300px;
  background-color: #fff;
  z-index: 1001;
  top: 56px;
  border: 1px solid #d8d5d6;
  border-radius: 4px;
  padding: 0 0 0;
  display: none;
}

.profile-dropdown.active {
  display: block;
}

.profile-dropdown a img {
  margin: 0 5px 0 0;
}

.profile-dropdown a {
  color: #60545c;
}

.profile-dropdown a:hover {
  color: #60545c;
}

.profile-dropdown .col-md-3,
.profile-dropdown .col-md-9 {
  padding: 0;
}

.profile-dropdown .col-md-9 {
  position: relative;
}

.profile-dropdown .col-md-9:after {
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 17px;
  width: 8px;
  height: 14px;
  top: 14px;
}

.profile-dropdown li {
  border-top: 1px solid #eceaeb;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 20px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
  
}
.dropdown-hover {
  transition: background-color 0.2s ease;
  border-radius: 6px;
}

.dropdown-hover:hover {
  background-color: #F9F7F5;
  cursor: pointer;
}

.profile-dropdown li:hover {
  border-top: 1px solid #eceaeb;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 20px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
  background:#F9F7F5;
  
}

.profile-dropdown .row img {
  display: block;
  margin: 13px auto;
}

.pd-text {
  font-size: 13px;
  line-height: 20px;
  color: #80767d;
  font-weight: 400;
  font-family: "circular-pro-book" !important;
}
.fieldlist-settings{
  box-shadow:0px 2px 4px rgba(0, 0, 0, 0.08),0px 4px 6px rgba(0, 0, 0, 0.06);
  min-height: 58px;
  margin-bottom: 16px;
}
.pd-text-select{
   font-size: 13px;
  line-height: 20px;
  color: #60545C;
  font-weight: 400;
  font-family: "circular-pro-book" !important;
}
.pd-text-select:hover{
   font-size: 13px;
  line-height: 20px;
  color: #527865;
  font-weight: 400;
  font-family: "circular-pro-book" !important;
}

.pd-wrapper,
.pd-wrapper h3 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto;
  border-radius: 50%;
  color: #64545c;
  font-size: 15px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #e3f2f2;
  font-family: "Circular-Pro-Book";
}
.pd-wrapper h3:hover {
  color: #58a6a6;
}

.pd-heading {
  display: block;
  font-size: 15px;
  /*font-weight: 700;*/
  margin-bottom: 4px;
  line-height: 21px;
  text-transform: capitalize;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}

.profile-dropdown .row {
  margin: 0 0 20px 0;
}

.bg-container {
  background-color: white;
  min-height: 100vw;
}
.bg-container-dashboard {
  background-color: #f9f7f5;
  min-height: 100vh;
}

.v-profile-wrap {
  margin: 38px 0 0 0;
  text-align: center;
  font-family: "Circular-Pro-Book";
}

.v-profile-wrap img {
  margin: 0 auto 30px;
  display: block;
}

.v-btn {
  border: 1px solid #004e5b;
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  color: #004e5b;
  padding: 8px 25px;
  font-family: "Circular-Pro-Book";
  background-color: white;
}

.v-btn:hover {
  color: #004e5b;
}

.v-top {
  padding-top: 72px;
  padding-bottom: 72px;
}

.v-profile-heading h2 {
  font-size: 45px;
  /* line-height: 130%; */
  color: #39747e;
  font-family: "Circular-Pro-Book";
}

.v-profile-heading {
  float: left;
}

.v-btn-wrap {
  float: right;
  margin-top: 10px;
}

.v-bottom {
  clear: both;
  background-color: #fff;
  border: 1px solid #d8d5d6;
  padding: 25px 0;
}

.v-bottom p {
  margin: 0;
  padding: 0 70px;
  position: relative;
}

.v-bottom p a {
  color: #39747e;
}

.v-bottom p a:hover {
  color: #39747e;
}

.v-bottom p:after,
.v-bottom p:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  width: 8px;
  height: 16px;
}

.v-bottom p:after {
  background-image: url(../images/arrow-left.svg);
  left: 35px;
}

.v-bottom p:before {
  background-image: url(../images/arrow-right.svg);
  right: 35px;
}

.v-log-time,
.v-opportunities {
  background: #004e5b;
  border-radius: 4px;
  font-size: 1.2em;
  line-height: 150%;
  color: #fff;
  padding: 10px 0 10px 50px;
  width: 20.9em;
  display: inline-block;
  position: relative;
  font-family: "Circular-Pro-Book";
}

.v-log-time {
  margin-right: 20px !important;
}

.v-opportunities::before {
  content: "";
  position: absolute;
  background-image: url(../images/cal-icon.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  left: 13px;
}

.v-log-time span,
.v-opportunities span {
  position: relative;
  display: block;
}

.v-log-time span:after,
.v-opportunities span:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #b4d6e1;
  top: 0;
  right: 39px;
}

.v-log-time:after,
.v-opportunities:after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 9px;
  right: 11px;
  top: 18px;
}

.v-log-time:before {
  content: "";
  position: absolute;
  background-image: url(../images/time-icon.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  left: 9px;
  top: 8px;
}

.v-total-top p {
  font-size: 17px;
  line-height: 27px;
  margin: 0;
  text-transform: capitalize;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}

.v-total-top h2 {
  font-size: 50px;
  color: #39747e;
  padding-top: 5px;
  font-family: "Circular-Pro-Book";
}

.vtb-left,
.vtb-right {
  display: inline-block;
  width: 49%;
}

.vtb-left p,
.vtb-right p {
  margin: 0;
  font-size: 16px;
  font-family: "Circular-Pro-Book";
  color: #60545c;
}

.vtb-left h2,
.vtb-right h2 {
  font-size: 32px;
  color: #39747e;
  padding-top: 5px;
  font-family: "Circular-Pro-Book";
}

.v-total-top {
  padding: 55px 0 10px;
}

.commitment-container {
  padding: 0px 0 0 13px;
}

.commitment-container h2 {
  font-size: 33px;
  font-weight: 450;
  line-height: 36px;
}

.cc-tab .nav-tabs .nav-link:focus,
.cc-tab .nav-tabs .nav-link:hover {
  /* border-bottom: 4px solid #39747e; */
  color:#5E8973;
  border:"none"
  /* border-top: none;
  border-left: none;
  border-right: none; */
}

.cc-tab .nav-tabs .nav-link {
  border-bottom: 4px solid transparent;
  color: #3B2F33;
  font-size: 21px;
  line-height: 29px;
  /* padding: 0.5rem 4.2rem; */
}

.cc-tab .nav-tabs .nav-item.show .nav-link,
.cc-tab .nav-tabs .nav-link.active {
  border-bottom: 2px solid #3B2F33;
  color: #3B2F33;
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: transparent;
  /* padding: 0.5rem 4.2rem; */
  font-family: "Circular-Pro-Book";
}
.dashboard-nav-item {
  font-family: "Circular-Pro-Book" !important;
}
.dashboard-link.active {
  font-family: "Circular-Pro-Book" !important;
}
.dashboard-link.nav-link {
  font-family: "Circular-Pro-Book" !important;
}

.cc-tab .card-header {
  background-color: #fff;
  border-bottom: none;
}

.cc-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid #d8d5d6;
  display: inline-block;
}

.cc-img img {
  border-radius: 50%;
}

.cc-sub-heading {
  margin: 40px 0 16px 0;
}

.cc-tab .nav-tabs {
  border: none;
}

.cc-tab .tab-content {
  margin-top: 15px;
}

.cc-tab-wrap .cc-name {
  display: inline-block;
  font-size: 18px;
  line-height: 27px;
  margin: 0 0 0 15px;
  color: 60545c;
  font-family: "Circular-Pro-Book";
}

.cc-sub-heading .heading {
  font-size: 18px;
  line-height: 27px;
  color: #a0989d;
  text-transform: uppercase;
}

.cc-export span {
  color: #004e5b;
  font-size: 15px;
  line-height: 21px;
  margin: 0 20px !important;
  font-family: "Circular-Pro-Book";
}

.cc-export-btn {
  border: 1px solid #39747e;
  border-radius: 4px;
  font-size: 15px;
  background: transparent;
  color: #60545c;
  display: inline-block;
  padding: 14px 0px 14px 20px;
  text-align: left;
  position: relative;
  width: 312px;
  font-family: "Circular-Pro-Book";
}

.cc-export-btn:hover {
  color: #60545c;
}

.cc-export-btn:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-arrow-down-blck.svg);
  background-repeat: no-repeat;
  right: 17px;
  top: 20px;
  width: 22px;
  height: 11px;
}

.cc-confirm {
  border-radius: 4px;
  border: 1px solid #39747e;
  color: #39747e;
  font-size: 16px;
  line-height: 150%;
  padding: 8px 15px 8px 18px;
  position: relative;
  display: inline-block;
  background: #f0f7f9;
  width: 75%;
}

.cc-confirm:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  right: 19px;
  top: 18px;
  width: 14px;
  height: 9px;
}

.cc-confirm:hover {
  color: #39747e;
}

.cc-pending-approval {
  border: 1px solid #39747e;
  color: #39747e;
  border-radius: 4px;
  font-size: 16px;
  line-height: 150%;
  padding: 7px 15px 7px 18px;
  position: relative;
  display: inline-block;
  background: #f0f7f9;
}

.cc-pending-approval:hover {
  border: 1px solid #39747e;

  color: #39747e;
}

.cc-pending-approval:hover:after {
  background-image: url(../images/icon-arrow-blue.svg);
}

.cc-pending-approval:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-arrow-gray.svg);
  background-repeat: no-repeat;
  right: 19px;
  top: 18px;
  width: 14px;
  height: 9px;
}

.cc-pending-approval:hover {
  color: #39747e;
}

.cc-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  font-family: "Circular-Pro-Book";
  color: #60545c;
}

.cc-tab .tab-pane {
  position: relative;
}

.cc-tab .tab-pane .card-header .cc-arrow.collapsed::after {
  background-image: url(../images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: right 0;
  width: 22px;
  height: 14px;
  content: "";
  position: absolute;
  top: 55px;
  right: 30px;
  transform: rotate(180deg);
}

.cc-tab .tab-pane .card-header .cc-arrow::after {
  transform: rotate(360deg);
  background-image: url(../images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: right 0;
  width: 22px;
  height: 14px;
  content: "";
  position: absolute;
  top: 55px;
  right: 30px;
}

.cc-calnder {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: #39747e;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  margin-top: 8px;
}

.cc-calnder:after {
  content: "";
  position: absolute;
  /* background-image: url(../images/my-schedule-calendar.svg); */
  background-repeat: no-repeat;
  width: 25px;
  height: 26px;
  left: -30px;
  top: 0px;
}

.cc-calnder:hover {
  color: #39747e;
}

.cc-tab .text-right {
  text-align: right !important;
}

.cc-tab-wrap .card {
  margin-bottom: 30px;
}

.orange:before {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px 0 4px 0;
  height: 100%;
  background-color: #f7b51b;
  left: 0;
  top: 0;
  z-index: 1;
}

.card.card-profile.orange::before {
  background: none;
}

.card.card-profile.orange {
  margin-bottom: 15px;
}

.card.green:before {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px 0 4px 0;
  height: 100%;
  background-color: #004e5b;
  left: 0;
  top: 0;
  z-index: 1;
}

.red:before {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px 0 4px 0;
  height: 100%;
  background-color: #d9402c;
  left: 0;
  top: 0;
  z-index: 1;
}

.cc-content-wrap h3 {
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
  color: #60545c;
}

.cc-content-wrap p {
  margin: 0 0 10px;
  line-height: 24px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}
.cc-content-wrap-dashboard p {
  margin: 0 0 0px;
  line-height: 24px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}

.cc-content-wrap a {
  color: #39747e !important;
  font-family: "Circular-Pro-Book";
}

.cc-content-wrap a:hover {
  color: #39747e;
  font-family: "Circular-Pro-Book";
}

.cc-btn-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Circular-Pro-Book";
}

.accordion.cc-tab-wrap > .card {
  /* border: 1px solid #d8d5d6; */
  border-radius: 4px;
}

.cc-tab .tab-pane .card-header .cc-arrow.arrow-none::after {
  display: none;
}

.text-blue {
  color: #39747e;
}

.cc-arrow span .green-link {
  color: #82cf72;
}

.cc-tab-wrap .card {
  padding: 10px 0;
}

.cc-tab-wrap .untag-result-list li {
  margin: 0;
}

.cc-tab-wrap .untag-result-list li {
  width: auto;
  padding-left: 40px;
}

.cc-tab-wrap .untag-result-list li.tag-gray {
  background: transparent;
  border: none;
  font-size: 15px;
  color: #a0989d;
  padding-left: 0;
  padding-right: 0;
}

.tab-invite .row {
  background-color: #fff;
  border-radius: 4px;
  /* border: 1px solid #d8d5d6; */
  font-size: 18px;
  padding: 16px 24px;
  margin-bottom: 15px;
}

/* .tab-invite .row .strong {
} */
.cc-decline {
  color: #d9402c;
  cursor: pointer;
  text-align: right;
}

.cc-decline:hover {
  color: #d9402c;
}

.cc-apply:hover {
  color: #39747e;
}

.cc-apply {
  border: 1px solid #39747e;
  box-sizing: border-box;
  border-radius: 4px;
  color: #39747e;
  padding: 13px 0;
  text-align: center;
  display: inline-block;
  width: 292px;
  margin-right: 24px;
}

.single-btn {
  text-align: center;
}

.single-btn .secondary-btn {
  max-width: 250px;
  margin: 0 auto;
}

.cc-drop-down {
  border: 1px solid #eceaeb;
  border-radius: 4px;
  width: 199px;
  position: absolute;
  z-index: 9999;
  right: 15px;
  background-color: #fff;
  text-align: left !important;
}

.cc-drop-down ul {
  margin: 0;
  box-shadow: 8px 8px 20px rgba(96, 84, 92, 0.1);
}

.accordion.cc-tab-wrap > .card {
  overflow: initial;
}

.cc-drop-down {
  display: none;
}

.cc-drop-down ul li {
  padding: 10px 16px;
  font-size: 18px;
}

.cc-drop-down ul li.confirm-text {
  color: #39747e;
}

.cc-drop-down ul li.cancel-text {
  color: #d9402c;
}

.v-total-bottom {
  border-top: 1px solid #eceaeb;
  padding-top: 15px;
}

.vtb-left {
  border-right: 1px solid #eceaeb;
}

.cc-drop-down ul li.selected:after {
  content: "";
  position: absolute;
  background-image: url(../images/icon-tick.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 16px;
  right: 24px;
}

.cc-export .cc-drop-down {
  width: 212px;
  right: 27px;
}

.cc-export .cc-drop-down ul li {
  font-size: 15px;
}

.tab-center {
  text-align: center;
}

.tab-center {
  padding: 50px 0;
}

.white-btn {
  background: #ffffff;
  border: 1px solid #39747e;
  box-sizing: border-box;
  border-radius: 4px;
  color: #39747e;
  font-size: 18px;
  line-height: 150%;
  padding: 12px 0;
  margin-top: 25px;
  display: inline-block;
  max-width: 250px;
  width: 100%;
}

.edit-tab .col-md-2.mb-3 {
  padding: 20px 0 0 0;
  border-right: 1px solid #eceaeb;
}

.edit-tab .col-lg-2.mb-3 {
  padding: 20px 0 0 0;
  border-right: 1px solid #eceaeb;
}

.edit-tab .nav-pills .nav-link {
  border-radius: 0;
  font-size: 15px;
  line-height: 21px;
  color: #60545c;
  padding: 16px 27px 16px 27px;
  border-bottom: 1px solid #eceaeb;
}

.edit-tab .nav-pills .nav-link.active,
.edit-tab .nav-pills .show > .nav-link {
  background-color: #e8f3f7;
  color: #39747e;
}

.edit-tab-row {
  border-bottom: 1px solid #eceaeb;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.edit-tab .tab-content {
  padding-left: 50px;
  padding-top: 30px;
  padding-right: 30px;
}

.edit-profile-wrap > h4 {
  font-size: 27px;
  line-height: 37px;
  margin-bottom: 30px;
  color: #60545c;
  font-weight: normal;
}

.edit-profile-img {
  width: 144px;
  height: 144px;
  border-radius: 50%;
}

.setting-logo-img {
  width: 108px;
  height: 108px;
  border: 1px solid #b3adb1;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #ffffff;
  object-fit: cover;
}
.setting-logo {
  width: 108px;
  height: 108px;
  border: 1px solid #b3adb1;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #ffffff;
}
.label {
  font-size: 11px;
  color: #80767d;
  float: right;
}

.ep-wrap h2 {
  font-size: 33px;
  line-height: 36px;
  color: #60545c;
  font-weight: normal;
}

.ep-wrap .btn-alt {
  color: #39747e;
  font-size: 18px;
  line-height: 27px;
  border: 1px solid #39747e;
  padding: 12px 10px;
  border-radius: 4px;
  max-width: 254px;
  display: block;
  text-align: center;
  margin-top: 16px;
  cursor: pointer;
}

.edit-tab-row {
  border-bottom: 1em;
}

.edit-tab .avi-btn-wrap {
  margin-bottom: 40px;
}

.edit-tab .bold-red {
  margin: 0 0 45px 0;
}

.edit-tab option {
  font-family: "Circular-Pro-Book", arial;
  color: #161616;
  font-size: 1em;
}

.edit-profile-wrap .tooltip {
  right: -20px;
  top: 20px;
  background-color: #eceaeb;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.edit-profile-wrap .tooltip .btn-add-field {
  background-color: #eceaeb;
  padding: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.edit-profile-wrap .tooltip .btn-add-field img {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 4px;
}

.edit-profile-wrap .tooltip .tooltiptext {
  top: -49px;
  left: 42px;
}

.edit-profile-wrap .tooltip .tooltiptext::after {
  top: 40px;
  left: -15px;
  transform: rotate(-90deg);
}

.edit-profile-wrap .tooltip .tooltiptext {
  width: 189px;
}

.edit-profile-wrap .tooltip:hover,
.edit-profile-wrap .tooltip:hover a {
  background-color: #e8f3f7;
}

.edit-tab .vp-availability {
  padding: 0 0 30px;
  border: 0;
}

.edit-tab .vp-availability .row {
  border-bottom: 1px solid #eceaeb;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 8px;
  padding-top: 12px;
  margin-bottom: 0;
}

.edit-tab .vp-availability h2 {
  border-bottom: 1px solid #eceaeb;
  padding-bottom: 18px;
  margin: 0 0 10px 0;
}

.add-avil {
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
  color: #60545C;
  font-family: "Circular-Pro-Book";
  display: inline-block; 
   text-decoration: none !important;
}

.add-avil:hover {
  color: #58A6A6 !important;
  text-decoration: none !important;
  opacity: 1;
}

.edit-wrap .doc-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.edit-wrap .doc-wrap h4 {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 15px;
}

.edit-mail a,
.edit-link {
  color: #39747e;
}

.edit-mail a:hover,
.edit-link:hover {
  color: #39747e;
}

.code-btn {
  color: #39747e;
  font-size: 18px;
  line-height: 27px;
  border: 1px solid #39747e;
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 16px;
}

.code-btn:hover {
  color: #39747e;
}

.mail-row .col-6 {
  margin-bottom: 20px;
}

.primary-txt {
  text-align: right;
}

.primary-txt span {
  color: #5dc744;
  font-size: 18px;
  line-height: 21px;
}

.edit-wrap .document-delet-icon img {
  filter: grayscale(0);
}

.edit-wrap .document-delet-icon:hover img {
  filter: grayscale(0);
}

.row.add-mail h6 {
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  margin-top: 20px;
  margin-bottom: 20px;
}

.edit-mail-btn img {
  margin: -5px 0 0 auto;
}

.passowrd-change .si-btn-primary {
  display: block;
  text-align: center;
}

.passowrd-change .add-form-control span {
  position: relative;
  display: block;
}

.passowrd-change .add-form-control span:after {
  content: "";
  background-image: url(../images/pwd-show.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 15px;
}

.orgstep_btn {
  width: 50%;
  width: 608px;
  border-top: none !important;
  margin: 0 auto;
}

.orgstep_btn .button {
  width: 100%;
  padding: 9px;
}

.org-text p {
  line-height: 28px;
}

.org-text p a {
  font-size: 18px;
  color: #004e5b;
}

.org-text p a:hover {
  color: #333;
}

.mt {
  margin-top: 100px;
}

.header-wrap .intro {
  margin-left: 179px;
}

.site-container.intro {
  margin-left: 179px;
}

.export_cursor {
  cursor: pointer;
}

.v-details p a {
  color: #27becc !important;
  font-weight: 500;
  font-family: "Circular-Pro-Book";
}

.vtb-right {
  padding-left: 20px;
}

.cc-confirm option {
  font-size: 15px;
}

.button-admin {
  background-color: #5198b2;
  font-size: 10px;
  line-height: 15px;
  font-weight: 450px;
  height: 20px;
  width: 51px;
  display: flex;
  align-items: center;
  padding: 2.5px 8px 2.5px 8px;
  color: #ffffff;
  border-radius: 4px;
  margin-top: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  justify-content: center;
}

.pending-app {
  background-color: #bfbbbe;
  font-size: 10px;
  line-height: 15px;
  height: 20px;
  width: 115px;
  outline: "none";
  display: flex;
  align-items: center;
  padding: 2.5px 8px 2.5px 8px;
  color: #ffffff;
  border-radius: 4px;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.profile-mb {
  border-bottom: 1px solid #eceaeb;
  margin-bottom: 20px;
}

.cc-confirm option {
  font-size: 15px;
}

.volunteers-container.stuck {
  position: absolute;
  right: 0;
  width: 480px;
  /* width: 632px; */
  top: 0;
  background: #fff;
  display: block;
  /* width: 50%; */
}

.header-wrap.stuck {
  position: fixed;
  width: 100%;
}

.site-container.stuck {
  position: fixed;
  width: 100%;
  margin-top: 64px !important;
}

.vp-availability .row:hover {
  /* color: #39747e; */
}

.menuItem:hover {
  color: #39747e;
}

.notcomplete {
  font-size: 15px;
  color: #80767d;
  font-weight: 450px;
  text-align: left;
}

.untag-result-list li.empty-tag {
  border: 1px solid #eceaeb;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding: 10px 20px 10px 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #eceaeb;
  font-size: 15px;
  line-height: 18px;
  background-image: url(../images/icon-tag-fad.svg);
  background-position: 10px 12px;
  background-repeat: no-repeat;
}

.small {
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
  width: 50%;
  outline: none;
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
}

.smallwidth {
  width: 110%;
}

.space-left {
  margin-left: 50px;
}

.form-title-small {
  font-size: 11px;
  color: #80767d;
  width: 100%;
  margin: 10px 0 0 2px;
  display: block;
  text-transform: uppercase;
}

.textarea-height {
  min-height: 124px;
}

.textarea-space {
  margin-left: 35px;
}

.vp-skills label {
  color: #60545c;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  font-weight: 450;
  margin-left: -5px;
}

.profilecard-checklists {
  min-height: 65vh;
}

.profilecard-checklists-footer {
  display: flex;
}

.profilecard-checklist-label {
  display: revert;
  margin-top: -2px;
}

.go-to-settings {
  /* display: flex; */
  /* flex-direction: column; */
  justify-content: flex-end;
  /* margin-top: 10px; */
}

.dk-h5 {
  font-family: "Circular-Pro-Book";
  color: #60545c;
  font-size: 21px;
  font-weight: 450;
  line-height: 29px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

.dk-h6 {
  font-family: "Circular-Pro-Book";
  color: #60545c;
  font-size: 15px;
  padding-top: 6.5px;
  font-weight: 450;
  line-height: 27px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

.secondary-red {
  color: #7A1C1C !important;
}

.book {
  font-family: "Circular-Pro-Book";
  font-size: 15px;
  font-weight: 450;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: #a0989d;
}

.pd24-container {
  padding: 0 0 24px 24px;
}

.zindex {
  z-index: 9999;
}

.checkbox-label {
  margin-left: 10px;
}

.edit-profile-margin {
  margin-right: 24px;
}

.fl {
  display: flex;
}

.fl-col {
  display: flex;
  flex-direction: column;
}

.fl-1 {
  flex: 1;
}

.jc {
  justify-content: center;
}

.ac {
  align-items: center;
}

.dp_none {
  display: none;
}

.cr-pt {
  cursor: pointer;
}

.flex-align-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-align-right {
  display: flex;
  justify-content: flex-end !important;
  align-items: center;
  gap:6px !important
}
.flex-align-center-opp-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: center;
}
.flex-align-center-for-basic-plan {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-align-center1 {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.flex-align-center2 {
  width: 100%;
}

.add-form-control .active {
  color: #39747e;
}

.icon-msg:hover {
  color: #39747e;
}

.icon-tag:hover {
  color: #39747e;
}

.move-icon:hover {
  color: #39747e;
}

.export-icon:hover {
  color: #39747e;
}

.delete-icon:hover {
  color: #39747e;
}

.validate-box {
  margin: 0;
  padding: 17px 10px 17px;
  align-items: center;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.validate-box .select-box,
.validate-box .edit-skill {
  border: 1px solid #b3adb1;
  padding: 14px 16px 14px 16px;
  border-radius: 4px;
  background-color: #f7f7f7;
  color: #60545c;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
}

.validate-box .edit-skill {
  padding: 8px 14px !important;
}

.validate-box .or {
  margin: auto 25px;
}

.add-button {
  border: 0;
  margin: auto 15px;
  color: #39747e;
  outline: none;
  background-color: #ffffff;
}

.save-button {
  border: 1px solid #39747e;
  border-radius: 4px;
  margin: auto 15px;
  color: #39747e;
  outline: none;
  padding: 14px 40px 14px 40px;
  background-color: #ffffff;
}

.view-responses-link {
  color: #60545c;
  font-weight: 600;
  cursor: pointer;
}

.view-responses-link:hover {
  color: #58a6a6;
  font-weight: normal;
}

.validate-skill .sel__placeholder {
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
  padding: 0.2em 0.5em 0.2em 26px;
  width: 246px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.validate-skill .sel__box__options {
  font-size: 18px;
  line-height: 21px;
}

.validate-skill .sel {
  background-repeat: no-repeat;
  background-position: 11px center;
}

.button-clear {
  margin-right: 15px;
  outline: none;
  color: #60545c;
  font-size: 18px;
  line-height: 27px;
  font-weight: normal;
  border: none;
  background-color: #fff;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  outline: none;
}

.mb {
  margin-bottom: 20px;
}

.ml {
  margin-left: 30px;
}

.add-form-control-ml {
  margin-left: 15px;
}

.vp-tabel {
  width: 100%;
  color: #60545c;
}

.react-google-oauth-button-border {
  border: 1px solid #d8d5d6;
  height: 100%;
  width: 100%;
  justify-content: center;
  display: flex;
  color: #60545c;
}

.react-google-oauth-button-border {
  border: 1px solid #d8d5d6 !important;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  padding-bottom: 10px;
}

.inactive-section .modal {
  top: 110px;
}

.inactive-section .add-btn {
  background-color: #39747e;
  border: 1px solid #d8d5d6 !important;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  padding-bottom: 10px;
}

.tooltip-ml {
  margin-right: -15px;
}

.edit_profile_success_msg {
  background-color: #82cf72;
  bottom: 0px;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.edit_profile_success_msg .h5 {
  padding: 16px auto;
  font-size: 18px;
  line-height: 27px;
  font-weight: 450;
  color: #60545c;
}

.edit_profile_success_msg .ml {
  margin-left: 8px;
  margin-top: 5px;
}

.edit-profile-no-avatar {
  width: 144px;
  height: 144px;
  border: 2px solid #eceaeb;
  border-radius: 50%;
  background-color: #fff;
}

.edit-profile-no-avatar h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 47px;
  color: #297f8e;
  text-transform: uppercase;
}

.edit-email-container {
  margin-bottom: 50px;
}

.vp-availability-not-added {
  margin-top: 32px;
  color: #80767d;
  line-height: 29px;
  font-size: 21px;
}

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

.btnFacebook {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background: #fefeff;
  color: #655a62;
  border: 0px transparent;
  text-align: center;
  /* margin: 5px; */
  display: inline-block;
  border: 1px solid #d8d5d6;
  font-size: 16px;
  font-weight: 500;
}

.btnFacebook i {
  font-size: 20px;
  margin-right: 12px;
  color: #3b5998;
}

.ep-title {
  color: #60545c;
}

.communication {
  margin-top: 10px;
}

.notification {
  margin-top: 32px;
}

.group-mr {
  margin-right: 8px;
}

.notification .label,
.communication .h6,
.communication .label {
  font-family: "Circular-Pro-Book";
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  font-weight: 450px;
  text-align: left;
}

.communication .send-mail {
  color: #80767d;
  margin-top: 16px;
}

.communication .grid-mt {
  margin-top: 24px;
}

.communication .divider {
  border-bottom: 1px solid #eceaeb;
  padding-bottom: 18px;
  margin: 0 0 10px 0;
}

.h5 {
  font-size: 21px;
  line-height: 29px;
  font-weight: 450px;
  color: #39747e;
  text-align: left;
}

.notification-divider {
  border-bottom: 1px solid #eceaeb;
  margin: 28px 0 64px 0;
}

.swicth-label {
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  font-weight: 450px;
  text-align: left;
}
.MuiTypography-root.swicth-label {
  font-family: "Circular-Pro-Book" !important;
}

.switch-mt {
  margin-bottom: 26px;
}

.switch-divider {
  border-bottom: 1px solid #eceaeb;
  margin: 26px 0 0 0;
}

.before-hours {
  border: 1px solid #b3adb1;
  width: 56px;
  height: 48px;
  padding: 16px 16px 12px 16px;
  border-radius: 4px;
  text-align: center;
}

.unsubscribed-label {
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  font-weight: 450px;
  text-align: left;
  margin: 20px 0 20px 0;
}

.unsubscribed-label:hover {
  color: #39747e;
}

.unsubscribed-modal {
  padding: 0px 20px 20px 20px;
}

.unsubscribed-modal .title {
  margin-top: 30px;
  text-align: center;
  font-size: 27px;
  line-height: 37px;
  font-weight: 450px;
  color: #60545C;
}

.unsubscribed-modal .container {
  text-align: center;
}

.unsubscribed-modal .subtext {
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  font-weight: 450px;
}
.mobile_pop_heeading {
  font-size: 20px !important;
}
.desktop_popup_heading {
  font-size: 22px !important;
}

.cc-confirm option {
  font-size: 15px;
}

.modal-heading {
  color: #d9402c;
  text-align: center;
  padding: 2rem 0 1rem;
}

.modal-subheading,
.modal-text {
  color: #60545c;
  font-size: 16px;
  padding: 0 20px;
  font-weight: 400;
  text-align: center;
}

.pending-modal {
  padding: 50px;
}

.transparent-btn {
  width: 50%;
  border: 1px solid #39747e !important;
  color: #39747e !important;
  padding-top: 10px !important;
  text-transform: capitalize !important;
  font-size: 18px !important;
  margin-bottom: 25px !important;
}

.bg-btn {
  width: 252px;
  background-color: #d9402c !important;
  color: #fff !important;
  padding: 8px 0 !important;
  text-transform: capitalize !important;
  font-size: 18px !important;
  margin-bottom: 25px !important;
}

.blue-text {
  text-align: center;
  padding: 1rem 0 1rem;
  color: #39747e;
  font-size: 25px;
}

.select-btn::after {
  padding: 50px;
}

.cc-export {
  margin-top: -15px !important;
  width: 20%;
}

.organization-content .cc-export {
  margin-top: 100px;
}

.makeStyles-formControl-2 {
  margin-left: 15px;
}

.mt-80 {
  margin-top: 80px;
}

.volunteers-name-ml {
  margin-left: 15px;
}

.short-dropdown-padding {
  padding: 0 17px;
}

.change-contact-modal {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  /* border: 1px solid rgba(0,0,0,.2); */
  border-radius: 0.3rem;
  outline: 0;
}

.contact-form-wrap {
  padding: 10px 16px;
}

.message-icon {
  margin-left: 78%;
}

.profile-info {
  margin-left: -25px;
}

.card-header .makeStyles-tab_select-6:hover,
.card-header .makeStyles-tab_select-6:active {
  background-color: #f0f7f9;
}

.makeStyles-org_select-1 {
  color: #16becc !important;
  background-color: #fff !important;
  border: 1px solid #60545c !important;
  padding: 0px 8px 3px 18px !important;
}

.makeStyles-pending_select-7 {
  color: #16becc;
  border: 1px solid #16becc;
}

.md-hidden {
  display: none;
}

.clrIcon {
  color: #ff4343 !important;
}

.mobTab {
  float: left;
  margin: 0 50% 20px -15px !important;
  width: 107%;
  border-radius: 5px;
}

#myOrganizationModal .modal-header {
  border-bottom: none;
}

#myOrganizationModal .modal-header p.bordertxt {
  border-bottom: 1px solid #dee2e6;
  padding: 15px 0;
  text-align: left;
  font-size: 15px;
}

#myOrganizationModal h6 {
  padding: 15px 0;
  text-align: left;
  font-size: 15px;
}

#myOrganizationModal .single-btn .secondary-btn {
  max-width: 97%;
  border: 1px solid #004e5b;
  color: #004e5b;
}

h5.dark-box {
  background-color: #297f8e;
  color: #fff !important;
  padding: 5px 10px 3px 10px;
  width: fit-content;
  font-size: 10px !important;
  font-weight: 400;
  line-height: 15px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Circular-Pro-Book";
}

h5.light-box {
  background-color: #bfbbbe;
  color: #fff !important;
  font-size: 10px !important;
  padding: 5px 10px 3px 10px;
  width: fit-content;
  font-size: 10px !important;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
}

.listOrg {
  padding: 16px;
}

.listOrg h3 {
  border: 1px solid #eceaeb;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: #297f8e;
  font-size: 15px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #ffffff;
  font-family: "Circular-Pro-Book";
}

.listOrg h4 {
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  text-align: left;
  color: #39747e;
  margin-bottom: 0 !important;
  font-family: "Circular-Pro-Book";
  text-transform: capitalize;
}

.listOrg .col-md-9 h5 {
  color: #80767d;
  font-size: 13px;
  text-align: left;
}

.listOrg h5 {
  color: #80767d;
  font-size: 13px;
  text-align: left;
  font-weight: 400;
  line-height: 19px;
  font-family: "Circular-Pro-Book";
}

.listOrg:hover {
  background-color: #f0f7f9;
}

#myOrganizationModal input {
  background-image: url(../images/icon-search-desktop.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  float: right;
  padding: 15px;
  margin-bottom: 20px;
}

.org_dropdown {
  width: 312px;
}

.cc-confirm-width {
  width: 292px;
}

.cc-confirm-width_padding {
  padding: 12px;
}

.sel__placeholder_center {
  text-align: center;
  color: #004e5b;
}

.cc_confirm_org {
  z-index: 5;
}

.file_export {
  border-bottom: 0px;
}

.add-popup .modal-header .file_export_p {
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
  text-align: center;
}

.forgot-pswd-flex {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.forgot-pswd {
  color: #39747e;
  font-size: 15px;
  line-height: 21px;
  font-weight: normal;
  cursor: pointer;
}

.step-form .form-group .input-error {
  border: 1px solid rgb(232, 78, 78);
  color: rgb(232, 78, 78);
  font-weight: 400;
  outline: none;
  background-color: #fff;
}

.step-form .text-danger {
  font-size: 15px;
}

.profile-grid {
  padding: 20px auto;
}

.public_url_mt {
  position: absolute;
  top: 14px;
  left: 29.2%;
  font-size: 16px;
}

.site-wrap .site-containerr {
  background-color: #ffffff;
}

.dropdownList {
  min-width: 100em;
}

.nav-link:hover,
.nav-link:active {
  color: #39747e;
}
.nav-link-mobile:hover,
.nav-link-mobile:active {
  color: #172321;
}
.schText {
  margin: 80px auto;
}

.schText h2 {
  font-size: 33px;
  font-style: normal;
  font-weight: 450;
  line-height: 36px;
  letter-spacing: 0.001em;
  text-align: center;
  color: #60545c;
}

.schText button {
  border: 1px solid #39747e;
  color: #39747e;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  margin: 3% 43%;
  font-style: normal;
  font-weight: 450;
  line-height: 27px;
  background-color: #fff;
  text-align: center;
}

.header-right {
  float: right;
  display: flex;
  align-items: center;
}

.add-popup .modal-newheader {
  border-radius: 0;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.add-popup .add-form-wrap-vol {
  padding: 10px 16px;
}

.control .span {
  text-align: justify;
}

.add-popup .form-text:active,
.add-popup .form-text:focus {
  border: 1px solid #004e5b;
}

.teamlist-container {
  height: 70.9vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form List style */
.formlist-container {
  height: 90.9vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-heading {
  font-size: 45px;
  color: #60545c;
  align-items: center;
  text-align: center;
}

.formlist-container a {
  font-size: 18px;
  color: #004e5b;
  align-items: center;
  text-align: center;
  display: block;
  margin-top: 30px;
}

.bg-color {
  background-color: #f0f7f9;
}

.form-border {
  border-left: 4px solid #58a6a6;
  margin-bottom: 25px;
}

.form-border-light {
  border-left: 4px solid #d8d5d6;
  margin-bottom: 25px;
}

.formlist-card {
  margin-top: 32px;
}

.formlist-card h3 {
  font-size: 21px;
  color: #60545c;
  text-align: left;
  padding-bottom: 10px;
}

.formlist-card h5 {
  font-size: 18px;
  text-align: left;
}

.formlist-card h5 {
  /* color: #4dc37c; */
  padding-right: 5px;
}

.formlist-car-span {
  color: #60545c;
  font-size: 18px;
  padding-right: 5px;
}

.formlist-card h4 {
  color: #60545c;
  font-size: 15px;
  text-align: left;
  /* padding-top: 25px; */
}

.formlist-card a {
  color: #004e5b;
  border: 1px solid #004e5b;
  padding: 8px 20px;
}

.clr-link {
  color: #39747e;
  /* padding-top: 25px; */
}

.mr-top {
  padding-top: 30px !important;
}

.formlist-wd li {
  padding: 10px 16px;
}

.lg-text {
  color: #d8d5d6 !important;
  width: 255px !important;
}

.active_text {
  color: #39747e;
}

.grey-text {
  color: #60545c !important;
  width: 255px !important;
}

.grey-textli {
  color: #60545c !important;
  width: 255px !important;
  font-size: 15px !important;
  line-height: 21px !important;
  font-weight: 450 !important;
  font-family: "crcular-pro-book";
  background-color: inherit;
}

.clr-text {
  color: #8b2f31 !important;
  width: 100%;
  background-color: inherit;
  font-size: 15px !important;
  font-family: "circular-pro-book";
}

.lg-text svg {
  margin-left: 50%;
}

.rename-popup,
.delete-popup {
  width: 594px;
}

.rename-popup .modal-header h4,
.rename-popup .add-form-control {
  margin-bottom: 0 !important;
}

.rename-popup .clr-text,
.delete-popup .clr-text {
  width: 100% !important;
  text-align: center;
}

.delete-popup .modal-body,
.delete-popup .add-form-wrap {
  padding-top: 0 !important;
}
.custom-paper-class {
  overflow: unset !important;
}
.custom-paper-class-scroll {
  overflow: auto !important;
}

.pd-top {
  padding-top: 10px;
}

.delete-popup .add-form-check {
  border-top: none;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.sharelink-popup .secondary-btn {
  padding: 15px 0;
}

.sharelink-popup .add-form-check {
  padding-top: 4px;
}

.activities-list li {
  text-align: left;
  padding: 10px;
  font-size: 15px;
  color: #60545c;
  line-height: 21px;
}

/* .formdetail-container {
  padding: 30px;
} */
.formdetail-container label {
  font-size: 18px;
}

.field-wd {
  width: 60%;
}

.formdetail-container textarea {
  width: 60%;
  float: left;
}

.wd-none {
  border: none;
}

.formdetail-container .si-btn-primary {
  border: none;
  width: 25%;
  margin-right: 25px;
}

.light-bg {
  background-color: #fff;
}

.sub-date span {
  text-align: center;
  padding-left: 55px;
}

.form-table img {
  margin-right: 14px;
}

.lg-textclr {
  cursor: pointer;
  font-size: 18px;
  line-height: 27px;
  color: #004e5b;
  text-transform: uppercase;
}

.formContentbox-h2 {
  font-size: 21px !important;
  color: #60545c;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.formContentbox-h3 {
  font-size: 21px;
  color: #004e5b;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.formContentbox-h5 {
  font-size: 15px;
  color: #60545c;
  line-height: 21px;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
  margin-top: 32px;
}

.formContentbox-h6 {
  color: #80767d;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  font-family: "Circular-Pro-Book";
  margin-top: 4px;
}

.formContentbox a {
  color: #2090a4;
  font-size: 15px;
  font-weight: 400;
  font-family: "Circular-Pro-Book";
}

.formContentbox .margin {
  margin-top: 24px;
}

.add-popup .form-text:focus {
  border: 1px solid #60545c;
}

.teble-width {
  width: 27%;
}

.flex-algn-just-start {
  display: flex;
  justify-content: flex-start;
}

.rename-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0 40px 40px 40px;
}

.flex-align-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.showdltBtn {
  display: none;
}

.validList ul {
  padding-top: 0;
}

.tooltip-valList {
  margin-right: -45px;
}

.tooltip-valList .btn-add-field {
  background: #39747e14;
}

.tooltip-valList .tooltiptext {
  top: 0;
  left: 70px;
}

.tooltip-valList .tooltiptext::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -34%;
  background-image: url(../images/tooltip.png);
  background-repeat: no-repeat;
  width: 27px;
  height: 17px;
  transition: ro;
  transform: rotate(-74deg);
}

.import-modal {
  margin-bottom: 0px;
  font-size: 27px;
  line-height: 31px;
  color: #39747e;
}

/* upload file input button  */
.inputfile-box {
  position: relative;
  width: 100%;
}

.inputfile {
  display: none;
}

.container {
  display: inline-block;
  width: 100%;
}

.file-box {
  display: inline-block;
  width: 376px;
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 24px;
  outline: none;
  font-size: 18px;
  line-height: 21px;
  color: #60545c;
}

.file-button {
  background: #004e5b;
  cursor: pointer;
  width: 148px;
  height: 48px;
  font-size: 18px;
  border-radius: 4px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #004e5b;
  top: 0px;
  right: 0px;
  color: #ffffff;
}

.flex-algn-just-end {
  display: flex;
  justify-content: flex-end;
}

.si-btn-primary-width {
  width: 268px;
  margin-left: 32px;
}

.tbody-bg {
  background-color: #ffffff;
  opacity: 95%;
  color: #60545c;
}

.sft-clear-btn {
  float: right;
  position: relative;
  margin-top: 12px;
  font-size: 18px;
  line-height: 27px;
  color: #60545c;
}

.bottom-border {
  border-bottom: 1px solid #eceaeb;
}

.light-button {
  background-color: #d8d5d6;
}

.subheader-padding {
  padding: 8px 24px 8px 24px;
}

.col-md-6 {
  float: left;
  padding-left: 0px;
}

.col-md-4,
.col-md-8,
.col-md-2,
.col-md-5 {
  float: left;
}

.col-md-2.pdLeft,
.col-md-4.pdLeft {
  padding-left: 0;
}

.col-md-6.pdRgt,
.col-md-8.pdRgt {
  padding-right: 0;
}

.pdBtm {
  padding-bottom: -30px !important;
  width: 100%;
}

.ep-wrap h3 {
  font-size: 33px;
  line-height: 36px;
  color: #60545c;
  font-weight: 450;
  text-transform: capitalize;
}

.bg_color {
  background-color: #e8f3f7;
}

.leftContent {
  text-align: left;
}

.pd-none {
  padding-top: 0;
}

.mb-title {
  margin-bottom: 0 !important;
}

.mb-title1 {
  margin-bottom: 12% !important;
}
.mb-titlenew {
  margin-bottom: 6% !important;
}
.mb-title1archived {
  margin-bottom: 6% !important;
}

.mb-title3 {
  margin-bottom: 16% !important;
  margin-top: -2px;
}

.mb-title-directory {
  margin-bottom: 4% !important;
  margin-top: -2px;
}

.mb-title-group {
  margin-bottom: 6% !important;
  margin-top: -2px;
}

.mb-title-allapplicant {
  margin-bottom: 4% !important;
  margin-top: -2px;
}

.mb-title-allapplicant1 {
  margin-bottom: 3% !important;
  margin-top: -2px;
}

.mb-title-inactive {
  margin-bottom: 105px !important;
  margin-top: -2px;
}

.mb-title2 {
  margin-bottom: 6% !important;
}
.mb-title-event {
  margin-bottom: 6% !important;
  margin-top: -2px;
}

.mb-titleinvited {
  margin-bottom: 5% !important;
}
.col-md-4,
.col-md-1,
.col-md-2 {
  float: left;
}

.wdfield {
  width: 20%;
}

.mgLeft {
  margin-left: 0 !important;
}

.darkBg {
  background-color: #39747e;
}

.select_btn_color {
  background-color: #004e5b;
}

.table-text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tag-container {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}

.tag-list ul {
  margin: 0;
}

.tag-list li {
  //border: 1px solid #5198b2;
  box-sizing: border-box;
  border-radius: 100px;
  display: inline-block;
  vertical-align: top;
  width: auto;
  padding: 10px 20px 10px 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #5198b2;
  font-size: 15px;
  line-height: 18px;
  //background-image: url(../images/icon-tag-teal.svg);
  background-position: 10px 12px;
  background-repeat: no-repeat;
}

.tag-list li img {
  width: 14px;
  height: 14px;
  margin: -2px 0 0 7px;
}

.tag-list li span {
  background-image: url(../images/profile-close.svg);
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  top: 13px;
  right: 20px;
  display: block;
  position: absolute;
}

.data-input-field {
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  height: 48px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}
.data-input-field-primary{
    background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  height: 48px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}
.data-input-field-primary:focus {
  border: 1px solid #60545C;
}
.data-input-field1 {
  background: #ffffff;
  border: 1px solid rgb(179, 173, 177);
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  height: 48px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}

.data-input-field-email {
  background: #ffffff;
  border: 1px solid #b3adb1;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  width: 200%;
  outline: none;
  font-size: 15px;
  line-height: 21px;
  height: 48px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
}

.data-field-title {
  font-size: 11px;
  color: #80767d;
  margin: 4px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
  font-family: "Circular-Pro-Book";
}
.data-field-title2 {
  font-size: 11px;
  color: #80767d;
  margin: -9px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
  font-family: "Circular-Pro-Book";
}

.data-field-title-add-modal {
  font-size: 11px;
  color: #80767d;
  margin: -30px 0 0 2px;
  display: block;
  text-transform: uppercase;
  text-align: left;
  font-family: "Circular-Pro-Book";
}

.edit-form-label {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #60545c;
  font-family: "Circular-Pro-Book";
  white-space: pre-line;
}

.db-mgmt-field {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 12px 7px 9px;
  height: 40px;
}

.db-d-field {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px 10px 9px;
  height: 33px;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
}

.db-mgmt-field .MuiListItemText-primary {
  font-size: 15px;
}

.db-mgmt-icon {
  right: 10px;
  /*bottom: 9px;*/
  position: absolute;
  display: flex;
  gap:20px;
}

.db-mgmt-icon img {
  width: 17px;
}

.text-capitalize {
  text-transform: capitalize;
}

.disable-button {
  border: 1px solid #d8d5d6;
  width: 100%;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.disable-button-email-template {
  border: 1px solid #d8d5d6;
  width: 180px;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  height: 41px;
  line-height: 27px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.delete-outline-btn {
  border: 1px solid #d8d5d6;
  width: 180px;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  height: 41px;
  line-height: 27px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.disable-button-create-new {
  border: 1px solid #d8d5d6;
  width: 100%;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  line-height: 27px;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.disable-button-msg-next{
  border: 1px solid #d8d5d6;
  width: 100%;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  line-height: 27px;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}
.disable-button-copy {
  border: 1px solid #d8d5d6;
  width: 180px;
  height: 41px;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  line-height: 27px;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
  display: flex;
  align-content: center;
  justify-content: center;
}

.disable-button-event {
  border: 1px solid #d8d5d6;
  width: 100%;
  background-color: #d8d5d6;
  border-radius: 4px;
  padding: 12px 0;
  font-weight: 450;
  font-size: 15px;
  white-space: nowrap;
  line-height: 27px;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Circular-Pro-Book";
}

.vpi-middle .vpim-one-disable {
  width: 27%;
  position: relative;
}

.vpi-middle .vpim-one-disable h3 span {
  width: 50%;
  position: relative;
  cursor: pointer;
  color: #a0989d;
  font-size: 15px;
}

.edit-field-checkbox {
  color: #60545c;
  font-size: 15px;
  line-height: 25px;
  text-align: left;
  font-weight: 450;
  /* text-transform: capitalize; */
  /* margin-top: 20px; */
}

.edit-column-hover :hover {
  background-color: #f0f7f9;
  /* padding: 17px 11px 16px 10px */
}

.control input:disabled ~ .control__indicator {
  background-color: gray;
  border: 1px solid gray;
}

.border-bottom {
  border-bottom: 1px solid #eceaeb;
}

.doc-wrap .document-link a :hover {
  color: #39747e;
}

.cc-arrow span {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  font-family: "Circular-Pro-Book";
  color: #60545c;
}

.imported-table {
  padding: 2px 10px !important;
}

.onboardingNumfont {
  font-size: 27px !important;
  font-weight: 400;
  line-height: 37px;
}

.onboardingNTextFont {
  font-size: 18px !important;
  font-weight: 400;
  line-height: 27px;
}

.tableRow {
  padding: 4px 10px !important;
  font-family: "Circular-Pro-Book";
}

input,
span,
label {
  font-family: "Circular-Pro-Book" !important;
}

.MuiTypography-root,
.MuiTypography.h1,
.MuiTypography.h2,
.MuiTypography.h3,
.MuiTypography.h4,
.MuiTypography.h5,
.MuiTypography.h6,
.MuiTypography.body1,
.MuiTypography.body2,
.MuiTypography.subtitle1,
.MuiTypography.subtitle2,
.MuiTypography.caption,
.MuiButton-root {
  font-family: "Circular-Pro-Book" !important;
}

.msg-icon-img {
  background-image: url(../images/icon-messages.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.msg-icon-img-disabled {
  background-image: url(../images/icon-messages.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}

.msg-icon-img:hover {
  background-image: url(../images/icon-messages.svg);
  cursor: pointer;
}

.close-icon-img {
  background-image: url(../images/close-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.close-icon-img-disabled {
  background-image: url(../images/close-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}

.close-icon-img:hover {
  background-image:  url(../images/close-icon.svg);
  cursor: pointer;
}

.right-icon-img-event {
  background-image: url(../images/right.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.right-icon-img-event-disabled {
  background-image: url(../images/right.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}

.right-icon-img:hover {
  background-image: url(../images/close-icon.svg);
  cursor: pointer;
}
.right-icon-img-event:hover {
  background-image: url(../images/right.svg);
  cursor: pointer;
}

.time-icon-img {
  background-image: url(../images/icon-time1.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.time-icon-img-disabled {
  background-image: url(../images/icon-time1.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}
.time-icon-img:hover {
  background-image: url(../images/icon-time1hover.svg);
  cursor: pointer;
}
.cancel-icon-img {
  background-image: url(../images/Cancel-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.cancel-icon-img-disabled {
  background-image: url(../images/Cancel-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}
.cancel-icon-img:hover {
  background-image: url(../images/canel-iconhover.svg);
  cursor: pointer;
}
.tag-icon-img {
  background-image: url(../images/icon-tags.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.tag-icon-img-disabled {
  background-image: url(../images/icon-tags.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}
.qualify-icon {
  background-image: url(../images/qualify-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
}
.qualify-icon-disabled {
  background-image: url(../images/qualify-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
  opacity: 0.5;
}
.qualify-icon:hover {
  background-image: url(../images/qualify-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
}
.tag-icon-img:hover {
  background-image: url(../images/icon-tags.svg);
  cursor: pointer;
}

.move-to-inactive-icon-img {
  background-image: url(../images/icon-inactive.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}

.move-to-inactive-icon-img:hover {
  background-image: url(../images/icon-inactive.svg);
  cursor: pointer;
}

.MoveToActive {
  background-image: url(../images/MoveToActive.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.MoveToActive-disabled {
  background-image: url(../images/MoveToActive.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}
.MoveToActive:hover {
  background-image: url(../images/MoveToActive-Deep.svg);
  cursor: pointer;
}

.MoveToInactive {
  background-image: url(../images/MoveToInactive.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.MoveToInactive-disabled {
  background-image: url(../images/MoveToInactive.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  opacity: 0.5;
}
.MoveToInactive:hover {
  background-image: url(../images/MoveToInactive.svg);
  cursor: pointer;
}

.export-icon-img {
  background-image: url(../images/download.svg);
  background-repeat: no-repeat;
  background-position-y: 2px;
}
.export-icon-img-disabled {
  background-image: url(../images/download.svg);
  background-repeat: no-repeat;
  background-position-y: 2px;
  opacity: 0.5;
}
.export-icon-img:hover {
  background-image: url(../images/download.svg);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.plus-icon-img {
  background-image: url(../images/f-plus-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
  background-size: 16px 16px;
}
.plus-icon-img-disabled {
  background-image: url(../images/f-plus-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
  background-size: 16px 16px;
  opacity: 0.5;
}

.plus-icon-img:hover {
  background-image: url(../images/f-plus-icon.svg);
  width: 16px;
  height: 10px;
  cursor: pointer;
}

.move-to-icon-img {
  background-image: url(../images/icon-move-to.svg);
  background-repeat: no-repeat;
  background-position-y: 1px;
  background-size: 16px 16px;
}

.move-to-icon-img:hover {
  background-image: url(../images/icon-move-to.svg);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.delete-icon-img {
  background-image: url(../images/deletebin.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-position-y: 2px;
}

.delete-icon-img-disabled {
  background-image: url(../images/deletebin.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-position-y: 2px;
  opacity: 0.5;
}
.invite-icon-img {
  background-image: url(../images/icon-invite.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-position-y: 5px;
  padding: 5px;
}
.invite-icon-img-disabled {
  background-image: url(../images/icon-invite.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-position-y: 5px;
  padding: 5px;
  opacity: 0.5;
}
.invite-icon-img:hover {
  width: 16px;
  height: 16px;
  background-position-y: 5px;
  background-image: url(../images/icon-invite.svg);
  padding: 5px;
  cursor: pointer;
}

.delete-icon-img:hover {
  background-image: url(../images/deletebin.svg);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.move-to-active-icon-img {
  background-image: url(../images/icon-move-to-inactive1.svg);
  background-repeat: no-repeat;
}

.move-to-active-icon-img:hover {
  background-image: url(../images/icon-color-move-to-active.svg);
}

/* Onboarding page css start */
.onboardingtablist {
  position: fixed;
  width: 100%;
  z-index: 99;
  max-width: -webkit-fill-available;
}

.onboardingfilter {
  position: fixed;
  top: 157px;
  width: 100%;
  z-index: 99;
}

.applicationfilter {
  position: fixed;
  top: 208px;
  width: 100%;
  z-index: 99;
}

.applicationinvitedfilter {
  position: fixed;
  top: 208px;
  width: 100%;
  z-index: 99;
}

.applicationqualifyfilter {
  position: fixed;
  top: 208px;
  width: 100%;
  z-index: 99;
}

.onboardingtab {
  position: fixed;
  top: 213px;
  width: calc(100% - 100px);
}
.onboard tbody tr td:first-child {
  width: 240px;
  max-width: 240px;
  min-width: 300px;
}
.onboardingtableheaders tbody tr td:first-child {
  width: 240px;
  max-width: 240px;
  min-width: 125px;
}
.onboardingtableheadernew tbody tr td:first-child {
  width: 305px;
  max-width: 400px;
  min-width: 305px;
}
.onboardingtableheaderappnew tbody tr td:first-child {
  width: 305px;
  max-width: 400px;
  min-width: 260px;
}
.onboardingtableheaderdeclined tbody tr td:first-child {
  width: 305px;
  max-width: 400px;
  min-width: 310px;
}
.onboardingtableheaderdeclined tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}
.onboardingtableheadernew tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}
.onboardingtableheaders tbody tr td {
  width: 250px;
  max-width: 250px;
  min-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.onboardingtableheader tbody tr td:first-child {
  width: 240px;
  max-width: 240px;
  min-width: 193px;
}

.onboardingtableheaderimported tbody tr td:first-child {
  width: 20%;
  max-width: 400px;
  min-width: 305px;
}
.onboardingtableheaderall tbody tr td:first-child {
  width: 20%;
  max-width: 250px;
  min-width: 305px;
}
.onboardingtableheaderinvited tbody tr td:first-child {
  width: 20%;
  max-width: 400px;
  min-width: 305px;
}
.onboardingtableheaderinvited tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}
.onboardingtableheaderall tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}
.onboardingtableheader tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}
.onboardingtableheaderimported tbody tr td {
  width: 250px;
  max-width: 400px;
  min-width: 250px;
  white-space: inherit;
}

/* .v-100 {
  width: 100% !important;
} */
/* Onboarding page css End */

/* Database Fields Management page css start */
.newfieldnamelength {
  font-size: 14px;
  float: right;
  margin: 3px 2px 0 0;
  color: #60545c;
}

/* Database Fields Management page css End */

/* Add tag modal css start */
.pointer {
  cursor: pointer;
}

.createnewtag {
  background-color: #f9f7f5;
  padding: 10px 5px;
  border-radius: 3px;
}

/* Add tag modal css css End */

/* Volunteers Move To Inactive Modal css start */
.movetoinactivemodal {
  padding-top: 20px;
  padding-bottom: 20px;
}

.chooseareason {
  width: 100% !important;
  height: auto !important;
  border: none !important;
}

.selectedvolunteers {
  margin: 8px 0 15px 0;
}

.chooseareason input {
  padding: 13px 15px !important;
}

.customreasonfild {
  margin-top: 10px;
}

/* Volunteers Move To Inactive Modal css End */

/* media css Start for table */
@media (max-width: 1250px) {
  .header-wrap.stuck {
    width: 85.5% !important;
  }
}

@media (max-width: 1150px) {
  .header-wrap.stuck {
    width: 88% !important;
  }
}

@media (max-width: 1050px) {
  .header-wrap.stuck {
    width: 100% !important;
  }
}

@media (max-width: 950px) {
  .header-wrap.stuck {
    width: 88% !important;
  }
}

@media (max-width: 850px) {
  .header-wrap.stuck {
    width: 85.7% !important;
  }
}

@media (max-width: 1200px) {
  .volunteers-list-wrap {
    width: 100% !important;
  }
}

@media (max-width: 1150px) {
  .volunteers-list-wrap {
    width: 95.2% !important;
  }
}

@media (max-width: 1050px) {
  .volunteers-list-wrap {
    width: 93.8% !important;
  }
}

@media (max-width: 950px) {
  .volunteers-list-wrap {
    width: 91.8% !important;
  }
}

/* @media (max-width: 850px) {
.volunteers-list-wrap {
    width: 78.8% !important;
  }
} */

@media (max-width: 1050px) {
  .volunteers-list-wrap.directorytab {
    width: 100% !important;
  }
}

@media (max-width: 1050px) {
  .volunteers-list-wrap.newtable {
    width: 100% !important;
  }
}

/* media css End for table */

.message-unreaded {
  font-weight: bold !important;
}
.message-unreaded div,
.message-unreaded span,
.message-unreaded p {
  font-weight: bold !important;
}

.NoMatch {
  color: #60545c;
  line-height: 3rem;
  margin-left: 40px;
  font-size: 15px;
}
.ShiftemptyPeople {
  position: fixed;
  justify-content: center;
  align-items: center;
  /* padding-left: 20%; */
  font-family: "Circular-Pro-Book";
  /* padding-top: 5%; */
  /* margin-left: 212px; */
  left: 580px;
  top: 52.8%;
  right: 15px;
}
.Shiftempty {
  position: fixed;
  justify-content: center;
  align-items: center;
  /* padding-left: 20%; */
  font-family: "Circular-Pro-Book";
  /* padding-top: 5%; */
  /* margin-left: 212px; */
  left: 580px;
  top: 52.5%;
  right: 15px;
}

.ShiftemptyStart {
  position: fixed;
  justify-content: center;
  align-items: center;
  /* padding-left: 20%; */
  font-family: "Circular-Pro-Book";
  /* padding-top: 5%; */
  /* margin-left: 212px; */
  left: 580px;
  /* top:39%; */
  right: 15px;
}
.ShiftemptyList {
  position: fixed;
  justify-content: center;
  align-items: center;
  text-align: "center";
  font-family: "Circular-Pro-Book";
  left: 380px;
  top: 53% !important;
  right: 27px !important;
}

.GroupsEmpty {
  text-align: center;
  justify-content: center;
  font-family: "Circular-Pro-Book";
  position: fixed;
  left: 240px;
  right: 100px;
  top: 45%;
  align-items: center;
}
.InactiveEmpty {
  text-align: center;
  justify-content: center;
  font-family: "Circular-Pro-Book";
  padding-right: 18%;
  padding-top: 4%;
}

.InactiveEmpty_table {
  text-align: center;
  justify-content: center;
  font-family: "Circular-Pro-Book";
  position: fixed;
  left: 240px;
  right: 100px;
  top: 44%;
  align-items: center;
}

.TrackEmpty {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  padding-top: 6%;
  padding-left: 30%;
}

.TrackRequestedEmpty {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  padding-left: 30%;
}
.Event-empty-event {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  left: 260px !important;
  top: 39% !important;
  right: 100px !important;
}
.block_size {
  min-width: 310px;
  max-width: 310px;
  width: 100%;
}

.RecriutApp-empty {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  left: 290px !important;
  right: 90px !important;
  top: 37% !important;
}
.Event-empty {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  padding-left: 19%;
  padding-top: 5%;
}
.Schedule-empty {
  text-align: center;
  justify-content: center;
  position: fixed;
  font-family: "Circular-Pro-Book";
  left: 240px;
  right: 100px;
  top: 40%;
}

[data-rbd-drag-handle-context-id="0"],
[data-rbd-drag-handle-context-id="1"],
[data-rbd-drag-handle-context-id="2"],
[data-rbd-drag-handle-context-id="3"] {
  cursor: auto !important;
}
/* @media (max-width: 1800px) {
    .intercom-lightweight-app-launcher {
      bottom: 70px !important;
    }
  } */

@media screen and (max-width: 1199px) {
  .styles_card_container__iaLZG {
    min-width: 200px !important;
    width: 100% !important;
  }
  .block_size {
    min-width: 280px;
    max-width: 280px;
    width: 100%;
  }
  /* hr.MuiDivider-root {
  width: calc(100% - 40px) !important;
} */
}
@media (max-width: 1170.98px) {
  .block_size {
    min-width: 260px;
    max-width: 260px;
    width: 100%;
  }
}

@media (max-width: 1100.98px) {
  .block_size {
    min-width: 240px;
    max-width: 240px;
    width: 100%;
  }
}

@media (max-width: 1050.98px) {
  .block_size {
    min-width: 220px;
    max-width: 220px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .profile-info a {
    width: 40px !important;
    height: 40px;
    min-width: 40px;
    margin-left: -20px !important;
  }
  .profile-info img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
  }
}

@media screen and (max-width: 767px) {
  .banner-text {
    bottom: auto !important;
    padding: 0px 20px;
    top: 20px;
  }
  /* hr.MuiDivider-root {
    margin: 30px auto !important;
  } */
}
.ellipsis {
  white-space: nowrap; /* Prevents text from wrapping */
  overflow: hidden; /* Hides the overflowed text */
  text-overflow: ellipsis; /* Displays ellipsis (...) for overflowed text */
}

.ellipsis_two_line {
  /* overflow: hidden; */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.signup_container {
  height: 100vh;
  overflow-y: scroll !important;
}

.mobile_divider {
  border: none;
  height: 1px;
  background-color: #0000001f;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.custom-scrollbar-size::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.manage-position-search {
  margin: 10px 0px;
  padding-right: 0px;
}

.add-position-btn {
  margin: 14px 0px;
  margin-left: 5px;
}
@media (max-width: 600px) {
  .manage-position-search {
    margin: 0px 0px;
    padding: 0px 0px;
    padding-right: 8px !important;
  }
  .add-position-btn {
    margin: 0px;
    margin-bottom: 10px;
    width: 100% !important;
  }
}

.manage-pos-modal-body {
  max-height: 400px;
  min-height: 400px;
  overflow: auto;
}

@media (max-height: 600px) {
  .manage-pos-modal-body {
    max-height: 50vh;
    min-height: 50vh;
    overflow: auto;
  }
}

.horizontal_scroll_table {
  overflow-y: auto;
  overflow-x: scroll;
}

.horizontal_scroll_table::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.doc-wrap-txt {
  font-family: "Circular-Pro-Book";
  color: #a0989d !important;
}
.document-text-added {
  font-family: "Circular-Pro-Book";
  color: #a0989d !important;
  font-size: 13px;
}
.hide_show_form_name {
  cursor: pointer;
  font-family: "Circular-Pro-Book";
  color: #004e5b;
}
.anchor-hover-disable:hover {
  color: #60545c !important;
}
.back-view-comments {
  font-family: "Circular-Pro-Book";

  margin-top: 5%;
  padding-left: 5%;
  font-size: 18px !important;
}
.view-comments-text-con {
  font-family: "Circular-Pro-Book";
  margin-top: 15px;
  padding-left: 5%;
}
.view-comments-headig {
  margin: 10px 0px;
  font-size: 21px !important;
  color: #60545c;
  font-weight: 450;
}
.view-comments-text {
  font-size: 15px !important;
  color: #60545c;
  font-weight: 450;
}
.cursor_auto {
  cursor: auto !important;
}
.btn-text-align {
  display: flex;
  align-items: center;
  justify-content: center;
}
.border-none {
  border: none;
}
.on_hover_link:hover {
  color: #004e5b !important;
}

.group_name_start {
  margin-left: 75px !important;
}
.control__indicator_group {
  top: 0px;
}
.track_volunteer_count {
  margin-left: 88px;
}
@media screen and (max-width: 1199px) {
  .group_name_start {
    margin-left: 60px !important;
  }
  .track_volunteer_count {
    margin-left: 73px;
  }
  .control__indicator_group {
    top: 3px;
  }
}

div.group-drawer-right {
  margin-top: 0px !important;
  margin-left: 0px !important;
}
.wrapper-group-container {
  width: 100%;
  padding: 25px 24px;
}

.group_table th:nth-child(2) {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.group_table tbody tr td:nth-child(2) {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.event_table th:nth-child(3) {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.event_table tbody tr td:nth-child(3) {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
}

.MuiYearPicker-root {
  /* added for date picker */
  padding-bottom: 130px !important;
}

.width_45_imp {
  max-width: 45% !important;
}

.circular_font {
  font-family: "Circular-Pro-Book" !important;
}

.pd-text-hover:hover {
  color: #39747e;
}

.mui_typography:hover {
  color: #527865 !important;
}

.error_msg {
  margin-top: -20px !important;
  font-size: 14px !important;
  color: red !important;
  font-family: "Circular-Pro-Book" !important;
}
.error_msg_details {
  font-size: 14px !important;
  color: red !important;
  font-family: "Circular-Pro-Book" !important;
}
.hide-img {
  display: none;
}
.settings-tab {
  font-size: 15px;
  color: #60545c;
  font-weight: 400;
  margin: 14px 0px;
  cursor: pointer;
  font-family: "Circular-Pro-Book";
  transition: color 0.2s ease;
}

.settings-tab:hover {
  color: #58a6a6;
}

.settings-tab.active {
  font-weight: 600; /* semi-bold for selected tab */
  color: #60545c; /* keep gray color even if selected */
}

.save-btn {
  width: 220px;
  height: 40px;
  float: right;
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #527865;
  border: 1px solid #527865;
  font-size: 15px;
  font-family: "Circular-Pro-Book";
}

.save-btn:hover {
  background-color: #5E8973;
  border-color: #5E8973;
}

#dd-company-name-input .dtd-streamlined-plugin {
  /* Apply shared color and border to input */
  .dtd-search-input {
    color: #60545c !important;
    border: 1px solid rgb(179, 173, 177) !important;
    box-shadow: none !important;
    font-family: "Circular-Pro-Book";
  }

  /* Apply common text color to selected company */
  .dtd-company-selected {
    color: #60545c !important;
    font-size: 15px !important;
    font-family: "Circular-Pro-Book";

    .wrongcompany a {
      color: #004e5b !important;
      font-size: 15px !important;
      font-family: "Circular-Pro-Book";
    }
    .wrongcompany a:hover {
      color: #004e5b !important;
      font-size: 15px !important;
      font-family: "Circular-Pro-Book";
    }

    .dtd-company-selected-name {
      color: #2090a4 !important;
      font-size: 15px !important;
      font-family: "Circular-Pro-Book";
    }
  }
}
