:root {
  --color-blue-light: #2867c6;
  --color-blue-dark: #112d51;
  --color-blue-light-text: #5a607a;
  --color-blue-light-bg: #eff5f9;
  --color-white: #fff;
  --color-grey-dark: #1a1b24;
  --color-grey-light: #fafafa;
  --color-grey-light-text: #6b749b;
  --color-grey-dark-text: #434343;
  --color-grey-mid: #666666;
  --color-danger: #cf162a;
  --border-grey: 1px solid #d7d7d7;
  --border-radius-10: 10px;
  --border-radius-5: 5px;
  --max-width: 1170px;
  --transition-main: 0.2s ease;
  --shadow-main: 0px 4px 6px 1px rgba(0, 0, 0, 0.15);
  --box-shadow-soft: 0px -26px 20px 0px rgba(0, 0, 0, 0.05);
}

/* Global */

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* Margin */
.cig--db-ll-mt {
  margin-top: 50px;
}
.cig--db-lm-mt {
  margin-top: 40px;
}
.cig--db-mm-mt {
  margin-top: 30px;
}
.cig--db-ms-mt {
  margin-top: 20px;
}
.cig--db-ss-mt {
  margin-top: 10px;
} 

/* Padding */
.cig--db-ll-pt {
  padding-top: 50px;
}
.cig--db-lm-pt {
  padding-top: 40px;
}
.cig--db-mm-pt {
  padding-top: 30px;
}
.cig--db-ms-pt {
  padding-top: 20px;
}
.cig--db-ss-pt {
  padding-top: 10px;
}

/* Gap Wrapper */
.cig--lrg-gap-wrapper{
  gap: 40px;
}
.cig--mid-gap-wrapper{
  gap: 30px;
}
.cig--sml-gap-wrapper{
  gap: 20px;
}

/* List */

.cig--container-max-width {
  margin-inline: auto;
  position: relative;
  max-width: var(--max-width);
  padding: 0 20px;
}
.radio--list{
  position:static !important;
}
main.cig--db-container * {
  box-sizing: border-box;
}
#profile_logo_Logo,#file_FeaturedImage,#file_TwitterImage,#file_id__FacebookImage{
  display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.profile-logo img,#file_TwitterImage img,#file_id__FacebookImage img{
    width: 71px;
    height: 71px;
    object-fit: cover;
    border-radius: 10px;
}
.delete_profile_logo,.imageremoved{
      background: red;
    padding: 4px 8px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}
h2.cig--primary-header-centered,
h2.cig--primary-header-default,
h2.cig--primary-header-centered-white,
h2.cig--primary-header-default-white {
  position: relative;
  font-weight: bold;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.3em;
  margin: 0;
  padding-bottom: 14px;
}
h2.cig--primary-header-centered,
h2.cig--primary-header-default {
  color: var(--color-blue-dark);
}
h2.cig--primary-header-centered::after,
h2.cig--primary-header-centered-white::after,
h2.cig--primary-header-default::after,
h2.cig--primary-header-default-white::after {
  content: "";
  width: 100px;
  height: 3px;
  background: var(--color-blue-light);
  position: absolute;
  bottom: 0;
}
h2.cig--primary-header-centered {
  text-align: center;
}
h2.cig--primary-header-default::after,
h2.cig--primary-header-default-white::after {
  left: 0;
}

h3.cig--sub-heading-bordered {
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-blue-dark);
  margin: 0;
  padding-bottom: 14px;
}
h3.cig--sub-heading-bordered::after {
  content: "";
  background: rgb(40, 103, 198);
  background: linear-gradient(
    90deg,
    rgba(40, 103, 198, 1) 20%,
    rgba(255, 255, 255, 1) 20%
  );
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}

p.cig--paragraph-white,
p.cig--paragraph-black,
p.cig--paragraph-vdgrey,
p.cig--paragraph-dgrey,
p.cig--paragraph-lgrey,
p.cig--paragraph-dgrey-flat,
p.cig--paragraph-lgrey-flat {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
}
p.cig--paragraph-vdgrey,
p.cig--paragraph-vdgrey-mt {
  color: #383c44;
}
p.cig--paragraph-dgrey,
p.cig--paragraph-dgrey-mt,
p.cig--paragraph-dgrey-flat {
  color: #5a607a;
}

/* Hero Section */
.cig--db-hero-wrapper {
  background: var(--color-white);
  padding: 50px 0;
}

.cig--db-body-wrapper {
  background: var(--color-blue-light-bg);
  padding: 30px 0 50px;
  min-height: 80vh;
}

h1.cig--db-primary-header {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-blue-dark);
}
span.cig--db-account-category {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #a1a8c9;
}
@media screen and (max-width: 600px) {
  h1.cig--db-primary-header {
    font-size: 28px;
  }
  span.cig--db-account-category {
    font-size: 14px;
  }
}

/* -------------- */
/* DASHBOARD TABS */
/* -------------- */
.cig--db-body-flex-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .cig--db-body-flex-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.cig--tabs-container {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  max-width: 810px;
  height: auto;
  border: 1px solid #ececec;
  background-color: var(--color-white);
  border-radius: var(--border-radius-10);
  overflow: hidden;
  position: relative;
}

.cig--db-tab-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.cig--db-tab-link {
  position: relative;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6em;
  width: 100%;
  padding: 10px 10px 10px 55px;
  color: var(--color-grey-light-text);
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.cig--db-tab-link:hover {
  color: var(--color-grey-dark-text);
  background: #fff;
}
.cig--db-tab-link.tab__active {
  color: #3169d4;
  background: #d6e8f9;
}
.cig--db-tab-link:hover::after {
  filter: brightness(0.65) saturate(200%);
}
.cig--db-tab-link::after {
  content: "";
  height: 36px;
  width: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
/* Job Seeker Icons */
.cig--db-tab-resume::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.28906 6.66004C7.28906 5.76534 8.01436 5.04004 8.90906 5.04004H21.2214L28.5262 12.5478V29.34C28.5262 30.2347 27.8009 30.96 26.9062 30.96H8.90906C8.01436 30.96 7.28906 30.2347 7.28906 29.34V6.66004ZM9.23306 6.98404V29.016H26.5822V13.9146H21.459C20.5643 13.9146 19.839 13.1893 19.839 12.2946V6.98404H9.23306ZM21.783 8.40488L25.2524 11.9706H21.783V8.40488ZM11.2226 21.9336C11.2226 21.3968 11.6578 20.9616 12.1946 20.9616H23.2461C23.7829 20.9616 24.2181 21.3968 24.2181 21.9336C24.2181 22.4704 23.7829 22.9056 23.2461 22.9056H12.1946C11.6578 22.9056 11.2226 22.4704 11.2226 21.9336ZM11.2226 25.8672C11.2226 25.3303 11.6578 24.8952 12.1946 24.8952H23.2461C23.7829 24.8952 24.2181 25.3303 24.2181 25.8672C24.2181 26.404 23.7829 26.8392 23.2461 26.8392H12.1946C11.6578 26.8392 11.2226 26.404 11.2226 25.8672Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1916 11.5605C15.4628 11.5605 15.6827 11.3407 15.6827 11.0695C15.6827 10.7983 15.4628 10.5784 15.1916 10.5784C14.9204 10.5784 14.7006 10.7983 14.7006 11.0695C14.7006 11.3407 14.9204 11.5605 15.1916 11.5605ZM15.1916 13.5045C16.5365 13.5045 17.6267 12.4143 17.6267 11.0695C17.6267 9.72463 16.5365 8.63441 15.1916 8.63441C13.8468 8.63441 12.7566 9.72463 12.7566 11.0695C12.7566 12.4143 13.8468 13.5045 15.1916 13.5045Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.5417 15.0605C13.2552 14.3946 14.2095 14.031 15.1916 14.031C16.1738 14.031 17.1281 14.3946 17.8416 15.0605C18.5574 15.7286 18.9733 16.6496 18.9733 17.6254C18.9733 18.1622 18.5381 18.5974 18.0013 18.5974C17.4645 18.5974 17.0293 18.1622 17.0293 17.6254C17.0293 17.2102 16.8532 16.7972 16.5152 16.4817C16.1749 16.1641 15.6998 15.975 15.1916 15.975C14.6834 15.975 14.2084 16.1641 13.8681 16.4817C13.5301 16.7972 13.3539 17.2102 13.3539 17.6254C13.3539 18.1622 12.9188 18.5974 12.3819 18.5974C11.8451 18.5974 11.4099 18.1622 11.4099 17.6254C11.4099 16.6496 11.8259 15.7286 12.5417 15.0605Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-apps::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7623 7.56039H7.56234V14.7604H14.7623V7.56039ZM7.56234 5.40039C6.36941 5.40039 5.40234 6.36746 5.40234 7.56039V14.7604C5.40234 15.9533 6.36941 16.9204 7.56234 16.9204H14.7623C15.9553 16.9204 16.9223 15.9533 16.9223 14.7604V7.56039C16.9223 6.36746 15.9553 5.40039 14.7623 5.40039H7.56234Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28.4423 7.56039H21.2423V14.7604H28.4423V7.56039ZM21.2423 5.40039C20.0494 5.40039 19.0823 6.36746 19.0823 7.56039V14.7604C19.0823 15.9533 20.0494 16.9204 21.2423 16.9204H28.4423C29.6353 16.9204 30.6023 15.9533 30.6023 14.7604V7.56039C30.6023 6.36746 29.6353 5.40039 28.4423 5.40039H21.2423Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7623 21.2404H7.56234V28.4404H14.7623V21.2404ZM7.56234 19.0804C6.36941 19.0804 5.40234 20.0475 5.40234 21.2404V28.4404C5.40234 29.6333 6.36941 30.6004 7.56234 30.6004H14.7623C15.9553 30.6004 16.9223 29.6333 16.9223 28.4404V21.2404C16.9223 20.0475 15.9553 19.0804 14.7623 19.0804H7.56234Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.8423 19.0804C25.4388 19.0804 25.9223 19.5639 25.9223 20.1604V23.7604H29.5223C30.1188 23.7604 30.6023 24.2439 30.6023 24.8404C30.6023 25.4369 30.1188 25.9204 29.5223 25.9204H25.9223V29.5204C25.9223 30.1169 25.4388 30.6004 24.8423 30.6004C24.2459 30.6004 23.7623 30.1169 23.7623 29.5204V25.9204H20.1623C19.5659 25.9204 19.0823 25.4369 19.0823 24.8404C19.0823 24.2439 19.5659 23.7604 20.1623 23.7604H23.7623V20.1604C23.7623 19.5639 24.2459 19.0804 24.8423 19.0804Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-profile::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.9564 14.7666C12.9564 11.9833 15.2004 9.72031 17.9964 9.72031C20.7781 9.72031 23.0364 11.9815 23.0364 14.7666L23.0364 14.7719C23.0211 17.4871 20.8881 19.7073 18.1785 19.7998C18.1247 19.8016 18.0709 19.7988 18.0176 19.7914L18.0168 19.7914C18.0136 19.7911 18.0082 19.7909 18.0011 19.7909C17.9857 19.7909 17.9716 19.792 17.9627 19.7931C17.9135 19.7992 17.8639 19.8015 17.8144 19.7998C15.1095 19.7074 12.9564 17.4906 12.9564 14.7666ZM17.9964 11.5986C16.2402 11.5986 14.8323 13.0169 14.8323 14.7666C14.8323 16.4555 16.15 17.8325 17.8196 17.9201C17.9347 17.9107 18.0573 17.9098 18.1764 17.9199C19.8389 17.8309 21.1496 16.4592 21.1605 14.7639C21.159 13.0174 19.7411 11.5986 17.9964 11.5986Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.8164 4.32031C10.3606 4.32031 4.31641 10.3645 4.31641 17.8203C4.31641 21.6827 5.93846 25.1663 8.53854 27.627C8.5694 27.6586 8.60215 27.6896 8.63633 27.7203C8.65547 27.7375 8.67466 27.7547 8.69389 27.7718C11.0964 29.9754 14.2994 31.3203 17.8164 31.3203C21.3342 31.3203 24.5378 29.9748 26.9406 27.7702C26.9592 27.7536 26.9778 27.737 26.9964 27.7203C27.0304 27.6898 27.0629 27.659 27.0936 27.6276C29.6941 25.1669 31.3164 21.683 31.3164 17.8203C31.3164 10.3645 25.2722 4.32031 17.8164 4.32031ZM26.7599 25.2337C28.4291 23.2222 29.4327 20.6384 29.4327 17.8203C29.4327 11.4048 24.2318 6.20403 17.8164 6.20403C11.4009 6.20403 6.20013 11.4048 6.20013 17.8203C6.20013 20.6384 7.20367 23.2222 8.8729 25.2337C9.33677 24.4279 10.0475 23.7038 10.9528 23.106L10.9576 23.1029C12.8918 21.8422 15.3854 21.2403 17.826 21.2403C20.2662 21.2403 22.755 21.8421 24.6779 23.1047L24.68 23.106C25.5853 23.7038 26.296 24.4279 26.7599 25.2337ZM25.3328 26.6773C23.3068 28.3983 20.6829 29.4366 17.8164 29.4366C14.9499 29.4366 12.326 28.3983 10.3 26.6774C10.5303 25.9967 11.0736 25.2866 12.0171 24.663C13.5726 23.65 15.6759 23.1151 17.826 23.1151C19.9769 23.1151 22.073 23.6504 23.6144 24.6621C24.5587 25.2859 25.1024 25.9964 25.3328 26.6773Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-letters::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.1992 13.0002C14.1992 12.5584 14.5574 12.2002 14.9992 12.2002H21.9992C22.441 12.2002 22.7992 12.5584 22.7992 13.0002C22.7992 13.442 22.441 13.8002 21.9992 13.8002H14.9992C14.5574 13.8002 14.1992 13.442 14.1992 13.0002Z' fill='%235A607A'/%3E%3Cpath d='M14.1992 16.0002C14.1992 15.5584 14.5574 15.2002 14.9992 15.2002H21.9992C22.441 15.2002 22.7992 15.5584 22.7992 16.0002C22.7992 16.442 22.441 16.8002 21.9992 16.8002H14.9992C14.5574 16.8002 14.1992 16.442 14.1992 16.0002Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.0926 8.12177L20.2725 5.61846C19.3494 4.66189 17.7437 4.66015 16.8193 5.61853L14.009 8.12177H11.4668C10.9763 8.12177 10.5856 8.53376 10.5856 9.03407V11.6687L6.63832 15.7732C6.19321 16.0834 5.89844 16.6089 5.89844 17.2038V29.3758C5.89844 30.3204 6.64305 31.1004 7.56082 31.1004H29.4342C30.352 31.1004 31.0966 30.3204 31.0966 29.3758V17.2395C31.1023 17.1578 31.0944 17.0781 31.0802 17.0024C31.0443 16.6977 30.9161 16.397 30.7499 16.1637L30.7492 16.1628C30.704 16.1008 30.6292 16.0229 30.5697 15.9637C30.5392 15.9333 30.5113 15.9065 30.491 15.8873L30.4668 15.8646L30.4601 15.8584L26.4094 11.6153V9.03407C26.4094 8.53376 26.0187 8.12177 25.5282 8.12177H23.0926ZM12.348 9.94635H24.6471V21.0948L23.3487 22.2934L20.0889 19.2205L20.0833 19.2159C19.1271 18.4366 17.7529 18.4028 16.7411 19.2516L13.7126 22.1722L12.348 20.92V9.94635ZM18.0652 6.90871C18.1951 6.77443 18.3654 6.7012 18.5456 6.7012C18.7267 6.7012 18.8968 6.77471 19.0266 6.90895L20.4105 8.12174H16.6836L18.0595 6.91461L18.0652 6.90871ZM26.4095 14.1524L27.6858 15.4792H27.6646L29.0948 16.9906L26.4095 19.4688V14.1524ZM8.57598 16.344L10.5856 14.2551V19.3035L7.98219 16.9151L8.53962 16.344L8.57598 16.344ZM7.66087 28.0096V19.0575L12.4177 23.4218L7.66087 28.0096ZM29.3343 27.9341L24.6594 23.5279L29.3343 19.2143V27.9341ZM8.93312 29.2753L17.884 20.6408C18.0432 20.5084 18.2295 20.4401 18.4246 20.4401C18.6254 20.4401 18.8257 20.5134 18.9576 20.6186L28.1418 29.2753H8.93312Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-alerts::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.1955 6.80434C20.2582 6.94232 20.3004 7.5695 20.3214 7.96598C19.6841 7.81453 19.0153 7.73392 18.326 7.73392C17.7486 7.73392 17.1857 7.79047 16.6436 7.89782C16.6656 7.50126 16.7066 6.93465 16.7658 6.80434C16.8591 6.59904 16.9958 6.41251 17.1681 6.25538C17.3405 6.09825 17.5451 5.97361 17.7703 5.88857C17.9955 5.80353 18.2369 5.75977 18.4806 5.75977C18.7244 5.75977 18.9658 5.80353 19.191 5.88857C19.4162 5.97361 19.6208 6.09825 19.7931 6.25538C19.9655 6.41251 20.1022 6.59904 20.1955 6.80434Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.6806 10.7178C25.1921 11.8712 26.2047 13.621 26.2047 15.9056V21.1611L29.293 24.7622C29.5277 25.0358 29.5821 25.4218 29.4323 25.7501C29.2825 26.0784 28.956 26.2889 28.5965 26.2889H7.75542C7.38669 26.2889 7.05362 26.0676 6.90931 25.7267C6.76499 25.3858 6.83735 24.9913 7.09311 24.7244L10.5367 21.1317V15.9056C10.5367 13.621 11.5493 11.8712 13.0608 10.7178C14.5466 9.58393 16.4815 9.04557 18.3707 9.04557C20.2599 9.04557 22.1948 9.58394 23.6806 10.7178ZM14.1731 12.189C13.0916 13.0143 12.3756 14.2327 12.3756 15.9056V21.8766L9.91727 24.4414H26.5906L24.3658 21.8472V15.9056C24.3658 14.2327 23.6498 13.0143 22.5683 12.189C21.4612 11.3441 19.9388 10.8931 18.3707 10.8931C16.8026 10.8931 15.2803 11.3441 14.1731 12.189Z' fill='%235A607A'/%3E%3Cpath d='M21.2406 27.5206C21.4099 27.5206 21.5487 27.6588 21.5318 27.828C21.502 28.1269 21.4287 28.4204 21.3138 28.6989C21.1598 29.0725 20.934 29.412 20.6494 29.6979C20.3648 29.9838 20.027 30.2106 19.6551 30.3654C19.2833 30.5201 18.8847 30.5998 18.4823 30.5998C18.0798 30.5998 17.6812 30.5201 17.3094 30.3654C16.9375 30.2106 16.5997 29.9838 16.3151 29.6979C16.0305 29.412 15.8047 29.0725 15.6507 28.6989C15.5358 28.4204 15.4626 28.1269 15.4327 27.828C15.4158 27.6588 15.5546 27.5206 15.7239 27.5206H16.8542C17.1077 27.5206 17.3052 27.7347 17.4023 27.97C17.461 28.1125 17.5471 28.242 17.6557 28.3511C17.7642 28.4601 17.8931 28.5466 18.0349 28.6056C18.1767 28.6647 18.3287 28.695 18.4823 28.695C18.6358 28.695 18.7878 28.6647 18.9296 28.6056C19.0714 28.5466 19.2003 28.4601 19.3089 28.3511C19.4174 28.242 19.5035 28.1125 19.5623 27.97C19.6593 27.7347 19.8568 27.5206 20.1103 27.5206H21.2406Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}

/* Employer Icons */
.cig--db-tab-myjobs::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.48 7.92C13.9498 7.92 13.52 8.34981 13.52 8.88V9.52H22.48V8.88C22.48 8.34981 22.0502 7.92 21.52 7.92H14.48ZM24.4 9.52V8.88C24.4 7.28942 23.1106 6 21.52 6H14.48C12.8894 6 11.6 7.28942 11.6 8.88V9.52H4.88C3.28942 9.52 2 10.8094 2 12.4V27.12C2 28.7106 3.28942 30 4.88 30H31.12C32.7106 30 34 28.7106 34 27.12V12.4C34 10.8094 32.7106 9.52 31.12 9.52H24.4ZM32.08 19.1519V27.12C32.08 27.6502 31.6502 28.08 31.12 28.08H4.88C4.34981 28.08 3.92 27.6502 3.92 27.12V19.1519C5.20355 20.5115 7.02268 21.36 9.04 21.36H14.32V22.32C14.32 23.2037 15.0363 23.92 15.92 23.92H20.1394C21.023 23.92 21.7394 23.2037 21.7394 22.32V21.36H26.96C28.9773 21.36 30.7965 20.5115 32.08 19.1519ZM21.7394 19.44H26.96C29.7877 19.44 32.08 17.1477 32.08 14.32V12.4C32.08 11.8698 31.6502 11.44 31.12 11.44H4.88C4.34981 11.44 3.92 11.8698 3.92 12.4V14.32C3.92 17.1477 6.2123 19.44 9.04 19.44H14.32V18.32C14.32 17.4363 15.0363 16.72 15.92 16.72H20.1394C21.023 16.72 21.7394 17.4363 21.7394 18.32V19.44ZM16.24 18.64V22H19.8194V18.64H16.24Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-applicants::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.7551 9.93548C5.2479 9.93548 4.83673 10.3688 4.83673 10.9032V25.0968C4.83673 25.6367 5.24514 26.0645 5.74715 26.0645H30.2478C30.7531 26.0645 31.1633 25.6332 31.1633 25.0968V10.9032C31.1633 10.3688 30.7521 9.93548 30.2449 9.93548H5.7551ZM3 10.9032C3 9.29982 4.2335 8 5.7551 8H30.2449C31.7665 8 33 9.29982 33 10.9032V25.0968C33 26.6982 31.7713 28 30.2478 28H5.74715C4.22037 28 3 26.6947 3 25.0968V10.9032Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.8776 15.7419C12.3848 15.7419 12.7959 15.3087 12.7959 14.7742C12.7959 14.2397 12.3848 13.8065 11.8776 13.8065C11.3704 13.8065 10.9592 14.2397 10.9592 14.7742C10.9592 15.3087 11.3704 15.7419 11.8776 15.7419ZM11.8776 17.3548C13.2301 17.3548 14.3265 16.1994 14.3265 14.7742C14.3265 13.3489 13.2301 12.1935 11.8776 12.1935C10.525 12.1935 9.42857 13.3489 9.42857 14.7742C9.42857 16.1994 10.525 17.3548 11.8776 17.3548Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.8776 19.6129H11.5714C10.0904 19.6129 8.85507 20.7211 8.57144 22.1935H14.8775C14.5939 20.7211 13.3585 19.6129 11.8776 19.6129ZM11.5714 18C9.03543 18 6.97959 20.1664 6.97959 22.8387C6.97959 23.3732 7.39076 23.8065 7.89796 23.8065H15.551C16.0582 23.8065 16.4694 23.3732 16.4694 22.8387C16.4694 20.1664 14.4136 18 11.8776 18H11.5714Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6122 13.4839C18.6122 12.9494 19.0234 12.5161 19.5306 12.5161H28.102C28.6092 12.5161 29.0204 12.9494 29.0204 13.4839C29.0204 14.0183 28.6092 14.4516 28.102 14.4516H19.5306C19.0234 14.4516 18.6122 14.0183 18.6122 13.4839Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6122 17.6774C18.6122 17.1429 19.0234 16.7097 19.5306 16.7097H28.102C28.6092 16.7097 29.0204 17.1429 29.0204 17.6774C29.0204 18.2119 28.6092 18.6452 28.102 18.6452H19.5306C19.0234 18.6452 18.6122 18.2119 18.6122 17.6774Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.6122 21.871C18.6122 21.3365 19.0234 20.9032 19.5306 20.9032H28.102C28.6092 20.9032 29.0204 21.3365 29.0204 21.871C29.0204 22.4054 28.6092 22.8387 28.102 22.8387H19.5306C19.0234 22.8387 18.6122 22.4054 18.6122 21.871Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-employerprofile::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.9564 14.7666C12.9564 11.9833 15.2004 9.72031 17.9964 9.72031C20.7781 9.72031 23.0364 11.9815 23.0364 14.7666L23.0364 14.7719C23.0211 17.4871 20.8881 19.7073 18.1785 19.7998C18.1247 19.8016 18.0709 19.7988 18.0176 19.7914L18.0168 19.7914C18.0136 19.7911 18.0082 19.7909 18.0011 19.7909C17.9857 19.7909 17.9716 19.792 17.9627 19.7931C17.9135 19.7992 17.8639 19.8015 17.8144 19.7998C15.1095 19.7074 12.9564 17.4906 12.9564 14.7666ZM17.9964 11.5986C16.2402 11.5986 14.8323 13.0169 14.8323 14.7666C14.8323 16.4555 16.15 17.8325 17.8196 17.9201C17.9347 17.9107 18.0573 17.9098 18.1764 17.9199C19.8389 17.8309 21.1496 16.4592 21.1605 14.7639C21.159 13.0174 19.7411 11.5986 17.9964 11.5986Z' fill='%235A607A'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.8164 4.32031C10.3606 4.32031 4.31641 10.3645 4.31641 17.8203C4.31641 21.6827 5.93846 25.1663 8.53854 27.627C8.5694 27.6586 8.60215 27.6896 8.63633 27.7203C8.65547 27.7375 8.67466 27.7547 8.69389 27.7718C11.0964 29.9754 14.2994 31.3203 17.8164 31.3203C21.3342 31.3203 24.5378 29.9748 26.9406 27.7702C26.9592 27.7536 26.9778 27.737 26.9964 27.7203C27.0304 27.6898 27.0629 27.659 27.0936 27.6276C29.6941 25.1669 31.3164 21.683 31.3164 17.8203C31.3164 10.3645 25.2722 4.32031 17.8164 4.32031ZM26.7599 25.2337C28.4291 23.2222 29.4327 20.6384 29.4327 17.8203C29.4327 11.4048 24.2318 6.20403 17.8164 6.20403C11.4009 6.20403 6.20013 11.4048 6.20013 17.8203C6.20013 20.6384 7.20367 23.2222 8.8729 25.2337C9.33677 24.4279 10.0475 23.7038 10.9528 23.106L10.9576 23.1029C12.8918 21.8422 15.3854 21.2403 17.826 21.2403C20.2662 21.2403 22.755 21.8421 24.6779 23.1047L24.68 23.106C25.5853 23.7038 26.296 24.4279 26.7599 25.2337ZM25.3328 26.6773C23.3068 28.3983 20.6829 29.4366 17.8164 29.4366C14.9499 29.4366 12.326 28.3983 10.3 26.6774C10.5303 25.9967 11.0736 25.2866 12.0171 24.663C13.5726 23.65 15.6759 23.1151 17.826 23.1151C19.9769 23.1151 22.073 23.6504 23.6144 24.6621C24.5587 25.2859 25.1024 25.9964 25.3328 26.6773Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-tab-subaccounts::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.5091 16.2024C18.7716 16.2024 21.4164 13.5425 21.4164 10.2613C21.4164 6.9802 18.7716 4.32031 15.5091 4.32031C12.2466 4.32031 9.60186 6.9802 9.60186 10.2613C9.60186 13.5425 12.2466 16.2024 15.5091 16.2024ZM15.5091 14.3263C17.7414 14.3263 19.551 12.5063 19.551 10.2613C19.551 8.01635 17.7414 6.19643 15.5091 6.19643C13.2769 6.19643 11.4673 8.01635 11.4673 10.2613C11.4673 12.5063 13.2769 14.3263 15.5091 14.3263Z' fill='%235A607A'/%3E%3Cpath d='M9.74751 19.9685C12.7577 18.7036 16.6201 18.2874 20.0982 19.2035C20.5965 19.3348 20.8947 19.8474 20.7642 20.3486C20.6336 20.8498 20.1239 21.1497 19.6255 21.0184C16.5745 20.2148 13.1306 20.5802 10.4667 21.6996C7.73748 22.8464 6.18186 24.6039 6.18186 26.3647V29.8042H23.4373C23.9524 29.8042 24.37 30.2242 24.37 30.7423C24.37 31.2603 23.9524 31.6803 23.4373 31.6803H5.71948C4.94459 31.6803 4.31641 31.0521 4.31641 30.2772V26.3647C4.31641 23.4351 6.8026 21.2059 9.74751 19.9685Z' fill='%235A607A'/%3E%3Cpath d='M25.1473 18.7039C25.1473 18.1858 25.5651 17.7658 26.08 17.7658C26.595 17.7658 27.0128 18.1858 27.0128 18.7039V22.4561H30.7437C31.2586 22.4561 31.6764 22.8761 31.6764 23.3941C31.6764 23.9122 31.2586 24.3322 30.7437 24.3322H27.0128V28.0844C27.0128 28.6025 26.595 29.0225 26.08 29.0225C25.5651 29.0225 25.1473 28.6025 25.1473 28.0844V24.3322H21.4164C20.9015 24.3322 20.4837 23.9122 20.4837 23.3941C20.4837 22.8761 20.9015 22.4561 21.4164 22.4561H25.1473V18.7039Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
/* .cig--db-tab-alerts::after {
  background: url()
    center / contain no-repeat;
} */
.cig--db-tab-autoresponses::after {
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.5577 9.71992C25.7565 9.71992 25.9177 9.8811 25.9177 10.0799V13.6799C25.9177 14.177 26.3206 14.5799 26.8177 14.5799C27.3147 14.5799 27.7177 14.177 27.7177 13.6799V10.0799C27.7177 8.88699 26.7506 7.91992 25.5577 7.91992H5.75766C4.56472 7.91992 3.59766 8.88699 3.59766 10.0799V21.4199C3.59766 22.6129 4.56472 23.5799 5.75766 23.5799H8.23612V27.4598C8.23612 28.0338 8.87492 28.377 9.35355 28.0602L16.1215 23.5799H19.0824C19.6429 23.5799 20.067 23.0732 19.9684 22.5215C19.8916 22.0924 19.5183 21.7799 19.0824 21.7799H15.5797L10.0361 25.4497V21.7799H5.75766C5.55883 21.7799 5.39766 21.6187 5.39766 21.4199V10.0799C5.39766 9.8811 5.55883 9.71992 5.75766 9.71992H25.5577Z' fill='%235A607A'/%3E%3Cpath d='M7.55766 12.4321C7.55766 11.9283 7.96604 11.5199 8.4698 11.5199H12.9165C13.4202 11.5199 13.8286 11.9283 13.8286 12.4321C13.8286 12.9358 13.4202 13.3442 12.9165 13.3442H8.4698C7.96603 13.3442 7.55766 12.9358 7.55766 12.4321Z' fill='%235A607A'/%3E%3Cpath d='M7.55766 15.6246C7.55766 15.1208 7.96604 14.7124 8.4698 14.7124H19.6055C20.1093 14.7124 20.5177 15.1208 20.5177 15.6246C20.5177 16.1283 20.1093 16.5367 19.6055 16.5367H8.4698C7.96604 16.5367 7.55766 16.1283 7.55766 15.6246Z' fill='%235A607A'/%3E%3Cpath d='M7.55766 18.8999C7.55766 18.4029 7.9606 17.9999 8.45766 17.9999H18.8977C19.3947 17.9999 19.7977 18.4029 19.7977 18.8999C19.7977 19.397 19.3947 19.7999 18.8977 19.7999H8.45766C7.9606 19.7999 7.55766 19.397 7.55766 18.8999Z' fill='%235A607A'/%3E%3Cpath d='M27.0934 22.8149C27.4634 22.8149 27.8182 22.668 28.0798 22.4063C28.3414 22.1447 28.4884 21.7899 28.4884 21.4199C28.4884 21.0499 28.3414 20.6951 28.0798 20.4335C27.8182 20.1719 27.4634 20.0249 27.0934 20.0249C26.7234 20.0249 26.3686 20.1719 26.107 20.4335C25.8453 20.6951 25.6984 21.0499 25.6984 21.4199C25.6984 21.7899 25.8453 22.1447 26.107 22.4063C26.3686 22.668 26.7234 22.8149 27.0934 22.8149Z' fill='%235A607A'/%3E%3Cpath d='M25.001 16.8862C25.001 16.6087 25.1113 16.3426 25.3075 16.1464C25.5037 15.9502 25.7698 15.8399 26.0473 15.8399H28.1398C28.4173 15.8399 28.6834 15.9502 28.8796 16.1464C29.0758 16.3426 29.186 16.6087 29.186 16.8862V17.7957L29.9742 17.3409C30.2144 17.2024 30.4998 17.165 30.7677 17.2368C31.0355 17.3086 31.2639 17.4838 31.4027 17.7239L32.4489 19.536C32.5177 19.655 32.5624 19.7864 32.5804 19.9227C32.5984 20.059 32.5893 20.1975 32.5538 20.3303C32.5182 20.4631 32.4568 20.5875 32.3731 20.6966C32.2894 20.8057 32.1851 20.8971 32.066 20.9659L31.2785 21.4199L32.0667 21.8747C32.3069 22.0136 32.4821 22.2421 32.5538 22.5101C32.6254 22.7781 32.5877 23.0637 32.4489 23.3039L31.4027 25.116C31.334 25.235 31.2426 25.3394 31.1336 25.4231C31.0247 25.5068 30.9003 25.5682 30.7676 25.6038C30.6348 25.6394 30.4964 25.6486 30.3602 25.6307C30.2239 25.6128 30.0925 25.5683 29.9735 25.4996L29.186 25.0434V25.9537C29.186 26.2312 29.0758 26.4973 28.8796 26.6935C28.6834 26.8897 28.4173 26.9999 28.1398 26.9999H26.0473C25.7698 26.9999 25.5037 26.8897 25.3075 26.6935C25.1113 26.4973 25.001 26.2312 25.001 25.9537V25.0441L24.2129 25.4989C23.9726 25.6374 23.6872 25.6749 23.4194 25.6031C23.1515 25.5313 22.9231 25.3561 22.7844 25.116L21.7381 23.3039C21.6693 23.1849 21.6246 23.0534 21.6067 22.9172C21.5887 22.7809 21.5977 22.6424 21.6333 22.5096C21.6688 22.3768 21.7302 22.2523 21.8139 22.1432C21.8976 22.0342 22.002 21.9427 22.1211 21.874L22.9085 21.4199L22.1204 20.9652C21.8805 20.8262 21.7056 20.5977 21.634 20.3299C21.5625 20.062 21.6002 19.7767 21.7388 19.5367L22.7851 17.7246C22.8537 17.6055 22.9451 17.5012 23.0541 17.4175C23.1631 17.3338 23.2875 17.2723 23.4202 17.2367C23.5529 17.2011 23.6913 17.192 23.8276 17.2098C23.9638 17.2277 24.0952 17.2723 24.2142 17.3409L25.001 17.7964V16.8862ZM26.396 17.2349V18.3997C26.3956 18.5183 26.3779 18.629 26.343 18.7318C25.8905 18.8585 25.4774 19.0974 25.1419 19.4265C25.031 19.4036 24.9245 19.3628 24.8267 19.3058L23.8181 18.7234L23.1206 19.9315L24.1292 20.5139C24.231 20.5725 24.3182 20.645 24.3907 20.7259C24.2738 21.1812 24.2738 21.6586 24.3907 22.1139C24.3182 22.1958 24.231 22.2665 24.1292 22.326L23.1206 22.9084L23.8181 24.1165L24.8267 23.534C24.9245 23.477 25.031 23.4363 25.1419 23.4134C25.4774 23.7424 25.8905 23.9814 26.343 24.1081C26.3779 24.2113 26.3956 24.322 26.396 24.4401V25.6049H27.791V24.4401C27.7915 24.3215 27.8092 24.2109 27.844 24.1081C28.2965 23.9814 28.7097 23.7424 29.0451 23.4134C29.1521 23.4352 29.2572 23.4755 29.3604 23.534L30.369 24.1165L31.0665 22.9084L30.0579 22.326C29.9598 22.2699 29.8715 22.1983 29.7963 22.1139C29.9133 21.6586 29.9133 21.1812 29.7963 20.7259C29.8689 20.645 29.9561 20.5725 30.0579 20.5139L31.0665 19.9315L30.369 18.7234L29.3604 19.3058C29.2625 19.3628 29.1561 19.4036 29.0451 19.4265C28.7097 19.0974 28.2965 18.8585 27.844 18.7318C27.8086 18.6247 27.7907 18.5126 27.791 18.3997V17.2349H26.396Z' fill='%235A607A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}

.cig--db-tab-link.tab__active::after {
  filter: brightness(0.3) saturate(120%) invert(30%) sepia(50%) saturate(1300%)
    hue-rotate(190deg);
}

/* -------------------------- */
/* Purchased Products(addons) */
/* -------------------------- */
.cig--db-addons-primary-wrapper {
  margin-top: 50px;
}
.cig--db-addons-flex-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cig--db-addon-item-wrapper {
  padding: 20px;
  border-radius: 10px;
  border-top: 3px solid rgba(40, 103, 198, 0.3);
  background: var(--color-white);
  -webkit-box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
}
strong.cig--db-addon-item-header {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #383c44;
  margin: 0;
}
ul.cig--db-addon-list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.cig--db-addon-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 14px;
}
ul.cig--db-addon-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.cig--db-addon-price::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.125 2C2.82663 2 2.54048 2.11853 2.3295 2.3295C2.11853 2.54048 2 2.82663 2 3.125V17.125C2 17.7467 2.50333 18.25 3.125 18.25H17.125C17.2727 18.25 17.419 18.2209 17.5555 18.1644C17.692 18.1078 17.816 18.025 17.9205 17.9205C18.025 17.816 18.1078 17.692 18.1644 17.5555C18.2209 17.419 18.25 17.2727 18.25 17.125V3.125C18.25 2.97726 18.2209 2.83097 18.1644 2.69448C18.1078 2.55799 18.025 2.43397 17.9205 2.3295C17.816 2.22504 17.692 2.14217 17.5555 2.08564C17.419 2.0291 17.2727 2 17.125 2H3.125ZM10.75 4.70833C10.75 4.54257 10.6842 4.3836 10.5669 4.26639C10.4497 4.14918 10.2908 4.08333 10.125 4.08333C9.95924 4.08333 9.80027 4.14918 9.68306 4.26639C9.56585 4.3836 9.5 4.54257 9.5 4.70833V5.6275C9.07083 5.69167 8.65 5.84 8.29417 6.11C7.73333 6.535 7.41667 7.19417 7.41667 8.04167C7.41667 8.455 7.51167 8.82056 7.70167 9.13833C7.88917 9.45167 8.14667 9.6825 8.4225 9.85833C8.93073 10.1822 9.57882 10.3588 10.1161 10.5051C10.1179 10.5056 10.1198 10.5062 10.1217 10.5067L10.1692 10.52C10.7683 10.6833 11.2392 10.8175 11.5733 11.03C11.7275 11.1283 11.8275 11.2292 11.8917 11.3358C11.9525 11.4383 12 11.5792 12 11.7917C12 12.3 11.7958 12.6183 11.4967 12.8275C11.1717 13.055 10.6925 13.1792 10.1467 13.16C9.31333 13.1292 8.5175 12.7733 8.125 12.25C8.07575 12.1843 8.01406 12.129 7.94343 12.0872C7.87281 12.0454 7.79464 12.0179 7.71339 12.0063C7.63214 11.9947 7.5494 11.9992 7.46989 12.0196C7.39038 12.0399 7.31566 12.0758 7.25 12.125C7.18434 12.1742 7.12902 12.2359 7.0872 12.3066C7.04539 12.3772 7.01789 12.4554 7.00628 12.5366C6.99467 12.6179 6.99918 12.7006 7.01955 12.7801C7.03992 12.8596 7.07575 12.9343 7.125 13C7.68333 13.7442 8.58917 14.1875 9.5 14.3458V15.5417C9.5 15.7074 9.56585 15.8664 9.68306 15.9836C9.80027 16.1008 9.95924 16.1667 10.125 16.1667C10.2908 16.1667 10.4497 16.1008 10.5669 15.9836C10.6842 15.8664 10.75 15.7074 10.75 15.5417V14.3825C11.2733 14.32 11.785 14.1525 12.2133 13.8517C12.8442 13.41 13.25 12.71 13.25 11.7917C13.25 11.3783 13.155 11.0128 12.965 10.695C12.7854 10.4011 12.5383 10.1543 12.2442 9.975C11.7359 9.65113 11.0878 9.47456 10.5506 9.32819C10.5487 9.32768 10.5469 9.32718 10.545 9.32667L10.4975 9.31333C9.89833 9.15 9.4275 9.01583 9.09333 8.80333C8.96389 8.72884 8.85461 8.62385 8.775 8.4975C8.69732 8.35854 8.65981 8.20072 8.66667 8.04167C8.66667 7.53 8.84167 7.2625 9.04833 7.10667C9.28167 6.93 9.645 6.8275 10.1083 6.84C10.8992 6.86167 11.7425 7.21 12.1833 7.65C12.2406 7.71141 12.3096 7.76066 12.3862 7.79482C12.4629 7.82898 12.5456 7.84735 12.6296 7.84883C12.7135 7.85031 12.7968 7.83487 12.8747 7.80344C12.9525 7.772 13.0232 7.72521 13.0825 7.66586C13.1419 7.60652 13.1887 7.53582 13.2201 7.458C13.2515 7.38017 13.267 7.29682 13.2655 7.2129C13.264 7.12898 13.2456 7.04622 13.2115 6.96955C13.1773 6.89289 13.1281 6.82388 13.0667 6.76667C12.4983 6.1975 11.6242 5.7975 10.75 5.65V4.70833Z' fill='%23112D51'/%3E%3Cpath d='M10.75 4.70833C10.75 4.54257 10.6842 4.3836 10.5669 4.26639C10.4497 4.14918 10.2908 4.08333 10.125 4.08333C9.95924 4.08333 9.80027 4.14918 9.68306 4.26639C9.56585 4.3836 9.5 4.54257 9.5 4.70833V5.6275C9.07083 5.69167 8.65 5.84 8.29417 6.11C7.73333 6.535 7.41667 7.19417 7.41667 8.04167C7.41667 8.455 7.51167 8.82056 7.70167 9.13833C7.88917 9.45167 8.14667 9.6825 8.4225 9.85833C8.93073 10.1822 9.57882 10.3588 10.1161 10.5051L10.1217 10.5067L10.1692 10.52C10.7683 10.6833 11.2392 10.8175 11.5733 11.03C11.7275 11.1283 11.8275 11.2292 11.8917 11.3358C11.9525 11.4383 12 11.5792 12 11.7917C12 12.3 11.7958 12.6183 11.4967 12.8275C11.1717 13.055 10.6925 13.1792 10.1467 13.16C9.31333 13.1292 8.5175 12.7733 8.125 12.25C8.07575 12.1843 8.01406 12.129 7.94343 12.0872C7.87281 12.0454 7.79464 12.0179 7.71339 12.0063C7.63214 11.9947 7.5494 11.9992 7.46989 12.0196C7.39038 12.0399 7.31566 12.0758 7.25 12.125C7.18434 12.1742 7.12902 12.2359 7.0872 12.3066C7.04539 12.3772 7.01789 12.4554 7.00628 12.5366C6.99467 12.6179 6.99918 12.7006 7.01955 12.7801C7.03992 12.8596 7.07575 12.9343 7.125 13C7.68333 13.7442 8.58917 14.1875 9.5 14.3458V15.5417C9.5 15.7074 9.56585 15.8664 9.68306 15.9836C9.80027 16.1008 9.95924 16.1667 10.125 16.1667C10.2908 16.1667 10.4497 16.1008 10.5669 15.9836C10.6842 15.8664 10.75 15.7074 10.75 15.5417V14.3825C11.2733 14.32 11.785 14.1525 12.2133 13.8517C12.8442 13.41 13.25 12.71 13.25 11.7917C13.25 11.3783 13.155 11.0128 12.965 10.695C12.7854 10.4011 12.5383 10.1543 12.2442 9.975C11.7359 9.65113 11.0878 9.47456 10.5506 9.32819L10.545 9.32667L10.4975 9.31333C9.89833 9.15 9.4275 9.01583 9.09333 8.80333C8.96389 8.72884 8.85461 8.62385 8.775 8.4975C8.69732 8.35854 8.65981 8.20072 8.66667 8.04167C8.66667 7.53 8.84167 7.2625 9.04833 7.10667C9.28167 6.93 9.645 6.8275 10.1083 6.84C10.8992 6.86167 11.7425 7.21 12.1833 7.65C12.2406 7.71141 12.3096 7.76066 12.3862 7.79482C12.4629 7.82898 12.5456 7.84735 12.6296 7.84883C12.7135 7.85031 12.7968 7.83487 12.8747 7.80344C12.9525 7.772 13.0232 7.72521 13.0825 7.66586C13.1419 7.60652 13.1887 7.53582 13.2201 7.458C13.2515 7.38017 13.267 7.29682 13.2655 7.2129C13.264 7.12898 13.2456 7.04622 13.2115 6.96955C13.1773 6.89289 13.1281 6.82388 13.0667 6.76667C12.4983 6.1975 11.6242 5.7975 10.75 5.65V4.70833Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-addon-date::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7.00032C2 5.42866 2 4.64366 2.48833 4.15533C2.97667 3.66699 3.76167 3.66699 5.33333 3.66699H15.3333C16.905 3.66699 17.69 3.66699 18.1783 4.15533C18.6667 4.64366 18.6667 5.42866 18.6667 7.00032C18.6667 7.39282 18.6667 7.58949 18.545 7.71199C18.4225 7.83366 18.225 7.83366 17.8333 7.83366H2.83333C2.44083 7.83366 2.24417 7.83366 2.12167 7.71199C2 7.58949 2 7.39199 2 7.00032Z' fill='%23112D51'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 14.5C2 16.0717 2 16.8567 2.48833 17.345C2.97667 17.8333 3.76167 17.8333 5.33333 17.8333H15.3333C16.905 17.8333 17.69 17.8333 18.1783 17.345C18.6667 16.8567 18.6667 16.0717 18.6667 14.5V10.3333C18.6667 9.94083 18.6667 9.74417 18.545 9.62167C18.4225 9.5 18.225 9.5 17.8333 9.5H2.83333C2.44083 9.5 2.24417 9.5 2.12167 9.62167C2 9.74417 2 9.94167 2 10.3333V14.5ZM6.16667 12C6.16667 11.6075 6.16667 11.4108 6.28833 11.2883C6.41083 11.1667 6.60833 11.1667 7 11.1667H8.66667C9.05917 11.1667 9.25583 11.1667 9.37833 11.2883C9.5 11.4108 9.5 11.6075 9.5 12C9.5 12.3925 9.5 12.5892 9.37833 12.7117C9.25583 12.8333 9.05833 12.8333 8.66667 12.8333H7C6.6075 12.8333 6.41083 12.8333 6.28833 12.7117C6.16667 12.5892 6.16667 12.3917 6.16667 12ZM6.28833 14.6217C6.16667 14.7442 6.16667 14.9417 6.16667 15.3333C6.16667 15.725 6.16667 15.9225 6.28833 16.045C6.41083 16.1667 6.60833 16.1667 7 16.1667H8.66667C9.05917 16.1667 9.25583 16.1667 9.37833 16.045C9.5 15.9225 9.5 15.725 9.5 15.3333C9.5 14.9417 9.5 14.7442 9.37833 14.6217C9.25583 14.5 9.05833 14.5 8.66667 14.5H7C6.6075 14.5 6.41083 14.5 6.28833 14.6217ZM11.1667 12C11.1667 11.6075 11.1667 11.4108 11.2883 11.2883C11.4108 11.1667 11.6083 11.1667 12 11.1667H13.6667C14.0592 11.1667 14.2558 11.1667 14.3783 11.2883C14.5 11.4108 14.5 11.6075 14.5 12C14.5 12.3925 14.5 12.5892 14.3783 12.7117C14.2558 12.8333 14.0583 12.8333 13.6667 12.8333H12C11.6075 12.8333 11.4108 12.8333 11.2883 12.7117C11.1667 12.5892 11.1667 12.3917 11.1667 12ZM11.2883 14.6217C11.1667 14.7442 11.1667 14.9417 11.1667 15.3333C11.1667 15.725 11.1667 15.9225 11.2883 16.045C11.4108 16.1667 11.6075 16.1667 12 16.1667H13.6667C14.0592 16.1667 14.2558 16.1667 14.3783 16.045C14.5 15.9225 14.5 15.725 14.5 15.3333C14.5 14.9417 14.5 14.7442 14.3783 14.6217C14.2558 14.5 14.0583 14.5 13.6667 14.5H12C11.6075 14.5 11.4108 14.5 11.2883 14.6217Z' fill='%23112D51'/%3E%3Cpath d='M6.16667 12C6.16667 11.6075 6.16667 11.4108 6.28833 11.2883C6.41083 11.1667 6.60833 11.1667 7 11.1667H8.66667C9.05917 11.1667 9.25583 11.1667 9.37833 11.2883C9.5 11.4108 9.5 11.6075 9.5 12C9.5 12.3925 9.5 12.5892 9.37833 12.7117C9.25583 12.8333 9.05833 12.8333 8.66667 12.8333H7C6.6075 12.8333 6.41083 12.8333 6.28833 12.7117C6.16667 12.5892 6.16667 12.3917 6.16667 12Z' fill='white'/%3E%3Cpath d='M11.1667 12C11.1667 11.6075 11.1667 11.4108 11.2883 11.2883C11.4108 11.1667 11.6083 11.1667 12 11.1667H13.6667C14.0592 11.1667 14.2558 11.1667 14.3783 11.2883C14.5 11.4108 14.5 11.6075 14.5 12C14.5 12.3925 14.5 12.5892 14.3783 12.7117C14.2558 12.8333 14.0583 12.8333 13.6667 12.8333H12C11.6075 12.8333 11.4108 12.8333 11.2883 12.7117C11.1667 12.5892 11.1667 12.3917 11.1667 12Z' fill='white'/%3E%3Cpath d='M11.2883 14.6217C11.1667 14.7442 11.1667 14.9417 11.1667 15.3333C11.1667 15.725 11.1667 15.9225 11.2883 16.045C11.4108 16.1667 11.6075 16.1667 12 16.1667H13.6667C14.0592 16.1667 14.2558 16.1667 14.3783 16.045C14.5 15.9225 14.5 15.725 14.5 15.3333C14.5 14.9417 14.5 14.7442 14.3783 14.6217C14.2558 14.5 14.0583 14.5 13.6667 14.5H12C11.6075 14.5 11.4108 14.5 11.2883 14.6217Z' fill='white'/%3E%3Cpath d='M6.28833 14.6217C6.16667 14.7442 6.16667 14.9417 6.16667 15.3333C6.16667 15.725 6.16667 15.9225 6.28833 16.045C6.41083 16.1667 6.60833 16.1667 7 16.1667H8.66667C9.05917 16.1667 9.25583 16.1667 9.37833 16.045C9.5 15.9225 9.5 15.725 9.5 15.3333C9.5 14.9417 9.5 14.7442 9.37833 14.6217C9.25583 14.5 9.05833 14.5 8.66667 14.5H7C6.6075 14.5 6.41083 14.5 6.28833 14.6217Z' fill='white'/%3E%3Cpath d='M6.16602 2V4.5M14.4993 2V4.5' stroke='%23112D51' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-addon-count::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18C11.0506 18 12.0909 17.7931 13.0615 17.391C14.0321 16.989 14.914 16.3997 15.6569 15.6569C16.3997 14.914 16.989 14.0321 17.391 13.0615C17.7931 12.0909 18 11.0506 18 10C18 8.94943 17.7931 7.90914 17.391 6.93853C16.989 5.96793 16.3997 5.08601 15.6569 4.34315C14.914 3.60028 14.0321 3.011 13.0615 2.60896C12.0909 2.20693 11.0506 2 10 2C7.87827 2 5.84344 2.84285 4.34315 4.34315C2.84285 5.84344 2 7.87827 2 10C2 12.1217 2.84285 14.1566 4.34315 15.6569C5.84344 17.1571 7.87827 18 10 18ZM9.79378 13.2356L14.2382 7.90222L12.8729 6.76444L9.05067 11.3502L7.07289 9.37156L5.816 10.6284L8.48267 13.2951L9.17067 13.9831L9.79378 13.2356Z' fill='%23112D51'/%3E%3Cpath d='M9.79378 13.2356L14.2382 7.90222L12.8729 6.76444L9.05067 11.3502L7.07289 9.37156L5.816 10.6284L8.48267 13.2951L9.17067 13.9831L9.79378 13.2356Z' fill='white'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
ul.cig--db-addon-list li span {
  font-size: inherit;
  font-weight: 400;
}

/* DISABLED ADDON STATE */
.cig--db-item__disabled {
  position: relative;
  pointer-events: none;
}
.cig--db-item__disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: calc(100% + 5px);
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  backdrop-filter: grayscale(100%);
  z-index: 2;
}
/* Ensure buttons remain fully visible and clickable */
.cig--db-item__disabled .cig--db-listing-btn-flex-wrapper {
  position: relative;
  filter: none !important;
  pointer-events: auto !important; /* Ensure interactions work */
}
.cig--db-item__disabled::before {
  content: "Disabled";
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: #cf162a;
  filter: none;
  z-index: 3;
  padding: 10px 20px;
  background: #faeeeead;
  border-radius: 0 10px 0 5px;
}
.cig--db-item__disabled
  .cig--db-listing-btn-flex-wrapper
  .cig--db-btn-deativate {
  background: #383c44;
}

/* FEATURED ADDON STATE */

.cig--db-item__featured {
  overflow: hidden;
}
.cig--db-item__featured::before {
  content: "Featured";
  position: absolute;
  top: 20px;
  right: -40px;
  background: #da1266;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 7px rgba(129, 0, 0, 0.2);
}
.cig--db-toggle-card-grey.cig--db-item__featured {
  border: 1px solid #f7d9e1;
  border-left: 5px solid #f7d9e1;
  background: rgb(255, 247, 249);
}
.cig--db-toggle-card-grey.cig--db-item__featured
  .cig--db_toggle_body-grey:before {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 243, 246, 0) 3%,
    rgba(255, 247, 249, 1) 78%
  );
}

/* Addons Desktop */
.cig--db-addons-primary-desktop {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
/* Addons Mobile */
.cig--db-addons-primary-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .cig--db-addons-primary-desktop {
    display: none;
  }
  .cig--db-addons-primary-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
  }
  .cig--db-item__featured::before {
    top: 12px;
    right: -40px;
    font-size: 10px;
  }
}

/* -------------- */
/* DASHBOARD BODY */
/* -------------- */
.cig--db-tab-content {
  display: none;
  width: 100%;
  border-radius: 10px;
  background: var(--color-white);
  border: #ececec;
  padding: 50px 80px;
  -webkit-box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.075);
  animation: fadeInUp 0.7s ease;
}

.cig--db-tab-content.tab__active {
  display: block;
}

@media screen and (max-width: 768px) {
  .cig--tabs-container {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .cig--db-tab-links-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .cig--db-tab-content {
    padding: 30px 10px 20px;
  }
}

/* TAB BODY - Header */
.cig--db-tab-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
strong.cig--db-total-wrapper {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-grey-dark);
}
.cig--db-tab-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ------------------ */
/* TAB BODY - BUTTONS */
/* ------------------ */
a.cig--db-btn-bordered,
a.cig--db-btn-solid {
  font-family: "Open Sans", sans-serif;
  position: relative;
  display: block;
  text-decoration: none;
  margin-inline: auto;
  padding: 5px 30px 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-main);
}
a.cig--db-btn-bordered {
  background-color: var(--color-white);
  border: 1px solid #2867c6;
  color: #2867c6;
}
a.cig--db-btn-solid {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}

a.cig--db-btn-bordered:hover {
  background-color: #f3f6ff;
  transform: scale(1.02);
}
a.cig--db-btn-solid:hover {
  background-color: var(--color-grey-dark);
  transform: scale(1.02);
}

a.cig--db-btn-bordered::after,
a.cig--db-btn-solid::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
}
a.cig--db-btn-bordered::after,
a.cig--db-btn-solid::after {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8327 10.8307H10.8327V15.8307H9.16602V10.8307H4.16602V9.16406H9.16602V4.16406H10.8327V9.16406H15.8327V10.8307Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
a.cig--db-btn-solid::after {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) {
  .cig--db-tab-header-wrapper,
  .cig--db-tab-btn-wrapper {
    flex-direction: column;

    gap: 20px;
  }
  a.cig--db-btn-bordered,
  a.cig--db-btn-solid {
    width: 100%;
    padding: 10px 35px 10px 20px;
  }
  a.cig--db-btn-bordered::after,
  a.cig--db-btn-solid::after {
    right: 10px;
  }
}

/* Crud BTNs */
.cig--db-listing-btn-flex-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  z-index: 99;
}
.cig--db-listing-btn-flex-row-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.cig--db-listing-btn-item {
  flex: 1;
}

.cig--db-btn-round {
  display: block;
  min-width: 140px;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  border-radius: 50px;
  transition: var(--transition-main);
  max-width: 140px;
}
.cig--db-btn-round:hover {
  filter: saturate(1.2);
  transform: scale(1.02);
}
.cig--db-btn-primary {
  background-color: var(--color-blue-light);
}
.cig--db-btn-secondary {
  background-color: #a1a8c9;
}
.cig--db-btn-danger {
  background-color: var(--color-danger);
}
.cig--db-btn-secondary:hover {
  background-color: var(--color-blue-light-text);
}
@media screen and (max-width: 600px) {
  .cig--db-btn-round {
    display: block;
    padding: 10px;
    font-size: 14px;
    min-width: 100%;
    max-width: 100%;
  }
  .cig--db-listing-btn-flex-wrapper {
    flex-wrap: wrap;
  }
  .cig--db-listing-btn-tripple-wrapper.cig--db-listing-btn-flex-wrapper
    .cig--db-listing-btn-item:nth-child(1) {
    min-width: 200px;
  }
  .cig--db-listing-btn-flex-wrapper .cig--db-listing-btn-item:nth-child(2),
  .cig--db-listing-btn-flex-wrapper .cig--db-listing-btn-item:nth-child(3) {
    min-width: 130px;
  }
}

/* Link BTNs */
a.cig--standard--link,
a.cig--standard-arrow--link {
  position: relative;
  text-decoration: none;
  color: var(--color-blue-light);
  transition: var(--transition-main);
}

a.cig--standard-arrow--link {
  font-size: 14px;
  padding-right: 14px;
  font-weight: 600;
}

a.cig--standard--link {
  font-size: 16px;
  font-weight: 500;
}
a.cig--standard--link:hover {
  color: var(--color-blue-dark);
}

a.cig--standard-arrow--link:hover,
a.cig--standard-arrow--link:hover::after {
  margin-left: 2px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%);
  transform: scale(1.2);
}
a.cig--standard-arrow--link::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.12277 10.7717C4.99987 10.6487 4.93084 10.4819 4.93084 10.308C4.93084 10.1341 4.99987 9.96727 5.12277 9.84422L7.50277 7.46422L5.12277 5.08422C5.00685 4.95982 4.94374 4.79528 4.94674 4.62526C4.94974 4.45525 5.01861 4.29304 5.13885 4.1728C5.25908 4.05257 5.42129 3.98369 5.59131 3.98069C5.76132 3.97769 5.92586 4.0408 6.05026 4.15672L8.89402 7.00047C9.01691 7.12352 9.08594 7.29031 9.08594 7.46422C9.08594 7.63813 9.01691 7.80492 8.89402 7.92797L6.05026 10.7717C5.92722 10.8946 5.76042 10.9636 5.58652 10.9636C5.41261 10.9636 5.24581 10.8946 5.12277 10.7717Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  position: absolute;
  top: 3px;
  right: 0;
}

/* ---------------- */
/* TAB BODY - CARDS */
/* ---------------- */
.cig--db-card-parent-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* Primary */
.cig--db-listing-primary-wrapper {
  padding: 20px;
  border-radius: 10px;
}
.cig--db-listing-primary {
  background-color: var(--color-blue-light-bg);
}
.cig--db-listing-heading {
  transition: var(--transition-main);
}
.cig--db-listing-heading a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-blue-dark);
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5em;
  margin: 0;
}
.cig--db-listing-heading:hover,
.cig--db-listing-heading:hover a {
  margin-left: 2px;
  color: var(--color-blue-light);
}
.cig--db-listing-flex-start-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cig--db-listing-flex-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.cig--db-listing-center-flex-wrapper,
.cig--db-listing-flex-flexwrap-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cig--db-listing-flex-flexwrap-wrapper {
  margin: 10px 0 5px;
}
.cig--db-listing-flex-wrapper-mb {
  margin-bottom: 10px;
}
/* Bordered */
.cig--db-listing-bordered {
  background-color: #f9f9f9;
  border: 1px solid #cad3de;
  border-left: 5px solid #cad3de;
}

@media screen and (max-width: 600px) {
  .cig--db-listing-flex-flexwrap-wrapper {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cig--db-listing-primary-wrapper {
    border: 1px solid #eeeeee;
  }
}

.cig--db-listing-flex-item,
.cig--db-listing-flex-full {
  width: auto;
}
.cig--db-listing-id {
  font-size: 16px;
  color: var(--color-grey-light-text);
  font-weight: 600;
}
.cig--db-listing-id span {
  font-size: inherit;
  color: inherit;
  font-weight: 400;
}
.cig--db-min-height {
  width: auto;
  min-height: 45px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: end;
}
.cig--db-listing-views {
  font-size: 16px;
  color: var(--color-grey-dark);
  font-weight: 500;
}
.cig--db-icon-before {
  position: relative;
  padding-left: 28px;
}
.cig--db-icon-before::before {
  content: "";
  position: absolute;
  /* top: 50%;
  transform: translateY(-50%); */
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
}
a.cig--db-icon-make-featured,
a.cig--db-icon--contact {
  text-decoration: none;
  color: var(--color-blue-light);
  font-weight: 500;
  transition: var(--transition-main);
}
a.cig--db-icon--contact {
  margin-top: 8.5px;
  display: block;
}

a.cig--db-icon-make-featured:hover,
a.cig--db-icon--contact:hover {
  color: var(--color-grey-dark);
  transform: scale(1.02);
}
a.cig--db-icon-make-featured::before {
  left: 5px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8333 2.5C16.2754 2.5 16.6993 2.67559 17.0118 2.98816C17.3244 3.30072 17.5 3.72464 17.5 4.16667V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H15.8333ZM12.9833 14.1667L12.1917 10.7667L14.825 8.49167L11.35 8.19167L10 5L8.65 8.2L5.175 8.5L7.80833 10.775L7.01667 14.1667L10 12.3667L12.9833 14.1667Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
a.cig--db-icon--contact::before {
  left: 5px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 3.75C1 3.33579 1.33579 3 1.75 3H18.4167C18.8309 3 19.1667 3.33579 19.1667 3.75V10C19.1667 10.4142 18.8309 10.75 18.4167 10.75C18.0025 10.75 17.6667 10.4142 17.6667 10V4.5H2.5V15.5H10.0833C10.4975 15.5 10.8333 15.8358 10.8333 16.25C10.8333 16.6642 10.4975 17 10.0833 17H1.75C1.33579 17 1 16.6642 1 16.25V3.75ZM15.803 11.553C16.0959 11.2601 16.5708 11.2601 16.8637 11.553L18.947 13.6363C19.2399 13.9292 19.2399 14.4041 18.947 14.697L16.8637 16.7803C16.5708 17.0732 16.0959 17.0732 15.803 16.7803C15.5101 16.4874 15.5101 16.0126 15.803 15.7197L16.606 14.9167H12.5833C12.1691 14.9167 11.8333 14.5809 11.8333 14.1667C11.8333 13.7525 12.1691 13.4167 12.5833 13.4167H16.606L15.803 12.6137C15.5101 12.3208 15.5101 11.8459 15.803 11.553Z' fill='%232867C6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.15004 3.30004C1.39857 2.96867 1.86867 2.90152 2.20004 3.15004L10.0834 9.06254L17.9667 3.15004C18.2981 2.90152 18.7682 2.96867 19.0167 3.30004C19.2652 3.63141 19.1981 4.10152 18.8667 4.35004L10.5334 10.6C10.2667 10.8 9.90004 10.8 9.63338 10.6L1.30004 4.35004C0.968673 4.10152 0.901516 3.63141 1.15004 3.30004Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
a.cig--db-icon-make-featured:hover::before,
a.cig--db-icon--contact:hover::before {
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%);
}

.cig--db-listing-views {
  text-align: end;
}

.cig--db-listing-content-wrapper {
  border-top: 1px solid #e6e6e6;
  padding-top: 15px;
  width: 100%;
}
.cig--db-listing-content-flat-wrapper {
  border-top: 1px solid #e6e6e6;
  width: 100%;
}

ul.cig--db-listing-date-list,
ul.cig--db-listing-date-list-flat {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul.cig--db-listing-date-list {
  margin: 20px 0;
}
ul.cig--db-listing-date-list-flat {
  margin: 0;
}
.cig--db-listing-date-item {
  color: #383c44;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6em;
}
.cig--db-listing-date-item span {
  color: inherit;
  font-weight: 400;
  font-size: inherit;
}
.cig--db-icon-act::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9.5V15.3333C18 15.7754 17.8127 16.1993 17.4793 16.5118C17.1459 16.8244 16.6937 17 16.2222 17H3.77778C3.30628 17 2.8541 16.8244 2.5207 16.5118C2.1873 16.1993 2 15.7754 2 15.3333V9.5H18ZM13.5556 2C13.7913 2 14.0174 2.0878 14.1841 2.24408C14.3508 2.40036 14.4444 2.61232 14.4444 2.83333V3.66667H16.2222C16.6937 3.66667 17.1459 3.84226 17.4793 4.15482C17.8127 4.46738 18 4.89131 18 5.33333V7.83333H2V5.33333C2 4.89131 2.1873 4.46738 2.5207 4.15482C2.8541 3.84226 3.30628 3.66667 3.77778 3.66667H5.55556V2.83333C5.55556 2.61232 5.64921 2.40036 5.81591 2.24408C5.9826 2.0878 6.2087 2 6.44444 2C6.68019 2 6.90628 2.0878 7.07298 2.24408C7.23968 2.40036 7.33333 2.61232 7.33333 2.83333V3.66667H12.6667V2.83333C12.6667 2.61232 12.7603 2.40036 12.927 2.24408C13.0937 2.0878 13.3198 2 13.5556 2Z' fill='%236B749B'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-deact::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18 8.5L18 15.3333C18 15.7754 17.8127 16.1993 17.4793 16.5118C17.1459 16.8244 16.6937 17 16.2222 17H3.77778C3.30628 17 2.8541 16.8244 2.5207 16.5118C2.1873 16.1993 2 15.7754 2 15.3333V8.5H18ZM13.5556 2C13.7913 2 14.0174 2.0878 14.1841 2.24408C14.3508 2.40036 14.4444 2.61232 14.4444 2.83333V3.66667H16.2222C16.6937 3.66667 17.1459 3.84226 17.4793 4.15482C17.8127 4.46738 18 4.89131 18 5.33333V7H2V5.33333C2 4.89131 2.1873 4.46738 2.5207 4.15482C2.8541 3.84226 3.30628 3.66667 3.77778 3.66667H5.55556V2.83333C5.55556 2.61232 5.64921 2.40036 5.81591 2.24408C5.9826 2.0878 6.2087 2 6.44444 2C6.68019 2 6.90628 2.0878 7.07298 2.24408C7.23968 2.40036 7.33333 2.61232 7.33333 2.83333V3.66667H12.6667V2.83333C12.6667 2.61232 12.7603 2.40036 12.927 2.24408C13.0937 2.0878 13.3198 2 13.5556 2ZM10.4942 18.3817L10.485 18.3833L10.4258 18.4125L10.4092 18.4158L10.3975 18.4125L10.3383 18.3833C10.3294 18.3806 10.3228 18.3819 10.3183 18.3875L10.315 18.3958L10.3008 18.7525L10.305 18.7692L10.3133 18.78L10.4 18.8417L10.4125 18.845L10.4225 18.8417L10.5092 18.78L10.5192 18.7667L10.5225 18.7525L10.5083 18.3967C10.5061 18.3878 10.5014 18.3828 10.4942 18.3817ZM10.715 18.2875L10.7042 18.2892L10.55 18.3667L10.5417 18.375L10.5392 18.3842L10.5542 18.7425L10.5583 18.7525L10.565 18.7583L10.7325 18.8358C10.7431 18.8386 10.7511 18.8364 10.7567 18.8292L10.76 18.8175L10.7317 18.3058C10.7289 18.2958 10.7233 18.2897 10.715 18.2875ZM10.1192 18.2892C10.1155 18.2869 10.1111 18.2862 10.1069 18.2871C10.1027 18.2881 10.0991 18.2906 10.0967 18.2942L10.0917 18.3058L10.0633 18.8175C10.0639 18.8275 10.0686 18.8342 10.0775 18.8375L10.09 18.8358L10.2575 18.7583L10.2658 18.7517L10.2692 18.7425L10.2833 18.3842L10.2808 18.3742L10.2725 18.3658L10.1192 18.2892ZM5 9.99951H9V11.9995H5V9.99951ZM5 13H9V15H5V13ZM15 9.99951H11V11.9995H15V9.99951ZM11 13H15V15H11V13Z' fill='%236B749B'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-business::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1C6.13402 1 3 4.03781 3 7.78516C3 9.03836 3.25306 10.3327 3.97927 11.2656L10 19L16.0207 11.2656C16.6803 10.4183 17 8.92028 17 7.78516C17 4.03781 13.866 1 10 1ZM10 4.9298C11.6267 4.9298 12.9458 6.20842 12.9458 7.78514C12.9458 9.3619 11.6267 10.6405 10 10.6405C8.37334 10.6405 7.05426 9.3619 7.05426 7.78516C7.05426 6.20842 8.37334 4.9298 10 4.9298Z' fill='%236B749B'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-location::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5714 17.875H16.8571V1.84375C16.8571 1.37775 16.4734 1 16 1H4C3.52661 1 3.14286 1.37775 3.14286 1.84375V17.875H2.42857C2.19189 17.875 2 18.0639 2 18.2969V19H18V18.2969C18 18.0639 17.8081 17.875 17.5714 17.875ZM6.57143 3.67188C6.57143 3.43889 6.76332 3.25 7 3.25H8.42857C8.66525 3.25 8.85714 3.43889 8.85714 3.67188V5.07812C8.85714 5.31111 8.66525 5.5 8.42857 5.5H7C6.76332 5.5 6.57143 5.31111 6.57143 5.07812V3.67188ZM6.57143 7.04688C6.57143 6.81389 6.76332 6.625 7 6.625H8.42857C8.66525 6.625 8.85714 6.81389 8.85714 7.04688V8.45312C8.85714 8.68611 8.66525 8.875 8.42857 8.875H7C6.76332 8.875 6.57143 8.68611 6.57143 8.45312V7.04688ZM8.42857 12.25H7C6.76332 12.25 6.57143 12.0611 6.57143 11.8281V10.4219C6.57143 10.1889 6.76332 10 7 10H8.42857C8.66525 10 8.85714 10.1889 8.85714 10.4219V11.8281C8.85714 12.0611 8.66525 12.25 8.42857 12.25ZM11.1429 17.875H8.85714V14.9219C8.85714 14.6889 9.04904 14.5 9.28571 14.5H10.7143C10.951 14.5 11.1429 14.6889 11.1429 14.9219V17.875ZM13.4286 11.8281C13.4286 12.0611 13.2367 12.25 13 12.25H11.5714C11.3348 12.25 11.1429 12.0611 11.1429 11.8281V10.4219C11.1429 10.1889 11.3348 10 11.5714 10H13C13.2367 10 13.4286 10.1889 13.4286 10.4219V11.8281ZM13.4286 8.45312C13.4286 8.68611 13.2367 8.875 13 8.875H11.5714C11.3348 8.875 11.1429 8.68611 11.1429 8.45312V7.04688C11.1429 6.81389 11.3348 6.625 11.5714 6.625H13C13.2367 6.625 13.4286 6.81389 13.4286 7.04688V8.45312ZM13.4286 5.07812C13.4286 5.31111 13.2367 5.5 13 5.5H11.5714C11.3348 5.5 11.1429 5.31111 11.1429 5.07812V3.67188C11.1429 3.43889 11.3348 3.25 11.5714 3.25H13C13.2367 3.25 13.4286 3.43889 13.4286 3.67188V5.07812Z' fill='%236B749B'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-send::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.4943 19.382L10.4851 19.3837L10.426 19.4129L10.4093 19.4162L10.3976 19.4129L10.3385 19.3837C10.3296 19.3809 10.3229 19.3823 10.3185 19.3879L10.3151 19.3962L10.301 19.7529L10.3051 19.7695L10.3135 19.7804L10.4001 19.842L10.4126 19.8454L10.4226 19.842L10.5093 19.7804L10.5193 19.767L10.5226 19.7529L10.5085 19.397C10.5063 19.3881 10.5015 19.3831 10.4943 19.382ZM10.7151 19.2879L10.7043 19.2895L10.5501 19.367L10.5418 19.3754L10.5393 19.3845L10.5543 19.7429L10.5585 19.7529L10.5651 19.7587L10.7326 19.8362C10.7432 19.839 10.7513 19.8367 10.7568 19.8295L10.7601 19.8179L10.7318 19.3062C10.729 19.2962 10.7235 19.2901 10.7151 19.2879ZM10.1193 19.2895C10.1156 19.2873 10.1112 19.2866 10.1071 19.2875C10.1029 19.2884 10.0992 19.291 10.0968 19.2945L10.0918 19.3062L10.0635 19.8179C10.064 19.8279 10.0688 19.8345 10.0776 19.8379L10.0901 19.8362L10.2576 19.7587L10.266 19.752L10.2693 19.7429L10.2835 19.3845L10.281 19.3745L10.2726 19.3662L10.1193 19.2895Z' fill='%232867C6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.8429 2.15679C16.9164 2.23017 16.9669 2.3233 16.9884 2.42487C17.0099 2.52644 17.0014 2.63207 16.964 2.7289L11.6075 16.6567C11.5696 16.7552 11.5034 16.8404 11.4173 16.9014C11.3311 16.9625 11.2288 16.9967 11.1233 16.9998C11.0177 17.0029 10.9136 16.9747 10.8241 16.9188C10.7345 16.8629 10.6634 16.7818 10.6198 16.6856L8.37974 11.7573L11.675 8.46072C11.8169 8.30839 11.8942 8.10693 11.8905 7.89876C11.8869 7.69059 11.8025 7.49198 11.6553 7.34476C11.5081 7.19754 11.3095 7.11321 11.1014 7.10953C10.8932 7.10586 10.6918 7.18313 10.5395 7.32507L7.2431 10.6206L2.31517 8.38143C2.21872 8.33787 2.13733 8.26671 2.08129 8.17693C2.02524 8.08715 1.99704 7.98278 2.00025 7.87699C2.00346 7.7712 2.03793 7.66873 2.09932 7.58251C2.1607 7.4963 2.24625 7.4302 2.34517 7.39256L16.2719 2.03573C16.3686 1.99852 16.474 1.99016 16.5754 2.01165C16.6767 2.03314 16.7696 2.08355 16.8429 2.15679Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-letter::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L6.984 4.70661H4.9C4.62386 4.70661 4.4 4.93047 4.4 5.20661V6.15289L2.776 7.08574C2.312 7.33884 2 7.79442 2 8.32231V15.5537C2 15.9373 2.16857 16.3052 2.46863 16.5764C2.76869 16.8476 3.17565 17 3.6 17H16.4C17.288 17 18 16.3564 18 15.5537V8.32231C18 7.79442 17.688 7.33884 17.224 7.08574L15.6 6.15289V5.20661C15.6 4.93047 15.3761 4.70661 15.1 4.70661H13.016M6 6.15289H14V9.68182L10 11.938L6 9.68182M6.8 6.87603V6.87603C6.8 7.4751 7.28564 7.96074 7.88471 7.96074H12.1153C12.7144 7.96074 13.2 7.4751 13.2 6.87603V6.87603M4.4 7.87397V8.77789L3.6 8.32231M15.6 7.87397L16.4 8.32231L15.6 8.77789M7.34236 8.68388C7.04282 8.68388 6.8 8.9267 6.8 9.22624V9.22624C6.8 9.52577 7.04282 9.76859 7.34236 9.76859H12.6576C12.9572 9.76859 13.2 9.52577 13.2 9.22624V9.22624C13.2 8.9267 12.9572 8.68388 12.6576 8.68388H7.34236Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
/* Blue */
.cig--db-icon-b_location::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1C6.13402 1 3 4.03781 3 7.78516C3 9.03836 3.25306 10.3327 3.97927 11.2656L10 19L16.0207 11.2656C16.6803 10.4183 17 8.92028 17 7.78516C17 4.03781 13.866 1 10 1ZM10 4.9298C11.6267 4.9298 12.9458 6.20842 12.9458 7.78514C12.9458 9.3619 11.6267 10.6405 10 10.6405C8.37334 10.6405 7.05426 9.3619 7.05426 7.78516C7.05426 6.20842 8.37334 4.9298 10 4.9298Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-b_job::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4 5.36842H14V3.68421C14 2.75537 13.2824 2 12.4 2H7.6C6.7176 2 6 2.75537 6 3.68421V5.36842H3.6C2.7176 5.36842 2 6.12379 2 7.05263V9.57895H18V7.05263C18 6.12379 17.2824 5.36842 16.4 5.36842ZM7.6 3.68421H12.4V5.36842H7.6V3.68421ZM11.6 12.1053H8.4V10.4211H2V16.3158C2 17.2446 2.7176 18 3.6 18H16.4C17.2824 18 18 17.2446 18 16.3158V10.4211H11.6V12.1053Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-b_calendar_alt::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.96031 2.96C6.96031 2.42981 6.53051 2 6.00031 2C5.47012 2 5.04031 2.42981 5.04031 2.96V4.56003C3.63743 4.56061 2.92076 4.57684 2.4688 5.02881C2 5.49761 2 6.25121 2 7.76001C2 8.13601 2 8.32561 2.1168 8.44321C2.2344 8.56001 2.4232 8.56001 2.8 8.56001H17.2C17.576 8.56001 17.7656 8.56001 17.8832 8.44321C18 8.32561 18 8.13681 18 7.76001C18 6.25121 18 5.49761 17.5312 5.02881C17.0793 4.57691 16.3628 4.56062 14.9603 4.56003V2.96C14.9603 2.42981 14.5305 2 14.0003 2C13.4701 2 13.0403 2.42981 13.0403 2.96V4.56001H6.96031V2.96Z' fill='%232867C6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 14.96C2 16.4688 2 17.2224 2.4688 17.6912C2.9376 18.16 3.6912 18.16 5.2 18.16H14.8C16.3088 18.16 17.0624 18.16 17.5312 17.6912C18 17.2224 18 16.4688 18 14.96V10.96C18 10.5832 18 10.3944 17.8832 10.2768C17.7656 10.16 17.576 10.16 17.2 10.16H2.8C2.4232 10.16 2.2344 10.16 2.1168 10.2768C2 10.3944 2 10.584 2 10.96V14.96ZM6 12.56C6 12.1832 6 11.9944 6.1168 11.8768C6.2344 11.76 6.424 11.76 6.8 11.76H8.4C8.7768 11.76 8.9656 11.76 9.0832 11.8768C9.2 11.9944 9.2 12.1832 9.2 12.56C9.2 12.9368 9.2 13.1256 9.0832 13.2432C8.9656 13.36 8.776 13.36 8.4 13.36H6.8C6.4232 13.36 6.2344 13.36 6.1168 13.2432C6 13.1256 6 12.936 6 12.56ZM6.1168 15.0768C6 15.1944 6 15.384 6 15.76C6 16.136 6 16.3256 6.1168 16.4432C6.2344 16.56 6.424 16.56 6.8 16.56H8.4C8.7768 16.56 8.9656 16.56 9.0832 16.4432C9.2 16.3256 9.2 16.136 9.2 15.76C9.2 15.384 9.2 15.1944 9.0832 15.0768C8.9656 14.96 8.776 14.96 8.4 14.96H6.8C6.4232 14.96 6.2344 14.96 6.1168 15.0768ZM10.8 12.56C10.8 12.1832 10.8 11.9944 10.9168 11.8768C11.0344 11.76 11.224 11.76 11.6 11.76H13.2C13.5768 11.76 13.7656 11.76 13.8832 11.8768C14 11.9944 14 12.1832 14 12.56C14 12.9368 14 13.1256 13.8832 13.2432C13.7656 13.36 13.576 13.36 13.2 13.36H11.6C11.2232 13.36 11.0344 13.36 10.9168 13.2432C10.8 13.1256 10.8 12.936 10.8 12.56ZM10.9168 15.0768C10.8 15.1944 10.8 15.384 10.8 15.76C10.8 16.136 10.8 16.3256 10.9168 16.4432C11.0344 16.56 11.2232 16.56 11.6 16.56H13.2C13.5768 16.56 13.7656 16.56 13.8832 16.4432C14 16.3256 14 16.136 14 15.76C14 15.384 14 15.1944 13.8832 15.0768C13.7656 14.96 13.576 14.96 13.2 14.96H11.6C11.2232 14.96 11.0344 14.96 10.9168 15.0768Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-b_calendar_solid::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10.5V16.3333C18 16.7754 17.8127 17.1993 17.4793 17.5118C17.1459 17.8244 16.6937 18 16.2222 18H3.77778C3.30628 18 2.8541 17.8244 2.5207 17.5118C2.1873 17.1993 2 16.7754 2 16.3333V10.5H18ZM13.5556 3C13.7913 3 14.0174 3.0878 14.1841 3.24408C14.3508 3.40036 14.4444 3.61232 14.4444 3.83333V4.66667H16.2222C16.6937 4.66667 17.1459 4.84226 17.4793 5.15482C17.8127 5.46738 18 5.89131 18 6.33333V8.83333H2V6.33333C2 5.89131 2.1873 5.46738 2.5207 5.15482C2.8541 4.84226 3.30628 4.66667 3.77778 4.66667H5.55556V3.83333C5.55556 3.61232 5.64921 3.40036 5.81591 3.24408C5.9826 3.0878 6.2087 3 6.44444 3C6.68019 3 6.90628 3.0878 7.07298 3.24408C7.23968 3.40036 7.33333 3.61232 7.33333 3.83333V4.66667H12.6667V3.83333C12.6667 3.61232 12.7603 3.40036 12.927 3.24408C13.0937 3.0878 13.3198 3 13.5556 3Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}
.cig--db-icon-b_money::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.10769 2.30078C2.81391 2.30078 2.53217 2.41748 2.32444 2.62522C2.1167 2.83295 2 3.1147 2 3.40847V17.1931C2 17.8052 2.49559 18.3008 3.10769 18.3008H16.8923C17.0378 18.3008 17.1818 18.2721 17.3162 18.2165C17.4506 18.1608 17.5727 18.0792 17.6756 17.9763C17.7784 17.8735 17.86 17.7514 17.9157 17.617C17.9713 17.4826 18 17.3386 18 17.1931V3.40847C18 3.26301 17.9713 3.11897 17.9157 2.98458C17.86 2.85019 17.7784 2.72808 17.6756 2.62522C17.5727 2.52236 17.4506 2.44077 17.3162 2.3851C17.1818 2.32943 17.0378 2.30078 16.8923 2.30078H3.10769ZM10.6154 4.96745C10.6154 4.80424 10.5505 4.64771 10.4351 4.53231C10.3197 4.4169 10.1632 4.35206 10 4.35206C9.83679 4.35206 9.68026 4.4169 9.56486 4.53231C9.44945 4.64771 9.38462 4.80424 9.38462 4.96745V5.87247C8.96205 5.93565 8.54769 6.0817 8.19733 6.34755C7.64513 6.76601 7.33333 7.41504 7.33333 8.2495C7.33333 8.65647 7.42687 9.01641 7.61395 9.32929C7.79856 9.63781 8.0521 9.86509 8.32369 10.0382C8.82585 10.3582 9.46667 10.5322 9.99672 10.6766L10.0435 10.6897C10.6334 10.8505 11.097 10.9826 11.4261 11.1919C11.5778 11.2887 11.6763 11.388 11.7395 11.493C11.7994 11.5939 11.8462 11.7326 11.8462 11.9418C11.8462 12.4423 11.6451 12.7558 11.3506 12.9617C11.0306 13.1857 10.5588 13.308 10.0213 13.2891C9.20082 13.2587 8.41723 12.9084 8.03077 12.3931C7.98228 12.3284 7.92153 12.274 7.852 12.2328C7.78246 12.1916 7.70549 12.1645 7.62549 12.1531C7.54549 12.1417 7.46402 12.1461 7.38574 12.1662C7.30745 12.1862 7.23388 12.2215 7.16923 12.27C7.10458 12.3185 7.05011 12.3792 7.00894 12.4488C6.96776 12.5183 6.94069 12.5953 6.92926 12.6753C6.91783 12.7553 6.92227 12.8368 6.94233 12.915C6.96239 12.9933 6.99767 13.0669 7.04615 13.1316C7.5959 13.8643 8.4878 14.3008 9.38462 14.4567V15.6341C9.38462 15.7973 9.44945 15.9539 9.56486 16.0693C9.68026 16.1847 9.83679 16.2495 10 16.2495C10.1632 16.2495 10.3197 16.1847 10.4351 16.0693C10.5505 15.9539 10.6154 15.7973 10.6154 15.6341V14.4928C11.1307 14.4312 11.6345 14.2663 12.0562 13.9701C12.6773 13.5352 13.0769 12.846 13.0769 11.9418C13.0769 11.5348 12.9834 11.1749 12.7963 10.862C12.6194 10.5726 12.3761 10.3296 12.0866 10.1531C11.5844 9.83309 10.9436 9.65914 10.4135 9.51473L10.3668 9.5016C9.77682 9.34078 9.31323 9.20868 8.98421 8.99945C8.85676 8.9261 8.74916 8.82273 8.67077 8.69832C8.59428 8.5615 8.55735 8.4061 8.5641 8.2495C8.5641 7.7457 8.73641 7.48232 8.9399 7.32888C9.16964 7.15494 9.52738 7.05401 9.98359 7.06632C10.7623 7.08765 11.5926 7.43063 12.0267 7.86386C12.083 7.92432 12.1509 7.97281 12.2264 8.00645C12.3019 8.04008 12.3834 8.05817 12.466 8.05963C12.5487 8.06108 12.6307 8.04588 12.7074 8.01493C12.784 7.98398 12.8536 7.93791 12.912 7.87948C12.9705 7.82104 13.0165 7.75144 13.0475 7.67481C13.0784 7.59818 13.0936 7.51611 13.0922 7.43348C13.0907 7.35085 13.0726 7.26936 13.039 7.19388C13.0054 7.11839 12.9569 7.05045 12.8964 6.99411C12.3368 6.4337 11.4761 6.03986 10.6154 5.89463V4.96745Z' fill='%232867C6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.cig--db-list-divider {
  height: 1px;
  width: 100%;
  background-color: #e2e2e2;
  margin: 5px 0;
}

@media screen and (max-width: 600px) {
  .cig--db-listing-content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cig--db-listing-btn-flex-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }
  .cig--db-listing-flex-full,
  .cig--db-min-height {
    width: 100%;
  }
}

/* BORDERED CARD */
.cig--db-app-card-parent-wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cig--db-app-card-wrapper {
  position: relative;
  border-radius: 10px 10px 0 0;
  margin: 12px;
  width: 100%;
  max-width: 315px;

  z-index: 1;
}
.cig--db-app-card-wrapper::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 1px;
  left: 1px;
  border-radius: inherit;
  background: rgb(238, 238, 238);
  background: linear-gradient(
    240deg,
    rgb(243, 238, 235) 10%,
    rgba(166, 105, 56, 0.9) 100%
  );
  width: calc(100% - 1px);
  height: 50px;
  z-index: -1;
}
.cig--db-app-flex-wrapper {
  position: relative;
  padding: 30px 30px 50px 30px;
  background: rgb(244, 246, 248);
  background: linear-gradient(
    180deg,
    rgba(244, 246, 248, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 10px 10px 0 0;
  z-index: 1;
}

h3.cig--db-app-heading {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
  color: var(--color-blue-dark);
}

/* ------------ */
/* TOGGLE CARDS */
/* ------------ */
.cig--db-toggle-card-parent-wrapper,
.cig--db-toggle-card-wrapper,
.cig--db-toggle-flex-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 0;
}
.cig--db-toggle-card-wrapper,
.cig--db-toggle-flex-wrapper {
  padding: 20px;
  border-radius: 10px;
}
.cig--db-toggle-card-blue {
  background: #f1f7fb;
}
.cig--db-toggle-card-grey {
  background: #f9f9f9;
  border: 1px solid #dbdeec;
  border-left: 5px solid #dbdeec;
}

.cig--db-toggle-header-bordered {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 15px;
}
.cig--db-toggle-heading {
  margin: 0;
}
.cig--db-toggle-heading a {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-blue-light);
  transition: var(--transition-main);
}
.cig--db-toggle-heading a:hover {
  color: var(--color-blue-dark);
}

.cig--meta-count-chip {
  display: block;
  padding: 5px 16px;
  margin-right: 5px;
  color: var(--color-blue-light);
  background: #d6e8f9;
  border-radius: 20px;
  font-weight: 500;
}
.cig--db-meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
}
.cig--db-meta-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .cig--meta-count-chip-pc {
    display: none;
  }
  .cig--db-meta-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    border-bottom: none;
    padding-bottom: 0;
  }
  .cig--meta-count-chip {
    margin: 0 auto;
  }
  .cig--db-toggle-card-wrapper {
    flex-direction: column-reverse;
  }
  .cig--db-meta-mobile {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
  }
}

strong.cig--db-desc-heading {
  display: block;
  margin: 15px 0 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #383c44;
}

/* ----------------------- */
/* Toggle Body - Read More */
/* ----------------------- */
.cig--db-toggle-body-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.cig--toggle-readmore,
.cig--toggle-readless {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
  text-align: center;
  color: var(--color-blue-light);
  cursor: pointer;
}
.cig--db_toggle_body {
  position: relative;
  overflow: hidden;
  max-height: 160px;
  width: auto;
  color: #383c44;
  cursor: pointer;
  padding-bottom: 40px;
  transition: max-height 0.4s ease-in-out;
}
.cig--db_toggle_body:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 1) 75%
  );
  pointer-events: none;
  transition: all ease-in 0.2s;
}
.cig--db_toggle_body-colored:before {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 3%,
    rgba(241, 247, 251, 1) 78%
  );
}
.cig--db_toggle_body-grey:before {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 3%,
    rgba(249, 249, 249, 1) 78%
  );
}
.cig--db_toggle_body.read__active {
  height: auto;
  cursor: initial;
  overflow-y: visible;
  transition: max-height 0.4s ease-in-out;
}
.cig--db_toggle_body.read__active.cig--db_toggle_body:before {
  display: none;
}
.cig--db_toggle_body.read__active .cig--toggle-readless {
  opacity: 1;
  pointer-events: auto;
}
.cig--toggle-readless {
  opacity: 0;
  pointer-events: none;
}

/* ---------------- */
/* FILTER ACCORDION */
/* ---------------- */
section.cig__accordion {
  margin-top: 40px;
}
section.cig__accordion .cig__accordion--head {
  position: relative;
  background: var(--color-blue-light-bg);
  border-radius: 10px;
}

section.cig__accordion.cig__open .cig__accordion--head {
  border-radius: 10px 10px 0 0;
}

section.cig__accordion .cig__accordion-heading {
  position: relative;
  font-weight: 700;
  color: var(--color-blue-light);
  font-size: 18px;
  margin: 0;
  padding: 1rem 3rem 1rem 1.5rem;
  z-index: 9;
  cursor: pointer;
}

section.cig__accordion .cig__accordion-body {
  display: none;
  position: relative;
  padding: 10px 30px 30px;
  /* background: #f9fdff; */
  background: #eff5f9;
  border-radius: 0 0 10px 10px;
  border: 1px solid #ececec;
  z-index: 3;
}

section.cig__accordion span.cig__accordion-chev {
  content: "";
  width: 44px;
  height: 44px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.645 16L13 17.7126L20 25L27 17.7126L25.355 16L20 21.5628L14.645 16Z' fill='%232867C6'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  right: 5px;
  transition: 0.3s;
  z-index: 3;
}

section.cig__accordion.cig__open .cig__accordion--head .cig__accordion-chev {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* Accordion content */
.cig--accordion-content-wrapper {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.5em;
}
.cig--accordion-content-wrapper p {
  margin: 0;
  font-size: 15px;
}
.cig--accordion-content-wrapper strong {
  font-size: 18px;
  color: #383c44;
  font-weight: bold;
}
.cig--accordion-content-wrapper ul {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.4em;
  color: #383c44;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

section.cig__accordion .cig--primary-form--column-full {
  margin-bottom: 0;
}

/* --------------- */
/* DataTable - CSS */
/* --------------- */
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px 20px;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 10px 20px;
}
.cig--standard-crud-table td,
.cig--standard-crud-table th {
  border: 0.5px solid #e5e7eb;
  border-collapse: collapse;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td,
table.dataTable.no-footer {
  border-bottom: 0.5px solid #e5e7eb;
}

table.dataTable > thead > tr > th {
  color: #112d51;
  font-weight: 600;
  background: #f1f7fb;
}
table.dataTable tbody td {
  white-space: normal;
  word-break: break-word;
}
.cig--standard-table-wrapper {
  position: relative;
  width: 100%;
}
.cig--standard-crud-table {
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--color-white);
  color: #5a607a;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.075);
}
table.cig--standard-crud-table tr:hover {
  background-color: #f8f8f8;
}
.cig--standard-crud-table td,
.cig--standard-crud-table th {
  white-space: nowrap;
}
.cig--standard-crud-table td {
  word-break: break-word;
}
/* Table fit width */
.cig--standard-crud-table td:last-child,
.cig--standard-crud-table th:last-child {
  text-align: center;
  white-space: nowrap; /* Prevents wrapping */
  width: 1%; /* Shrinks to fit content */
}

/* Table BTN */
.cig--table-edit-btn,
.cig--table-delete-btn {
  position: relative;
  border: none;
  background-color: transparent;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: block;
  transition: var(--transition-main);
}
button.cig--db-btn-bordered{
  font-family: "Open Sans", sans-serif;
    position: relative;
    display: block;
    text-decoration: none;
    margin-inline: auto;
    padding: 5px 30px 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-main);
  }
.cig--table-edit-btn:hover,
.cig--table-delete-btn:hover {
  filter: saturate(1.3);
  transform: scale(1.08);
}
.cig--table-edit-btn {
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.0008 4.53616L16.2869 1.82227L14.218 3.89206L16.9319 6.60596L19.0008 4.53616ZM9.06073 14.4763H6.34684V11.7624L12.9389 5.17031L15.6528 7.8842L9.06073 14.4763ZM6.48836 17.1898H16.2964V11.1577L18.1056 9.34844V17.1898C18.1056 17.6696 17.915 18.1298 17.5757 18.4691C17.2364 18.8084 16.7762 18.9991 16.2964 18.9991H3.63153C2.63372 18.9991 1.82227 18.1885 1.82227 17.1898V4.52494C1.82227 3.52623 2.63372 2.71568 3.63153 2.71568H11.6348L9.82554 4.52494H3.63153V17.1898H6.32643C6.34104 17.1902 6.35545 17.1923 6.36974 17.1943C6.38555 17.1966 6.40122 17.1988 6.41689 17.1988C6.42865 17.1988 6.44064 17.1966 6.45262 17.1943C6.46461 17.192 6.4766 17.1898 6.48836 17.1898Z' fill='%232867C6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.cig--table-delete-btn {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7782 2.77799H17.0727C17.22 2.77799 17.3613 2.83653 17.4655 2.94071C17.5697 3.0449 17.6282 3.18621 17.6282 3.33355C17.6282 3.48089 17.5697 3.6222 17.4655 3.72639C17.3613 3.83057 17.22 3.88911 17.0727 3.88911H2.77821C2.63087 3.88911 2.48956 3.83057 2.38537 3.72639C2.28119 3.6222 2.22266 3.48089 2.22266 3.33355C2.22266 3.18621 2.28119 3.0449 2.38537 2.94071C2.48956 2.83653 2.63087 2.77799 2.77821 2.77799H7.22266V2.22244C7.22127 1.94603 7.32296 1.67903 7.50787 1.47358C7.69278 1.26812 7.94763 1.13897 8.22266 1.11133H11.6671C11.9618 1.11133 12.2444 1.22839 12.4528 1.43676C12.6611 1.64514 12.7782 1.92775 12.7782 2.22244V2.77799ZM3.33293 17.2227V5.00049H16.6663V17.2227C16.6714 17.4388 16.6335 17.6537 16.5547 17.855C16.4759 18.0563 16.3578 18.2398 16.2074 18.395C16.0569 18.5501 15.877 18.6738 15.6782 18.7586C15.4794 18.8435 15.2657 18.888 15.0496 18.8894H4.92181C4.70803 18.8843 4.49734 18.8372 4.30178 18.7507C4.10621 18.6642 3.92961 18.54 3.78205 18.3852C3.6345 18.2305 3.51889 18.0481 3.44182 17.8487C3.36476 17.6492 3.32776 17.4365 3.33293 17.2227ZM7.22181 16.1116H8.33293V7.77827H7.22181V16.1116ZM11.6663 16.1116H12.7774V7.77827H11.6663V16.1116Z' fill='%23CF162A'/%3E%3C/svg%3E%0A")
    center / contain no-repeat;
}

@media (max-width: 768px) {
  .cig--standard-crud-table {
    box-shadow: none;
  }
}
@media(min-width:768px)
{
  .cig--db-body-flex-wrapper .cig--db-sidebar-wrapper{
    width:25%
  }
  .cig--db-body-flex-wrapper .cig--db-tab-content{
    width:75%
  }
}